.pc{
  display: block;
}
.mobile{
  display: none;
}
.pad{
  display: none;
}
@font-face {
  font-family: 'ziti';
  src: url("./fonts/impact.ttf");
}
/*头部*/
.header{
  width: 100%;
  position: relative;
  height: 90px;
}
.container{
  padding: 0 5%;
}
.logo{
  float: left;
  padding: 15px 0 0 0;
}
.logo a{
  display: block;
}
.logo img{
  float: left;
  height: 57px;
}
.logo-tit{
  float: left;
  margin-left: 8px;
}
.logo-tit strong{
  color: #0272bc;
  font-size: 0;
  font-weight: normal;
  font-family: 'impact'
}
.logo-tit strong span{
  color: #0bad4a;
  font-family: 'impact'
}
.logo-tit p{
  color: #212121;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav{
  margin-left: 10%;
  width: 57%;
  float: left;
}
.nav ul li{
  line-height: 90px;
  margin: 0 2%;
  float: left;
  width: 9%;
}
.nav ul li>a{
  display: block;
  color: #212121;
  font-size: 16px;
  background: url("nav-li.png") no-repeat center right;
  position: relative;
}
.nav ul li>a:after{
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background: #0272bc;
  position: absolute;
  bottom: 0;
  transition: all 0.5s;
  left: -4px;
}
.nav ul li.active>a:after{
  width: 100%;
  left: -4px;
}
.nav ul li>a:hover:after{
  width: 100%;
  transition: all 0.5s;
}
.nav ul li:hover>a{
  color: #0272bc;
  background: url("nav-li-h.png") no-repeat center right;
}
.nav ul li.active>a{
  color: #0272bc;
  background: url("nav-li-h.png") no-repeat center right;
}
.nav ul li:last-child{
  margin: 0 0 0 3%;
}
.nav-erji{
  width: 100%;
  position: absolute;
  top: 100px;
  z-index: 999;
  background: #fcfcfd;
  left: 0;
  height: 276px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.nav ul li:hover .nav-erji{
  opacity: 1;
  visibility: visible;
  top: 90px;
  transition: all 0.5s;
}
.erji-tit{
  width: 30%;
  background: #535554;
  position: absolute;
  left: 0;
  text-align: right;
  height: 100%;
}
.erji-tit strong{
  color: #dbdcdd;
  font-size: 48px;
  display: block;
  text-transform: uppercase;
  padding-right: 10%;
  padding-top: 70px;
}
.erji-tit p{
  color: #dbdcdd;
  padding-right:10%;
  font-size: 30px;
  margin-top: -40px;
}
.erji-list{
  width: 65%;
  position: absolute;
  right: 0;
  padding: 50px 0;
  background: #fcfcfd;
}
.erji-img{
  width: 25%;
  float: left;
  position: relative;
}
.erji-img:after{
  display: block;
  content: '';
  width: 1px;
  height: 173px;
  background: #bfc8ce;
  position: absolute;
  right: -15px;
  top: 0;
}
.erji-img .list{
  width: 90%;
  height: 172px;
  overflow: hidden;
}
.erji-img .list img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erji-li{
  width: 57%;
  float: right;
  margin-right: 12%;
}
.erji-list1{
  width: 65%;
  position: absolute;
  right: 0;
  padding: 50px 0;
  background: #fcfcfd;
}
.erji-img1{
  width: 25%;
  float: left;
  position: relative;
}
.erji-img1:after{
  display: block;
  content: '';
  width: 1px;
  height: 173px;
  background: #bfc8ce;
  position: absolute;
  right: -9px;
  top: 0;
}
.erji-img1 .list1{
  width: 90%;
  height: 172px;
  overflow: hidden;
}
.erji-img1 .list1 img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erji-li1{
  width: 57%;
  float: right;
  margin-right: 12%;
}
.erji-li1 dl{
  width:20%;
  float: left;
  position: relative;
}
.erji-li1 dl>a{
  display: block;
  line-height: 50px;
  padding: 0 3%;
  color: #2c2c2c;
  text-indent: 15px;
  font-size: 16px;
}
.erji-li1 dl>a.on{
  background: #016cba url("nav-jt.png") no-repeat center right 10px;
  color: #fff;
}

.erji-li>a{
  display: block;
  width: 26%;
  margin-right: 6%;
  float: left;
  line-height: 50px;
  color: #2c2c2c;
  text-indent: 15px;
  font-size: 16px;
}
.erji-li a:nth-child(3n){
  margin-right: 0;
}
.erji-li a.on{
  background: #016cba url("nav-jt.png") no-repeat center right 10px;
  color: #fff;
}
.h-tel{
  width: 17%;
  position: absolute;
  top: 0;
  right: 0;
  height: 90px;
  line-height: 90px;
  background: #0272bc;
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }

  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
.h-tel .htel-img{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  float: left;
  text-align: center;
  margin-top: 22px;
  margin-left:8%;
}
.h-tel .htel-img img{
  display: inline-block;
  margin-top: -47px;
  vertical-align: middle;
  -webkit-animation: tada 1.5s ease both infinite;
  -o-animation: tada 1.5s ease both infinite;
  animation: tada 1.5s ease both infinite;
}
.h-tel strong{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-indent: 10%;
  display: block;
}

/*banner*/
.banner {
  width: 100%;
  position: relative;
  z-index: 5;
  height: 90vh;
}
.imga {
  display: block;
  position: relative;
}
.text_move .imga{
  -webkit-animation: scaleUpDown 35.5s forwards cubic-bezier(.25,.46,.45,.94);
  animation: scaleUpDown 35.5s forwards cubic-bezier(.25,.46,.45,.94);
}
@-webkit-keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.002);
    transform: scale(1.002);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUpDown {
  from {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ban{
  height: 100%;
}
.ban .swiper-wrapper{
  /* 通过改变animation-timing-function 制作弹性切换效果 */
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.banner-inner {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.slide-inner a{
  display: block;
  height: 100%;
}

.banner .swiper-slide .slide-inner .ban-img{
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);

}

.banner .swiper-slide1 .slide-inner .ban-img img{
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s;
}

.banner .swiper-slide1.text_move .slide-inner .ban-img  img{
  transform: translateY(0);
  opacity: 1;
}
.banner .swiper-slide2 .slide-inner .ban-img img{
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s;
}

.banner .swiper-slide2.text_move .slide-inner .ban-img  img{
  transform: translateY(0);
  opacity: 1;
}
.banner .swiper-slide3 .slide-inner .ban-img{
  top: 55%;
  width: 100%;
}
.banner .swiper-slide3 .slide-inner .ban-img img{
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.banner .swiper-slide3 .slide-inner .ban-img img{
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s;
}

.banner .swiper-slide3.text_move .slide-inner .ban-img  img{
  transform: translateY(0);
  opacity: 1;
}
.banner .swiper-slide4 .slide-inner .ban-img{
  top: 55%;
  width: 100%;
}
.banner .swiper-slide4 .slide-inner .ban-img img{
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.banner .swiper-slide4 .slide-inner .ban-img img{
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s;
}

.banner .swiper-slide4.text_move .slide-inner .ban-img  img{
  transform: translateY(0);
  opacity: 1;
}
.ban-next {
  right: 5%;
  background: url("ban-next.png") no-repeat center center;
  width:57px!important;
  height: 57px!important;
}
.ban-next:after{
  display: none;
}
.ban-prev {
  left: 5%;
  background: url("ban-prev.png") no-repeat center center;
  width: 57px!important;
  height: 57px!important;
}
.ban-prev:after{
  display: none;
}
.next-box{
  position:absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  height: 60px;
  z-index: 100;
}
@-webkit-keyframes bounce-down {
  25% {-webkit-transform: translateY(-5px);}
  50%, 100% {-webkit-transform: translateY(0);}
  75% {-webkit-transform: translateY(5px);}
}
@keyframes bounce-down {
  25% {transform: translateY(-5px);}
  50%, 100% {transform: translateY(0);}
  75% {transform: translateY(5px);}
}
.next-box img{
  cursor: pointer;
  display: inline-block;
  -webkit-animation: bounce-down 2s linear infinite;
  animation: bounce-down 2s linear infinite;
}


/*首页产品*/
.container1{
  width: 1600px;
  margin: 0 auto;
}
.index1{
  width: 100%;
  position: relative;
  padding: 3% 0;
  background: url("index1.jpg") no-repeat center center;
  background-size: cover;
}
.title{
  text-align: center;
  padding-bottom: 30px
}
.title h3{
  color: #333333;
  font-size: 70px;
  font-family: 'impact';
}
.title h3:after{
  display: block;
  content: '';
  width: 208px;
  height: 15px;
  margin: 0 auto;
  background: url("line.png") no-repeat center bottom;
}
.title p{
  color: rgba(51,51,51,0.22);
  font-size: 30px;
  font-family: ziti;
  text-transform: uppercase;
}

.index1-center{
  width: 100%;
  margin-top: 3%;
}
.index1-left{
  width: 23%;
  float: left;
  margin-left: 10%;
  background: url("index1-icon1.png") no-repeat left top;
  margin-top:30px;
  padding-top:28px;
  height: 492px;
  position: relative;
  z-index: 150;
}
.index1-left .swiper-slide{
  margin-top: 10px;
  height: 25px!important;
}
.index1-left p{
  color: #797979;
  font-size: 16px;
}
.index1-left p:before{
  display: block;
  content: '-';
  color: #797979;
  font-size: 16px;
  float: left;
}
.index1-left span{
  color: #1f1f1f;
  font-size: 16px;
  visibility: hidden;
  opacity:0;
  padding-top: 10px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.index1-left .swiper-slide-thumb-active{
  height: 65px!important;
  margin-bottom: 30px!important;
}
.index1-left .swiper-slide-thumb-active p{
  font-weight: bold;
  color: #030303;
  font-size: 28px;
}
.index1-left .swiper-slide-thumb-active p:before{
  display: none;
}
.index1-left .swiper-slide-thumb-active span{
  visibility: visible;
  opacity: 1;
}
.pro-more{
  width:140px;
  height: 46px;
  line-height: 46px;
  background: #0272bc;
  position: absolute;
  bottom: 13%;
  left:0;
  text-align: center;
  z-index: 999;
  transition: all 0.5s;
}
.pro-more a{
  color: #fff;
  font-size: 16px;
}
.pro-more:hover{
  background: #49c341;
  transition: all 0.5s;
}
.index1-right{
  width:62%;
  position: absolute;
  right: 0;
  z-index: 99;
}
/*.index1-right .swiper-slide {*/
/*  width: 70%!important;*/
/*}*/
.index1-right .swiper-slide-active{
  width: 100%;
}
.index1-right .swiper-slide img {
  display: block;
  width: 100%;
}
.index1-right .pro-img{
  width: 100%;
  height: 520px;
}
.index1-right .pro-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-line:before{
  display: block;
  content: '01';
  color: #030303;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: -5px;
}
.pro-line:after{
  display: block;
  content: '07';
  color: #030303;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: -30px;
  left: -5px;
}
.pro-line{
  width: 5px;
  height: 468px;
  left: 5%;
  background: #fff;
  border-radius: 2.5px;
}
.pro-line .swiper-pagination-progressbar-fill{
  background: #49c341;
}
/*干化污泥对比*/
.index2{
  width: 100%;
  position: relative;
  padding: 3% 0;
  height: 785px;
  background: url("index2.jpg") no-repeat center center;
}
.index2 .container1{
  position: relative;
  height: 100%;
}
.index2-left{
  position: absolute;
  left: 0;
  width:40%;
  padding-top: 5%;
}
.index2-left h3{
  color: #fff;
  font-size: 48px;
  font-family: ziti;
}
.index2-left p{
  color: #fff;
  font-size: 36px;
}
.index2-left a{
  color: #fff;
  font-size: 18px;
  display: block;
  position: relative;
  z-index: 100;
  margin-top: 75px;
  text-indent: 20px;
  line-height: 32px;
  width: 127px;
  background: url("gh-jt.png") no-repeat center right;
}
.index2-left a:before{
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background: #0272bc;
  position: absolute;
  left: 0;
  z-index:-1;
  border-radius: 50%;
  transition: all 0.5s;
}
.index2-left a:hover:before{
  left: 45px;
  transition: all 0.5s;
}
.index2-center{
  width: 100%;
}
.index2-right{
  width: 623px;
  height: 505px;
  position: absolute;
  right: 12%;
  top:9%;
  background:#fff;
  overflow: hidden;
}
.index2-right .swiper-slide h3{
  color: #030303;
  font-size: 28px;
  font-weight: bold;
  padding: 30px 0 30px 39px;
}
.gh-img{
  width: 545px;
  height:360px;
  margin: 0 auto;
}
.gh-img img{
  display: block;
  width: 100%;
  height:100%;
  object-fit:cover;
}
.gh-next{
  width: 39px!important;
  height: 40px!important;
  right: 0!important;
  top: 60%!important;
  background:url("g-next.png") no-repeat center center;
}
.gh-next:hover{
  background:url("g-next1.png") no-repeat center center;
}
.gh-prev{
  width: 39px!important;
  height: 40px!important;
  left: 0!important;
  top: 60%!important;
  background:url("g-prev.png") no-repeat center center;
}
.gh-prev:hover{
  background:url("g-prev1.png") no-repeat center center;
}
.index2-bottom{
  position: absolute;
  bottom: 0;
  height: 210px;
  width: 100%;
  left: 0;
  background:rgba(0,0,15,0.5);
}
.index2-bottom h3{
  color: #a4a4a4;
  font-size: 16px;
  padding:30px 0 ;
}
.index2-bottom h3 span{
  color: #49c341;
}
.index2-bottom .swiper-slide a{
  display: block;
  font-size: 18px;
  color: #1f1f1f;
  background:#ffff;
  position: relative;
  line-height: 20px;
  text-align: center;
  min-height: 60px;
  padding-top: 20px;
}
.index2-bottom .swiper-slide.on a{
  color: #fff;
  background: #0272bc;
}
.index2-bottom .swiper-slide a:after{
  display: block;
  content: '';
  width: 0;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.index2-bottom .swiper-slide.on a:after{
  display: block;
  content: '';
  width: 100%;
  background: #49c341;
  position: absolute;
  bottom: 0;
  left: 0;
}
.index2-bottom .swiper-slide a:hover{
  color: #fff;
  background: #0272bc;
}
.index2-bottom .swiper-slide a:hover:after{
  width: 100%;
  background: #49c341;
  transition: all 0.5s;
}
.gh1-prev{
  width: 22px!important;
  height: 39px!important;
  left: -50px!important;
  top: 60%!important;
  background: url("h-prev.png") no-repeat center center;
}
.gh1-prev:hover{
  background: url("h-prev1.png") no-repeat center center;
}
.gh1-next{
  width: 22px!important;
  height: 39px!important;
  right: -50px!important;
  top: 60%!important;
  background: url("h-next.png") no-repeat center center;
}
.gh1-next{
  background: url("h-next1.png") no-repeat center center;
}
/*公司简介*/
.index3{
  width: 100%;
  position: relative;
  padding: 3% 0;
  background: #f2f2f2;
}
.index3-left{
  width: 60%;
  float: left;
}
.index3-left h3{
  color: #0272bc;
  font-size: 70px;
  font-family: 'impact';
}
.index3-left p{
  color: #0272bc;
  font-size: 28px;
  margin-top: -20px;
}
.index3-left-img{
  width: 100%;
  height: 663px;
  overflow: hidden;
  margin-top: 55px;
}
.index3-left-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index3-right{
  width: 32%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.11);
  float: right;
  border-top: 8px solid #0272bc;
  padding: 115px 4%;
}
.index3-right h3{
  color: #0272bc;
  font-size: 45px;
  font-family: 'impact'
}
.index3-right h4{
  color: #727273;
  font-size: 16px;
  padding-top: 15px;
}
.index3-right h4:after{
  display: block;
  content: '';
  width: 48px;
  height: 3px;
  background: #0272bc;
  margin: 32px 0;
}
.index3-tit{
  color: #646468;
  font-size: 18px;
  line-height: 40px;
}
.index3-right ul{
  margin-top: 49px;
}
.index3-right ul li{
  float: left;
  width: 33%;
  height: 100px;
  position: relative;
}
.index3-right ul li a{
  display: block;
}
.index3-right ul li:nth-child(1){
  background:url("c1.png") no-repeat center top;
}
.index3-right ul li:nth-child(2){
  background:url("c2.png") no-repeat center top;
}
.index3-right ul li:nth-child(3){
  background:url("c3.png") no-repeat center top;
}
.index3-right ul li p{
  color: #646468;
  font-size: 18px;
  text-align: center;
  padding-top: 70px;
}
.index3-right ul li p span{
  font-size: 16px;
}
.index3-right ul li:hover:nth-child(1){
  background:url("c11.png") no-repeat center top;
}
.index3-right ul li:hover:nth-child(2){
  background:url("c22.png") no-repeat center top;
}
.index3-right ul li:hover:nth-child(3){
  background:url("c33.png") no-repeat center top;
}
.index3-right ul li:hover p{
  color: #0272bc;
}
.com-more{
  margin-top: 100px;
}
.com-more a{
  color: #646468;
  font-size: 16px;
  line-height: 31px;
  display: block;
  text-indent: 8px;
}
.com-more a:before{
  display: block;
  content: '';
  width: 31px;
  height: 31px;
  background: url("jia.png") no-repeat center center;
  float: left;
}
.com-more a:after{
  display: block;
  content: '';
  width: 400px;
  height: 3px;
  background: #0272bc;
  float: right;
  margin-top: 15px;
}
.com-more a:hover{
  color: #0272bc;
  font-weight: bold;
  font-style: italic;
}
/*优势*/
.index4{
  width: 100%;
  position: relative;
  padding: 3% 0;
  height: 962px;
  background: url("index4.jpg") no-repeat center center;
}
.index4-left{
  width: 30%;
  float: left;
  padding-top: 10%;
}
.index4-left h3{
  color: #fff;
  font-size: 70px;
  font-family: ziti;
}
.index4-left p{
  color: #fff;
  font-size: 28px;
  margin-top: -20px;
}
.index4-right{
  width:65%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.normal-inner h2{
  color: #fff;
  font-size: 36px;
  width: 60px;
  text-align: center;
  margin: 0 auto;
  height: 55%;
  position: relative;
  top: 0;
  line-height: 40px;
  padding-top: 253px;
}
.normal-inner p:before{
  display: block;
  content: '';
  width: 48px;
  height: 3px;
  background: #fff;
  margin: 50px auto;
}
.normal-inner p{
  color: #fff;
  font-size: 92px;
  font-family: ziti;
  text-align: center;
  padding-top: 200px;
}
.active-inner h2{
  color: #fff;
  font-size: 40px;
  padding-top: 243px;
  text-align: center;
  position: relative;
  z-index: 100;
}
.active-inner h2:after{
  display: block;
  content: '';
  width: 48px;
  height: 3px;
  background: #fff;
  margin: 50px auto;
  position: relative;
  z-index: 100;
}
.active-inner p{
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: lighter;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  text-align: center;
}
.cloud-product-box{
  height: 100%;
}
.cloud-product-ul{
  width:100%;
  height: 100%;
}
.cloud-product-wrapper{
  height: 100%;
}
.cloud-product{
  height: 100%;
}
.cloud-product-ul li{
  position:relative;
  width:27.8%;
  height:100%;
  float:left;
  border-right: 1px solid rgba(224,224,244,0.3);
}
.cloud-product-ul li:last-child{
  border-right: none;
}
.active-img{
  width: 100%;
  height:100%;
  overflow: hidden;
  position: absolute;
  z-index: 50;
  top: 0;
}
.active-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.normal-inner{
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  -o-transition:all .5s
}
.active-inner{
  position:relative;
  display:none;
  height:100%;
  -moz-opacity:0;
  -khtml-opacity:0;
  opacity:0;
  transition:all .5s;
  -moz-transition:all .5s;
  -webkit-transition:all .5s;
  -o-transition:all .5s
}
.cloud-product-ul li.active .active-inner{
  display:block;
  -moz-opacity:1;
  -khtml-opacity:1;
  opacity:1
}
.cloud-product-ul li.active .normal-inner{
  display:none;
  -moz-opacity:0;
  -khtml-opacity:0;
  opacity:0
}
.cloud-product-ul li{
  -webkit-transition:width .15s linear;
  -o-transition:width .15s linear;
  -moz-transition:width .15s linear;
  transition:width .15s linear
}
.cloud-product-ul li.active{
  z-index:9;
  width:44%;
}
/*新闻*/
.index5{
  width: 100%;
  position: relative;
  padding: 3% 0;
  background: #f6f6f6;
}
.index5-title h3{
  color: #0272bc;
  font-size: 90px;
  font-family: ziti;
}
.index5-title p{
  color: #0272bc;
  font-size: 28px;
  margin-top: -20px;
}
.index5-title a{
  display: block;
  width: 153px;
  height: 48px;
  border-radius: 5px;
  background: #016cba url("gh-jt.png") no-repeat center right 25px;
  text-indent: 30px;
  float: right;
  position: relative;
  z-index: 100;
  margin-top: -120px;
  line-height: 48px;
  color: #fff;
  font-size: 14px;
  transition: all 0.5s;
  overflow: hidden;
  border: 3px solid #016cba;
}
.index5-title a:hover{
  color: #016cba;
  background: #fff url("gh-jt1.png") no-repeat center right 25px;
}
.index5-center{
  width: 100%;
  position: relative;
  padding-top: 20px;
}
.news1{
  width: 32.8%;
  float: left;
  background: #fff;
  height: 555px;
  position: relative;
}
.n1-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.n1-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.n1-tit{
  width: 86%;
  padding: 40px 7%;
  background: rgba(1,108,186,0.7);
  position: absolute;
  bottom: 0;
}
.n1-tit h3{
  color: #fff;
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url("gh-jt.png") no-repeat center right;
}
.n1-tit h3 span{
  float: right;
}
.news2{
  width: 32.8%;
  height: 555px;
  float: left;
  margin: 0 0.8%;
}
.news2 ul{
  height: 100%;
}
.news2 ul li{
  width: 90%;
  height: 274px;
  padding: 0 5%;
  margin-bottom: 2%;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.news2 ul li:nth-child(2){
  margin-bottom: 0;
}
.news2 ul li h3{
  color: #333333;
  font-size: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 30px;
}
.news2 ul li p{
  font-size: 16px;
  line-height: 23px;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical ;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 25px;
}
.n2-time{
  width: 100%;
  float: left;
  margin-top: 38px;
  background: url("gh-jt2.png") no-repeat center right;
}
.n2-time strong{
  color: #333333;
  font-size: 38px;
  display: block;
}
.n2-time span{
  color: #333;
  font-size: 14px;
}
.news2 ul li:hover{
  background: #016cba;
}
.news2 ul li:hover h3,.news2 ul li:hover p{
  color: #fff;
}
.news2 ul li:hover .n2-time strong,.news2 ul li:hover .n2-time span{
  color: #fff;
}
.news2 ul li:hover .n2-time{
  background: url("gh-jt.png") no-repeat center right;
}
.news3{
  width: 32.8%;
  height: 555px;
  float: right;
}
.news3 ul{
  height: 100%;
}
.news3 ul li{
  padding:0 5%;
  width: 90%;
  height:180px;
  background: #fff;
  margin-bottom: 2%;
}
.n3-time{
  width: 25%;
  text-align: center;
  float: left;
  border-right: 1px solid rgba(1,108,186,0.45);
  height: 110px;
  margin-top: 32px;
}
.n3-time strong{
  color: #333;
  font-size: 38px;
  display: block;
  padding-top: 10px;
}
.n3-time span{
  color: #333;
  font-size: 14px;
  display: block;
}
.news3 ul li:last-child{
  margin-bottom: 0;
}
.n3-tit{
  float: right;
  width: 70%;
  position: relative;
  height: 100px;
  margin-top: 32px;
}
.n3-tit h3{
  font-size: 24px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical ;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.n3-tit img{
  position: absolute;
  bottom: 0;
}
.news3 ul li:hover{
  background: #016cba;
}
.news3 ul li:hover .n3-time span,.news3 ul li:hover .n3-time strong,.news3 ul li:hover .n3-tit h3{
  color: #fff;
}
.news3 ul li:hover .n3-tit img{
  filter: grayscale(100%) brightness(600%);
}
.news3 ul li:hover .n3-time{
  border-right: 1px solid #fff;
}
/*在线留言*/
.index6{
  width: 100%;
  position: relative;
  padding: 3% 0;
  background: url("index5.jpg") no-repeat center center;
  height: 680px;
  background-size: cover;
}
.title1 h3{
  color: #fff;
}
.title1 h3:after{
  display: block;
  content: '';
  width: 208px;
  height: 6px;
  margin: 0 auto;
  background: url("line1.png") no-repeat center center;
}
.title1 p{
  color: rgba(255,255,255,0.22);
}
.index6-mes{
  width: 1200px;
  margin: 0 auto;
  margin-top: 65px;
}
.index6-mes input{
  display: block;
  height: 50px;
  line-height: 50px;
  text-indent: 50px;
  margin-bottom: 2%;
  margin-right: 2%;
}
.index6-mes textarea{
  display: block;
  height: 50px;
  line-height: 50px;
  text-indent: 50px;
}
.index6-mes .name{
  width: 41%;
  float: left;
  background:#fff url("name.png") no-repeat center left 20px;
}
.index6-mes .mobile{
  width: 41%;
  float: left;
  background:#fff url("mobile.png") no-repeat center left 20px;
}
.index6-mes #content{
  width: 41%;
  float: left;
  margin-right: 2%;
  background:#fff url("content.png") no-repeat center left 20px;
}
.index6-mes .code{
  display: block;
  height: 50px;
  line-height: 50px;
  text-indent:10px;
  width: 41%;
  float: left;
  background:#fff;
}
.index6-mes .code img{
  display: block;
  float: right;
  margin-top: -45px;
}
.index6-mes .submit{
  display: block;
  width: 160px;
  height: 125px;
  background:#0bad4a;
  font-size: 16px;
  text-align: center;
  line-height: 118px;
  color: #fff;
  float: right;
  margin-top: -74px;
}
.superli ul{
  width: 65%;
  margin: 0 auto;
}
.superli ul li{
  position: relative;
  float:left;
  cursor:pointer;
  background-size:cover;
  position: relative;
  transition: all 0.3s;
}
.superli ul li:nth-child(1){
  width:216px;
  height:216px;
  background:url(m1.png) no-repeat center;
  animation:myfirst linear infinite 2s;
  margin-right: 167px;
}
@keyframes myfirst {
  0% {margin-top:80px;}
  50% {margin-top:108px;}
  100% {margin-top:80px;}
}
.superli ul li:nth-child(2){
  width:171px;
  height:171px;
  background:url(m2.png) no-repeat center;
  animation:myfirst1 linear infinite 4s;
  margin-right: 250px;
}
@keyframes myfirst1 {
  0% {margin-top:120px;}
  50% {margin-top:148px;}
  100% {margin-top:120px;}
}
.superli ul li:nth-child(3){
  width:209px;
  height:209px;
  background:url(m3.png) no-repeat center;
  animation:myfirst2 linear infinite 6s;
}
@keyframes myfirst2 {
  0% {margin-top:100px;}
  50% {margin-top:128px;}
  100% {margin-top:100px;}
}
.superli ul li p{
  color:#fff;
  text-align:center;
  font-size:18px;
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.superli ul li:hover{
  transform: scale(1.05);
  transition: all 0.3s;
}
/*联系我们*/
.index7{
  width:100%;
  position: relative;
  padding: 3% 0;
}
.index7-s{
  padding: 45px 0 32px 0;
  border-bottom: 1px solid #a3a3a3;
}
.index7-s p{
  color: #a3a3a3;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  margin: 30px 0;
}
.index7-sea{
  width: 670px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
}
/*.index7-sea .search_text{*/
/*  width: 87%;*/
/*  float: left;*/
/*  background:#eeeeee;*/
/*  color: #757575;*/
/*  font-size: 14px;*/
/*  text-indent: 30px;*/
/*  height: 60px;*/
/*  line-height: 60px;*/
/*  border: none;*/
/*  position: relative;*/
/*  z-index: 100;*/
/*}*/
.index7-sea .search_text{
  display:block;
  width:100%;
  height:60px;
  color: #757575;
  line-height: 60px;
  font-size: 14px;
  border:none;
  background:#eeeeee;
  position:  relative;
  z-index: 10;
  text-indent: 30px;
}
.index7-sea .input-text{
  display:inline-block;
  *display:inline;
  *zoom:1;
  width:87%;
  height:100%;
  line-height:60px;
  border:none;
  position:  relative;
  vertical-align: top;
}
.index7-sea .input-text > input:focus {
  background-color: transparent;
  border-color: transparent;
}
.index7-sea .input-text > input:focus ~ .input-border {
  background-color: white;
}
.index7-sea .input-text > input:focus ~ .input-border:first-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 100%;
}
.index7-sea .input-text > input:focus ~ .input-border:first-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.index7-sea .input-text > input:focus ~ .input-border:last-of-type {
  background: transparent;
}
.index7-sea .input-text > input:focus ~ .input-border:last-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100%;
}
.index7-sea .input-text > input:focus ~ .input-border:last-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
  top: 0;
}
.index7-sea .input-text .input-border {
  bottom: -1px;
  display: block;
  left: -1px;
  position: absolute;
  top: -1px;
  right: -1px;
}
.index7-sea .input-text .input-border:before,
.index7-sea .input-text .input-border:after {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  background-color: #49c341;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.index7-sea .input-text .input-border:first-of-type:before {
  height: 2px;
  left: 0;
  top: 0;
  width: 0;
}
.index7-sea .input-text .input-border:first-of-type:after {
  height: 0;
  right: 0;
  top: 0;
  width: 2px;
}
.index7-sea .input-text .input-border:last-of-type:before {
  background-color: #49c341;
  height: 2px;
  top: calc(100% - 2px);
  right: 0;
  width: 0;
}
.index7-sea .input-text .input-border:last-of-type:after {
  background-color: #49c341;
  height: 0;
  top: calc(100% - 2px);
  left: 0;
  width: 2px;
}
.index7-sea input::-webkit-input-placeholder{
  font-size: 14px;
  color: #757575;
}
.index7-sea .search-btn{
  width:13%;
  float: right;
  height: 60px;
  cursor: pointer;
  background:url("sea.png") no-repeat center center;
}
.index7 ul{
  margin-top: 50px;
}
.index7 ul li{
  width: 33.33%;
  float: left;
  text-align: center;
  position: relative;
  height: 137px;
}
.index7 ul li .bg{
  position:absolute;
  width:100%;
  left: 0;
  top: -15px;
  bottom:-15px;
}
.index7 ul li:hover .bg:before {
  top: 0%;
  bottom: auto;
  height: 100%;
}
.index7 ul li .bg:before {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: 0;
  content: '';
  color: #000 !important;
  background: #eee;
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.index7 ul li img{
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: 40px;
  position: relative;
  z-index: 10;
}
.index7 ul li p{
  color: #aaaaaa;
  font-size: 25px;
  padding: 15px 0;
  position: relative;
  z-index: 10;
}
.index7 ul li span{
  color: #2b2b2b;
  font-size: 20px;
  position: relative;
  display: block;
  z-index: 10;
}
.index7 ul li:hover img{
  -webkit-animation: jello 1s;
  -moz-animation: jello 1s;
  animation: jello 1s;
}
@keyframes jello {
  from, 11.1%, to { -webkit-transform: none; -moz-transform: none; transform: none }
  22.2% { -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); -moz-transform: skewX(-12.5deg) skewY(-12.5deg); transform: skewX(-12.5deg) skewY(-12.5deg) }
  33.3% { -webkit-transform: skewX(6.25deg) skewY(6.25deg); -moz-transform: skewX(6.25deg) skewY(6.25deg); transform: skewX(6.25deg) skewY(6.25deg) }
  44.4% { -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); -moz-transform: skewX(-3.125deg) skewY(-3.125deg); transform: skewX(-3.125deg) skewY(-3.125deg) }
  55.5% { -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); -moz-transform: skewX(1.5625deg) skewY(1.5625deg); transform: skewX(1.5625deg) skewY(1.5625deg) }
  66.6% { -webkit-transform: skewX(-.78125deg) skewY(-.78125deg); -moz-transform: skewX(-.78125deg) skewY(-.78125deg); transform: skewX(-.78125deg) skewY(-.78125deg) }
  77.7% { -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); -moz-transform: skewX(0.390625deg) skewY(0.390625deg); transform: skewX(0.390625deg) skewY(0.390625deg) }
  88.8% { -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg); -moz-transform: skewX(-.1953125deg) skewY(-.1953125deg); transform: skewX(-.1953125deg) skewY(-.1953125deg) }
}
/*底部*/
.foot{
  width: 100%;
  position: relative;
  background:#222222;
  padding: 3% 0;
}
.f1{
  width: 25%;
  float: left;
  height: 240px;
  background: url("f-line.png") no-repeat center right;
}
.f-logo img{
  float: left;
}
.flogo-tit{
  float: left;
  margin-left: 25px;
}
.flogo-tit h3{
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
.flogo-tit p{
  color: #fff;
  font-size: 12px;
}
.f-tel{
  margin-top: 35px;
}
.f-tel p{
  color: #fff;
  font-size: 14px;
}
.f-tel h3{
  color: #fff;
  font-size: 33px;
  font-family: ziti;
}
.f-mes{
  width: 256px;
  height: 40px;
  line-height: 40px;
  background: #fff url("f-mes.png") no-repeat center center;
  margin-top: 32px;
}
.f-mes a{
  color: #262626;
  font-size: 14px;
  text-indent: 50px;
  display: block;
  transition: all 0.5s;
}
.f-mes a:hover{
  text-indent: 70px;
  transition: all 0.5s;
  color: #0272bc;
  font-weight: bold;
}
.f2{
  padding:0 8%;
  width: 24%;
  height: 240px;
  background: url("f-line.png") no-repeat center right;
  float: left;
}
.f2 ul{
  margin-top: 50px;
}
.f2 li{
  width: 33%;
  float: left;
  margin-bottom: 20px;
}
.f2 li p{
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.f2 li:nth-child(4){
  width: 35%;
}
.f2 li:last-child{
  width: 60%;
}
.f2 li span{
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.f3{
  width: 20%;
  float: right;
}
.f-ewm img{
  float: left;
}
.fewm-tit{
  float: left;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding-left:30px;
  padding-top: 30px;
}
.f-mobile{
  width: 100%;
  margin-top: 40px;
}
.fm{
  color: #fff;
  font-size: 39px;
  font-family: ziti;
  float: left;
  font-style: italic;
  margin-right: 20px;
}
.fm-r{
  float: left;
}
.fm-r p{
  color: #fff;
  font-size: 16px;
}
.fm-r span{
  color: #fff;
  font-size:22px;
}
.f-admin{
  width: 100%;
  position: relative;
  line-height: 80px;
  background:#222222;
  overflow: hidden;
}
.float-left{
  float: left;
}
.float-right{
  float: right;
}
.f-admin p{
  color: #ffffff;
  font-size: 14px;
}
.f-admin a{
  color: #ffffff;
  font-size: 14px;
}
/*内页-公司简介*/
.fixed-banner{
  width: 100%;
  position: relative;
  height: 598px;
  text-align: center;
}
.nei-banner{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.fixed-banner h3{
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
}
.fixed-banner p{
  color: #fff;
  font-size: 30px;
}
.location{
  width: 100%;
  height: 64px;
  background: #eeeeee;
}
.loca-l{
  float: left;
}
.loca-l ul li{
  float: left;
  line-height: 64px;
  text-align: center;
}
.loca-l ul li a{
  display: block;
  color: #323232;
  font-size: 16px;
  padding: 0 17px;
}
.loca-l ul li a.active{
  color: #fff;
  background: #0272bc;
}
.loca-r{
  float: right;
  line-height: 64px;
  background: url("home.png") no-repeat center left;
  text-indent: 20px;
}
.loca-r a{
  color: #5b5b5b;
  font-size: 14px;
}
.loca-r a:hover{
  color: #0272bc;
}
.nei-about{
  width: 100%;
  position: relative;
  padding: 4% 0;
  background: url("about-bg.jpg") no-repeat center center;
  background-size: cover;
}
.ab1-left{
  width: 49%;
  float: left;
}
.ab1-left h3{
  color: #373737;
  font-size: 36px;
  font-weight: bold;
}
.ab1-left h4{
  color: #373737;
  font-size: 24px;
  padding: 10px 0 15px 0;
}
.ab1-tit{
  color: #5d5d5d;
  font-size:16px;
  line-height: 25px;
}
.ab1-num{
  height: 158px;
  margin-top: 35px;
  box-shadow: 0 0 7px rgba(0,0,0,0.37);
  background: #fff;
}
.ab1-num ul li{
  width: 33.33%;
  float: left;
  text-align: center;
  position: relative;
  height: 158px;
}
.ab1-num ul li:after{
  display: block;
  content: '';
  position: absolute;
  width: 1px;
  height: 65px;
  background: #858585;
  right: 0;
  top: 50px;
}
.ab1-num ul li:last-child:after{
  display: none;
}
.ab1-num ul li p{
  padding-top: 40px;
}
.ab1-num ul li p span{
  color: #5d5d5d;
  font-size: 38px;
}
.ab1-num ul li p sup{
  font-size: 12px;
}
.ab1-num ul li p sub{
  font-size: 12px;
}
.ab1-num ul li span{
  color: #5d5d5d;
  font-size: 16px;
}
.ab1-num ul li:hover{
  background: #0272bc;
}
.ab1-num ul li:hover p,.ab1-num ul li:hover p sub,.ab1-num ul li:hover span{
  color: #fff;
}
.ab1-right{
  width: 49%;
  height: 629px;
  float: right;
  position: relative;
}
.ab1-img{
  width: 97%;
  height: 600px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.ab1-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab1-bg{
  width: 97%;
  height: 600px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #0272bc;
}
/*内页-行业动态*/
.nei-news{
  width: 100%;
  position: relative;
  padding: 4% 0;
}
.lh-news-item li {
  position: relative;
  margin-top: 1vw;
  border: 1px solid #E5E5E5;
  z-index: 1;
  background: #fff;
}

.lh-news-item li a {
  padding: 1.56vw;
  display: block;
  overflow: hidden;
}

.lh-news-item li .img {
  float: left;
  width: 25%;
  margin-right: 2%;
  height: 200px;
}

.lh-news-item li .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lh-news-item li h2 {
  font-size: 16px;
  color: #252525;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  overflow: hidden;
  margin-top: 10px;
}

.ljMore {
  display: block;
  margin: 30px auto 0;
  width: 92px;
  height: 39px;
  padding: 0;
  text-align: center;
  line-height: 39px;
}

.lh-news-item li h2 span {
  position: relative;
  display: inline-block;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  transition: ease .65s;
}

.lh-news-item li h2 span:before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: #252525;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  transition: ease .65s;
}

.lh-news-item li h2 em {
  float: right;
  color: #949494;
}

.lh-news-item li h2 b {
  font-size: 24px;
  color: #252525;
  font-weight: normal;
}

.lh-news-item li h3 {
  line-height: 24px;
  color: #797979;
  overflow: hidden;
  height: 72px;
  margin: 17px 0;
}

.lh-news-item li h4 {
  transition: ease .35s;
  display: inline-block;
  padding: 10px 18px;
  background: #eee;
  color: #333;
  border-radius: 30px
}

.lh-news-item li:hover h4 {
  background: #0272bc;
}

.lh-news-item li:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1px solid #0272bc;
  border-bottom: 1px solid #0272bc;
  position: absolute;
  right: -1px;
  bottom: -1px;
  transition: ease .65s;
  z-index: -1;
  visibility: hidden;
}

.lh-news-item li:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 1px solid #0272bc;
  border-top: 1px solid #0272bc;
  position: absolute;
  left: -1px;
  top: -1px;
  transition: ease .65s;
  z-index: -1;
  visibility: hidden;
}

.lh-news-item li:hover:before, .lh-news-item li:hover:after {
  width: 101%;
  height: 105%;
  visibility: visible;
}

.lh-news-item li:hover h2 span {
  color: #0272bc;
}

.lh-news-item li:hover h2 span:before {
  background: #0272bc;
}

.lh-news-item li:hover h4 {
  background: #0272bc;
  color: #fff;
}

.lh-news-item li:hover h4 i {
  color: #0272bc;
}

.news-detail-content {
  padding: 0 18px;
}
.news-detail-content .news-detail-title {
  padding-bottom: 15px;
  border-bottom: 1px dashed #ededed;
  text-align: center;
  margin-bottom: 15px;
}
.news-detail-content .news-detail-title .h3 {
  font-size: 35px;
  color: #0272bc;
  font-weight: bold;
  margin: 25px 0 10px;
}
.news-detail-content .news-detail-title .b {
  font-size: 13px;
  color: #999999;
  line-height: 20px;
}
.news-detail-content .news-detail {
  padding: 0 12px 30px;
}
.news-detail-content .news-detail p {
  font-size: 14px;
  color: #595959;
  line-height: 24px;
}
.news-detail-content .news-detail img {
  max-width: 100%;
  margin: 0 auto;
}
.newsPage {
  padding: 0 12px;
  font-size: 16px;
  color: #323232;
  margin: 15px 0 30px;

}
.newsPage .page-a{
  line-height: 44px;
  border-bottom: 1px dashed #c1c1c1;
  text-indent: 30px;
}
.newsPage .page-a:first-child{
  background: url("prev.png") no-repeat center left;
}
.newsPage .page-a:last-child{
  background: url("next.png") no-repeat center left;
}
.newsPage a {
  color: #323232;
}
.newsPage a:hover {
  color: #237ed2;
}
/*内页-联系我们*/
.nei-contact{
  width: 100%;
  position: relative;
  padding: 4% 0 0 0;
}
.cont1{
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 33px;
}
.cont1-left{
  float: left;
}
.cont1-left h3{
  color: #333333;
  font-size: 30px;
}
.cont1-right{
  float: right;
  text-align: right;
}
.cont1-right p{
  color: #878787;
  font-size: 14px;
}
.cont1-right strong{
  color: #0272bc;
  font-size: 24px;
}
.cont2{
  margin-top: 30px;
  margin-bottom: 80px;
}
.cont2-left{
  float: left;
}
.cont2-left p{
  color: #666666;
  font-size: 14px;
  line-height: 35px;
}
.cont2-right{
  float: right;
  margin-top: 44px;
}
.cont2-right p{
  color: #666666;
  font-size: 16px;
  float: left;
  margin-top: 25px;
  text-align: right;
  padding-right: 20px;
}
.cont2-right img{
  display: block;
  width: 100px;
  height:100px;
}
.contact-map {
  overflow: hidden;
}
.contact-map #dituContent {
  width: 100%;
  height: 540px;
  margin: 0 auto;
}
.con-mes{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background: url(con-mes.jpg) no-repeat center;
  background-attachment: fixed;
  height:772px;
  background-size: cover;
}
.biaodan{
  width: 36%;
  background: #fff;
  height: 94%;
  padding: 5% 6%;
}
.biaodan h3{
  color: #353535;
  font-weight: bold;
  font-size: 28px;
}
.biaodan h3:after{
  display: block;
  content: '';
  width: 25px;
  height: 4px;
  background: #0272bc;
  margin-top: 20px;
}
.biaodan input{
  width: 100%;
  line-height: 45px;
  display: block;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  margin-top: 10px;
  color: #4e4e4e;
  font-size: 14px;
}
.biaodan input::-webkit-input-placeholder{
  color: #4e4e4e;
}
.biaodan p{
  color: #4e4e4e;
  line-height: 45px;
  font-size: 14px;
  margin-top: 10px;
}
.biaodan textarea{
  width: 100%;
  height: 120px;
  background: #ededed;
  font-size: 14px;
  color: #4e4e4e;
  line-height: 45px;
}
.biaodan textarea::-webkit-input-placeholder{
  color: #4e4e4e;
}
.biaodan .code input{
  width: 75%;
  float: left;
}
.biaodan .verify{
  float: right;
  width: 25%;
  height: 45px;
  overflow: hidden;
}
.biaodan .verify img{
  display: inline-block;
  margin-top: 20px;
  margin-left: 10px;
}
.biaodan a{
  width: 100%;
  line-height: 61px;
  background: #0272bc;
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 20px;
  transition: all .6s
}
.biaodan a:hover{
  background: #0daf48;
  transition: all .6s
}
/*内页-产品中心*/
.nei-product{
  width: 100%;
  position: relative;
  padding: 4% 0;
}
.nei-product ul li{
  width: 47%;
  padding: 1%;
  border: 1px solid #ddd;
  margin-bottom: 2%;
}
.nei-product ul li:nth-child(odd){
  float: left;
}
.nei-product ul li:nth-child(even){
  float: right;
}
.nei-product ul li .img{
  width: 45%;
  float: left;
  height: 250px;
  overflow: hidden;
}
.nei-product ul li .img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}
.npro-tit{
  width: 50%;
  float: right;
}
.npro-tit h3{
  color: #333;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 30px;
}
.npro-tit .npro-t{
  color: #666;
  font-size: 16px;
  line-height: 25px;
  margin:15px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.nei-product ul li:hover{
  background:#0272bc;
}
.npro-tit  span{
  display: block;
  width: 150px;
  line-height: 35px;
  border-radius: 20px;
  background:#0272bc;
  color: #fff;
  text-align: center;
}
.nei-product ul li:hover .img img{
  transform: scale(1.05,1.05);
}
.nei-product ul li:hover .npro-tit h3,.nei-product ul li:hover .npro-tit .npro-t{
  color: #fff;
}
.nei-product ul li:hover .npro-tit span{
  background:#fff;
  color: #0272bc;
}
.info-pro{
  width: 100%;
  position: relative;
  padding: 4% 0;
}
.info-pro1{
  padding: 3%;
  box-shadow: 0 0 7px rgba(0,0,0,0.37);
}
.info-pro1-left{
  width: 60%;
  float: left;
}
.inpro-img{
  width: 100%;
  height: 636px;
  overflow: hidden;
}
.inpro-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.im-next {
  right: 5%;
  background: url("ban-next.png") no-repeat center center;
  width:57px!important;
  height: 57px!important;
}
.im-next:after{
  display: none;
}
.im-prev {
  left: 5%;
  background: url("ban-prev.png") no-repeat center center;
  width: 57px!important;
  height: 57px!important;
}
.im-prev:after{
  display: none;
}
.info-pro1-right{
  width: 37%;
  float: right;
}
.info-pro1-right h3{
  color: #4d4f4f;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
  margin-top: 30px;
}
.info-pro1-right h4{
  color: #4d4f4f;
  font-size: 16px;
  line-height: 28px;
  padding-top: 58px;
}
.info-pro1-right h5{
  color: #646566;
  font-size: 24px;
  padding-top: 50px;
}
.info-pro1-right strong{
  color: #646566;
  font-size: 36px;
}
.info-pro1-right a{
  display: block;
  width: 195px;
  height: 61px;
  background:#0272bc url("zixun.png") no-repeat center left 30px;
  text-indent:70px;
  color: #fff;
  font-size: 18px;
  line-height: 61px;
  margin-top: 40px;
}
.info-pro1-right a:hover{
  background:#0bad4a url("zixun.png") no-repeat center left 30px;
}
.info-pro2{
  padding: 3%;
  box-shadow: 0 0 7px rgba(0,0,0,0.37);
  margin-top: 4%;
}
.info-pro2-title{
  width: 100%;
  border-bottom: 1px solid #696969;
  height: 49px;
  line-height: 49px;
}
.info-pro2-title p{
  width: 138px;
  background:#0272bc;
  color: #fff;
  font-size: 22px;
  text-align: center;
}
.info-pro2-tit{
  margin-top: 30px;
}
.info-pro2-tit p{
  color: #4d4f4f;
  font-size: 16px;
  line-height: 28px;
}
.info-pro2-tit img{
  max-width: 100%;
}
.info-pro2-tit table{
  width: 100%!important;
  border-collapse: collapse;
}
.info-pro2-tit table tr td{
  word-break: break-all;
  word-wrap: break-word;
  border: 1px solid #eee;
}
/*内页-干化对比*/
.info-ganhua{
  width: 100%;
  position: relative;
  padding: 3% 0;
}
.info-ganhua ul li{
  width: 47%;
  padding: 1%;
  border: 1px solid #ddd;
  margin-bottom: 2%;
  background: url("vs.png") no-repeat center center;
}
.info-ganhua  ul li:nth-child(odd){
  float: left;
}
.info-ganhua  ul li:nth-child(even){
  float: right;
}
.db-img{
  width: 100%;
  height: 200px;
}
.db-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-ganhua dl{
  float: left;
  width: 45%;
}
.db-tit{
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #666;
  font-weight: bold;
}
.info-ganhua dl:nth-child(odd){
  float: left;
}
.info-ganhua dl:nth-child(even){
  float: right;
}
/*内页-工程案例*/
.info-case{
  width: 100%;
  position: relative;
  padding: 3% 0;
}
.info-case ul li{
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
}
.info-case ul li:nth-child(4n){
  margin-right: 0;
}
.info-case ul li .case-img{
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.info-case ul li .case-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}
.info-case ul li .honor-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .6s;
}
.info-case ul li h4{
  color: #666;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  background: #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.honor-li{
  width: 23.2%!important;
  border: 1px solid #ddd;
}
.info-case ul li:hover h4{
  background: #0272bc;
  color: #fff;
}
.info-case ul li:hover .case-img img{
  transform: scale(1.05,1.05);
}




.pro-sider {
  float: left;
  width: 260px;
}
.pro-sider .in-title {
  height: 80px;
  background: url(../images/i-pro-title.jpg) no-repeat center;
  text-align: center;
  line-height: 1;
  overflow: hidden;
}
.pro-sider .in-title h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}
.pro-sider .in-title em {
  font-size: 13px;
  color: #728dbc;
}
.pro-sider .pro-sider-ul {
  border: 1px solid #ededed;
  background: #fff;
  border-top: none;
  overflow: hidden;
}
.pro-sider .pro-sider-ul .ul-li {
  padding: 0 15px;
  height: 59px;
}
.pro-sider .pro-sider-ul .ul-li a {
  position: relative;
  height: 58px;
  line-height: 58px;
  font-size: 14px;
  color: #595959;
  display: block;
  padding-left: 10px;
  padding-right: 30px;
  border-bottom: 1px dashed #ededed;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a h2{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-sider .pro-sider-ul .ul-li a div.icon {
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background: #ededed url(../images/sider-bg-01.png) no-repeat center;
  border-radius: 50%;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  font-size: 12px;
}
.pro-sider .pro-sider-ul .ul-li:hover,
.pro-sider .pro-sider-ul .ul-li.active {
  background: #268ae7;
}
.pro-sider .pro-sider-ul .ul-li:hover a,
.pro-sider .pro-sider-ul .ul-li.active a {
  border: none;
  color: #fff;
}
.pro-sider .pro-sider-ul .ul-li:hover div.icon,
.pro-sider .pro-sider-ul .ul-li.active div.icon {
  background: #0058b1 url(../images/sider-bg-02.png) no-repeat center;
}
.pro-sider .pro-sider-ul .ul-li:last-child a {
  border-bottom: none;
}
.pro-sider .pro-sider-tel {
  overflow: hidden;
  height: 100px;
  line-height: 1;
  font-size: 20px;
  color: #0058b1;
  border: 1px solid #ededed;
  border-top: none;
  padding-left: 80px;
  background: url(../images/sider-tel.png) no-repeat 25px center;
}
.pro-sider .pro-sider-tel span {
  display: block;
  margin: 30px 0 8px;
  font-size: 14px;
  color: #808080;
}
.pro-sider .pro-sider-tel em {
  letter-spacing: 2px;
  font-weight: bold;
}


.m-column-t {
  position: relative;
  text-align: center;
  font-size: 0;
}
.m-column-t .center {
  display: inline-block;
  font-size: 0;
}
.m-column-t .center h3 {
  color: #333;
  font-size: 30px;
}
.m-column-t .center p {
  color: #d2d2d2;
  font-size: 30px;
}
.m-column-t span {
  position: absolute;
  width: 415px;
  top: 50%;
  margin-top: -5px;
  height: 5px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
}
.m-column-t span.mcl {
  left: 0;
}
.m-column-t span.mcl em {
  float: right;
}
.m-column-t span.mcr {
  right: 0;
}
.m-column-t span em {
  display: block;
  height: 11px;
  border-left: 1px solid #d2d2d2;
}
.textLine {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textLine3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domHidden {
  overflow: hidden;
}
.about-main {
  padding: 20px 0 70px;
  min-height: 170px;
}
.about-main .ab-content {
  float: right;
  width: 925px;
}
.about-main .ab-content .title {
  line-height: 50px;
}
.about-main .ab-content .title a {
  color: #333;
  padding: 0 5px;
}
.about-main .ab-content .title span.icon-home {
  color: #535353;
}
.about-main .ab-content .title em {
  color: #999;
}
.about-main .ab-content .ab-conBox {
  overflow: hidden;
  background: #fff;
  min-height: 55px;
  padding: 30px 45px 40px;
}
.about-main .ab-content .ab-conBox .de-title {
  text-align: center;
  font-size: 20px;
  color: #333;
  line-height: 25px;
  margin-bottom: 8px;
}
.about-main .ab-content .ab-conBox .sub-co {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 18px;
}
.about-main .ab-content .ab-conBox .ab-detail {
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}
.ab-sild {
  float: left;
  width: 260px;
}
.ab-sild .title {
  position: relative;
  height: 50px;
  text-align: center;
  background: #f3c04b;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span {
  position: absolute;
  height: 3px;
  width: 30px;
  top: 50%;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
}
.ab-sild .title span em {
  display: block;
  height: 7px;
  border-left: 1px solid #fff;
}
.ab-sild .title span.stl {
  left: 35px;
}
.ab-sild .title span.stl em {
  float: right;
}
.ab-sild .title span.str {
  right: 35px;
}
.ab-sild .sild-cate {
  background: #fff;
  margin-bottom: 20px;
}
.ab-sild .sild-cate .list {
  overflow: hidden;
}
.ab-sild .sild-cate .list li {
  position: relative;
  border-bottom: 1px solid #eee;
  height: 60px;
  line-height: 60px;
}
.ab-sild .sild-cate .list li a {
  display: block;
  padding-right: 35px;
  font-size: 14px;
  color: #333;
  padding-left: 20px;
}
.ab-sild .sild-cate .list li:last-child {
  border-bottom: none;
}
.ab-sild .sild-cate .list li:hover {
  border-color: #f3c04b;
  background: #f3c04b;
}
.ab-sild .sild-cate .list li:hover a {
  color: #fff;
}
.ab-sild .sild-cate .list li:hover:after {
  color: #fff;
}
.ab-sild .sild-cate .list li:after {
  font-weight: bold;
  right: 20px;
  top: 0;
  color: #999;
  position: absolute;
  content: "\e904";
  font-family: 'icomoon' !important;
}
.ab-sild .sild-cont {
  background: #fff;
}
.ab-sild .sild-cont .cont-list {
  padding: 20px;
}
.ab-sild .sild-cont .cont-list ul li {
  color: #333;
  padding: 5px 0;
  padding-left: 60px;
  font-size: 14px;
}
.ab-sild .sild-cont .cont-list ul li span {
  width: 60px;
  margin-left: -60px;
  display: block;
  height: 20px;
  line-height: 20px;
  float: left;
  color: #666;
}
.pro-center {
  background: #fff;
  padding-bottom: 25px;
}
.pro-center .pro-list {
  overflow: hidden;
  padding: 25px 18px 10px;
}
.pro-center .pro-list ul li {
  float: left;
  width: 200px;
  margin: 0 10px 20px;
  border: 1px solid #fff;
}
.pro-center .pro-list ul li:hover {
  border-color: #f3c04b;
}
.pro-center .pro-list ul li .img {
  overflow: hidden;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  font-size: 0;
  background: #eee;
}
.pro-center .pro-list ul li .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.pro-center .pro-list ul li .title {
  background: #f7f8fc;
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.pro-center .pro-list ul li .title:hover {
  color: #f3c04b;
}
.page {
  font-size: 0;
  text-align: center;
}
.page .center {
  display: inline-block;
  overflow: hidden;
}
.page .center .page-span {
  float: left;
  font-size: 14px;
  color: #c3c3c3;
  line-height: 32px;
  margin-right: 30px;
}
.page .center .page-list {
  float: left;
  overflow: hidden;
}
.page .center .page-list ul li {
  float: left;
  width: auto;
  min-width: 30px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin: 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}
.page .center .page-list ul li a {
  min-width: 20px;
  padding: 0 5px;
  border: 1px solid #eee;
  display: block;
  color: #333;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.page .center .page-list ul li:hover a {
  color: #f3c04b;
}
.page .center .page-list ul li.active a {
  background: #f3c04b;
  color: #fff;
}
.news-center {
  background: #fff;
  padding-bottom: 25px;
}
.news-center .new-list {
  padding: 45px 45px 0px;
}
.news-center .new-list ul li {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
}
.news-center .new-list ul li a {
  overflow: hidden;
  display: block;
  height: 90px;
  padding-bottom: 30px;
}
.news-center .new-list ul li a .img {
  float: left;
  width: 130px;
  height: 90px;
  background: #eee;
  line-height: 90px;
  font-size: 0;
  text-align: center;
}
.news-center .new-list ul li a .img img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.news-center .new-list ul li a .info {
  float: right;
  width: 690px;
}
.news-center .new-list ul li a .info h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #333;
}
.news-center .new-list ul li a .info em {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 16px;
  margin-bottom: 10px;
}
.news-center .new-list ul li a .info p {
  font-size: 14px;
  line-height: 22px;
  color: #999;
  max-height: 44px;
  overflow: hidden;
}
.news-center .new-list ul li a:hover h3 {
  color: #f3c04b;
}
.message-c {
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
}
.message-c .p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 35px;
}
.message-c .from input {
  display: block;
  height: 38px;
  line-height: 38px;
  padding: 0 5px;
  border: 1px solid #d2d2d2;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.message-c .from input[name=user],
.message-c .from input[name=phone] {
  width: 348px;
}
.message-c .from textarea {
  font-size: 14px;
  color: #333;
  line-height: 20px;
  display: block;
  width: 728px;
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 5px;
  margin-bottom: 10px;
}
.message-c .from .code {
  overflow: hidden;
}
.message-c .from .code input[name=code] {
  width: 258px;
  float: left;
}
.message-c .from .code a {
  display: block;
  float: left;
  width: 80px;
  height: 38px;
  padding: 1px 0;
  margin-left: 10px;
}
.message-c .from .code a img {
  width: 80px;
  height: 38px;
}
.message-c .from .btn {
  padding-top: 25px;
}
.message-c .from .btn a {
  display: block;
  width: 362px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background: #8fa4de;
}
.message-c .from .btn a:hover {
  background: #8397d0;
}
.contact-o {
  background: #fff;
  overflow: hidden;
  padding: 40px 0;
  text-align: center;
}
.contact-o iframe {
  width: 830px;
  height: 500px;
  margin: 0 auto;
}
/*客服*/
.kefu{
  position: fixed;
  right: 3%;
  top: 60%;
  z-index: 100;
}
.kefu ul li{
  width:49px;
  height: 49px;
  background: #016cba;
  line-height: 49px;
  text-align: center;
  margin-bottom: 5px;
  position: relative;
}
.kefu ul li a{
  display: block;
  width: 100%;
  height: 100%;
}
.kefu ul li a>img{
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.kefu ul li p{
  width: 120px;
  height: 120px;
  position: absolute;
  left: -123px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.kefu ul li p img{
  max-width: 100%;
}
.kefu ul li:hover p{
  opacity:1;
  left:-123px;
  visibility: visible;
  transition: all 0.5s;
}

/*分页符*/
.pagination-bar {text-align:center;padding:20px 0;}
.pagination-bar ul {display:block;}
.pagination-bar ul li {display:inline-block;margin:2px;vertical-align:top;}
.pagination-bar ul li.disabled { background: #f0f0f0;height: 35px;padding:0 12px;display: inline-block;line-height: 35px;text-align: center;transition: ease all 0.4s;-webkit-transition: ease all 0.4s;-moz-transition: ease all 0.4s;-o-transition: ease all 0.4s;}
.pagination-bar ul li a {background:#f0f0f0;height:35px;width:35px;display:inline-block;line-height:35px;text-align:center;transition:ease all 0.4s;-webkit-transition:ease all 0.4s;-moz-transition:ease all 0.4s;-o-transition:ease all 0.4s;}
.pagination-bar ul li.pageinfo {background:#f0f0f0;line-height:35px;text-align:center;padding:0 15px;}
.pagination-bar ul li.active {background:#0272bc;color:#fff;height:35px;width:35px;display:inline-block;line-height:35px;text-align:center;}
.pagination-bar ul li a i {vertical-align:middle;font-weight:bold;}
.pagination-bar ul li a:hover {color:#fff;background:#ff7e00;}