*{
  box-sizing: border-box;
}
@-webkit-keyframes fadeinup {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px); }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0); } }
@keyframes fadeinup {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px); }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0); } }
@-webkit-keyframes fadeZoom {
    0% {
        -webkit-transform: scale3d(1.05, 1.05, 1);
        opacity: 0;
        transform: scale3d(1.05, 1.05, 1); }
    to {
        -webkit-transform: none;
        opacity: 1;
        transform: none; } }

@keyframes fadeZoom {
    0% {
        -webkit-transform: scale3d(1.05, 1.05, 1);
        opacity: 0;
        transform: scale3d(1.05, 1.05, 1); }
    to {
        -webkit-transform: none;
        opacity: 1;
        transform: none; } }
/*首页导航*/
.header-nav{
    width: 100%;
    height: 114px;
    position: fixed;
    top:0;
    left:0;
    background: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 1000;
}
.header-nav.scroll{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.header-nav .warpper{
    height: 100%;
}
.header-nav .header-nav-logo{
    position: absolute;
    height: 100%;
    width: 380px;
    top:0;
    left:0;
    padding-top: 34px;
}
.header-nav .header-nav-logo img{
    max-width: 100%;
    max-height: 100%;
    float: left;
    margin-right: 20px;
    /*position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;*/
}
.header-nav .header-nav-logo p:nth-child(2){
  font-size: 20px;
  color: #00953B;
}
.header-nav .header-nav-logo p{
  font-size: 16px;
  color: #000;
}
.header-nav .header-nav-url{
    width: 50%;
    height: 100%;
    margin: 0 auto;
}
.header-nav .header-nav-url ul{
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.header-nav .header-nav-url ul li a {
    display: block;
    height: 100%;
    text-align:center;
    position: relative;
    padding-top: 43px;
}
.header-nav .header-nav-url ul li a i{
    display: block;
    position: absolute;
    width: 100%;
    left:0;
    bottom:0;
    height: 2px;
    background: #00963C;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}
.header-nav .header-nav-url ul li a:hover i{
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}
.header-nav .header-nav-url ul li a.active i{
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}
.header-nav .header-nav-url ul li a .pbox .fir{
    font-size:18px;
    color:#404040;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-nav .header-nav-url ul li a:hover .pbox .fir{
    color:#00963C;
}
.header-nav .header-nav-url ul li a.active .pbox .fir{
    color:#00963C;
    font-weight: bold;
}
.header-nav .header-nav-url ul li a .pbox .sec{
    font-size:12px;
    color:#717171;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.header-nav .header-nav-url ul li a:hover .pbox .sec{
    color:#00963C;
}
.header-nav .header-nav-url ul li a.active .pbox .sec{
    color:#00963C;
}
.header-nav .header-nav-tel{
    position: absolute;
    right:0;
    top:15%;
}
@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);
    }
}
.header-nav .header-nav-tel img{
    max-width: 100%;
    float: left;
    /*-webkit-animation: tada 1.5s ease both infinite;
    -o-animation: tada 1.5s ease both infinite;
    animation: tada 1.5s ease both infinite;*/
    margin-right: 15px;
    margin-top: 11%;
}
.header-nav .header-nav-tel .text{
    float: left;
}
.header-nav .header-nav-tel .text .fir{
    font-size:16px;
    color:#555555;
}
.header-nav .header-nav-tel .text .sec{
    font-size:26px;
    color:#00973D;
    font-weight: 700;
    font-family: ziti2;
    line-height: 30px;
}

.header-nav-menu{
    float: right;
    width: 30px;
    height: 20px;
    position: relative;
    margin-top: 24px;
    cursor: pointer;
    display: none;
}
.header-nav-menu span{
    height: 2px;
    width: 100%;
    display: block;
    background: #00963C;
    border-radius: 10px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
}
.header-nav-menu span + span {
    margin-top: 6px;
}
.header-nav-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: relative;
    bottom: -10px;
}
.header-nav-menu.active span:nth-child(2){
    display: none;
}
.header-nav-menu.active span:nth-child(3){
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    top: 2px;
}
.header-nav-item{
    position: fixed;
    height: calc(100% - 50px);
    overflow-y: auto;
    top: 65px;
    width: 100%;
    background: #fff;
    left: -100%;
    z-index: 999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-top: 1px solid #eee;
    box-shadow: none;
    -webkit-box-shadow: none;
    display: block;
    -webkit-justify-content: unset;
    -moz-justify-content: unset;
    -ms-justify-content: unset;
    -o-justify-content: unset;
    justify-content: unset;
    opacity: 0;

}
.header-nav-item.show{
    left: 0;
    overflow: auto;
    opacity: 1;
}
.header-nav-item ul li{
    border-bottom: 1px solid #eee;
    position: relative;
}
.header-nav-item ul li>a{
    display: block;
    line-height: 60px;
    position: relative;
    font-size:16px;
    color:#333;
    font-weight: 700;
    padding: 0 3.5%;
}
.header-nav-item ul li i{
    display: block;
    position: absolute;
    top:0;
    right:3.5%;
    width: 45px;
    height: 60px;
    background: url("../images/header-nav-li-bg.png") no-repeat center right;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    cursor: pointer;
}
.header-nav-item ul li .erji-a{
    background: #f8f8f8;
    display: none;
}
.header-nav-item ul li .erji-a a{
    display: block;
    line-height: 40px;
    font-size:14px;
    color:#666;
    padding:0 3.5%;
}

/*搜索*/
#header-search {
  position: absolute;
  right: -25px;
  top: 55px;
}

.search-box-wrap {
  background: #ffffff;
  display: none;
  position: absolute;
  left: 0;
  top: 59px;
  padding: 25px 30px 25px;
  z-index: 9991;
  box-shadow: 0 0 6px #00000036;
}
#header-search a.search-icon {
  padding: 0px 0 0;
  display: block;
  font-size: 13px;
  color: #fff;
}
#header-search img{
  margin-right: 0px;
}

.header-social-wrapper .social-links ul li a::before {
  color: #fff;
}

#header-search form.search-form {
  position: relative;
}

#header-search input.search-field {
  width: 100%;
  border: 2px solid #f7f7f7;
  border-radius: 50px;
  padding: 17.5px 25px;
}

#header-search .search-submit {
  margin-top: 15px;
}

#header-search .searchform {
  width: 430px;
  margin: 0 auto;
  max-width: 100%;
}

.#header-search searchform-inner {
  position: relative;
}
#header-search input.search-submit, input.search-submit:visited {
  position: absolute;
  top: 0;
  margin: 0;
  right: 0;
  font-size: 13px;
  padding: 16px 20px;
  border-radius: 0 50px 50px 0;
}
input[type="button"],
input[type="reset"],
input[type="submit"],
button {
  background: #00953B;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  padding:10px 35px;
  border: none;
  height: auto;
  width: auto;
  cursor: pointer;
  display: inline-block;
}
.flaticon-search-1{
  color: #000;
  font-size: 20px;
}



.banner{
  margin-top: 114px;
}
.swiper-container {
  width: 100%;
  height: 100%;
  background: #000;
}
.banner .swiper-pagination-bullet-active{
  background: #fff;
  width: 10px;
  height: 10px;
}

.swiper-slide {
  font-size: 18px;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 60px;
}

.banner .swiper-slide{
  height: 740px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: right;
}
.banner .swiper-slide .det{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .swiper-slide.slide2 .title{
  background: none;
}
.banner .swiper-slide.slide3 .det{
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
}
.banner .swiper-slide.slide3 .det img{
  display: block;
  max-width: 100%;
  margin:0 auto;
}
.banner .swiper-slide.slide3 .det img:last-child{
  max-width: 65%;
  margin-top: 5%;
}
/*.banner .swiper-slide.slide2 .det{
  background: #00A13E;
  padding: 3% 2%;
}*/

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.swiper-slide .title {
  font-size: 41px;
  font-weight: 300;
  width: 50%;
  background: #069043;
  padding: 3% 2%;
  box-sizing: border-box;
  float: right;
}
.swiper-slide .title img:first-child{
  margin-bottom: 20px;
}
.swiper-slide .subtitle {
  font-size: 21px;
}

.swiper-slide .text {
  font-size: 14px;
  max-width: 400px;
  line-height: 1.3;
}

.bannermore{
  width: 155px;
  height: 45px;
  background: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 14px;
  color: #069043;
  margin-top: 40px;
}
.bannermore:hover{
  font-weight: bold;
}



#main {
  overflow: hidden;
}

/* 首页产品 */
.glotitle {
  margin:55px 0 25px 0;
}
.glotitle h1{
  font-size: 40px;
  line-height: 45px;
} 
.glotitle p{
  font-size: 18px;
  text-transform: uppercase;
} 
.glotitle span{
  color: #009A39;
}
.product-container .swiper-container{
  background: none;
  padding-bottom: 50px;
}
.product-container .swiper-slide{
  padding: 0px;
}
.product-container .swiper-slide img{
  max-width: 100%;
}
.product-container div[class*='product-box']{
  position: relative;
}
.product-container div[class*='product-box'] .inner{
  position: absolute;
  height: auto;
  left: 2%;
  bottom: 4%;
  color: #fff;
}
.product-container .product-box2,
.product-container .product-box3{
  width: 49.5%;
  margin-top: 1%;
}
.product-container div[class*='product-box'] .inner h2{
  font-size: 28px;
}
.product-container div[class*='product-box'] .inner p{
  font-size: 14px;
}
.product-container .swiper-pagination-bullet,
.case-index .swiper-pagination-bullet{
  width: 35px;
  height: 3px;
  background: #009A30;
  border-radius: 0px;
}

.product-container .swiper-button-prev,
.case-index .swiper-button-prev{
    left: -50px;
    right: auto;
    transition: all 0.5s ease;
    color: #fff;
    font-weight: bold;
}
.product-container .swiper-button-next,
.case-index .swiper-button-next{
    right: -50px;
    left: auto;
    transition: all 0.5s ease;
    color: #fff;
    font-weight: bold;
}
.product-container:hover .swiper-button-prev,
.case-index:hover .swiper-button-prev{
  left: 10px;
}
.product-container:hover .swiper-button-next,
.case-index:hover .swiper-button-next{
  right: 10px;
}

/*公司简介*/
.company-main {
  padding: 50px 0;
  margin-top: 30px;
  overflow: hidden;
  background: url(../images/com.jpg) no-repeat center;
}
.left-com{
  width: 45%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-com .square{
  border-radius: 50%;
  display: inline-block;
  margin:0 auto;
  position: relative;
  width: 70%;
}
.left-com .square img{
  border-radius: 50%;
  position: relative;
  z-index: 10;
  max-width: 100%;
}
.circle {
  --scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
  -webkit-animation: pulse 2.5s infinite ease-in-out;
          animation: pulse 2.5s infinite ease-in-out;
  -webkit-transition: background 2s ease-in-out;
  transition: background 3s ease-in-out;
  background: rgb(39, 158, 83);
  mix-blend-mode: luminosity;
}

.circle--1 {
  opacity: 1;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.circle--2 {
  opacity: 0.5;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.circle--3 {
  opacity: 0.3333;
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.circle--4 {
  opacity: 0.25;
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.circle--5 {
  opacity: 0.2;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.circle--6 {
  opacity: 0.1666;
  -webkit-animation-delay: 0.72s;
          animation-delay: 0.72s;
}

.circle--1 {
  --size: calc(100px * 1);
}

@media (min-width: 700px) {

  .circle--1 {
    --size: calc(7vw * 1);
  }
}

@media (min-width: 1000px) {

  .circle--1 {
    --size: calc(70px * 1);
  }
}

.circle--2 {
  --size: calc(110px * 2);
}

@media (min-width: 700px) {

  .circle--2 {
    --size: calc(7vw * 2);
  }
}

@media (min-width: 1000px) {

  .circle--2 {
    --size: calc(70px * 2);
  }
}

.circle--3 {
  --size: calc(120px * 3);
}

@media (min-width: 700px) {

  .circle--3 {
    --size: calc(7vw * 3);
  }
}

@media (min-width: 1000px) {

  .circle--3 {
    --size: calc(70px * 3);
  }
}

.circle--4 {
  --size: calc(145px * 4);
}

@media (min-width: 700px) {

  .circle--4 {
    --size: calc(7vw * 4);
  }
}

@media (min-width: 1000px) {

  .circle--4 {
    --size: calc(130px * 4);
  }
}

.circle--5 {
  --size: calc(130px * 5);
}

@media (min-width: 700px) {

  .circle--5 {
    --size: calc(7vw * 5);
  }
}

@media (min-width: 1000px) {

  .circle--5 {
    --size: calc(120px * 5);
  }
}

.circle--6 {
  --size: calc(50px * 6);
}

@media (min-width: 700px) {

  .circle--6 {
    --size: calc(7vw * 6);
  }
}

@media (min-width: 1000px) {

  .circle--6 {
    --size: calc(110px * 6);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0.70);
            transform: translate(-50%, -50%) scale(0.70);
  }
  
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
  }
  
  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  
  25% {
    -webkit-transform: translate(-50%, -50%) scale(0.70);
            transform: translate(-50%, -50%) scale(0.70);
  }
  
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
  }
  
  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}


.right-com{
  width: 50%;
  text-align: left;
  padding: 4% 0;
}
.right-com h1{
  font-size: 72px;
  color: #50AE72;
  font-weight: bold;
  line-height: 74px;
}
.right-com h2{
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.right-com-content{
  color: #fff;
  line-height: 27px;
  font-size: 16px;
  margin: 3% 15px 6% 0;
}
.right-com ul li{
  display: inline-block;
  width: 30%;
  margin-right: 3%;
  position: relative;
}
.right-com ul li:before{
  content: '';
  display: block;
  width: 76px;
  height: 76px;
  left: 0px;
  top: 0px;
  border-top-right-radius:4em;
  border-bottom-right-radius:4em;
  border-top-left-radius:4em;
  border-bottom-left-radius:4em;
  background: #fff;
  position: absolute;
  z-index: 0;
  transition: all 0.5s ease;
}
.right-com .inti{
  padding: 20px;
  /*background: #fff;*/
  display: inline-block;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  z-index: 1;
  vertical-align: middle;
  transition: all 0.8s ease;
}
.right-com .into{
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  color: #fff;
}
.right-com .into p{
  transition: all 1.8s ease;
}
.right-com .into p:first-child{
  font-size: 18px;
}
.right-com .into p:last-child{
  font-size: 14px;
  text-transform: uppercase;
}
.right-com ul li:hover:before{
  width: 100%;
  left: 0px;
}
.right-com ul li:hover p{
  color: #009330;
}
.right-com ul li:hover .inti{
  margin-right: 5px;
}

/*工程案例*/
.case-index{

}
.case-index .swiper-container{
  background: none;
  padding-bottom: 60px;
}
.case-index .swiper-slide{
  padding: 0px;
  position: relative;
}
.case-index h4{
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #000;
  border-bottom: 1px solid #ccc;
}
.case-index .swiper-slide .abs{
  width: 100%;
  background: #00A13C;
  padding: 5% 8%;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 10;
  transform-origin: center bottom;
  transform: rotateX(-90deg);
  transition: 600ms ease;
  -webkit-transition: 600ms ease;
  transition-delay: 0s;
  transition-delay: 0.1s;
  opacity: 0;
}
.case-index .swiper-slide .abs h3{
  font-size: 20px;
}
.case-index .swiper-slide .abs .ab-content{
  font-size: 14px;
  line-height: 24px;
}
.abmore{
  padding: 5px 30px;
  border:1px solid #fff;
  font-size: 14px;
  display: inline-block;
  margin:20px auto 0 auto;
  border-radius: 4em;
}
.case-index .swiper-slide:hover .abs{
  opacity: 1;
  transform: rotateX(0deg);
}

/*核心优势*/
.code-box{
  padding: 6% 0;
  background: url(../images/code.jpg)no-repeat center;
  background-attachment: fixed;
}
.code-box .background{
  background: #00A13C;
  display: inline-block;
  padding: 3% 1.5%;
  width: 45%;
}
.code-box .background  h2{
  color: #fff;
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  line-height: 34px;
  margin-bottom: 20px;
}
.code-box .codebox1{
  background: #fff;
  border-radius: 10px;
  padding: 6% 3%;
}
.codelist{
  margin-bottom: 30px;
}
.codelist:last-child{
  margin-bottom: 0px;
}
.code-box .codebox1 .cd1{
  width: 15%;
  text-align: center;
}
.code-box .codebox1 .cd2{
  width: 85%;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
}
.code-box .codebox1 .cd2 h3{
  font-size: 20px;
  color: #000;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 8px;
}

/*新闻资讯*/
.news-main {
  background: #fff;
  overflow: hidden;
  padding-bottom: 55px;
}
.news-main ul li{
  width: 24%;
}
.news-main ul li .cici{
  position: relative;
  max-height: 225px;
}
.news-main ul li .cici .nimg{
  transition: all 0.5s ease;
  -webkit-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
}
.news-main ul li .cici .time{
  position: absolute;
  padding: 3px 10px;
  background: #fff;
  color: #00A23D;
  left: 10px;
  top: 10px;
  border-radius: 20px; 
}
.news-main ul li .cici .time img{
  width: auto;
  height: auto;
  float: left;
  margin:3px 5px 0 0;
}
.news-main ul li h4{
  font-size: 18px;
  margin:15px 0;
  transition: all 0.5s ease;
  -webkit-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
}
.news-main ul li .news-content{
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.news-main ul li span{
  display: block;
  line-height: 16px;
  transition: all 0.5s ease;
  -webkit-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
}
.news-main ul li span i{
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/bq.png)no-repeat center;
  margin-right: 10px;
  float: left;
  margin-top: 1px;
}
.news-main ul li span{
  font-size: 14px;
  color: #888888;
}
.news-main ul li a{
  color: #000;
}
.news-main ul li:hover .nimg{
  transform: scale(1.1);
}
.news-main ul li:hover h4{
  color: #00A13E;
}
.news-main ul li span:hover{
  color: #00A13E;
  padding-left: 10px;
}


/*应用领域*/
.area{
  background: #00A13E url(../images/area.jpg)center bottom;
  padding: 55px 0;
}
.area-title{
  color: #fff;
  font-size: 40px;
  overflow: hidden;
  margin-bottom: 30px;
}
.area-title span{
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}
.area-title a{
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding-top: 14px;
  box-sizing: border-box;
}
.area-title a div{
  padding: 5px 30px;
  border:1px solid #fff;
  border-radius: 20px;
}
.area-title a div:hover{
  background: #fff;
  color: #009946;
}
.area ul li{
  width: 16%;
  background: #fff;
  padding: 3% 0;
  border-radius: 3px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.area ul li .tb{
  margin:0 auto 20px;
}
.area ul li h3{
  font-size: 18px;
  font-weight: bold;
}
.area ul li span{
  display: inline-block;
  width: 38px;
  border:1px solid #00A13E;
  height: 0px;
  margin:12px 0 10px;
}
.area ul li a{
  color: #000;
}
.area ul li .area1{
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.area ul li .ar1{
  position: absolute;
  width: 100%;
  height: 75%;
  left: 0px;
  top: -75%;
  transition: all .8s ease;
  -moz-transition: all .8s ease;
  -webkit-transition: all .8s ease;
  -o-transition: all .8s ease;
}
.area ul li .ar1 img{
  width: 100%;
  height: 100%;
}
.area ul li .ar2{
  position: absolute;
  width: 100%;
  height: 25%;
  background: #fff;
  left: 0px;
  bottom: -25%;
  transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1s ease;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 18px;
  color: #00A13E;
  justify-content: center;
}
.area ul li:hover .area1{
  opacity: 0;
}
.area ul li:hover .ar1{
  top: 0px;
}
.area ul li:hover .ar2{
  bottom:0px;
}


/*底部*/
.footer {
  background: #212121;
}
.foot-nav-logo{
  display: inline-block;
  width: 70%;
}
.foottitle{
  border-bottom: 1px solid #363636;
  padding: 40px 0 10px 0;
}
.foot-nav-logo img{
  float: left;
  margin-right: 20px;
}
.foot-nav-logo p:nth-child(2){
  font-size: 20px;
  color: #00953B;
  font-weight: bold;
}
.foot-nav-logo p{
  font-size: 16px;
  color: #fff;
}
.fx {
  padding-top: 18px;
  box-sizing: border-box;
}
.fx p{
  color: #fff;
}
.fx img{
  float: right;
  margin-right: 20px;
}
.fx .wxx{
  margin-top: 2px;
  margin-left: 20px;
}
.fx .wb{
  margin-left: 20px;
}
.foot-box ul{
  width: 13%;
}
.foot-box{
  padding-top: 45px;
  padding-bottom: 50px;
}
.foot-box h3{
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.foot-box .foot-contact-list{
  width: 22%;
  margin-right: 3%;
}
.foot-box li{
  color: #888888;
  line-height: 24px;
  margin-bottom: 5px;
}
.foot-box li a{
  color: #888888;
}
.foot-box li a:hover{
  color: #fff;
}
.foot-box  ul.foot-pro-list{
  width: 20%;
}
.qqr{
  max-width: 140px;
  max-height: 140px;
  background: #fff;
  margin:0 auto 10px auto;
}
.qqr img{
  width: 100%;
  height: 100%;
}
.qr_code p{
  color: #888888;
}
.bottom{
  background: #212121;
  color: #888888;
  line-height: 50px;
  border-top: 1px solid #363636;
}
.bottom a{
  color: #888888;
}
.bottom a:hover{
  color: #fff;
}



.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;
}