@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  font-family: "lucida Grande",Verdana,"Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif;
}

a {
  color: inherit;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  color: inherit;
}

a:hover, a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

b, dt {
  font-weight: normal;
}

p {
  margin: 0;
}

h3, h4 {
  margin: 0;
  font-weight: normal;
}

@supports (display: flex) {
  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  .allcontent-wrap {
    flex: 1;
  }
}

.container-fluid {
  max-width: 1030px;
}

.container-fluid img {
  max-width: 100%;
}

.row-mat {
  margin-top: -20px;
}

.col-mat {
  margin-top: 20px;
}

.img-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.nowrapline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*顶部  logo&热线*/
.top-head {
  display: table;
  width: 100%;
  padding: 15px 0;
}

@media (min-width: 768px) {
  .top-head {
    padding: 20px 0;
  }
}

@media (min-width: 992px) {
  .top-head {
    padding: 30px 0;
  }
}

.top-logo,
.top-btnwrap {
  display: table-cell;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .top-logo {
    float: left;
  }
}

.top-btnwrap {
  padding-left: 20px;
  text-align: right;
  font-size: 0;
}

@media (min-width: 768px) {
  .top-btnwrap {
    display: none;
  }
}

/*小屏  折叠按钮*/
.top-btn-collapse {
  cursor: pointer;
  top: 0;
  color: #0073ae;
  font-size: 20px;
  padding: 0.3em;
  border: 2px solid;
  border-radius: 50%;
}

@media (min-width: 480px) {
  .top-btn-collapse {
    font-size: 22px;
  }
}

.top-line {
  float: right;
  text-align: left;
}

.top-line .line-number {
  display: inline-block;
  vertical-align: middle;
}

.top-line .line-number .line-number-text {
  color: #2b2b2b;
  font-size: 15px;
  line-height: 20px;
}

.top-line .line-number .line-number-number {
  color: #0073ae;
  font-size: 22px;
  font-family: Arial;
  line-height: 30px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .top-line {
    display: none;
  }
}

/*导航*/
.top-nav-wrap {
  color: #fff;
  background: #0073ae;
}

.top-nav li {
  text-align: center;
}

.top-nav a {
  display: block;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .top-nav-wrap {
    display: none;
    position: absolute;
    z-index: 3;
    right: 0;
    width: 140px;
    max-width: 100%;
    color: #fff;
    background: rgba(0, 115, 174, 0.9);
  }
  .top-nav {
    margin-left: -15px;
    margin-right: -15px;
    padding: 5px 0;
  }
  .top-nav-link {
    line-height: 30px;
  }
  .top-nav-link:hover {
    background: #00517b;
  }
}

@media (min-width: 768px) {
  .top-nav-wrap {
    display: block !important;
    background: #0073ae;
  }
  .top-nav-li {
    position: relative;
    float: left;
    width: 14.28571%;
  }
  .top-nav-li:first-child:before, .top-nav-li:after {
    content: "";
    position: absolute;
    top: 12px;
    right: -1px;
    width: 2px;
    height: 20px;
    background: linear-gradient(90deg, #15b0ff, #003048);
  }
  .top-nav-li:first-child:before {
    right: auto;
    left: -1px;
  }
  .top-nav-link {
    position: relative;
    z-index: 1;
    line-height: 20px;
    padding: 12px 5px;
    margin: 0 1px;
  }
  .top-nav-link:hover, .top-nav-link.hover, .top-nav-link.act {
    color: #fff;
    background-color: #00517b;
  }
}

/*二级导航*/
.top-subnav {
  display: none;
  position: absolute;
  left: 1px;
  right: 1px;
  z-index: 3;
  font-size: 12px;
  padding: 2px 0 5px;
  background: rgba(0, 115, 174, 0.9);
}

@media (max-width: 767px) {
  .top-subnav {
    display: none !important;
  }
}

.top-subnav-link {
  line-height: 35px;
  color: #fff;
}

.top-subnav-link:hover {
  color: #fff;
  background: #00517b;
}

/*轮播图*/
.swiper-banner-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.swiper-banner-img:before {
  content: '';
  display: block;
  padding-top: 45%;
}

@media (min-width: 640px) {
  .swiper-banner-img:before {
    padding-top: 35%;
  }
}

@media (min-width: 992px) {
  .swiper-banner-img:before {
    padding-top: 28.125%;
  }
}

.wrapper {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .wrapper {
    padding: 30px 0;
  }
}

/*主要标题*/
.main-title {
  position: relative;
  max-width: 520px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.5em;
  line-height: 1;
}

@media (min-width: 768px) {
  .main-title {
    margin-bottom: 30px;
    font-size: 2em;
  }
}

.main-title-link {
  display: inline-block;
  color: #0073ae;
}

.main-title-link .en {
  color: #505050;
  text-transform: uppercase;
  font-family: "Arial";
  font-size: 0.6em;
}

.main-title-link .zh {
  margin-bottom: 0.2em;
  font-size: 1em;
  font-weight: bold;
}

.main-title-link:before, .main-title-link:after {
  position: absolute;
  top: 28%;
  left: 0;
  width: calc(50% - 3.5em);
  height: 0;
  content: '';
  border-top: 2px solid #0073ae;
}

.main-title-link:after {
  right: 0;
  left: auto;
}

.main-title-link[href]:hover {
  color: #00517b;
}

.content-chwidth .row {
  margin-left: -10px;
  margin-right: -10px;
}

.content-chwidth .col-xs-6 {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 640px) and (max-width: 767px) {
  .content-chwidth .col-xs-6 {
    width: 33.33333333%;
  }
}

/*首页 产品分类列表*/
.nav-item-wrap {
  font-size: 0;
  text-align: center;
  margin-bottom: 20px;
}

.nav-item-wrap .nav-item-content {
  display: inline-block;
  border-top: 2px solid #0073ae;
}

.nav-item-wrap a {
  display: inline-block;
  font-size: 13px;
  width: 11em;
  padding: 0.5em;
  border: 1px solid #bebebe;
  margin: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 350px) {
  .nav-item-wrap a {
    width: 12em;
  }
}

@media (min-width: 640px) {
  .nav-item-wrap a {
    font-size: 14px;
  }
}

.nav-item-wrap a:hover, .nav-item-wrap a.act {
  color: #fff;
  background: #0073ae;
  border-color: #0073ae;
}

.nav-item-wrap .nav-item_news {
  width: 7em;
}

@media (min-width: 350px) {
  .nav-item-wrap .nav-item_news {
    width: 8em;
  }
}

/*首页 产品中心*/
.imglink {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 235px;
  overflow: hidden;
}

.imglink-imgbox {
  position: relative;
  z-index: 1;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.imglink-imgbox:before {
  content: '';
  display: block;
  padding-top: 85%;
}

.imglink-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.imglink-textbox {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  height: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.imglink-title {
  line-height: 30px;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imglink:hover .imglink-textbox {
  height: calc(100% - 4px);
}

/*ad banner*/
.i-banner-wrap {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .i-banner-wrap {
    margin-top: 30px;
  }
}

/*首页 关于我们*/
.about-wrapper {
  color: #333;
  background: #0073ae url(../img/about-wrapper-bg.jpg) no-repeat center bottom/cover;
  padding-bottom: 100px;
}

.about-wrapper .main-title-link {
  color: #fff;
}

.about-wrapper .main-title-link .en {
  color: #fff;
}

.about-wrapper .main-title-link:hover {
  color: #fff;
}

.about-wrapper .main-title-link:before, .about-wrapper .main-title-link:after {
  border-color: #fff;
}

.about-imgbox {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}

.about-imgbox .about-img_bg {
  display: none;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-imgbox .about-img {
  border-radius: 5px;
}

.about-imgbox .text:before, .about-imgbox .text:after {
  position: absolute;
  content: '';
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.about-imgbox .text:before {
  top: 14%;
  right: 5%;
  bottom: 14%;
  left: 5%;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
}

.about-imgbox .text:after {
  top: 8%;
  right: 10%;
  bottom: 8%;
  left: 10%;
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
}

.about-imgbox .text .cname {
  position: absolute;
  top: 80%;
  left: 15%;
  opacity: 0;
  color: #fff;
  text-shadow: #0064a9 1px 0 0,#0064a9 0 1px 0,#0064a9 -1px 0 0,#0064a9 0 -1px 0;
  font-size: 18px;
  font-weight: normal;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.about-title {
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #222;
  border-bottom: 1px solid #aeaeae;
  font-size: 14px;
  font-weight: bold;
}

.about-text {
  overflow: hidden;
  max-height: 19.25em;
  text-indent: 2em;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 11;
}

.about-btn-wrap {
  margin-top: 15px;
  text-align: center;
}

.about-btn {
  display: inline-block;
  line-height: 26px;
  border-radius: 13px;
  padding: 0 15px;
  color: #fff;
  background: #0073ae;
}

.about-btn:before {
  content: '- ';
}

.about-btn:after {
  content: ' -';
}

.about-btn:hover {
  color: #fff;
  background: #00517b;
}

@media (min-width: 768px) {
  .about-imgbox {
    float: left;
    width: 46%;
    margin-bottom: 0;
  }
  .about-imgbox .about-img {
    display: none;
  }
  .about-imgbox .about-img_bg {
    display: block;
    height: 305px;
  }
  .about-textbox {
    position: relative;
    float: left;
    width: 54%;
    height: 305px;
    padding-left: 20px;
  }
  .about-btn-wrap {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 0;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .main-about:hover .about-imgbox .text:before, .main-about:hover .about-imgbox .text:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .main-about:hover .about-imgbox .cname {
    top: 65%;
    opacity: 1;
  }
}

/*首页 新闻中心*/
.imgnewslink {
  position: relative;
  display: block;
  overflow: hidden;
  height: 95px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.imgnewslink .imgnews-imgbox {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  width: 100px;
  height: 100%;
  border: 1px solid #fff;
}

.imgnewslink .imgnews-img_bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.imgnewslink .imgnews-textbox {
  position: relative;
  float: left;
  overflow: hidden;
  width: calc(100% - 100px);
  height: 100%;
  padding: 5px 10px;
}

.imgnewslink .imgnews-title {
  margin-bottom: 5px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imgnewslink .imgnews-time {
  margin-bottom: 5px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imgnewslink .imgnews-text {
  overflow: hidden;
  height: 3em;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 480px) {
  .imgnewslink {
    height: 110px;
  }
  .imgnewslink .imgnews-imgbox {
    width: 130px;
  }
  .imgnewslink .imgnews-textbox {
    width: calc(100% - 130px);
    padding: 10px 15px;
  }
  .imgnewslink .imgnews-title {
    margin-bottom: 6px;
    font-size: 15px;
  }
  .imgnewslink .imgnews-text {
    height: 3.5em;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (min-width: 768px) {
  .imgnewslink:after {
    position: absolute;
    top: 0;
    right: -111px;
    width: 111px;
    height: 100%;
    content: "";
    background-image: url(../img/imgnews-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .imgnewslink:hover:after {
    right: 0;
  }
}

.imgnewslink:hover {
  color: #fff;
  background: #0073ae;
  border-color: #0073ae;
}

/*产品库存*/
.stock-wrapper {
  background: #f1f1f1;
}

/*首页 联系我们*/
.contact-wrapper {
  background: url(../img/contact-wrapper-bg.jpg) no-repeat center/cover;
}

.main-contact-title {
  margin-bottom: 15px;
  font-size: 16px;
}

.main-contact-text {
  font-size: 15px;
  margin-bottom: 15px;
}

.main-contact-list,
.main-contact-qrcode {
  display: inline-block;
  vertical-align: top;
}

.main-contact-qrcode {
  max-width: 150px;
}

.main-contact-qrcode .img {
  border: 1px solid #a3a3a3;
}

.main-contact-qrcode .title {
  margin-top: 5px;
}

.main-contact-list {
  max-width: 370px;
  text-align: left;
  margin-bottom: 10px;
}

.main-contact-list li {
  display: inline-block;
  margin-right: 10px;
}

.main-contact-qrcode {
  text-align: center;
}

/*联系表单*/
.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: normal;
}

.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 0;
}

.contact-form .form-control:focus {
  border-color: #0073ae;
}

.contact-form textarea {
  width: 100%;
  resize: vertical;
}

.contact-form input[type=submit] {
  color: #fff;
  background: #0073ae;
  width: 100%;
  border-radius: 0;
  padding: 6px 12px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.contact-form input[type=submit]:hover {
  background: #006295;
}

/* 大屏底部  */
.foot {
  color: #fff;
  background: #0073ae;
  font-size: 13px;
  text-align: center;
}

.foot a:hover {
  color: #ddd;
}

@media (min-width: 640px) {
  .foot {
    font-size: 14px;
  }
}

.foot-nav {
  font-size: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.foot-nav li {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 0 8px;
  border-right: 1px solid #fff;
}

.foot-nav li:last-child {
  border-right: none 0;
}

@media (max-width: 639px) {
  .foot-nav {
    display: none;
  }
}

.foot-content {
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .foot-contact {
    display: none;
  }
}

.foot-copy .xs-inblock {
  display: inline-block;
  margin: 0 2px;
}

/*小屏底部*/
.foot-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  background: #0a0a0a;
  border-top: 1px solid #fff;
}

.ffixedlink {
  width: 25%;
  float: left;
  padding: 2px 0;
  text-align: center;
}

.ffixedlink:hover {
  background: #222;
}

.foot-icon {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 20px;
  overflow: hidden;
  background-image: url(../img/foot-icon.png);
  background-repeat: no-repeat;
}

.ffixedlink:nth-child(1) .foot-icon {
  background-position: 0px 0;
}

.ffixedlink:nth-child(2) .foot-icon {
  background-position: -30px 0;
}

.ffixedlink:nth-child(3) .foot-icon {
  background-position: -60px 0;
}

.ffixedlink:nth-child(4) .foot-icon {
  background-position: -90px 0;
}

@media screen and (max-width: 767px) {
  /*小屏底部fixed导航距离*/
  body {
    padding-bottom: 45px;
  }
}

/*非主页页面*/
@media (min-width: 768px) {
  .main-page {
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  .page-aside-wrap {
    width: 265px;
  }
  .page-section-wrap {
    width: calc(100% - 265px);
  }
}

.aside-item {
  margin-bottom: 15px;
}

/*侧栏*/
/*aside标题*/
.aside-title {
  position: relative;
  font-size: 18px;
  padding: 15px 20px 15px 60px;
  color: #fff;
  background: #0073ae url("../img/aside-title-bg.png") no-repeat 30px center;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*侧栏列表*/
.aside-list {
  margin-bottom: 20px;
}

.aside-list a {
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aside-list > li {
  margin-top: 3px;
}

.aside-list > li > a {
  position: relative;
  line-height: 40px;
  padding: 0 30px;
  background-color: #dfdfdf;
}

.aside-list > li > a:hover, .aside-list > li > a.act {
  color: #fff;
  background-color: #0073ae;
}

.aside-contact-title {
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 10px;
}

.aside-contact-title .en {
  font-size: 14px;
}

.aside-contact-img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.aside-contact-list {
  font-size: 13px;
}

.aside-contact-list li {
  margin-bottom: 5px;
  word-break: break-all;
  word-wrap: break-word;
}

/*section标题*/
.section-title {
  color: #222;
  border-bottom: 3px double #dcdcdc;
}

.section-title .title-text {
  float: left;
  font-size: 16px;
  line-height: 40px;
}

.section-title .pos {
  float: right;
  line-height: 40px;
}

.section-title .pos a.act, .section-title .pos a[href]:hover {
  color: #0073ae;
}

/*section内容部分*/
.section-content {
  margin: 20px 0;
}

.pagex-titlebox {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
}

.pagex-title {
  font-size: 16px;
}

.pagex-time {
  font-size: 12px;
  color: #b1b1b1;
  padding-top: 5px;
}

.pagex-imgbox {
  text-align: center;
  margin-bottom: 10px;
}

.pagex-imgbox img {
  display: block;
  max-width: 100%;
  margin: 0 auto 5px;
}

.pagex-text {
  text-indent: 2em;
  line-height: 1.75;
  margin-bottom: 10px;
}

/*新闻资讯页*/
.p-news-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 20px;
}

/*联系我们页*/
.section-content .main-contact-list {
  max-width: 400px;
}

.contact-map {
  margin-top: 15px;
}

.contact-map > img {
  display: block;
  margin: 0 auto;
}

/*小屏产品分类下拉按钮*/
.s-drop-wrap {
  margin: 15px 15px 0;
}

.s-drop-btn {
  cursor: pointer;
  color: #fff;
  background: #0073ae;
  line-height: 40px;
  padding: 0 15px;
}

.s-drop-btn span.glyphicon {
  float: right;
  top: 0;
  line-height: 40px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.s-drop-btn.nodrop {
  cursor: auto;
  text-align: center;
}

.s-drop-btn.nodrop span.glyphicon {
  display: none;
}

.s-drop-btn.act {
  background: #006295;
}

.s-drop-btn.act span.glyphicon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*小屏下拉列表*/
.s-drop-list {
  display: none;
}

.s-drop-list > li {
  margin-top: 2px;
}

.s-drop-list > li > a {
  line-height: 35px;
}
.dock {
	position: fixed;
	right: 0px;
	width: 50px;
	-moz-opacity: 0.7;
	opacity: 0.7;
	z-index: 200;
}

.dock.close {
	z-index: 50;
}

.dock ul.icons {
	position: absolute;
	list-style: none;
	right: 0px;
	padding: 0px;
	width: 50px;
	border: 1px solid #333;
	border-right: none;
	background: #111;
	-moz-border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

.dock.close ul.icons {
	right: -70px;
}

.dock ul.icons li i {
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	background: url(../images/icons.png) no-repeat;
	cursor: pointer;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	z-index: 210;
}

.dock ul.icons li.active i {
	-moz-opacity: 0.4;
	opacity: 0.4;
}

.dock ul.icons li.up i {
	background-position: -63px -150px;
}

.dock ul.icons li.tel i {
	background-position: -62px -108px;
}

.dock ul.icons li.im i {
	background-position: -63px -20px;
}

.dock ul.icons li.wechat i {
	background-position: -59px -66px;
}

.dock ul.icons li.down i {
	background-position: -63px -190px;
}

.dock ul.icons li p {
	display: block;
	position: absolute;
	top: 50px;
	right: -260px;
	padding: 15px 20px;
	height: 120px;
	color: White;
	line-height: 30px;
	border: 1px solid #333;
	border-right: none;
	background: #111;
	-moz-border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	-moz-opacity: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all .4s ease-in-out .1s;
	-moz-transition: all .4s ease-in-out .1s;
	-ms-transition: all .4s ease-in-out .1s;
	-o-transition: all .4s ease-in-out .1s;
	transition: all .4s ease-in-out .1s;
	overflow: hidden;
	z-index: 201;
}

.dock ul.icons li.active p {
	right: 50px;
	-moz-opacity: 1;
	opacity: 1;
	filter: alpha(opacity=100);
}

.dock ul.icons li.tel p {
width: 160px;
    height:150px;
    line-height:30px
}

.dock ul.icons li.im p {
width: 160px;
    height:150px;
    line-height:30px
}

.dock ul.icons li.im p a {
	display: block;
	margin-top: 12px;
	width: 100px;
	height: 35px;
	line-height: 32px;
	color: #00dfb9;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #00dfb9;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .3s ease-in-out 0s;
	-moz-transition: all .3s ease-in-out 0s;
	-ms-transition: all .3s ease-in-out 0s;
	-o-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
}

.dock ul.icons li.im p a:hover {
	color: White;
	background: #0f8773;
	border: 1px solid #0f8773;
}

.dock ul.icons li.wechat p {
width: 160px;
    height:150px;
    line-height:30px
}

.dock ul.icons li.wechat p img {
	
	border: 2px solid #000;
}

.dock a.switch {
	position: absolute;
	display: block;
	top: 270px;
	right: 11px;
	width: 26px;
	height: 26px;
	background: url(../images/icons.png) no-repeat 0px -640px;
	cursor: pointer;
	-webkit-transition-delay: .15s;
	-moz-transition-delay: .15s;
	-ms-transition-delay: .15s;
	-o-transition-delay: .15s;
	transition-delay: .15s;
}

.dock a.switch.off {
	background-position: -32px -640px;
}
