/*** 

====================================================================
  Resources / Css Files
====================================================================

 ***/
@import url('bootstrap.min.css');
@import url('swiper.min.css');
@import url('animation.css');
@import url('jquery.fancybox.min.css');

*{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 20px;
  overflow-x: hidden;
}

body {
  font-family: 微软雅黑, Arial, Tahoma, sans-serif;
  font-size: .8rem;
  color: #181818;
  background-color: #fff;
  overflow-x: hidden;
}

:root {
  --primary: #16aa9e;
}

*:focus {
  outline: none;
}

a{
  color: #181818;
}

a:hover{
  text-decoration: unset;
  cursor: pointer;
}

p{
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul{
  margin-bottom: 0;
  list-style: none;
}

img{
  image-rendering: -moz-crisp-edges; /* Firefox */
  image-rendering: -o-crisp-edges; /* Opera */      
  image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */ 
  image-rendering: crisp-edges; 
  -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}

.container-fluid{
  max-width: 1500px;
  margin: auto;
  padding-left: 2%;
  padding-right: 2%;
}

/**
 * 头部
 */
.headermain{
  background-color: #04b6b6;
}

.headermain .d1 img{
  -webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}

.headermain .d2{
  width: 70%;
}

.headermain .d2 ul li{
  display: inline-block;
}

.headermain ul li>a{
  display: block;
  height: 105px;
  line-height: 105px;
  position: relative;
  font-size: 18px;
  font-weight: bolder;
  color: #fff;
}

.headermain ul li>a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.headermain ul li>a:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 2px;
}

.headermain ul li>a.active:after{
  background-color: var(--primary);
}

.headermain ul li>a:hover, .headermain ul li>a:focus, .headermain ul li>a:active {
  color:#fff ;
}

.headermain ul .sub-menu{
  position: absolute;

  padding: 0 25px;
  min-width: 150px;
  background: #f5f5f5;
  opacity: 0;
  transition: all .6s;
  transform:translateY(15%);
  transition: all .3s;
  height: 0; 
  z-index: 999;
  overflow: hidden;
}

.headermain ul .sub-menu a{
  height: 40px;
  line-height: 40px;
  display: block;
}

.headermain ul .sub-menu a:hover{
  color: var(--primary);
}

.headermain ul li:hover .sub-menu{
  opacity: 1;
  height: unset;
  padding-bottom: 35px;
  transform:translateY(0);
}

.headermain ul li:hover .sub-menu a{
  line-height: 65px;
}

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
.banner .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.banner .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transition: 3s cubic-bezier(0.59, 0.5, 0.41, 0.92);
  -moz-transition: 3s cubic-bezier(0.59, 0.5, 0.41, 0.92);
  -o-transition: 3s cubic-bezier(0.59, 0.5, 0.41, 0.92);
  transition: 3s cubic-bezier(0.59, 0.5, 0.41, 0.92);
}
.banner .swiper-container .pagination-all {
  position: absolute;
  bottom: 3%;
  width: 100%;
  left: 0;
  z-index: 100;
  text-align: center;
}

.banner .swiper-container .swiper-pagination {
  position: relative;
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 0.9rem;
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background: none;
  opacity: 1;
  border-radius: 0;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet:before {
  content: '';
  width: 0;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 30px;
  top: 10px;
  opacity: 0;
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet:last-child {
  width: 40px !important;
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet:last-child:before {
  display: none !important;
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 90px;
  color: var(--primary);
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active:before {
  opacity: 1;
  width: 50px;
  transition: all 5s;
  -webkit-transition: all 5s;
  -moz-transition: all 5s;
  -ms-transition: all 5s;
}

@keyframes bounces {
  0%,
  15%,
  47%,
  73%,
  89%,
  100% {
    animation-timing-function: ease-out;
    transform: translate3d(0, 0, 0);
  }
  30%,
  32% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -10px, 0);
  }
  60% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -8px, 0);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -4px, 0);
  }
  94% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -2px, 0);
  }
}
.banner .mouse {
  position: absolute;
  width: 100px;
  bottom: 3%;
  left: 12%;
  z-index: 10;
}
.banner .mouse img {
  width: 1.5rem;
  animation-name: bounces;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: both;
}

/**
 * 
 * 关于欧顿
 */

.common-title{
  text-align: center;
  padding: 85px 0;
  background-color: #eef1f6;
  overflow: hidden;
}
.common-title .small-title{
  font-size: 36px;
  font-weight: bolder;
  margin-top: 10px;
  color: #262626;
}

.aboutSection{
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.aboutSection h2.title{
  font-size: 36px;
  color: #262626;
  font-weight: bolder;
  margin-top: 15%;
}

.aboutSection .sub-title{
  font-size: 18px;
  font-weight: lighter;
  color: #a4a4a4;
  margin-bottom: 45px;
}

.aboutSection .div-text{
  max-width: 750px;
  margin-left: auto;
  padding-left: 2%;
}

.aboutSection p.des{
  line-height: 32px;
  text-align: left;
  color: #646464;
  margin-bottom: 25px;
}

.aboutSection .items{
    margin-top: 65px;
}

.aboutSection .item p{
  margin-top: 8px;
  text-align: center;
}

.aboutSection .item a{
  display: block;
  color: #262626;
}

.aboutSection .item img{
  transition: transform .6s;
}

.aboutSection .item a:hover{
  color: var(--primary);
}

.aboutSection .item a:hover img{
  transform: rotateY(180deg);
}

.numSection{
  padding-top: 65px;
}


.numSection .title{
  font-size: 30px;
  font-weight: bolder;
  letter-spacing: 5px;
}

.numSection .title strong{
  color: var(--primary);
  display: inline-block;
}

.numSection .nums {
  margin:45px 0;
}

.numSection .nums .row>div:not(:last-child){
  border-right: 1px solid #eee;
}

.numSection .nums .numItem{
  padding: 45px 15px;
}

.numSection .numItem .number{
  font-size: 66px;
  font-weight: bolder;
  color: var(--primary);
}

.numSection .numItem span{
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #262626;
  vertical-align: revert;
  margin-left: 5px;
}

.numSection .numItem span:after{
  position: absolute;
  content: "+";
  top: -40px;
  left: 0;
  color: var(--primary)
}

.indexNum{
  background-color: #16aa9e;
  color: #fff;
  padding: 25px;
}

.indexNum .numItem .d1{
  margin-right: 15px;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  border: 3px solid #252b2b;
  border-radius: 50%;
}

.indexNum .numItem .counter{
  font-size: 36px;
  line-height: 1;
  margin-right: 5px;
}

.indexNum .numItem .des{
  font-size: 14px;
  margin-top: 8px;
}


.indexPro{
  background-image: url(../images/probg.jpg);
  background-size: cover;
}

.index-pro-lists .swiper-slide{
  border-right: 2px solid #fff;
  height: auto;
  position: relative;
}

.index-pro-lists .swiper-slide:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: rgba(4,182,182,.65);
  z-index: -1;
  transition: all .6s ease;
}

.index-pro-lists .swiper-slide:hover:after{
  height: 100%;
}

.index-pro-lists .swiper-slide .item{
  height: 100%;
}

.index-pro-lists .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}



.index-pro-lists .swiper-slide .div-img{
  width: 145px;
  height: 145px;
  margin: 105px auto 45px;
  border-radius: 50%;
  overflow: hidden;
  border:2px solid #04b7b4;
}

.index-pro-lists .swiper-slide .div-img img{
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.index-pro-lists .swiper-slide .div-text{
  padding: 25px 25px;
  margin-bottom: 85px;
}


.index-pro-lists .swiper-slide .div-text .title{
  font-size: 20px;
  height: 65px;
  line-height: 50px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.index-pro-lists .swiper-slide .div-text .title:after{
  position: absolute;
  content: "";
  width: 45px;
  height: 4px;
  background-color: var(--primary);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.index-pro-lists .swiper-slide:hover .div-text .title:after{
  background-color: #fff;
  transition-delay: .3s;
}


.index-pro-lists .swiper-slide .div-text .des{
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.indexCommonT{
  padding: 45px 0;
  text-align: center;
  color: #fff;
  background-color: var(--primary);
}

.indexCommonT .cntT{
  font-size: 30px;
}

.indexCommonT .enT{
  font-size: 24px;
}

/**
 * 产品中心
 */

.proSection {
  padding-top: 65px;
  padding-bottom: 45px;
  background-image: url(../images/product/bg.jpg);
  background-size: cover;
}
.proSection .common-title{
  background-color: unset;
  padding-top: 0;
}

.swiperP .item .top{
  /*background-image:linear-gradient(to bottom,#fff,#b7b7b7);*/
  /*padding: 25px 15px 15px 15px;*/
  position: relative;
}

.swiperP .item{
  overflow: hidden;
}

.swiperP .item .des{
  position: relative;
  z-index: 2;
}

.swiperP .item .div-img{
  position: relative;
  text-align: center;
  overflow: hidden;
/*  z-index: 1;
  transform: translate(20%,6%);
  margin-top: -15%;
  margin-bottom: -65px;
  overflow: hidden;*/
}

.swiperP .item .div-img img{
  transition: transform .6s;
  max-width: 100%;
  width:100%;
}

.swiperP .item .bottom{
  background-color: #fff;
  padding: 20px 15px;
}

.swiperP .item a{
  display: block;
  color: #090909;
}

.swiperP .item h3.title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

.swiperP .item p.des{
  color: #7a7a7a;
  min-height: 50px;
  line-height: 26px;
  padding-left: 10px;
  position: relative;
  overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box!important;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.swiperP .item p.des:before{
  /*position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #cccccc;
  top: 15px;
  left: 0;
  border-radius: 50%;*/
}

.swiperP .item a:hover .div-img img{
  transform: scale(1.05);
}

.swiperP .item .bottom span{
  display: inline-block;
  position: relative;
  min-width: 45px;
}

.swiperP .item .bottom span:after{
  position: absolute;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border:1px solid #99d7c9;
  left: -4px;
  top: -4px;
  transform: scale(.5);
  opacity: 0;
  transition: transform .3s;
}

.swiperP .item .bottom span:before{
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border:1px solid #ddf2ed;
  left: -8px;
  top: -8px;
  transform: scale(.5);
  opacity: 0;
  transition: transform .3s;
}

.swiperP .item a:hover .bottom span:before,.swiperP .item a:hover .bottom span:after{
  transform: scale(1);
  opacity: 1;
}

.pro-control{
  border-bottom: 4px solid #e2e2e2;
  position: relative;
  margin-top: 85px;
  margin-bottom: 85px;
}

.pro-control .control{
  position: absolute;
  width: 25%;
  height: 8px;
  content: "";
  left: 15%;
  top: -2px;
  background-color: var(--primary);
}

.pro-control .control span{
  display: inline-block;
  width: 25px;
  height: 50px;
  border-radius: 25px 0 0 25px;
  line-height: 50px;
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  font-family: cursive;
  transition: all .3s;
}



.pro-control .control span:nth-child(1){
  margin-left: calc(50% - 25px);
  text-align: right;
  padding-right: 3px;
}

.pro-control .control span:nth-child(2){
  border-radius: 0 25px 25px 0;
  text-align: left;
  padding-left: 3px;
}

.pro-control .control span:hover{
    cursor: pointer;
    background-color: #88c442;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--primary);
  height: 4px;
  width: 0;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

}
.hvr-underline-from-left:hover:before{
  width: 100%;
}

/**
 * 行业应用
 */
.inSection a.item{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.inSection a.item .div-img{
  overflow: hidden;
  height: 100%;
}

.inSection a.item .div-img img{
  width: 100%;
  height: 100%;
  transition: all .6s; 
}

.inSection a.item .div-text{
  position: absolute;
  width: 100%;
  padding: 15px;
  top: 0;
  color: #fff;
}

.inSection a.item .div-text strong{
  font-size: 30px;
}

.inSection a.item .div-text p{
  color:rgba(255,255,255,.5);
  font-size: 18px;
  font-weight: bold;
}

.inSection a.item .readMore{
  position: absolute;
  width: 100%;
  bottom: 0;
  line-height: 30px;
  color: #fff;
  transform: translateY(100%);
  transition: all .6s;
  background-color: var(--primary);
  padding: 10px 15px;
}

.inSection a.item:hover .readMore{
  transform: translateY(0);
}

.inSection a.item:hover .div-img img{
  transform: scale(1.1);
}

.inSection .common-title p{
  color: #7a7a7a;
  font-size: 18px;
  margin-top: 10px;
}



/**
 * 合作客户
 */
.parSection{
  background-image: url(../images/partner/client-bg.jpg);
  background-size: cover;
  overflow: hidden;
}

.parSection .common-title{
  background-color: unset;
}

.parSection .small-title{
  letter-spacing: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.parSection .small-title span{
  color: #e1262a;
}

.parSection .common-title p{
  color: #7a7a7a;
  font-size: 18px;
}

.parSection .main{
  padding-top: 25px;
  padding-bottom: 85px;
}

/**
 * 我们的优势
 */
.advSection{
  background-image: url(../images/adv/adv-bg.jpg);
  background-size: 100% auto;
  background-position: bottom;
  padding-bottom: 85px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.advSection .common-title{
  background-color: unset;
}

.advSection .item img{
  margin: 20px 0;
}

.advSection .item strong{
  font-size: 20px;
  display: block;
  color: #4bb9a0;
  margin-bottom: 15px;
}

.advSection .item p{
  color: #676767;
  height: 65px;
}

.item-m{
  position: relative;
}

.circle{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation:circleRoate 20s infinite linear ; 
}

.circle span{
    display: inline-block;
    position: absolute;
    content: "";
    top: 50%;
    left: -4%;
    transform: rotate(-75deg);
}

@keyframes circleRoate{  
    from{
      transform: rotate(0deg);
    }  
    to{
      transform: rotate(360deg);
    }  
} 

.newsSection .common-title{
  background-color: unset;
}

.newsSection a.tjNews{
  display: block;
  width: 100%;
  padding: 4%;
  background-image: url(../images/news/tj-bg.jpg);
  background-size: cover;
  color: #fff;
}

.newsSection .newsList{
  margin-top: 25px;

  overflow: hidden;
}

.newsSection .ltitle{
  font-size: 24px;
  font-weight: bold;
  color: #262626;
  position: relative;
  padding-left: 20px;
}

.newsSection .ltitle:before{
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border:3px solid #4bb9a0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.newsSection .ltitle span{
  color: #8b8b8b;
}

.newsSection .rtitle a{
  display: inline-block;
  color: #262626;
  border:1px solid #d6d6d6;
  padding: 10px 35px;
  transition: all .3s;
}

.newsSection .rtitle a+a{
  margin-left: 25px;
}

.newsSection .rtitle a:hover{
  color: #fff;
  background-color: #4bb9a0;
  border:1px solid #4bb9a0;
}

.newsSection .tjNews .title{
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.newsSection .tjNews  p.des{
  font-size: 14px;
   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsSection .tjNews .more{
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.newsSection .tjNews .div-img{
  overflow: hidden;
}

.newsSection .tjNews .div-img img{
  width: 100%;
  transition: transform .6s;
}

.newsSection .tjNews:hover .div-img img{
  transform: scale(1.1);
}

.newsSection .item{
  margin-bottom: 30px;
  padding-top: 15px;
  transition: all .3s;
}

.newsSection .item a{
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid #cecece;
}

.newsSection .item .d1{
  text-align: center;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #cecece;
  transition: all .6s;
}

.newsSection .item .d1 strong{
  font-size: 24px;
  display: block;
}

.newsSection .item .d1 p{
  font-size: 14px;
  color: #aaaaaa;
}

.newsSection .item .d2 .title{
  font-size: 20px;
   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}

.newsSection .item .d2 p.des{
  font-size: 14px;
   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.newsSection .item:hover{
  background-image: url(../images/news/item-bg.jpg);
  background-size: 100% 100%;
}


.newsSection .item:hover .d1{
  padding-left: 15px;
}

.newsSection .item:hover a{
  color: #fff;
}

.newsSection .item:hover .d1 p{
  color: #fff;
}

.indexNews{
  padding: 65px 0 145px 0;
  background-image: url(../images/newsBg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.indexNews .iTit{
  font-size: 24px;
  margin-bottom: 25px;
}

.indexNews .divVideo{
  position: relative;
}

.indexNews .divVideo .videoBtn{
    position: absolute;
    width: 100%;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
}

.indexNews .divVideo .videoBtn span{
  display: inline-block;
  width: 55px;
  height: 55px;
}

.indexNews .divVideo .videoBtn span svg{
  fill: #fff;
}

.indexNews .divVideo .div-img{
  overflow: hidden;
}

.indexNews .divVideo .div-img img{
  transition: all .3s ease;
}

.indexNews .divVideo:hover .div-img img{
  transform: scale(1.1);
}

.newsList .divMwnu{
  margin-left: 45px;
}

.newsList .divMwnu .itemm{
  margin-bottom: 20%;
}

.newsList .divMwnu .itemm a{
  display: block;
  min-width: 360px;
  padding: 20px 15px;
  text-align: center;
  border-left: 4px solid var(--primary);
  background-color: #fff;
  font-size: 24px;
  color: #111;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.newsList .divMwnu .itemm a:after{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--primary);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .6s ease;
}

.newsList .divMwnu .itemm a:hover:after{
  width: 100%;
}

.newsList .divMwnu .itemm a:hover{
  color: #fff;
}

/*.newsList.idnexnewsList .item .d1{
  max-height: 200px;
  min-width: 300px;
  max-width: 300px;
  margin: 15px 0;
  overflow: hidden;
}

.newsList.idnexnewsList .item .d1{
  border-right: unset;
}*/

.newsList.idnexnewsList .item .d1{
  padding-right: 15px;
  margin-right: 15px;
  color: #fff;
  border-right: 1px solid #aaaaaa;
  min-width: 100px;
  text-align: center;
}

.newsList.idnexnewsList .item .d1 .t{
  font-size: 30px;
  font-weight: bold;
}

.newsList.idnexnewsList .item .d1 .m{
  font-size: 14px;
}

.Partners{
  padding: 65px 0;
}

.Partners ul{
  margin-left: -40px;
}

.Partners ul li a{
  display: block;
  text-align: center;
  padding: 15px;
  background-color: #fff;
  border:2px solid var(--primary);
} 

.Partners .swiper-container{
  padding-bottom: 65px;
}

.Partners .swiper-container .swiper-pagination-bullet-active{
  background-color: var(--primary);
}

/**
 * 首页联系信息
 */

.conSection{
  overflow: hidden;
}

.conSection .main{
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  border-radius: 1px;
  margin-top: 45px;
  margin-bottom: 45px;
  text-align: center;
  padding: 65px 20px;
  background-image: url(../images/earth.png);
  background-size: cover;
  overflow: hidden;
}

.conSection .main h2{
  font-size: 30px;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

.conSection .main h2 span{
  color: var(--primary);
}

.conSection .main .item{
  position: relative;
}

.conSection .main .item:after{
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #a6abaa;
  right: -5%;
}

.conSection .main .itemL:after{
  opacity: 0;
}

.conSection .main .item p{
/*  overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box!important;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;*/
}

.conSection .main .item p.p2{
  font-size: 26px;
  font-weight: bold;
  color: var(--primary);
}

.conSection .main .item strong{
  display: block;
  font-size: 20px;
  margin:15px 0;
}

/**
 * 底部
 */
.mainFooter{
  padding: 65px 0;
  background-image: url(../images/footer/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.mainFooter a{
  color: #fff;
}

.mainFooter ul{
  margin-left: -40px;
}

.mainFooter .d1{
  padding-right: 25px;
  border-right: 1px solid rgba(255,255,255,.4);
  margin-right: 25px;
}

.mainFooter .d2{
  border-right: 1px solid rgba(255,255,255,.4);
  margin-right: 25px;
  padding-right: 25px;
}

.mainFooter .d4{
  max-width: 900px;
  padding-right: 25px;
}

.mainFooter .wx .item+.item{
    margin-left: 15px;
  }

.mainFooter .fmiddle{
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid rgba(255,255,255,.4);
}

.mainFooter .fmiddle .title{
  font-size: 18px;
  margin-bottom: 15px;
}

.mainFooter .wx p{
    text-align: center;
    margin-top: 5px;
  }

.mainFooter .ftop p+p{
  font-size: 18px;
  margin-top: 5px;
}

.mainFooter .fmiddle ul li{
  font-size: 14px;
}

.mainFooter .fmiddle ul li a{
  display: block;
  line-height: 26px;
}

.mainFooter .fmiddle ul li a:hover{
  color: var(--primary);
}

.mainFooter .copyright{
  margin-top: 25px;
}

/**
 * 企业简介
 */
.pageTit{
  position: relative;
  color: #fff;
}

.pageTit .div-text{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25px;
}
.pageTit{
  /*background-repeat: no-repeat;
  background-size: cover;
  padding-top: 125px;
  color: #fff;
  padding-bottom: 15px;
  overflow: hidden;*/
}

.pageTit h2.title{
  font-size: 30px;
  margin-bottom: 5%;
  line-height: 45px;
  font-weight: bold;
}

.pageTit div.cur{
  padding-left: 35px;
  background-image: url(../images/home.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.pageTit div.cur a{
  color: #fff;
}

.pageTit div.cur a:hover{
  color: var(--primary);
}

.bCate {
  background-color: #fff;
}

.bCate .main{
  max-width: 650px;
}

.bCate .main a{
  font-weight: bold;
  display: block;
  position: relative;
  padding: 25px 15px;
  transition: color .3s;
}

.bCate .main a:after{
  position: absolute;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all .6s;
}

.bCate .main a:hover,.bCate .active a{
  color: var(--primary);
}

.bCate .main a:hover:after{
  width: 100%;
  left: 0;
}

.bCate .active a:after{
  width: 100%;
  left: 0;
}


.jjSection{
  padding: 65px 0;
  background-color: #eef1f6;
  overflow: hidden;
}

.jjSection .title h2{
  font-size: 26px;
  font-weight: bold;
}

.jjSection .title p{
  color: #9fa1a4;
  font-size: 18px;
  margin-bottom: 25px;
}

.jjSection .div-img{
  margin-bottom: 25px;
}

.jjSection .content p{
  text-indent: 30px;
  line-height: 36px;
  color: #616264;
} 

/**
 * 企业文化
 */
.culSection{
  padding: 65px 0;
  background-color: #eef1f6;
  overflow: hidden;
}

.culSection h3.title{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 35px;
  text-align: center;
}

.culSection .item{
  background-color: #fff;
  height: 100%;
}
.culSection .item .tb{
  position: relative;

}

.culSection .item .tb img{
  transform: translateY(-50%);
  transition: all .6s;
}

.culSection .item .div-text{
  padding: 0 15px;
}

.culSection .item h4{
  font-size: 20px;
  margin-top: -35px;
  font-weight: bold;
  color: #009899;
}

.culSection .item p{
  font-size: 14px;
  line-height: 26px;
  padding-bottom: 15px;
}

.culSection .item:hover{
  cursor: pointer;
}

.culSection .item:hover .tb img{
    transform: translateY(-50%) rotateY(180deg);
}

.hisSection{
  background-image: url(../images/qyjj/his-bg.jpg);
  background-size: cover;
  padding-top: 65px;
  overflow: hidden;
}

.hisSection h3.title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.cSection{
  padding: 65px 0;
  background-color: #eef1f6;
  overflow: hidden;
}

.cSection h3.title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}

.jjSection .zzjg{
  background-color: #fff;
  padding: 25px 15px;
  margin: 35px 0;
}

.hSection,.nnewsSection{
  padding: 45px 0;
}

.hSection .item{
  margin-bottom: 25px;
  position: relative;
}

.hSection .item .div-img{
  position: relative;
  padding: 15px;
  border:1px solid #f2f2f2;
}
.hSection .overlay-link{
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background: rgba(3, 188, 190, 0.12);
}

.hSection .overlay-link a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}


.hSection .overlay-link a span{
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  margin-top: 60%;
  width: 45px;
  height: 45px;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary);
  border-radius: 50%;
  transition: all .6s;
}

.hSection .overlay-link a img{
  position: absolute;
  top: calc(50% - 39px);
  left: calc(50% - 39px);
}

.hSection .item:hover .div-img .overlay-link{
    opacity: 1;
}

.hSection .item:hover .div-img a span{
  margin-top: 30%;
}

.hSection .item .div-text{
  text-align: center;
  padding: 15px;
}

.hSection .item .div-text a{
  transition: all .6s;
}

.hSection .item:hover .div-text{
  background-color: var(--primary);
  color: #fff;
}

.hSection .item:hover .div-text a{
  color: #fff;
}

.hSection .title h2{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 35px;
}


.techSh .title{
  color: var(--primary);
  margin-top: 25px;
  font-weight: bold;
}

.jjSection .techSh{
  padding: 15px 25px;
}

.jjSection .techSh p{
  line-height: 36px;
}

.downSection{
  padding: 65px 0;
  background-color: #eef1f6;
}

.downSection h2.title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.downSection .downLists a{
  display: inline-block;
}

.downSection .downLists .item{
  padding: 25px 15px;
}

.downSection .downLists a+a{
  margin-left: 15px;
}

.downSection .downLists{
    border:1px solid var(--primary);
    margin-top: 35px;
    margin-bottom: 45px;
}

.downSection .downLists .item:not(:last-child){
  border-bottom: 1px solid #c4edfe;
}

.downSection .downLists .item:nth-child(odd){
  background-color: #f2f9fc;
}

.downSection .downLists .item:nth-child(even){
  background-color: #fff;
}

.downSection .downLists .item img{
  margin-right: 5px;
}

.downSection .table{
  font-size: 14px;
}

.downSection .table .tdmore{
  max-width: 650px;
}

.downSection .table input[type=checkbox]{
 margin-right: 15px;
 margin-left: 5px;

}
.downSection .form1{
  margin-top: 35px;
  margin-bottom: 45px;
}

.downSection .form1 .conInfo{
  max-width: 850px;
  margin: auto;
}

.downSection .form1 .conInfo input{
  border: 1px solid #eee;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  font-size: 14px;
}

.downSection .form1 button{
  border:none;
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 45px;
  text-align: center;
  margin-top: 25px;
}


.yyscSection{
  padding-top: 65px;
  padding-bottom: 85px;
  background-color: #eef1f6;
}

.yyscSection h2.title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.yyscSection .item:nth-child(even) .row{
  flex-direction: row-reverse;
}

.yyscSection .scLists{
  margin-top: 45px;
}

.yyscSection .item{
  overflow: hidden;
  margin-bottom: 25px;
}

.yyscSection .item .div-img img{
  width: 100%;
}

.yyscSection .item .div-text{
  background-color: #fff;
  padding: 15% 10%;
  height: 100%;
}

.yyscSection .item .div-text h4.cTit{
  font-size: 26px;
  font-weight: bold;
}

.yyscSection .item .div-text .eTit{
  font-size: 18px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 35px;
  padding-bottom: 20px;
  position: relative;
  font-weight: bold;
}

.yyscSection .item .div-text .eTit:after{
  position: absolute;
  content: "";
  width: 35px;
  height: 4px;
  background-color: var(--primary);
  left: 0;
  bottom: 0;
}

.yyscSection .item:hover{
  cursor: pointer;
}

.yyscSection .item:hover .div-text .eTit{
  color: #a3cfd0;
}

.yyscSection .item:hover .div-text h4.cTit{
  color: var(--primary);
}

.yyscSection .item .div-img{
  overflow: hidden; 
}

.yyscSection .item .div-img img{
  transition: all .6s;
}

.yyscSection .item:hover .div-img img{
  transform: scale(1.2);
}


.nconSection .infos{
  background-color: #fff;
  margin-top: 45px;
  padding: 45px 2%;
}

.nconSection .info{
  /*border: 1px solid #adadad;*/
  margin-bottom: 25px;
/*  min-height: 380px;
  padding: 35px 25px;
  font-size: 14px;
  color: #262626;*/
}

.nconSection .info img{
  width: 100%;
}

.nconSection .info1{
  min-height: 300px;
}

.nconSection .info strong{
  display: block;
  color: #009899;
  font-size: 18px;
  margin-top: 5px;
}

.nconSection .info p.p1{
  font-weight: bold;
  color: #009899;
  margin: 5px 0;
  font-size: 16px;
}

.nconSection .info p.p2{
  color: #3fa7a8;
}

.nconSection .info p.p2 span{
  display: inline-block;
  margin-right: 10px;
}

.nconSection .detInfo{
  margin-top: 15px;
}

.nconSection .detInfo p{
  line-height: 30px;
}

/**
 * 产品中心
 */

.nproSection{
  padding-top: 65px;
  padding-bottom: 85px;
  background-color: #eef1f6;
}

.mainSlider .title{
  font-size: 26px;
  font-weight: bold;
  padding: 35px 25px;
  color: #fff;
  background-image: url(../images/product/title-bg.jpg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #009899;
}

.mainSlider{
  background-color: #fff;
  display: block;
}

.mainSlider ul{
  margin-left: -40px;
}

.mainSlider .item{
  margin-bottom: 4px;
  border-bottom: 4px solid #eef1f6;
}

.mainSlider .card-header{
  display: block;
  padding-left: 15px;
  border-bottom: unset;
  background-color: #fff;
  transition: padding-left .6s ease-out;
}

.mainSlider .card-header.active button.btn-title{
  color: var(--primary);
  font-weight: bold;
}

.mainSlider .card-header:hover{
  padding-left: 25px;
}

.mainSlider .card-header button.btn-title{
  padding: 0 15px 0 25px;
  display: block;
  position: relative;
  box-shadow: none;
  font-size: 16px;
  border:none;
  background: #fff;
}

.mainSlider .card-header button.btn-title:after{
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--primary);
  left: 0;
  top: 50%;
}

.mainSlider .card-header:hover a{
  color: var(--primary);
}

.mainSlider .item-c{
  padding-left: 35px;
  padding-bottom: 25px;
  padding-right: 15px;
  transition: padding-left .6s ease-out;
}

.mainSlider .item-c a{
  display: block;
  font-size: 14px; 
}

.mainSlider .item-c a:hover,.mainSlider .item-c a.active{
  color: var(--primary);
}

.mainSlider .item-c a:not(:last-child){
  margin-bottom: 10px;
}

.nproLists .item{
  margin-bottom: 25px;
  overflow: hidden;
  background-color: #fff;
}

.nproLists .item a{
  display: block;
  transition: all .6s;
}

.nproLists .item .div-img{
  position: relative;
  overflow: hidden;
}

.nproLists .item .div-img img{
  transform: scale(1);
  transition: transform .6s ease;

}

.nproLists .item .more{
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  transform: translate(-100%,-100%);
}

.nproLists .item .div-text p{
  padding: 15px;
  border-top: 1px solid #dadada;
}

.nproLists .item:hover .more{
  transform: translate(0,0);
}

.nproLists .item:hover a{
  color: var(--primary);
  font-weight: bold;
}

.nproLists .item:hover .div-img>img{
  transform: scale(1.1);
}

.conSection .pcontitle{
   display: block;
   font-size: 30px;
   font-weight: bold;
   margin-bottom: 35px;
   padding-bottom: 15px;
   position: relative;
}

.conSection .pcontitle:after{
  position: absolute;
  content: "";
  width: 35px;
  height: 4px;
  background-color: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/**
 * 新闻资讯
 */
.nnewsSection{
  background-color: #eef1f6;
}

.nnewsSection .title h2{
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}

.nnewsList{
  margin-top: 45px;
}

.nnewsList .item{
  margin-bottom: 25px;
}

.nnewsList .item a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: #fff;
  color: #262626;
  transition: all .3s;
}

.nnewsList .item .div-img{
  max-width: 300px;
  overflow: hidden;
}

.nnewsList .item .div-img img{
  transition: transform .6s;
}

.nnewsList .item .div-text{
  padding-left: 25px;
  width: 100%;
}

.nnewsList .item p.title{
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.nnewsList .item p.des{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 26px;
  margin-bottom: 25px;
  font-size: 14px;
}

.nnewsList .item .detail{
  display: inline-block;
  padding: 10px 25px;
  font-size: 14px;
  background-color: #009899;
  color: #fff;
}

.nnewsList .item .time{
  font-size: 14px;
}

.nnewsList .item:hover a{
  background-image: url(../images/news/item-bg.jpg);
  background-size: cover;
  background-color: unset;
  color: #fff;
}

.nnewsList .item:hover .div-img img{
  transform: scale(1.1);
}

.nnewsList .item:hover .detail{
  background-color: #fff;
  color: #009899;
}

/**
 * 新闻详情
 */
.nnewsSection .newsDetail{
  background-color: #fff;
  padding: 45px 25px;
  margin-top: 45px;

}

.nnewsSection .newsDetail h2.nTit{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.nnewsSection .newsDetail .meta{
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.nnewsSection .content{
    min-height: 250px;
}

.prev-next{
  margin-top: 25px;
}


.prev-next .d1 a:hover{
  color: var(--primary);
}

.prev-next .d2 a.readMore{
  padding: 10px 25px;
  background-color: var(--primary);
  color: #fff;
  display: inline-block;
}


.nproDetail .div-img{
  background-color: #fff;
}

.nproDetail .div-img img{
  width: 100%;
}


.nproDetail p.title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.nproDetail p.title:after{
  position: absolute;
  content: "";
  width: 4px;
  height: 24px;
  background-color: var(--primary);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nproDetail .s1{
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.nproDetail p.des{
  min-height: 185px;
  margin-bottom: 15px;
}

.nproDetail .con-bot .title{
  margin-top: 45px;
}

.nproDetail .con-bot .title span{
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  padding: 10px 65px 10px 15px;
  border-top-right-radius: 25px;
  background-color: var(--primary);
}

.nproDetail .content{
  padding: 35px 25px;
  min-height: 350px;
  background-color: #fff;
}

.div-page a{
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border:1px solid #dadada;
  transition: all .3s;
}

.div-page .page-num-current,.div-page a:hover{
  color: #fff;
  background-color: var(--primary);
}

.nproDetail .content table{
  font-size: 14px;
}

.nproDetail .content table td{
  padding: 15px;
}

.nproDetail .content table td p{
  word-break: break-word;
}


















