body{
  overflow-x: hidden;
  --style-color: #00549d;
}
.layout{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.header{
  width: 100%;
  height: 110px;
  background: url(../images/dhbj1.png) repeat-x;
  border-bottom: 1px solid rgba(255,255,255,.26);
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
}
.indexs .header{
  background-color: transparent;
  position: fixed;
}
.header.fixed{
  background-image: linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,.72));
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.06));
  position: fixed;
}
.logo{
  float: left;
  margin-top: 18px;
}
.logo a{
  display: flex;
  width: 96px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img{
  max-width: 100%;
  max-height: 100%;
}
.logo img.has-logo{
  display: none;
}
.language-box{
  float: right;
  margin-top: 38px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
}
.language-box .dropdown-toggle{
  font-size: 16px;
  color: #fff;
  display: block;
  padding: 5px 13px;
  font-family: 'Din';
}
.language-box .dropdown-toggle .icon-xiangxiajiantou{
  font-size: 12px;
}
.language-box .has-dropdown{
  width: 110px;
  position: absolute;
  left: 50%;
  top: 45px;
  margin-left: -55px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .15s ease-out;
}
.language-box:hover .has-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-box .has-dropdown::before{
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -10px;
  z-index: 5;
  margin-left: -10px;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.language-box .has-dropdown::after{
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -12px;
  margin-left: -12px;
  border-bottom: 12px solid rgba(0, 0, 0, 0.1);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.language-box .has-dropdown dl{
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .1);
}
.language-box .has-dropdown a{
  display: block;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
.language-box .has-dropdown a:hover{
  background-color: var(--style-color);
  color: #fff;
}
.language-box .has-dropdown img{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 5px;
}
.tell{
  float: right;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-top: 43px;
  margin-right: 20px;
  font-family: 'Din';
  display: none;
}
.nav{
  float: right;
}
.nav>ul{
  display: flex;
  align-items: center;
}
.nav>ul>li{
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}
.nav>ul>li::after{
  content: '';
  width: 1px;
  height: 10px;
  background-color: rgba(255,255,255,.6);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.nav ul li a{
  font-size: 16px;
  color: #fff;
  display: block;
  height: 110px;
  line-height: 110px;
  position: relative;
}
.nav>ul>li>a::after{
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 35px;
  transform-origin: 100%; -webkit-transform-origin: 100%;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transition:-webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  transition:transform .3s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  visibility: hidden\9;
}
.nav ul li:hover>a::after,
.nav ul li.active>a::after,
.nav ul li.is-active>a::after{
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform-origin: 0;
  -webkit-transform-origin: 0;
  visibility: visible\9;
}
.nav ul li:hover>a,
.nav ul li.active>a,
.nav ul li.is-active>a{
  /*color: var(--style-color);*/
}
.nav ul li .nav-body{
  width: 160px;
  background-color: #fff;
  border-top: 3px solid var(--style-color);
  box-shadow: 2.5px 4.33px 8px 0px rgba(0, 0, 0, .094);
  position: absolute;
  left: 50%;
  top: 110px;
  z-index: 5;
  margin-left: -95px;
  opacity: 0; 
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease-out;
}
.nav ul li:hover .nav-body,
.nav ul li.active .nav-body{
  opacity: 1;
  visibility: visible;
  z-index: 10;
  transition: all .5s 0s;
  transform: translateY(0);
}
.nav ul li .nav-body a{
  font-size: 12px;
  color: #666;
  padding: 6px;
  height: auto;
  line-height: 22px;
  text-align: center;
  background: #fff;
  display: block;
  transition: 0.5s;
}
.nav ul li .nav-body a:hover{
  background: rgba(2, 160, 231, .1);
  color: var(--style-color);
}
.fixed .logo img{
  display: none;
}
.fixed .logo img.has-logo{
  display: inline;
}
.fixed .tell{
  color: #333;
}
.fixed .nav>ul>li::after{
  background-color: #666;
}
.fixed .nav>ul>li>a::after{
  background-color: var(--style-color);
}
.fixed .nav ul li a{
  color: #333;
}
.fixed .language-box{
  border-color: #666;
}
.fixed .language-box .dropdown-toggle{
  color: #333;
}
.mobile-nav{
  width: 240px; 
  height: 100%; 
  background-color: #444; 
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  overflow: auto;
  overflow-x: hidden;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .5s ease-in-out, box-shadow .5s ease-in-out;
  transition: transform .5s ease-in-out, box-shadow .5s ease-in-out;
}
.mobile-nav.open{
  box-shadow: -10px 0 100px 10px rgba(0, 0, 0, .7);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-nav .logos{
  width: 100%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.mobile-nav .logos img{
  max-width: 160px;
}
.mobile-nav .nav-close{
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0;
  visibility: hidden;
}
.mobile-nav .nav-close::before,
.mobile-nav .nav-close::after{
  content: '';
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 12px;
}
.mobile-nav .nav-close::before{
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.mobile-nav .nav-close::after{
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}
.mobile-nav.open .nav-close{
  visibility: visible;
}
.mobile-nav>nav>ul{
  padding-top: 60px;
}
.mobile-nav>nav>ul>li>a{
  background: rgba(33,33,33,0.8);
  -webkit-transform-origin: -100% 0%;
  -moz-transform-origin: -100% 0%;
  -o-transform-origin: -100% 0%;
  -ms-transform-origin: -100% 0%;
  transform-origin: -100% 0%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(800px) rotateX(90deg) rotateY(0deg) rotateZ(0deg);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.mobile-nav>nav>ul>li:nth-child(1)>a{transition-delay: 150ms;}
.mobile-nav>nav>ul>li:nth-child(2)>a{transition-delay: 250ms;}
.mobile-nav>nav>ul>li:nth-child(3)>a{transition-delay: 350ms;}
.mobile-nav>nav>ul>li:nth-child(4)>a{transition-delay: 450ms;}
.mobile-nav>nav>ul>li:nth-child(5)>a{transition-delay: 550ms;}
.mobile-nav>nav>ul>li:nth-child(6)>a{transition-delay: 650ms;}
.mobile-nav>nav>ul>li:nth-child(7)>a{transition-delay: 750ms;}
.mobile-nav>nav>ul>li:nth-child(8)>a{transition-delay: 850ms;}
.mobile-nav>nav>ul>li:nth-child(9)>a{transition-delay: 950ms;}
.mobile-nav>nav>ul>li:nth-child(10)>a{transition-delay: 1050ms;}
.mobile-nav.open>nav>ul>li>a{
  background: rgba(68,68,68,1);
  -webkit-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
.mobile-nav nav ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid #333;
  position: relative;
}
.mobile-nav nav ul li a.drop{
  color: var(--style-color);
}
.mobile-nav .has-after{
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-nav .drop.has-after{
  -webkit-transform: rotate(223deg);
  transform: rotate(223deg);
}
.mobile-nav .has-dropdown{
  display: none;
  padding-left: 15px;
}
.mobile-nav .has-dropdown a{
  font-size: 14px;
}
.mobile-mask{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2000;
  background-color: rgba(0,0,0,.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}
.mobile-mask.is-show{
  opacity: 1;
  visibility: visible;
  z-index: 2000;
}
.hamburger-btns{
  width: 55px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 1020;
  display: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.445, 0.145, 0.355, 1);
}
.hamburger-btns .trans,
.hamburger-btns .trans:hover{
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -moz-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition:all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -ms-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.hamburger-btns .trans-fast,
.hamburger-btns .trans-fast:hover{
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
}
.hamburger-btns .burger{
  width: 17px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 5; 
  margin: 0 0 0 -10px;
  transform-origin: center;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  -ms-transform-origin: center;
}
.hamburger-btns .burger-2{
  top: 25px;
  width: 25px;
}
.hamburger-btns .burger-3{
  top: 33px;
  width: 21px;
}
.hamburger-btns.is-active .burger-1{
  top: 25px;
  width: 21px;
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.hamburger-btns.is-active .burger-2{
  top: 25px;
  width: 21px;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); filter: alpha(opacity=0);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  left: 100%;
}
.hamburger-btns.is-active .burger-3{
  top: 25px;
  width: 21px;
  -moz-transform: rotate(-225deg);
  -webkit-transform: rotate(-225deg);
  -o-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

/*banner*/
.x-banner{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.x-banner figure{
  display: block;
  line-height: 1;
  overflow: hidden;
}
.x-banner .mo-img{
  display: none;
}
.x-banner .slick-active figure{
  -webkit-animation: slideIn 2s;
  animation: slideIn 2s;
}
.x-banner .slick-active figure img{
  -webkit-animation: imgIn 2s;
  animation: imgIn 2s;
}
.x-banner .slick-active figure{
  -webkit-animation: none;
  animation: none;
}
.x-banner .slick-active figure img{
  -webkit-animation: none;
  animation: none;
}
.x-banner .swiper-pagination-bullet{
  background-color: #fff;
  border-radius: 7px;
  transition: all 0.5s ease;
}
.x-banner .swiper-pagination-bullet-active{
  width: 30px;
  background-color: #fff;
  opacity: 1;
}
.x-banner .swiper-button-prev,
.x-banner .swiper-button-next{
  width: 30px;
  height: 30px;
  background-image: unset;
  background-color: rgba(255,255,255,.6);
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .4s;
}
.x-banner .swiper-button-prev i,
.x-banner .swiper-button-next i{
  font-size: inherit;
}
.x-banner .swiper-button-prev:hover,
.x-banner .swiper-button-next:hover{
  background-color: var(--style-color);
  color: #fff;
}
.x-banner:hover .swiper-button-prev,
.x-banner:hover .swiper-button-next{
  opacity: 1;
}
.x-banner .swiper-button-prev{
  left: 0;
}
.x-banner:hover .swiper-button-prev{
  left: 2%;
}
.x-banner .swiper-button-next{
  right: 0;
}
.x-banner:hover .swiper-button-next{
  right: 2%;
}
.x-banner .ban-group{
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.ban-group .layout.wide-16{ }
.ban-group .layout.wide-16 h2.ban-title{text-shadow:1px 1px 2px rgba(18,52,94,.6);}
.ban-group .layout.wide-16 div.info-desc{text-shadow:1px 1px 2px rgba(18,52,94,.4);}
.x-banner .ban-title{
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.x-banner .info-desc{
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.x-banner .btn-wrap{
  margin-top: 20px;
}
.x-banner .btn{
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.x-banner .ban-title,
.x-banner .info-desc,
.x-banner .btn-wrap{
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-duration: 1s;
}
.x-banner .info-desc{
  transition-duration: 1.3s;
}
.x-banner .btn-wrap{
  transition-duration: 1.6s;
}
.x-banner .swiper-slide-active .ban-title,
.x-banner .swiper-slide-active .info-desc,
.x-banner .swiper-slide-active .btn-wrap{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.x-banner .scroll-bar{
  width: 10px;
  position: absolute;
  right:2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 14px;
  color: #fff;
  display: none;
  font-family: 'Din';
}
.x-banner .scroll-bar span{
  transform: rotate(90deg);
  display: block;
}
.x-banner .scroll-bar .line{
  width: 1px;
  height: 140px;
  display: block;
  margin: 30px auto 0 auto;
  background-color: var(--style-color);
}
.x-banner .scroll-bar .line::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: block;
  animation: lineScale 2s infinite cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
@keyframes lineScale{
  from { height: 0; }
  to { height: 100%;}
}

.GoTop{
  width: 40px;
  height: 40px;
  background-color: #fff;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, .18);*/
  box-shadow: 0 5px 10px rgba(51, 51, 51, .18);
  border-radius: 50%;
  position: fixed;
  right: -50px;
  bottom: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.GoTop:hover{
  background-color: var(--style-color);
  color: #fff;
}
.GoTop.is-active{
  right: 2%;
  opacity: 1;
  visibility: visible;
}

/*index*/
.idx-title{
  text-align: center;
}
.idx-title .sen{
  font-family: 'Din';
  font-size: 24px;
  color: var(--style-color);
}
.idx-title .title{
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.index-about{
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.index-about .abt-canvas{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -60vh;
  z-index: -1;
}
.index-about .idx-title{
  text-align: left;
}
.idx-about .pic{
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  overflow: hidden;
}
.idx-about .pic img{
  width: 100%;
}
.idx-about .rt{
  margin-top: 20px;
}
.idx-about .info-desc{
  font-size: 15px;
  color: #666;
  line-height: 2;
  height: 180px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.idx-about .info-desc p{ text-align:justify;
}
.idx-about .btn{
  display: inline-block;
  border-radius:50px;
  background-color: var(--style-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.idx-about .btn i{
  background-color: rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  margin-left: 14px;
}
.idx-number{
  margin-top: 20px;
}
.idx-number ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.idx-number li{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 30px;
}
.idx-number .block{
  padding-left: 70px;
  position: relative;
}
.idx-number .icon{
  width: 70px;
  position: absolute;
  top: 20px;
  left: 0;
}
.idx-number .num{
  font-size: 18px;
  color: var(--style-color);
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
  line-height: 1;
}
.idx-number .num span{
  font-family: 'Din';
  font-size: 40px;
  font-weight: bold;
}
.idx-number .pn{
  font-size: 15px;
  color: #666;
}
.index-product{
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.index-product .idx-title .sen,
.index-product .idx-title .title{
  color: #fff;
}
.index-product .idx-title .sen{
  opacity: .8;
}
.idx-pdtcate{
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  position: relative;
}
.idx-pdtcate .block{
  padding-left: 50px;
  min-height: 47px;
  position: relative;
  display: block;
  font-size: 12px;
  color: #fff;
}
.idx-pdtcate .tit{
  font-size: 0.86vw; line-height:2;
}
.idx-pdtcate .icon{
  width: 40px;
  position: absolute;
  top: 8px;
  left: 0;
  text-align: center;
}
.idx-pdtcate .swiper-button-prev,
.idx-pdtcate .swiper-button-next{
  width: 30px;
  height: 30px;
  background-image: unset;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.idx-pdtcate .swiper-button-prev i,
.idx-pdtcate .swiper-button-next i{
  font-size: inherit;
}
.idx-pdtcate .swiper-button-prev{
  left: -30px;
}
.idx-pdtcate .swiper-button-next{
  right: -30px;
}
.idx-pdtcate .swiper-pagination{
  position: static;
  margin-top: 10px;
  display: none;
}
.idx-pdtcate .swiper-pagination-bullet{
  border-radius: 7px;
  background-color: #fff;
}
.idx-product{
  margin-top: 20px;
  position: relative;
}
.idx-product .block{
  display: block;
  padding: 25px;
  background-color: #fff;
  text-align: center;
}
.idx-product .pic{
  width: 100%;
  padding-bottom:82%;
  overflow: hidden;
  position: relative;
}
.idx-product .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.idx-product .info-group{
  min-height: 150px;
  padding-top: 60px;
}
.idx-product .h2{
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.idx-product .model{
  font-size: 16px;
  color: #666;
}
.idx-product .swiper-button-prev,
.idx-product .swiper-button-next{
  width: 30px;
  height: 30px;
  background-image: unset;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.idx-product .swiper-button-prev i,
.idx-product .swiper-button-next i{
  font-size: inherit;
}
.idx-product .swiper-button-prev{
  left: -40px;
}
.idx-product .swiper-button-next{
  right: -40px;
  transform: rotateY(180deg);
}
.idx-product .swiper-pagination{
  position: static;
  margin-top: 10px;
}
.idx-product .swiper-pagination-bullet{
  background-color: #fff;
  border-radius: 7px;
  transition: all 0.5s ease;
}
.idx-product .swiper-pagination-bullet-active{
  width: 30px;
  background-color: #fff;
  opacity: 1;
}
.index-case{
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f3f3f3;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.idx-case{
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.idx-case .swiper-container{
  overflow: visible;
}
.idx-case .swiper-slide{
  padding: 20px 10px;
}
.idx-case .block{
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.idx-case .pic{
  width: 100%;
}
.idx-case .info-group{
  width: 47%;
  padding-left: 15px;
}
.idx-case .h2{
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.idx-case .info-desc{
  font-size: 15px;
  color: #666;
  line-height: 2;
  height: 120px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}
.idx-case .btn{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 21px;
  background-color: var(--style-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
.idx-case .btn i{
  background-color: rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  margin-left: 14px;
}
.idx-case .swiper-button-prev,
.idx-case .swiper-button-next{
  width: 30px;
  height: 30px;
  background-image: unset;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.idx-case .swiper-button-prev i,
.idx-case .swiper-button-next i{
  font-size: inherit;
}
.idx-case .swiper-button-prev{
  left: 40px;
}
.idx-case .swiper-button-next{
  right: 40px;
  transform: rotateY(180deg);
}
.idx-case .swiper-pagination{
  position: static;
  margin-top: 10px;
}
.idx-case .swiper-pagination-bullet{
  background-color: #fff;
  border-radius: 7px;
  opacity: 1;
}
.idx-case .swiper-pagination-bullet-active{
  background-color: var(--style-color);
}
.index-network{
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.idx-network .idx-title{
  text-align: left;
}
.idx-network .idx-title .sen,
.idx-network .idx-title .title{
  color: #fff;
}
.idx-network{
  align-items: center;
}
.idx-network .rt{
  margin-top: 20px;
}
.idx-network .info-desc{
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin-top: 20px;
  margin-bottom: 20px;
}
.idx-network .btn{
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #fff;
  border-radius: 21px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.idx-network .btn i{
  background-color: rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  margin-left: 14px;
}
.idx-map{
  width: 100%;
  position: relative;
}
.idx-map .stars-group{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx-map .region-list{
  position: absolute;
  cursor: pointer;
}
.idx-map .region-list .area-box{
  z-index: 77;
}
.idx-map .region-list .area-box .dot{
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-box-direction: normal;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 1;
  background: white;
}
.idx-map .region-list .area-box .pulse{
  position: absolute;
  border-radius: 48px;
  opacity: 0.3;
  -webkit-animation: warn 2s ease-out both;
  animation: warn 2s ease-out both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background: rgba(255, 255, 255, 0.5);
  top: -23px;
  left: -23px;
  height: 51px;
  width: 51px;
  box-shadow: 0 0 20px white;
}
.idx-map .region-list .area-box .delay-04{
  animation-delay: 1.2s;
}
.idx-map .region-list .area-box .delay-05{
  animation-delay: 1.6s;
}
.idx-map .region-list .area-box .delay-06{
  animation-delay: 2s;
}
.idx-map .postition-1{
  right: 23%;
  top: 32%;
}
.idx-map .postition-2{
  left: 15%;
  top: 32%;
}
.idx-map .postition-3{
  left: 47%;
  top: 23%;
}
.idx-map .postition-4{
  right: 31%;
  top: 49%;
}
.idx-map .postition-5{
  right: 45%;
  top: 25%;
}
.idx-map .postition-6{
  right: 70%;
  top: 76%;
}
.idx-map .postition-7{
  right: 50%;
  top: 50%;
}
@keyframes warn{
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.index-news{
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f6fbff;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.idx-news{
  margin-top: 20px;
  position: relative;
}
.idx-news .swiper-container{
  margin-left: -5px;
  margin-right: -5px;
}
.idx-news .swiper-slide{
  padding: 5px;
}
.idx-news .block{
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.02);
  padding: 20px;
  display: block;
}
.idx-news .pic{
  width: 100%;
  padding-bottom: 61%;
  overflow: hidden;
  position: relative;
}
.idx-news .pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.idx-news .info-group{
  padding: 25px 0;
}
.idx-news .h2{
  font-size: 20px;
  font-weight: bold;
  color: #333;-webkit-line-clamp: 1;
}
.idx-news .date{
  font-size: 14px;
  color: #bebebe;
}

.idx-news .info-desc{
  font-size: 15px;
  color: #666;
  height: auto;
  margin-top: 20px;
}
.idx-news .btn{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 21px;
  background-color: var(--style-color);
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
.idx-news .btn i{
  background-color: rgba(255,255,255,.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  margin-left: 14px;
}
.idx-news .swiper-button-prev,
.idx-news .swiper-button-next{
  width: 30px;
  height: 30px;
  background-image: unset;
  border: 1px solid #c8c9cc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.idx-news .swiper-button-prev i,
.idx-news .swiper-button-next i{
  font-size: inherit;
}
.idx-news .swiper-button-prev{
  left: -40px;
}
.idx-news .swiper-button-next{
  right: -40px;
}
.idx-news .swiper-pagination{
  position: static;
  margin-top: 10px;
  display: none;
}
.idx-news .swiper-pagination-bullet{
  background-color: #ccc;
  border-radius: 7px;
  opacity: 1;
}
.idx-news .swiper-pagination-bullet-active{
  background-color: var(--style-color);
}

/*footer*/
.footer{
  background-color: #000;
}
.footer-group{
  padding-top: 40px;
  padding-bottom: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-group .foot-info{
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.footer-group .foot-info>.col-md{
  width: 33.3333%;
  padding-left: 15px;
  padding-right: 15px;
}
.footer-group .code{
  display: flex;
  margin-top: 20px auto;margin-bottom:0
}
.footer-group .code li{
  width: 125px;
  text-align: center;
  margin-right: 20px;
  margin-top: 20px;
  font-size: 15px;
  color: #fff; margin:20px auto; margin-bottom:0
}
.footer-group .code li:last-child{
  margin-right: 0;
}
.footer-group .code li p{
  margin-top: 10px;
}
.footer-group .tel{
  font-size: 14px;
  color: #848484;
}
.footer-group .tel i{
  font-size: 18px;
  margin-right: 5px;
}
.footer-group .tel-num{
  font-family: 'Din';
  font-size: 35px;
  font-weight: bold;
  color:#fff;
}
.footer-group .company-info{
  font-size: 15px;
  color: #fff;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.footer-group .company-info p{
  margin-top: 5px;
}
.footer-group .company-info i{
  font-size: 20px;
  color:#fff;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-group .company-info a{
  color: #fff;
}
.footer-group .form-tit{
  font-size: 24px;
  color: #fff;
}
.footer-group .form-box{
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}
.footer-group .form-box .col-md{
  width: 100%;
  padding-left: 7px;
  padding-right: 7px;
  margin-top: 14px;
}
.footer-group .form-box .col-sm{
  width: 50%;
}
.footer-group .form-control{
  width: 100%;
  height: 45px;
  padding: 6px 12px;
  border: 1px solid #999;
  background-color: transparent;
  border-radius: 5px;
  color: #fff;
}
.footer-group textarea.form-control{
  font-family: inherit;
  height: 115px;
}
.footer-group .form-control:focus{
  border-color:#f7f7f7;
}
.footer-group .btn{
  display: block;
  width: 100%;
  height: 45px;
  background-color:rgba(255,255,255,.78);
  font-size: 18px;
  color:var(--style-color);
  border-radius: 5px;
  cursor: pointer;
}
.footer-copy{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #fff;
  opacity: .3;
}
.footer-copy a{
  color: #fff;
}
.footer-copy .foot-company{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media(min-width:768px){
  .layout{width: 750px; max-width: 750px;}
  .idx-case .block{padding: 30px;}
  .idx-case .h2{font-size: 24px;}
  .idx-case .info-group{padding-left: 40px;}
  .idx-case .info-desc{display: -webkit-box;}
  .idx-case .btn{margin-top: 0;}

}
@media(min-width:992px){
  .layout{width: 970px; max-width: 970px;}
  .idx-about,.idx-network{display: flex; margin-left: -15px; margin-right: -15px;}
  .idx-about .col-md,.idx-network .col-md{width: 50%; padding-left: 15px; padding-right: 15px;}
  .idx-about .rt,.idx-network .rt{margin-top: 0;}
  .idx-case{padding-left: 50px; padding-right: 50px;}
}
@media(min-width:1200px){
  body{padding-top: 0;}
  .layout{width: 1140px; max-width: 1140px;}
  .logo{margin-top: 18px;}
  .logo a{width: 154px; height: 72px;}
  .x-banner .swiper-button-prev,
  .x-banner .swiper-button-next{width: 50px; height: 50px; font-size: 20px;}
  .x-banner .swiper-pagination{bottom: 50px;}
  .x-banner .swiper-pagination-bullet{width: 13px !important; height: 13px !important;}
  .x-banner .swiper-pagination-bullet-active{width: 60px !important;}
  .x-banner .ban-title{font-size: 54px; letter-spacing:1px;}
  .x-banner .info-desc{font-size: 20px; letter-spacing:2px;}
  .x-banner .btn-wrap{margin-top: 30px;}
  .x-banner .btn{min-width: 180px; height: 50px; line-height: 37px; font-size: 16px; transition: all 0.5s ease;}
  .x-banner .btn:hover{background-color: #fff; color: var(--style-color);}
  .x-banner .scroll-bar{display: block;}
  .idx-title .title{font-size: 30px;}
  .index-about{padding-top: 120px; padding-bottom: 120px;}
  .idx-about{margin-left: -41px; margin-right: -41px;}
  .idx-about .col-md{padding-left: 41px; padding-right: 41px;}
  .idx-about .info-desc{margin-top: 20px; margin-bottom: 30px;}
  .idx-about .btn{min-width: 170px; height:50px; line-height:50px;}
  .idx-number ul{margin-left: -30px; margin-right: -30px;}
  .idx-number li{width: 25%; padding-left: 30px; padding-right: 30px;}
  .idx-number .num{padding-bottom: 15px; margin-bottom: 15px;}
  .idx-number .num span{font-size: 64px;}
  .index-product,.index-case{padding-top: 80px; padding-bottom: 80px;}
  .idx-pdtcate{margin-top: 50px;}
  .idx-product{margin-top: 60px;}
  .idx-product .swiper-button-prev,.idx-product .swiper-button-next{width: 60px; height: 60px; font-size: 36px; padding-top: 8px;}
  .idx-product .swiper-button-prev{left: -75px;}
  .idx-product .swiper-button-next{right: -75px;}
  .idx-product .swiper-slide{border-radius: 20px;overflow: hidden;}
  .idx-product .swiper-button-prev:hover,.idx-product .swiper-button-next:hover{background-color: var(--style-color); color: #fff;}
  .idx-product .swiper-pagination{margin-top: 50px;}
  .idx-product .swiper-pagination-bullet{width: 13px !important; height: 13px !important;}
  .idx-product .swiper-pagination-bullet-active{width: 60px !important;}
  .idx-product .block:hover .h2,.idx-case .h2:hover,.idx-news .h2:hover{color: var(--style-color);}
  .idx-case .h2{font-size: 28px;}
  .idx-case .info-desc{margin-top: 20px; margin-bottom: 30px;}
  .idx-case .btn{min-width: 150px; height: 42px; line-height: 30px;}
  .idx-case .swiper-pagination-bullet{width: 13px !important; height: 13px !important;}
  .idx-case{padding-left: 100px; padding-right: 100px;}
  .idx-case .swiper-slide{padding: 30px;}
  .idx-case .swiper-button-prev,.idx-case .swiper-button-next{width: 60px; height: 60px; display: flex; font-size: 36px; padding-top: 8px;}
  .idx-case .swiper-button-prev{left: 90px;}
  .idx-case .swiper-button-next{right: 90px;}
  .idx-case .swiper-button-prev:hover,.idx-case .swiper-button-next:hover{background-color: var(--style-color); color: #fff;}
  .index-network{padding-top: 80px; padding-bottom: 80px;}
  .idx-network .lt{width: 39%;}
  .idx-network .rt{width: 69%;}
  .idx-network .btn{min-width: 150px; height: 42px; line-height: 30px;}
  .idx-network .btn:hover{background-color: var(--style-color); border-color: var(--style-color); color: #fff;}
  .index-news{padding-top: 80px; padding-bottom: 80px;}
  .idx-news{margin-top: 50px;}
  .idx-news .btn{min-width: 150px; height: 42px; line-height: 30px; margin-top: 50px;}
  .idx-news .swiper-button-prev,.idx-news .swiper-button-next{width: 40px; height: 40px; display: flex;}
  .idx-news .swiper-button-prev{left: -70px;}
  .idx-news .swiper-button-next{right: -70px;}
  .idx-news .swiper-button-prev:hover,.idx-news .swiper-button-next:hover{background-color: var(--style-color); border-color: var(--style-color); color: #fff;}
  .idx-news .swiper-pagination{display: none;}
  .footer-group{padding-top: 85px; padding-bottom: 80px;}
  .footer-group .company-info{margin-top: 50px; padding-top: 50px;}
  .footer-group .foot-info{margin-left: -50px; margin-right: -50px;}
  .footer-group .foot-info>.col-md{padding-left: 50px; padding-right: 50px;}
  .footer-group .foot-info .lt{width: 25%;}
  .footer-group .foot-info .mt{width: 42%;}
}
@media(min-width:1440px){
  .wide-14,.wide-16{width: 1400px; max-width: 1400px;}
  .logo{margin-top: 12px;}
  .logo a{width: 233px;height: 82px;}
  .tell{display: block;}
  .nav>ul>li{padding-right: 30px; margin-right: 30px;}
  .idx-title .title{font-size: 42px;}
  .idx-about .info-desc{margin-top: 50px; margin-bottom: 60px;}
  .idx-case .info-desc{margin-top: 50px; margin-bottom: 60px;}
  .idx-network .info-desc{margin-top: 50px; margin-bottom: 60px;}
  .idx-case{padding-left: 150px; padding-right: 150px;}
  .idx-case .swiper-slide{padding: 40px 50px;}
  .idx-case .swiper-button-prev{left: 165px;}
  .idx-case .swiper-button-next{right: 165px;}
}
@media(min-width:1640px){
  .wide-16{width: 1600px; max-width: 1600px;}
  .idx-case{padding-left: 200px; padding-right: 200px;}
  .idx-case .swiper-button-prev{left: 215px;}
  .idx-case .swiper-button-next{right: 215px;}
}
@media(max-width:1440px){
.index-box5-box .item .text{ top:-26px!important;}
.index-box5-box .item:hover .text {
    transform: translateY(12%)!important;}
.index-box5-box .item .text{padding: 0px 20px!important;}
}
@media(max-width:1199px){
  body{padding-top: 60px;}
  .header .layout{position: relative;}
  .header{width: 100%; height: 60px; background-color: #fff; position: fixed; top: 0; left: 0; filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.06));}
  .indexs .header{background: #fff;}
  .logo{margin-top: 5px; position: absolute; left: 50%; margin-left: -48px;}
  .logo img{display: none;}
  .logo img.has-logo{display: inline;}
  .nav{display: none;}
  .nav ul li a{height: 60px; line-height: 60px;}
  .nav ul li .nav-body{top: 60px;}
  .language-box{margin-top: 16px; border-color: #666;}
  .language-box .dropdown-toggle{font-size: 12px; color: #333; padding: 2px 10px;}
  .hamburger-btns{display: block;}
  .x-banner .swiper-button-prev,.x-banner .swiper-button-next{display: none;}
  .index-box5-box .item .text .line{ display:none}
}

.index-box5-box {
    display: flex;
    flex-wrap: wrap; margin-top:3%;
}
.index-box5-box .item::after {
    content: '';
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    background:#00549d;
    transition: all 0.5s;
}
.index-box5-box .item {
    flex-basis: calc((100% - 60px) / 4);
    margin-right: 20px;
    position: relative;
    background: #00549d;
    overflow: hidden;
    cursor: pointer;
}
.index-box5-box .item .img {
    opacity: 1;
    transition: all 0.5s;
}
.index-box5-box .item .text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 0px 40px;
    text-align: center;
    height: 100%;
    transform: translateY(70%);
    z-index: 1;
    transition: all 0.5s;
}
.index-box5-box .item .text .small-img {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--dominant-color);
}
.index-box5-box .item .text .title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.5s;
}
.index-box5-box .item .text .line {
    width: 30px;
    height: 5px;
    background: #fff;
    margin: 20px auto;
    opacity: 0;
    transition: all 0.5s;
}
.index-box5-box .item .text .summary {
    font-size: 14px;
    line-height: 2;
    transition: all 0.5s;
    opacity: 0;
}
.index-box5-box .item .text .tip {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.5s;
    opacity: 0;
}
.index-box5-box .item .text .tip span {
    color: var(--dominant-color);
    line-height: 2;
}
.index-box5-box .item .img img{ width:100%;}
.index-box5-box .item:nth-child(4n) {
    margin-right: 0;
}

.index-box5-box .item:hover .text {
    transform: translateY(20%);
}
.index-box5-box .item:hover .text .title {
    margin-top: 20px;
}
 .index-box5-box .item:hover .text .line {
    opacity: 1;
}
.index-box5-box .item:hover .text .summary {
    opacity: 1;
}
.index-box5-box .item:hover .text .tip {
    opacity: 1;
}
.index-box5-box .item:hover::after {
    bottom: -20%;
}
.index-box5-box .item:hover .img {
    opacity: 0.2;
}
.idx-honor{ margin-top:30px;}
.idx-honor .h2 {
    font-size: 20px;
	text-align:center;
    font-weight: bold;
    color: #333;
}
.idx-honor .swiper-wrapper{padding-bottom: 48px;}
.idx-honor .swiper-pagination-bullet-active{ background:#00549d;}
.idx-honor .info-group{ padding-top:20px;}
@media(max-width:991px){
.x-banner .ban-group{top:12%;}
.x-banner{ height:26.5vh}
.index-box5-box .item{margin: 10px;    flex-basis: calc((100% - 40px) / 2);    flex-basis: calc((100% - 40px) / 2);
    margin-right: 0;}
.index-box5-box .item .text{ top:-15px;}
  .footer-group .logos{max-width: 150px;}
  .footer-group .tel-num{font-size: 22px;}
  .footer-group .form-tit{font-size: 16px;}
  
}
@media(max-width:768px){
.index-box5-box .item .text .small-img{width: 42px;
    height: 42px;}
.index-box5-box .item .text .title{ font-size:16px;    margin-top: 10px!important;}

  .footer-group{display: none;}
  .footer-group .foot-info{flex-wrap: wrap;}
  .footer-group .foot-info>.col-md{width: 100%; padding-top: 5px; padding-bottom: 5px;}
  .footer-copy .foot-company{display: block; text-align: center;}
  .idx-number .num span{ font-size:28px;}
  .index-box5-box .item .text{padding: 0px 0px!important;top: -20px!important;}
  .index-box5-box .item:hover .text{    transform: translateY(15%)!important;}
  .index-box5-box .item .text .summary{ font-size:12px;    line-height: 1.6; transform: scale(0.8);}
  
}

  .client-2 {
            position: fixed;
            right: -170px;
            top: 50%;
            z-index: 900;
        }
        
        .client-2 li a {
            text-decoration: none;
        }
        .client-2 li {
            margin-top: 1px;
            clear: both;
            height: 62px;
            position: relative;
        }
        
        .client-2 li i {
            background: url(../images/fx.png) no-repeat;
            display: block;
            width: 30px;
            height: 27px;
            margin: 0px auto;
            text-align: center;
        }
        
        .client-2 li p {
            height: 20px;
            font-size: 12px;
            line-height: 20px;
            overflow: hidden;
            text-align: center;
            color: #fff;
        }
        
        .client-2 .my-kefu-qq i {
            background-position: 4px 5px;
        }
        
        .client-2 .my-kefu-tel i {
            background-position: 0 -21px;
        }
        
        .client-2 .my-kefu-liuyan i {
            background-position: 4px -53px;
        }
        
        .client-2 .my-kefu-weixin i {
            background-position: -34px 4px;
        }
        
        .client-2 .my-kefu-weibo i {
            background-position: -30px -22px;
        }
        
        .client-2 .my-kefu-ftop {
            display: none;
        }
        
        .client-2 .my-kefu-ftop i {
               width: 33px;
    height: 31px;
    background-position: -23px -47px;
    background-size: 52px 82px;
        }
        .client-2 .my-kefu-ftop .my-kefu-main{
            padding-top: 6px;
        }
        
        .client-2 .my-kefu-left {
            float: left;
            width: 62px;
            height: 47px;
            position: relative;
        }
        
        .client-2 .my-kefu-tel-right {
            font-size: 16px;
            color: #fff;
            float: left;
            height: 24px;
            line-height: 22px;
            padding: 0 15px;
            border-left: 1px solid #fff;
            margin-top: 14px;
        }
        
        .client-2 .my-kefu-right {
            width: 20px;
        }
        
        .client-2 .my-kefu-tel-main {
            background: #1b8844;
            color: #fff;
            height: 53px;
            width: 230px;
            padding:9px 0 0;
            float: left;
        }
        
        .client-2 .my-kefu-main {
            background: #1b8844;
            width: 97px;
            height: 53px;
            position: relative;
            padding:9px 0 0;
            float: left;
        }
        
        .client-2 .my-kefu-weixin-pic {
            position: absolute;
            left: -130px;
            top: -24px;
            display: none;
            z-index: 333;
        }
        
        .my-kefu-weixin-pic img {
            width: 115px;
            height: 115px;
        }
    