*{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
  color: unset;
}

body{
    width: 100%;
}

.main{
  width: 100%;
}
.backLan{
  background: #00923d;
}
.balkHei{
  background: rgba(255, 255, 255, 0.15);
}
.backHua{
  background: #00923d;
}
.activeNav{
  border-bottom: 3px solid #00923d;
  color: #00923d;
}
.zicolorh{
  color: #00923d;
}
.title{
  font-size: 40px;
    color: #00923d;
}
.Piaohong{
    color: black ;
}
.titlexiao{
  font-size: 14px;
  margin-top: 10px;
}
.nav{
  width: 100%;
  position: fixed;
  top: 0;
  height: 80px;
  display: flex;
  z-index: 9999;
  background: rgba(0,0,0,0.3);
}
.nav .navXiao{
  width: 13%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.nav .navXiao>a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .navXiao>a>img{
  width: 60%;
}
.navXiao>div{
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navXiao>div>span{
  text-align: center;
  color: white;
  font-size: 15px;
  margin-top: 2px;
}
.navXiao>span{
  height: 100%;
  display: flex;
  margin-right: 10px;
  align-items: center;
}
.navXiao>span>img{
  width: 20px;
}

.navXiao>p{
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}

.nav .navDa{
  width: 69%;
  height: 79px;
  padding: 0 2.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(207, 207, 207, 0.486);
}

.nav .navDa>li{
  height: 100%;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
	flex-direction: column;
	position: relative;
}



.nav .navDa>li:hover{
  border-bottom: 3px solid #00923d;
  /*color: #00923d;*/
}

.xialadea{
    position: absolute;
    top: 80px;
    left: -85px;
    display: none;
    background: #00923d;
    color: white;
    width: 240px;
    font-size: 14px;
}


.xialadea>li{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e5e555;
}
.xialadea>li>a{
	width:100%;
height:100%;
line-height: 50px;
text-align: center;
}
.xialadea>li:hover{
    background: #00923d;
}



.daohang {
  position: absolute;
  bottom: 30px;
  right: 10%;
  color: white;
  display: flex;
  align-items: center;
  font-size: 14px;
}


.daohang>a {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  /* border-right: 1px solid rgb(255, 255, 255); */
}

.daohang>span {
  display: flex;
  width: 1px;
  height: 15px;
  background: white;
}

.productColor {
  color: #5ba8bd;
}


.nav .navDa>li>a{
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}

.lunbotu{
  width: 100%;
}



.rotation{
  position: relative;
  overflow: hidden;
}

.rotation>img{
  width: 100%;
  z-index: 0;
}

.bannerIndex{
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
}





.bannerIndex>img{
  width: 102%;
}

.bannerContent{
  position: absolute;
  top: 0;
  width: 80%;
  padding: 0 10%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerConta{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding-bottom: 20px;
  overflow: hidden;
}
.bannerConta>div{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}



.shubiaoimg{
  position: absolute;
  bottom: 0;
}

/*.shubiaoimg>img{*/
/*  width: 70px;*/
/*}*/
@keyframes scaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1); /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1); /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}



    @keyframes mylogo {
      from {
        top: 15px;
      }

      to {
        top: -15px;
      }
    }

    @-moz-keyframes mylogo

    /* Firefox */
      {
      from {
        top: 15px;
      }

      to {
        top: -15px;
      }
    }

    @-webkit-keyframes mylogo

    /* Safari 和 Chrome */
      {
      from {
        top: 15px;
      }

      to {
        top: -15px;
      }
    }

    @-o-keyframes mylogo

    /* Opera */
      {
      from {
        top: 15px;
      }

      to {
        top: -15px;
      }
    }

    .shubiaoimg>img {
       width: 50px;
      float: left;
      position: relative;
      margin: 30px auto;
      padding: 0px;
      cursor: pointer;
      animation: mylogo 1s linear 0s infinite alternate;
      /* Firefox: */
      -moz-animation: mylogo 1s linear 0s infinite alternate;
      /* Safari 和 Chrome: */
      -webkit-animation: mylogo 1s linear 0s infinite alternate;
      /* Opera: */
      -o-animation: mylogo 1s linear 0s infinite alternate;
    }
    


.bannerConta>div>p,.bannerConta>p{
  font-size: 45px;
  letter-spacing: 3px;
}





.bannerConta>div>span,.bannerConta>span{
  font-size: 20px;
  margin-top: 30px;
  letter-spacing: 5px;
}

.kefudianzan{
  font-size: 28px !important;
  margin-top: 25px !important;
  font-weight: 100 !important;
}

.bannerConta>div>a{
  font-size: 15px;
  margin-top: 50px;
  color: white;
  padding: 10px 30px;
  border: 1px solid white;
  transition: all 1s;
}


.bannerConta>div>a:hover{
  transform: scale(1.1); /*放大1.1倍*/
}

.activeCase{
  background: #00923d;
  color: white !important;
}



.indexChoice{
  width: 80%;
  margin-left: 10%;
  padding: 70px 0;
}

.cCnas{
  width: 80%;
  margin-left: 10%;
  display: flex;
  justify-content: space-between;
}

.cCnas>a{
  width: 20%;
  height: 50px;
  border: 1px solid #00923d;
  display: flex;
  justify-content: center;
  color: black;
}
.cCnas>a.active,
.cCnas>a:hover{
    background: #00923d;
    color: #fff;
}
.cCnas>a>li{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}





.footer{
  width: 80%;
  padding-top: 50px;
  padding-left: 10%;
  padding-right: 10%;
  background: #00923d;
  overflow: hidden;
}
.footer>.footerTop{
  width: 100%;
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footLeft{
  width: 70%;
  /* border-top: 1px solid #435c8f; */
}
.footRight{
  width: 25%;
  padding-left: 5%;
  border-left: 1px solid rgba(255,255,255,.1);
  color: white;
}
.leftLogo{
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 50px 0;
}
.leftLogo>img{
  width: 20%;
}

.footLeft>ul{
  width: 95%;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}

.footLeft>ul>li{
  display: flex;
  flex-direction: column;
}


.footLeft>ul>li>div{
  color: white;
  font-size: 16px;
}

.footLeft>ul>li>ul{
  margin-top: 10px;
}
.footLeft>ul>li>ul>li>a{
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #c9e4d4;
}


.footLeft>ul>li>ul>li>a:hover{
  color: white;
}

.footRight>p{
  margin-top: 10px;
  font-size: 14px;
}

.footRight>ul{
  margin: 20% 0;
}
.lianxi{
  color: #c9e4d4;
}
.lianxi>li{
    /* height: 40px; */
    font-size: 14px;
    margin-top: 14px;
    line-height: 27px;
    display: flex;
    align-items: flex-start;
}

.lianxi>li>img{
  margin-right: 10px;
  margin-top: 8px;
}
.erweima{
  display: flex;
}

.erweima>li{
  padding-right: 30px;
  font-size: 14px;
  color: #c9e4d4;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.erweima>li>p{
  margin-top: 10px;
}

.footEnd{
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #c9e4d4;
  padding: 20px 0;
}
.footEnd a{
  color: #c9e4d4;
}
/* 推荐 */



.cContent{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}


.cContent>li{
  width: 31%;
  background: white;
  margin-top: 70px;
  transition: all 0.5s;
  margin-right: 1%;
}

.cContent>li>a{
  width: 100%;
  transition: all 0.5s;
}

.cContent>li:hover{
  color: #00923d;
  -moz-box-shadow: 5px 5px 10px #ddd;
  -webkit-box-shadow: 5px 5px 10px #ddd;
  box-shadow: 5px 5px 10px #ddd;
  transform: translate3d(0,-2px,0);
  transform: scale(1.03);
}
.cjieshao{
  width: 95%;
  margin-left: 2.5%;
  margin-top: 20px;
}

.cContent>li>a>img{
  width: 100%;
}

.cjieshao>P{
  font-size: 14px;
  margin-bottom: 20px;
}

.cjieshao>div>span{
  color: #000000;
  font-size: 12px;
  margin-right: 20px;
  color: #999999;
}

.cjieshao>a{
  height: 60px;
  font-size: 15px;
  color: #999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(172, 172, 172, 0.294);
  margin-top: 20px;
}

.cjieshao>a:hover{
  color: #00923d;
}


.tuijian{
  width: 80%;
  margin-left: 10%;
  padding-bottom: 50px;
  margin-top: 70px;
}


.tuijian>h3{
  font-size: 25px;
  color: #00923d;
  font-weight: 500;
}

.tuijian>.cContent>li{
  width: 32.333333333%;
  padding-bottom: 30px;
}


.tuijian>.cContent>li>img{
    width: 100%;
}
.uiter{
  display: none !important;
}



.shoujiduan{
  width: 100%;
  position: absolute;
  top: 45px;
  background: white;
  /*padding: 20px 0;*/
  display: none;
}

.shoujiduan>li{
  height: 45px;
}

.shoujiduan>li>a{
  width: 90%;
  padding-left: 10%;
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  color: #383838;
  /*font-weight: 700;*/
  font-size: 14px;
}

.shoujiduan>li>a:hover{
  color: white;
  font-weight: 900;
  background: #00923d;
}



@media (max-width: 1300px){
  .navXiao>div>span{
    font-size: 15px;
  }
  .nav .navDa>li>a{
    font-size: 13px;
  }
  
  .iNewsImg{
    overflow: hidden;
  }
  .iNewsImg>img{
    width: 120%;
  }
  
.cCnas{
  width: 100% !important;
  margin: 0 !important;
}
}



@media (max-width: 1000px){
    
  .uiter>img{
    width: 30%;
  }
   .backLan{
        width: 40% !important;
    }
    .balkHei{
        width: 50% !important;
    }
    .backHua{
        width: 40% !important;
    }
    .uiter{
        width: 20% !important;
        background: #829ccc;
    }
  .navDa{
    display: none !important;
  }

  .uiter{
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
    .balkHei{
      background: #829ccc;
    }
.footerTop{
  flex-wrap: wrap;
}
.footLeft,.footRight{
  width: 100%;
}
.footRight{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footRight>ul{
  margin: 10% 0;
}
.footEnd{
  flex-wrap: wrap;
}

.footEnd>p{
  width: 100%;
}

.cCnas>a>li{
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow:ellipsis;/*设置超出内容显示...*/
}
.cCnas{
    flex-wrap: wrap;
}

.cCnas>a{
  width: 45% !important;
  height: 40px !important;
  margin-top: 20px;
}

}


.pcbbb{
    width: 0 !important;
    display: none;
    height: 0;
    overflow: hidden;
}
  

@media (max-width: 750px){
    #right-link{
        width: 100%;
        display: flex;
        justify-content: center;
        bottom: 0 !important;
        margin:  auto;
    }
    #right-link ul{
        width: 100%;
        display: flex;
    }
    
    #right-link ul li{
        width: 25%;
        border-right: 0.5px solid #e8e8e8;
    }
    
    #right-link ul li a{
        width: 100% !important;
        display: flex;
        margin-top: 0 !important;
    }
    .ioioio{
        background: #00923d !important;
        color: #00923d !important;
    }
.footLeft>ul{
    display: none;
}
    .cjieshao>a{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-top: 10px;
        padding: 3px 0;
        height:  auto !important;
    }
    .cjieshao>P{
        margin-bottom: 5px !important;
    }
    
    .cjieshao>a>div{
        margin-top: 10px;
        font-size: 12px;
    }
    .iAdhang>div>span{
        
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
    }
    
  .uiter>img{
    width: 50%;
  }
  .footLeft>ul{
    flex-wrap: wrap;
  }
  .footLeft>ul>li{
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  
  .footLeft>ul{
      justify-content: center;
  }
  .footLeft>ul>li>ul>li>a{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .shubiaoimg{
      display: none !important;
  }
  .cContent{
      flex-wrap: wrap;
  }
  
  .cContent>li{
      width: 100% !important;
      margin-top: 15px !important;
  }
  .hengxian{
      font-size: 18px !important;
  }
  
  .cjieshao>P{
      font-size: 14px !important;
  }
  .cjieshao>div>span{
      font-size: 12px;
  }
  
.tuijian{
    margin-top: 30px !important;
}
.tuijian>h3{
    font-size: 18px !important;
}
.footLeft>ul>li{
    margin-top: 10px !important;
}
.footLeft>ul>li>ul>li>a{
    height: auto !important;
    padding: 3px 0;
}
.footRight {
    width: 100%;
    padding-left: 0%; 
     border-left: 0px solid #435c8f; 
    color: white;
}
.footRight>ul{
    margin: 0;
}
.erweima{
 width: 100%;
 margin-top: 10px !important;
}
.lianxi>li{
    margin-top: 0 !important;
}
.pcaaa{
    display: none !important;
}
.pcbbb{
    width: 40% !important;
    display: flex !important;
    height: auto !important;
}
}

@media (max-width: 500px){
    .indexChoice{
        padding: 0 0%;
    }
    .iAdhang>div>img{
        width: 40px;
    }
    .service>li{
        margin-top: 25px;
    }
  .bannerConta>div>p, .bannerConta>p{
    font-size: 18px;
  }
  .bannerConta>div>span, .bannerConta>span{
    font-size: 13px;
    text-align: center;
    letter-spacing: 0px !important;
  }
  
  .navXiao>div>span{
  }
  .iServica>p{
    flex-wrap: wrap;
    font-size: 12px;
  }
  
  .iServica>p>span{
    width: 100%;
  }
  .title{
    font-size: 30px;
  }
  .titlexiao{
    width: 90%;
    text-align: center;
  }
  .iCasBann>li{
    
    white-space: nowrap;/*强制在一行显示*/
    text-overflow:ellipsis;/*设置超出内容显示...*/
    overflow: hidden;
  }
  .ianliCont{
    font-size: 12px;
  }
  .ianliCont>div>img{
    width: 0;
  }
  .lunbo.bottom-nav{
    display: none !important;
  }
  .NewCont>p,.iNewZc>p{
    white-space: nowrap;/*强制在一行显示*/
    text-overflow:ellipsis;/*设置超出内容显示...*/
    overflow: hidden;
    font-size: 16px;
  }
  .NewCont>div,.iNewZc>div{
    font-size: 11px;
  }
  .NewCont{
      margin-top: 10px;
  }
  .NewTime>p {
    font-size: 28px;
  }
  .iNewsTime{
    top: -100px !important;
  }
  .leftLogo{
    width: 100%;
    border-bottom: 1px solid #435c8f;
    padding: 50px 0;
    display: flex;
    justify-content: center;
  }
  .leftLogo>img{
    width: 50%;
  }
  .bannerIndex{
    height: auto;
  }
  
  .bannerConta>div>span, .bannerConta>span{
      margin-top: 10px;
  }
  .bannerConta>div>a{
      margin-top: 10px;
  }
  .nav{
      height: 45px !important;
  }
  #ups-banner{
      margin-top: 0px;
  }
  .iServica>div{
      font-size: 30px;
  }
  
.footer{
    padding-top: 10px;
}
.leftLogo{
    padding: 20px 0 !important;
}
.footLeft>ul{
    padding: 0 !important;
}
}














