/*** 

====================================================================
  Resources / Css Files
====================================================================

 ***/
 @import url('bootstrap.min.css');
 @import url('swiper.min.css');
 @import url('animation.css');
 @font-face {
   font-family: 'SY';
   src: url('../fonts/SourceHanSansCN-Normal.ttf');
 }
 
 
 
 /* reset css start */
 html {
   font-size: 40px;
   height: 100%;
   scroll-behavior: smooth;
   overflow-x: hidden;
 }
 
 body {
   font-family:微软雅黑,'SY', Arial, Tahoma, sans-serif;
   font-size: 16px;
   height: 100%;
   color: #333333;
   position: relative;
   overflow-x: hidden;
   overflow-y: auto;
   -webkit-font-smoothing: antialiased;
 }
 
 body::-webkit-scrollbar{
   display: none;
 }
 
 :root {
   --primary: #779763;
   --main:#009c53;
 }
 
 
 *:focus {
   outline: none;
 }
 
 a{
   color: #333333;
 }
 
 a:hover{
   text-decoration: unset;
   cursor: pointer;
 }
 
 p{
   margin-bottom: 0;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 ul{
   margin-left: -40px;
   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) */
 }

 .hd{
  overflow: hidden;
 }
 
 .page-wrapper{
   position: relative;
   height: 100%;
 }
 
 .container-fluid{
   max-width: 1700px;
   margin: auto;
   padding-left: 5%;
   padding-right: 5%;
 }
 
 /* Header */
 .mainHeader{
   position:fixed;
   width: 100%;
   top:0;
   background-color:#fff;
   z-index: 999;
   border-bottom: 1px solid rgba(255,255,255,.15);
   box-shadow: 0px 0px 8px 0 rgb(0 0 0 / 15%);
 }

 .mainHeader .d1 h1{
  margin-bottom: 0;
  font-size: unset;
 }
 
 .mainHeader .pnav{
   position: relative;
 }
 
 .mainHeader .pnav>a{
  color: #484854;
  display: block;
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  font-size: 16px;
  font-weight: bold;
   padding: 30px 30px;
 }
 
 .mainHeader .pnav:hover>a{
   color: var(--primary);
 }
 
 .mainHeader .pnav .sub-menu{
   position: absolute;
   background-color: var(--primary);
   display: none;
 }
 
 .mainHeader .pnav .sub-menu a{
   padding: 10px 20px;
   display: block;
   min-width: 150px;
   width: max-content;
   color: #fff;
 }

 .mainHeader .pnav.tel>a{
    padding-right: 0;
 }

 .mainHeader .pnav.tel>a span{
    display: inline-block;
    font-size: 22px;
    vertical-align: middle;
    color: var(--primary);
 }
 
 
 /* mobile menu */
 .mHeader,.mobile-inner-nav{
   display: none;
 }


/*banner*/

.swiper1 .swiper-slide{
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  position: relative;
}

.swiper1 .swiper-slide .div-text{
  position: absolute;
  width: 100%;
  left: 0;
  top: 45%;
  transform: translateY(-40%);
  color: #fff;
  overflow: hidden;
}

.swiper1 .swiper-slide .div-text h2{
  font-size: 1rem;
}

.swiper1 .swiper-slide .div-text h2 span{
  display: inline-block;
}

.swiper1 .swiper-slide .div-text p.des{
  font-size: 14px;
  font-weight: lighter;
  max-width: 650px;
  margin-top: 10px;
  margin-top: 15px;
  line-height: 26px;
}

 .swiper1,.banner{
  height: 100%;
  position: relative;
 }


 .swiper1 .banner-pagin{
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 15px;
}

.banner .swiper-container .swiper-pagination {
  position: relative;
  display: inline-block;
  color: #fff;
}
.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(--main);
  position: absolute;
  left: 70px;
  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: 110px;
  color: var(--main);
}
.banner .swiper-container .swiper-pagination .swiper-pagination-bullet-active:before {
  opacity: 1;
  width: 40px;
  transition: all 3s linear;
  -webkit-transition: all 3s linear;
  -moz-transition: all 3s linear;
  -ms-transition: all 3s linear;
}

@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: 55px;
  left: 50%;
  z-index: 10;
}
.banner .mouse img {
  animation-name: bounces;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: both;
}
 

.section{
  position: relative;
  background-size: cover;
  padding-top: 95px;
}

.productSec .proLists{
  overflow: hidden;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span{
  background-color: var(--main);
}

/* 关于我们 */

.aboutSec{
  overflow: hidden;
}

.commonTit h3.title{
  font-size: 24px;
  margin-bottom: 5px;
}

.commonTit p.entitle{
  color: #595959;
}

.aboutSec div.cdes{
  margin-top: 25px;
  font-size: 14px;
}

.aboutSec div.cdes p{
  color: #595959;
  font-weight: lighter;
  line-height: 24px;
  font-size: 14px;
}


.aboutSec .readMore{
  margin-top: 65px;
  margin-bottom: 25px;
}
.readMore a{

  display: inline-block;
  padding: 10px 45px;
  color: #fff;
  background-color: var(--primary);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  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;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:var(--main);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}

.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* 产品中心 */
.proCate{
  overflow: hidden;
  height: 100%;
}

.proCate .swiperC{
  height: 100%;
}

.proCate .swiper-slide{
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  
}

.proCate .swiper-slide a{
  padding-top: 95px;
  display: block;
  height: 100%;
  position: relative;
 
  color: #fff;
  font-size: 18px;
  padding: 15px 20px;
  z-index: 999;
}

.proCate .swiper-slide a::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 25%);
  left: 0;
  top: 0;
  z-index: -1;
  transition: all .6s;
}


.proCate .swiper-slide:nth-child(odd) a::after{
  background-color: rgb(0 156 83 / 24%);
}

.proCate .swiper-slide a .div-text{
  position: absolute;
  width: 100%;
  bottom: -100%;
  transition: all .6s;
}

.proCate .div-img img{
  height: 100%;
}

.sectionP{
  padding-top: 0;
}

.sectionP .pmore svg{
  display: inline-block;
  margin-left: 15px;
}

.proCate .swiper-slide a:hover .div-text{
  bottom: 45px;
}

.proCate .swiper-slide a:hover::after{
  background-color: rgb(0 156 83 / 90%);;
}

/* 新闻中心 */

.sectionN .main{
  overflow: hidden;
}
.sectionN .news_all{
  background-image: url(../images/news_rt.jpg);
  height: 100%;
  padding: 65px 20px 35px 20px;
  color: #fff;
}

.sectionN .news_all .readMore a{
  overflow: hidden;
  border-radius: 25px;
}

.sectionN .news_all p.entitle{
  color: #fff;
}

.sectionN .news_all p.ndes{
  margin-top: 25px;
  margin-bottom: 45px;
}

.newsLists a.item{
  display: block;
  color: #333333;
}

.newsLists a.item .div-img {
  position: relative;
  overflow: hidden;
}

.newsLists a.item .div-img img{
  transition: all .6s;
  width: 100%;
}

.newsLists a.item .div-img span{
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  background-color: var(--primary);
  color: #fff;
  padding: 5px 20px;
}

.newsLists a.item p.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;
}

.newsLists a.item p.des{
  font-weight: lighter;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

.newsLists a.item:hover p.title{
  color: var(--primary);
}

.newsLists a.item:hover .div-img img{
  transform: scale(1.1);
}

.sectionA .main{
  overflow: hidden;
}

.sectionA .item{
  height: 100%;
}

.sectionA .list{
  background-color: var(--main);
}

.sectionA .div-img{
  height: 100%;
  overflow: hidden;
}

.sectionA .div-img a{
  display: block;
  height: 100%;
  overflow: hidden;
}

.sectionA .div-text{
  height: 100%;
  padding: 25px 20px;
  color: #fff;
  
}

.sectionA .div-text h4{
  font-size: 18px;
}

.sectionA .div-text p{
  font-weight: lighter;
  font-size: 12px;
}

.sectionA .div-img{
  overflow: hidden;
}

.sectionA .div-img img{
  height: 100%;
  transition: all .6s;
}

.sectionA .div-img:hover img{
  transform: scale(1.1);
}

/* 底部导航 */
.sectionF{
  padding: 2.5rem 0;
  background-color: #303030;
  color: #fff;
}

.sectionF .ftop{
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #494949;
}

.sectionF .ftop span{
  font-weight: bold;
}

.sectionF .ftop a{
  color: #ffffff94;
  padding-right: 26px;
  display: inline-block;
  position: relative;
}

.sectionF .ftop a:hover{
  color: var(--main);
}

.sectionF .ftop a::after{
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #494949;
}

.sectionF .fmiddle a{
  color: #ffffff94;
}

.sectionF .fmiddle .title{
  font-size: 20px;
  margin: 15px 0;
}

.sectionF .d1 span{
  color: #D3D3D3;
}

.sectionF .d1 p{
  margin-bottom: 5px;
}

.section.active .aboutSec .div-text,.section.active .newsLists .news_all,.sectionA.active .div-img1{
  animation: slideInLeft .8s;
}

.section.active .aboutSec .div-img,.section.active .newsLists .newsRight,.sectionA.active .list{
  animation: slideInRight .8s;
}


/* 关于我们 */
.pageTitle{
  position: relative;
  padding: 260px 0 180px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.pageTitle .div-text{
  text-align: center;
}

.pageTitle .div-text span{
  font-size: 32px;
  color: #fff;
  font-weight: bold;
 letter-spacing: 5px;
}

.aboutSec2 .div-img{
  height: 100%;
  min-height: 450px;
  background-image: url(../images/compay.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  margin-bottom: 25px;
}

.aboutSec2 .cdes p strong{
  font-weight: bold;
}

.dhMenu {
  background-color: #f2f2f2;
}

.dhMenu ul{
  margin-left: -40px;
  display: block;
}

.dhMenu ul li{
  display: inline-block;
}

.dhMenu ul li a{
  display: block;
  padding: 25px 45px;
  position: relative;
  color: #333;
  font-weight: bold;
  font-size: 18px;
}

.dhMenu ul li a::after{
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #ccc;
}

.dhMenu ul li.active a::after{
  opacity: 0;
}

.dhMenu ul li.active a,.dhMenu ul li.active a:hover{
  background-color: var(--primary);
  color: #fff;
}

.dhMenu ul li a:hover{
  color: var(--primary);
}

.conSec{
  margin-bottom: 65px;
}

.conSec .title{
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
  font-weight: bold;
}

.conSec .infoLeft{
  background-color: #f7f7f7;
  height: 100%;
  padding: 15% 5% 0 5%;
}

.conSec .infoRight{
  background-color: var(--main);
  color: #fff;
  height: 100%;
  padding: 15% 5%;
}

.conSec .infoRight .title{
  color: #fff;
}

.conSec .infoRight input{
  display: block;
  width: 100%;
  border: none;
  background-color: unset;
  border-bottom: 1px solid var(--primary);
  height: 65px;
  line-height: 65px;
  color: #fff;
}

.conSec .infoRight textarea{
  display: block;
  width: 100%;
  border: none;
  background-color: unset;
  border-bottom: 1px solid var(--primary);
  color: #fff;
}

::-webkit-input-placeholder{
  color: #fff;
} 

:-moz-placeholder{
   color:#fff;
} 

::-moz-placeholder{
  color: #fff;
}

:-ms-input-placeholder{
  color: #fff;
} 

.conSec .infoRight button{
  display: inline-block;
  padding: 10px 65px;
  background: unset;
  border: 2px solid #fff;
  border-radius: 25px;
  margin-top: 35px;
  color: #fff;
  transition: all .6s;
}

.conSec .infoRight button:hover{
  background: #fff;
  color: var(--main);
}

.conSec .infos p{
  display: flex;
}

.conSec .infos svg{
  min-width: 24px;
  width: 24px;
  margin-right: 3px;
}

.conSec .infos span{
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  min-width: 
}

/* 产品中心 */
.proSec{
  background-color: #eee;
  padding-bottom: 65px;
}

.proSec .item{
  margin-bottom: 25px;
  background-color: #f5f5f5;
}

.proSec .item a{
  display: block;
  width: 100%;
  height: 100%;
  color: #262626;
}

.proSec .item .readMore{
  margin-top: 25px;
}

.proSec .item .readMore span{
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  border: 2px solid var(--primary);
  color: var(--primary);
  overflow: hidden;
}

.proSec .item .div-img{
  overflow: hidden;
  height: 100%;
  background-color: #fff;
}

.proSec .item .div-img img{
  width: 100%;
  
  transition: all .6s;
}

.proSec .item .div-text{
  padding: 35px 20px;
  
}

.proSec .item .div-text p.title{
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.proSec .item .div-text div.des{
  font-size: 14px;
  line-height: 26px;
  color: #828282;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.proSec .item a:hover .div-img img{
  transform: scale(1.1);
}

.proSec .item a:hover .readMore span{
  background-color: var(--primary);
  color: #fff;
}

.newsSec{
  padding-bottom: 65px;
}

.newsSec .item{
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.newsSec .item a{
  display: block;
  width: 100%;
  height: 100%;
  color: #262626;
}

.newsSec .item .div-text .meta{
  min-width: 200px;
  font-size: 14px;
  color:var(--main);
  text-align: right;
}

.newsSec .item .div-text .title{
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  transition: all .6s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.newsSec .item .div-text .des p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  color: #999999;
}

.newsSec .item .div-img{
  overflow: hidden;
}

.newsSec .item .div-img img{
  width: 100%;
  transition: all .6s;
}

.newsSec .item:hover .div-img img{
  transform: scale(1.1);
}

.newsSec .item:hover p.title{
  color: var(--main);
}

.newsContent{
  padding-bottom: 65px;
}

.newsContent h2.title{
  font-size: 20px;
  font-weight: bold;
}

.newsContent .meta{
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.newsContent .content{
  padding: 20px 0;
  min-height: 250px;
}

.prev-next{
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.prev-next a:hover{
  color: var(--main);
}


.proDetail{
  padding-bottom: 65px;
  overflow: hidden;
}

.proDetail .div-imgs{
  overflow: hidden;
}

.proDetail .bimgs{
  --swiper-theme-color: #ff6600;/* 设置Swiper风格 */
  --swiper-navigation-color: var(--primary);/* 单独设置按钮颜色 */
  --swiper-navigation-size: 30px;/* 设置按钮大小 */
}

.proDetail .proContent .top{
  padding: 20px;
  background-color: #f0f0f0;
}

.proDetail .proContent .prev-btn{
  left: 25px;
}

.proDetail .proContent .next-btn{
  right: 25px;
}

.proDetail .proContent h2.title{
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.proDetail .proContent .div-text{
  padding: 20px;
}

.proDetail .proContent .pcate{
  margin-bottom: 15px;
}

.proDetail .proContent .pcate a{
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

.proDetail .proContent div.des{
  line-height: 28px;
  font-size: 14px;
}

.proDetail .proContent .btns{
  margin-top: 25px;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #d5d5d5;
}

.proDetail .proContent .btns a{
  display: inline-block;
  padding: 15px 35px;
  background-color:var(--primary);
  color: #fff;
}

.proDetail .proContent .btns a+a{
  margin-left: 25px;
  background-color: #ff6600;
}

.proDetail .content{
  margin-top: 25px;
  background-color: #f0f0f0;
}

.proDetail .content div.title{
  font-size: 20px;
  font-weight: bold;
  padding: 15px 25px;
  color: var(--primary);
  border-bottom: 1px solid #d5d5d5;
}

.proDetail .content .contentMain{
  min-height: 250px;
  padding: 25px;
}

.proDetail .content .prev-next{
  padding: 20px;
  margin-top: 35px;
}

.div-page a{
  display: inline-block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border:1px solid #dadada;
  transition: all .3s;
  margin-left: 5px;
}

.div-page .page-num-current,.div-page a:hover{
  color: #fff;
  background-color: var(--primary);
}

.proDetail table{
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  font-size: 14px;
}

.proDetail table th{
  background-color: var(--primary);
  color: #fff;
  padding: 15px 45px;
  width: 100px;
  font-weight: normal;
}

.proDetail table tr{
  border-bottom: 2px solid #f0f0f0;
}

.proDetail table td{
  min-width: 250px;
  padding: 15px 25px 15px 15px;
}

.proDetail table td:not(:first-child){
  background-color: #fff;
}




 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 