/*** 

====================================================================
  Resources / Css Files
====================================================================

 ***/
 @import url('?template/default/assets/css/bootstrap.min.css');
 @import url('?template/default/assets/css/swiper.min.css');
 @import url('?template/default/assets/css/animation.css');
 @font-face {
   font-family: 'DINPRO';
   src: url('?template/default/assets/fonts/DINPRO-MEDIUM.OTF');
 }
 @font-face {
   font-family: 'SHU';
   src: url('?template/default/assets/fonts/shu.otf');
 }

 
 /* reset css start */
 html {
  font-size: 16px;
  overflow-x: hidden;
 }
 
 body {
   font-family: '微软雅黑', sans-serif;
   color: #333;
   position: relative;
   overflow-x: hidden;
   -webkit-font-smoothing: antialiased;
 }

 .page-wrapper{
    position: relative;
    overflow: hidden;
 }
 
 
:root {
    --primary: #006837;
    --main: #db6128;
    --linear1: linear-gradient(#006837, #06a258);
    --linear2: linear-gradient(90deg, #006837, #06a258);
    --linear3: linear-gradient(#cb4c2c, #f38d1e);
    --linear4: linear-gradient(90deg, #cb4c2c, #f38d1e);
    --tit-color: #2a2a29;
}
 
 
 *:focus {
   outline: none;
 }
 
 a{
   color: #333;
 }
 
 a:hover{
   text-decoration: unset;
   cursor: pointer;
   color: var(--primary);
 }
 
 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) */
 }

 h1{
  margin-bottom: 0;
 }


 .boxImg{
  overflow: hidden;
 }
 
 .page-wrapper{
   position: relative;
   height: 100%;
 }
 
 .container-fluid{
   width: 96%;
   margin: auto;
 }

/*头部导航*/
.mainHeader{
  z-index: 6;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transition: all .5s ease-out 0s;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.mainHeader .d1{
  padding-left: 4%;
}

.mainHeader .item .sub-menu{
  padding: 15px 0;
  background: #f2f2f2;
  min-width: 220px;
  width: max-content;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 99;
  transform: translateX(-50%);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--linear1);
  display: none;
  
}

.mainHeader .item .sub-menu a{
  height: 40px;
  line-height: 40px;
  padding: 0 45px;
  text-align: center;
  display: block;
  color: #fff;
}

.mainHeader a{
  display: block;
}

.mainHeader .d2{
  max-width: 700px;
}

.mainHeader .d2 .item{
  position: relative;
}

.mainHeader .d2 .item>a{
  height: 90px;
  line-height: 90px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 15px;
}

.mainHeader .d2 .item>a:after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border: 8px solid;
  border-color: transparent transparent #006837 transparent;
  opacity: 0;
  transition: all .3s ease;
}

.mainHeader .d2 .item:hover>a:after{
  opacity: 1;
}

.mainHeader .d3 .tel{
  height: 90px;
  line-height: 90px;
  border-left: 1px solid #eee;
  padding-left: 25px;
  margin-left: 25px;
}

.mainHeader .d3 .tel .tel-ico svg{
  fill: #016837;
}

.mainHeader .d3 .tel .telphone{
  font-size: 22px;
  font-family: 'SHU';
  margin-left: 5px;
}

.mainHeader .d3 .top-search{
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  margin-left: 25px;
  background-color: #ea7d21;
  background-image: linear-gradient(160deg,#f28d1e 0,#18c775 100%);
  cursor: pointer;
}

.mainHeader .d3 .top-search svg{
  fill: #fff;
}

.search-form{
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 45px 15px;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);  
  transition: all .5s;
} 

.top-search:hover .search-form{
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1); 
}

.search-form form{
  display: block;
  position: relative;
}

.search-form input{
  height: 45px;
  line-height: 45px;
  padding: 5px 35px;
  display: block;
  width: 60%;
  margin: auto;
  border:1px solid #ccc;
  border-radius: 25px;
}

.search-form button{
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  position: absolute;
  right:20%;
  top: 0;
  border:none;
  background-color: var(--primary);
  color: #fff;
}


::-webkit-input-placeholder{
  color: #666666;
} 

:-moz-placeholder{
   color:#666666;
} 

::-moz-placeholder{
  color: #666666;
}

:-ms-input-placeholder{
  color: #666666;
} 


/*banner*/
.banner{
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}

.swiper1 .swiper-slide{
  position: relative;
}

.swiper1 .swiper-slide .div-text{
  position: absolute;
  width: 100%;
  top: 45%;
  color: #fff;
  transform: translateY(-50%);
  text-align: center;
}

.swiper1 .swiper-slide .div-text .title1{
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 3px;
  position: relative;
}

.swiper1 .swiper-slide .div-text .title1:after{
 /* position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  transition: all 5s; */
}

.swiper1 .swiper-slide .div-text .title2{
  font-size: 30px;
 /* max-width: 600px;*/
  margin-top: 15px;
  font-weight: lighter;
}

.swiper1  .swiper-slide-active .title1{
  animation: slideInUp 1.2s ease-in;
  -webkit-animation: slideInUp 1.2s ease-in;
  animation-fill-mode: forwards;
}

.swiper1  .swiper-slide-active .div-text .title1:after{
  width: 100%;
  left: 0;
}

.swiper1  .swiper-slide-active .title2{
  animation: fadeInUp 1.2s ease-in;
  -webkit-animation: fadeInUp 1.2s ease-in;
  animation-fill-mode: forwards;
}

.swiper1 .swiper-pagination-bullet{
  transition: all 1.2s;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  bottom: 30px;
}

.swiper1 .swiper-pagination-bullet-active{
  width: 65px;
  background-color: var(--primary);
}

.nrPt{
  padding: 85px 0;
}

.commTit h3{
  font-size: 66px;
  font-weight: bold;
  font-family: 'SHU';
  transform: scaleY(0.8);
}

.commTit h3 span{
  background-image: var(--linear4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commTit p.p1{
  font-size: 36px;
  letter-spacing: 2px;
}

/*公司简介*/
.companyBlock{
  /*background-image: url(?template/default/assets/images/company-bg.png);
  background-size: cover;*/
}

.companyBlock .companyJj{
  margin-top: 35px;
  margin-bottom: 45px;
  background: #f4f8f6;
  padding: 4%;

}

.companyBlock .companyJj p{
  line-height: 30px;
  color: #666;
  margin-bottom: 5px;
}

.companyRight{
  margin: 25px 0;
}

.viewMore a{
  display: inline-block;
  background-color: var(--main);
  color: #ffff;
  padding: 15px 35px;
  font-size: 18px;
  transition: all .3s;
}

.viewMore a:hover{
  background-color: var(--primary);
}

.viewMore a span{
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 2px;
}


/*产品中心*/
.productBlock{
  background-image: url(?template/default/assets/images/product-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.productBlock .commTit h3{
  color: #fff;
}

.productBlock .commTit p.p1{
  color: #fff;
}

.pLists{
  margin-top: 55px;
}

.pLists .list a{
  display: block;
  position: relative;
  color: #333;
  padding-bottom: 45px;
  background: #fff;
}

.pLists .list .boxImg img{
  width: 100%;
  transition: all .6s;

}

.pLists .list:hover .boxImg img{
  transform: scale(1.05);
}

.pLists .list .boxText{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0 0 0 / 6%);
  padding: 15px 15px;
  text-align: center;
  transition: all .3s;
}

.pLists .list:hover .boxText{
  background-color: rgb(0 0 0 / 30%);
}

.pLists .list:hover p.title{
  color: #fff;
}


.pLists .list .boxText p.title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.circle-g{
  position: relative;
  margin-bottom: 50px;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  margin: 0 auto;
}

.circle-g span.s1{
  display: block;
  padding-left: 22px;
  font-size: 14px;
  line-height: 36px;
  color: #fff;
  white-space: nowrap;
  text-align: left;
}

.circle-g span.s2{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(0deg, #cb4c2c, #f38d1e);
    transition: all 0.4s;
}

.pLists .list:hover .circle-g span.s2{
  transform: rotate(360deg);
  background: linear-gradient(0deg, #006837, #06a258);
}
.pLists .list:hover .circle-g{
  width: 120px;
  background: linear-gradient(0deg, #006837, #06a258);
}

/*工程案例*/
.scopeBlock{
  background-color: #003118;
  position: relative;
  background-size: cover;
}

.scopeBlock .swiper-slide{
  width: 500px;
}

.scopeBlock .swiper-scrollbar{
  bottom: 35px;
  left: 20px;
  width: 58%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.scopeBlock .swiper-scrollbar-drag{
  height: 5px;
  top: -2px;
  background: #ed8220;
}

.scopeBlock .item a{
  display: block;
  position: relative;
  overflow: hidden;
}

.scopeBlock .item .boxImg img{
  width: 100%;
  transition: all .5s ease;
}

.scopeBlock .item .mask{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  text-align: center;
  transition: all .5s ease;
  opacity: 0;
}

.scopeBlock .item .linkview{
  width: 100%;
  transition: all .5s ease;
}

.scopeBlock .item:hover .boxImg img{
  transform: scale(1.2);
}

.scopeBlock .item:hover .mask{
  width: 100%;
  opacity: 1;
}

.scopeBlock .item:hover .linkview{
  transform: rotate(180deg);
}

/*新闻中心*/
.newsLists{
  margin-top: 25px;
}

.newsLists .newsLeft a{
  display: block;
  position: relative;
}

.newsLists .newsLeft a:after{
    position: absolute;
    height: 50%;
    background: linear-gradient(rgba(6,71,155,0),rgb(0 104 55));
    transition: all .5s;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.newsLists .newsLeft .boxText{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 9;
  padding: 15px 25px;
}

.newsLists .newsLeft .boxText p.title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.newsLists .newsLeft .boxImg img{
  width: 100%;
  transition: all .6s;
}

.newsLists .newsLeft a:hover .boxImg img{
  transform: scale(1.1);
}

.newsLists .newsLeft .boxText p.des{
  font-size: 14px;
  color: #fffb;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsItems a{
  display: block;
  color: #333;
}

.newsItems .time{
  font-size: 14px;
  padding: 5px 25px;
  background-image: var(--linear3);
  border-radius: 15px;
  color: #fff;
}

.newsItems .item{
  margin-bottom: 15px;
  background-color: #f4f9f6;
  padding: 20px;
}

.newsItems .item p.title{
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: bold;
}

.newsItems .item p.des{
  font-size: 14px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.newsItems .item:hover{
  background-color: #d65d290d;
}

/*底部*/
.footerBlock{
  background-color: #09181e;
  border-top:4px solid var(--primary);
}



.footerBlock .footerLeft,.footerBlock .footerLeft a{
  color: #ffffff63;
}


.footerBlock .footerLeft a.a1{
  display: block;
  margin-bottom: 15px;
}

.footerBlock p.title{
  color: #0fa55f;
  margin-bottom: 15px;
  font-size: 18px;
}

.footerBlock .fastLink a{
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
}

.footerBlock .fastLink a:hover{
  color: #0fa55f;
}


.footerBlock .cinfos,.footerBlock .cinfos a{
  color: #fff;
}

.footerBlock .cinfos a svg{
  display: inline-block;
  margin-right: 5px;
}


.footerBlock a:hover{
  color: #0fa55f;
}

/*内页*/
.nyMenu{
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: #fff;
  padding: 15px 0;  
  background-color: rgba(0,0,0,.2);
} 

.nyMenu a{
  color: #fff;
  display: inline-block;
  margin: 0 5px;
}

.nyMenu span{
  display: inline-block;
  vertical-align: bottom;
}


/*联系杏耀*/
.contactRight{
  height: 100%;
}

#allmap{
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.BMapLabel{
  background-color: unset!important;
  width: 45px;
  border:none!important;
}

.contactLeft{
  background-color: #3cbe6717;
  padding: 35px 25px;
}

.contactBlock .commTit{
  margin-bottom: 35px;
}

.contactLeft .title{
  font-size: 18px;
  font-weight: bold;
  color: #000;
  letter-spacing: 3px;
}


.contactLeft .item{
  margin-bottom: 25px;
}

.onlineMsg{
  background-color: #3cbe6717;
}

.boxForm{
  max-width: 1000px;
  margin: auto;
  margin-top: 35px;
  font-size: 14px;
}

.boxForm .item{
  margin-bottom: 25px;
}


.boxForm textarea{
  display: block;
  width: 100%;
  border:none;
  box-shadow: unset;
  background-color: #fff;
  padding: 20px;
}

.boxForm input{
  display: block;
  width: 100%;
  padding: 15px 20px;
  border:none;
  box-shadow: unset;
  background-color: #fff;
}

.boxForm .submitBtn button{
  display: block;
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 15px 25px;
  border-radius: 25px;
  border:none;
  transition: all .5s;
}

.boxForm .submitBtn button:hover{
  background-color: var(--main);
}

.nyLists1 a.item{
  display: block;
  background-color: #a3a9a517;
  color: #333;
  margin-bottom: 25px;
}

.nyLists1 a.item .boxImg img{
  width: 100%;
  transition: all .5s ease;
}

.nyLists1 a.item .boxText{
  padding: 20px;
}

.nyLists1 a.item .time{
  font-size: 14px;
  color: rgba(153,153,153,1);
}

.nyLists1 a.item .time svg{
  display: inline-block;
  margin-right: 5px;
  vertical-align: text-top;
}

.nyLists1 a.item h3.title{
  font-size: 18px;
  margin-top: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.nyLists1 a.item .des{
  border-top: 1px solid #777;
  margin-top: 15px;
  padding-top: 15px;
  color: #777;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}

.nyLists1 a.item:hover{
  background-color: #29c26e0d;
}

.nyLists1 a.item:hover .boxImg img{
    transform: scale(1.1);
}

.nyLists1 a.item:hover h3.title{
  color: var(--primary);
}

.nynewsLeft{
  padding: 4%;
  background-color: #ffff;
  box-shadow: 0 0 25px rgba(0,0,0,.1);
}

.backToList a{
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 15px 35px;
  margin: 15px 0;
}

.backToList a span{
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.backToList a:hover{
  background-color: var(--main);
}

.newsCon h2.title{
  font-size: 32px;
  font-weight: bold;
  margin-bottom:15px;
}

.newsCon .release{
  font-size: 14px;
  color: #999;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #777;
}

.newsCon .release p{
  margin-right: 15px;
}

.newsCon .content{
  min-height: 350px;
}

.sxArticle{
  margin-top: 25px;
}

.newsRec{
  box-shadow: 0 0 25px rgba(0,0,0,.1);
  background-color: #fff;
  border-top:4px solid var(--primary);
  padding: 35px 25px;
}

.newsRec p.title{
  font-size: 24px;
}

.newsRec a{
  display: block;
  padding: 15px 0;
  line-height: 45px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box!important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.nyLists2 a.item{
  border:1px solid #eee;
}

/*产品详情*/
.nyPro{
  background-color: #f5f5f5;
}

.nyPro .zyContent{
  background: #fff;
    padding: 5% 2%;
}

.div-imgs{
  overflow: hidden;
}

.div-imgs .big-imgs{
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  border: 2px solid #eee;
}

.div-imgs .big-imgs img{
  width: 100%;
}

.div-imgs{
  margin-top: 10px;
  position: relative;
}

.div-imgs .swiper-slide img{
  width: 100%;
}

.div-imgs .pro-btn{
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  background-color: #f5f5f5;
  color: var(--primary);
  text-align: center;
  font-size: 28px;
  font-family: 'DINPRO';
  z-index: 999;
}

.div-imgs .pro-btn>div{
  position: relative;
  height: 100%;
  width: 100%;
}

.div-imgs .pro-btn span{
  display: inline-block;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%);
}

.div-imgs .pro-btn.swiper-button-disabled{
  opacity: .6;
}

.div-imgs .pro-btn.pro-prev{
  left: 15px;
} 

.div-imgs .pro-btn.pro-next{
  right: 15px;
}

.small-imgs{
  position: relative;
  margin-top: 25px;
  margin-bottom: 15px;
  padding: 0 35px;
}

.small-imgs .proSmall{
  overflow: hidden;
}

.small-imgs .swiper-slide{
  border:1px solid #eee; 
}

.proBig{
  overflow: hidden;
}

/**/
.zyContent .boxText h2.title{
  font-size: 30px;
  margin: 25px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.zyContent .boxText p.des{
  line-height: 28px;
  color: #666;
  margin-bottom: 25px;
}

.zyContent .fl{
  margin-bottom: 25px;
}

.zyContent .fl span{
  font-weight: bold;
}

.zyContent .fl a{
  color: var(--main);
}

.zyContent .viewMore a.a2{
  background-color: var(--primary);
  margin-left: 25px;
}


.xxContent{
  max-width: 1300px;
  margin: 25px auto;
  margin-top: 25px;
  padding: 5% 4%;
  background-color: #fff;
}


.xxContent h2.title{
  font-size: 30px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: -15px;
}

.xxContent h3.title{
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-top: 35px;
  margin-bottom: 25px;
}

.xxContent div.des{
  line-height: 28px;
  margin-bottom: 25px;
}

.xxContent div.tb{
  text-align: center;
  margin-bottom: 25px;
}

.xxContent div.tb img{
  margin: auto;
}

.scopeLists ul li{
  width: 33%;
  padding: 15px 15px;
  cursor: pointer;
}

.scopeLists ul li .div-img{
  overflow: hidden;
}

.scopeLists ul li img{
  transition: all .5s ease;
  width: 100%;
}

.scopeLists ul li:hover img{
  transform: scale(1.1);
}

.pagination{
  margin-top: 35px;
}

.pagination a{
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border:1px solid #eee;
  border-radius: 3px;
  margin: 0 5px;
}

.pagination a.page-num-current,.pagination a:hover{
  color: #fff;
  background-color: var(--primary);
}

.solutions{
  margin-bottom: 45px;
}


.solutions a{
  padding: 12px 35px;
  border-radius: 15px;
  border:2px solid var(--main);
  font-size: 18px;
  color: var(--main);
  transition: all .6s;
}

.solutions  a svg{
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  fill: var(--main);
  transition: all .6s;
}


.solutions a:hover{
  background-color: var(--main);
  color: #fff;
}

.solutions a:hover svg{
  fill: #fff;
}

.nyLists3 a{
  padding: 15px 25px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  font-size: 20px;
  border-radius: 5px;
}






 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 