
/*-----------------------------------------------------------*/
/*copyright by 动力无限  www.btoe.cn*/
/*邮箱 btoe@btoe.cn*/
/*合作电话 400-0599-360*/
/*版权所有违者必究*/
/*-----------------------------------------------------------*/



/*banner*/
.fullSlide {
    width: 100%;
    position: relative;
    height: 750px;
    background: #fff;
    overflow: hidden;
  }
  
  .fullSlide .bd {
    width: 100%;
    height: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  
  .fullSlide .bd ul {
    width: 100% !important;
  }
  
  .fullSlide .bd li {
    width: 100% !important;
    height: 750px;
    overflow: hidden;
    text-align: center;
  }
  
  .fullSlide .bd li a {
    display: block;
    height: 750px;
  }
  
  .fullSlide .hd {
    position: relative;
    z-index: 2;
    width: 100%;
    bottom: 45px;

  }
  
  .fullSlide .hd ul {
      text-align: center;
   
  }
  
  .fullSlide .hd ul li {
    cursor: pointer;
    display: inline-block;
    zoom: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 10px ;
    overflow: hidden;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    border: 1px solid #fff;
  }
  
  .fullSlide .hd ul .on {
    background: #fff;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }
  
  
  .fullSlide .next {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    z-index: 2;
    background: url(../images/bannerR.png) no-repeat center;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    right: 4%;
  }
  
  .fullSlide .prev {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    z-index: 2;
    background: url(../images/bannerL.png) no-repeat center;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    left: 4%;
  }


/*title*/

.title{
    margin: 0 auto;
    text-align: center;
    background: url(../images/title.png) no-repeat center;
}

.title h3{
    font-size: 48px;
    color: #191919;
    font-weight: bold;
    line-height: 50px;
    margin-top: -55px;
    position: relative;
    z-index: 5;
}

.title h3 i{
    font-size: 48px;
    color: #009944;
    font-weight: bold;
}

.title h3 a{
    font-size: 48px;
    color: #191919;
    font-weight: bold;
}

.title span{
    display: block;
    font-size: 72px;
    color: #191919;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    opacity: 0.15;
    line-height: 60px;
}



/*case*/

.case_bg{
    width: 100%;
    height: 1250px;
    margin: 0 auto;
    background: url(../images/case_bg.jpg) no-repeat top  center;
}

.case_bg .case{
    width: 1280px;
    margin: 0 auto;
    padding-top: 80px;
}

.case_bg .case .case_box{
    margin: 45px auto 0 auto;
}

.case_bg .case .case_box .txt_nr{
    overflow: hidden;
}

.case_bg .case .case_box .txt_nr p{
    font-size: 16px;
    color: #8c8c8c;
    line-height: 40px;
    height: 160px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    width: 1178px;
}

.case_bg .case .case_box .txt_nr .more{
    display: block;
    margin: 40px auto 0 auto;
    width: 160px;
    height: 50px;
    background: #009944;
    line-height: 50px;
    cursor: pointer;
    position: relative;
}

.case_bg .case .case_box .txt_nr .more a{
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
}


:root {

	--bg: #3C465C;

	--primary: #009944;

	--solid: #fff;

	--btn-w: 160px;

	--dot-w: calc(var(--btn-w)*.2);

	--tr-X: calc(var(--btn-w) - var(--dot-w))

}



.dot {

	content: '';

	position: absolute;

	top: 0;

	width: var(--dot-w);

	height: 100%;

	border-radius: 100%;

	-webkit-transition: all 1000ms ease;

	transition: all 1000ms ease;

	display: none;

}



.dot:after {

	content: '';

	position: absolute;

	left: calc(50% - .4em);

	top: -.4em;

	height: .8em;

	width: .8em;

	background: var(--primary);

	border-radius: 1em;

	border: .25em solid var(--solid);

	box-shadow: 0 0 .7em var(--solid), 0 0 2em var(--primary)

}



.btn:hover .dot,

.btn:focus .dot {

	-webkit-animation: atom 2s infinite linear;

	animation: atom 2s infinite linear;

	display: block

}


@-webkit-keyframes atom {
	0% {
		-webkit-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}

	30% {
		-webkit-transform: translateX(var(--tr-X)) rotate(0);
		transform: translateX(var(--tr-X)) rotate(0)
	}

	50% {
		-webkit-transform: translateX(var(--tr-X)) rotate(180deg);
		transform: translateX(var(--tr-X)) rotate(180deg)
	}

	80% {
		-webkit-transform: translateX(0) rotate(180deg);
		transform: translateX(0) rotate(180deg)
	}

	100% {
		-webkit-transform: translateX(0) rotate(360deg);
		transform: translateX(0) rotate(360deg)
	}
}

@keyframes atom {
	0% {
		-webkit-transform: translateX(0) rotate(0);
		transform: translateX(0) rotate(0)
	}

	30% {
		-webkit-transform: translateX(var(--tr-X)) rotate(0);
		transform: translateX(var(--tr-X)) rotate(0)
	}

	50% {
		-webkit-transform: translateX(var(--tr-X)) rotate(180deg);
		transform: translateX(var(--tr-X)) rotate(180deg)
	}

	80% {
		-webkit-transform: translateX(0) rotate(180deg);
		transform: translateX(0) rotate(180deg)
	}

	100% {
		-webkit-transform: translateX(0) rotate(360deg);
		transform: translateX(0) rotate(360deg)
	}
}




.case_bg .case .case_list{
    margin: 60px auto 0 auto;
    height: 120px;

} 

.case_bg .case .case_list ul li{
    float: left;
    margin-right: 223px;
}

.case_bg .case .case_list ul li:last-child{
    margin-right: 0;

}

.case_bg .case .case_list ul li h5{
    font-size: 14px;
    color: #8c8c8c;
}

.case_bg .case .case_list ul li h5 span{
    font-size: 90px;
    color: #333333;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 75px;
}

.case_bg .case .case_list ul li h5 i{
    font-size: 90px;
    color: #333333;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 75px;
}

.case_bg .case .case_list ul li p{
    font-size: 18px;
    color: #8c8c8c;
    margin-top: 15px;
}


.case_bg .case .case_show{
    position: relative;
    width: 1280px;
    margin: 45px auto 0 auto;
}

.case_bg .case .case_show .bd{
    margin: 0 auto;
    height: 425px;

}

.case_bg .case .case_show .bd ul li{
    float: left;
    width: 390px;
    margin: 0 36px 0 0;
}

.case_bg .case .case_show .bd ul li .pic{
    width: 388px;
    height: 298px;
    border: 1px solid #ededed;
    border-radius: 8px;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.case_bg .case .case_show .bd ul li:hover .pic{
    border: 1px solid #009944;
}

.case_bg .case .case_show .bd ul li .pic img{
    width: 370px;
    height: 280px;
    border-radius: 8px;
    margin: 9px;
}

.case_bg .case .case_show .bd ul li .txt{
    margin-top: 20px;

}

.case_bg .case .case_show .bd ul li .txt a{
    font-size: 18px;
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    height: 50px;
    border-bottom: 1px solid #f3f3f3;
    position: relative;
}

.case_bg .case .case_show .bd ul li .txt p{
    font-size: 16px;
    color: #8c8c8c;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    margin-top: 25px;
}

.case_bg .case .case_show .bd ul li .txt a::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 1px;
    background: #009944;
    content: "";
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.case_bg .case .case_show .bd ul li:hover .txt a::after{
    width: 100%;
}

.case_bg .case .case_show .hd {
    margin-top: 50px;
    float: right;
    width: 90px;

}

.case_bg .case .case_show .hd .next{
    float: left;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #9b9b9b;
    width: 36px;
    height: 36px;
    background: url(../images/left1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.case_bg .case .case_show .hd .prev{
    float: right;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #9b9b9b;
    width: 36px;
    height: 36px;
    background: url(../images/right1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.case_bg .case .case_show .hd .next:hover{
    border: 1px solid #ffe800;
    background: #ffe800 url(../images/left.png) no-repeat center;
}

.case_bg .case .case_show .hd .prev:hover{
    border: 1px solid #ffe800;
    background: #ffe800 url(../images/right.png) no-repeat center;
}

.case_bg .case .case_show .case_xt{
    position: absolute;
    left: 0;
    top: 478px;
    background: url(../images/xt.png) no-repeat right center;
    width: 1080px;
}


 /* 询盘*/
 i {
    font-weight: normal;
    font-style: normal;
  }
  
  .topxunpan {
  position: relative;
  height: 36px;
  margin:0px;
  box-sizing: content-box;
  float: left;
  }
  
  
  .topxunpan .xp {
  position: relative;
  height: 36px;
  line-height: 36px;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  }
  
  .topxunpan .xp img {
  position: relative;
  top: 4px;
  margin: 0 8px 0 0px;
  
  }
  
  .topxunpan .xp i {
  padding: 0px;
  margin-left: 0px;
  margin-right: 0px;
  box-sizing: border-box;
  color: #009944;
  font-size: 16px;
  }
  
  .topxunpan .xp #xunpantip {
  z-index: 999;
  position: absolute;
  top: 35px;
  left: 50%;
  width: 180px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: transform .4s, opacity .4s;
  -moz-transition: transform .4s, opacity .4s;
  -o-transition: transform .4s, opacity .4s;
  -ms-transition: transform .4s, opacity .4s;
  transition: transform .4s, opacity .4s;
  background-color: #009944;
  border-radius: 4px;
  opacity: 0;
  font-weight: bold;
  box-shadow: 5px 5px 2px #dfdfdf;
  }
  
  .topxunpan .xp #xunpantip::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #009944;
  }
  
  .topxunpan .xp #xunpantip.xunpantextactive {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  }
  
  

/*ys*/

.ys_bg{
    width: 100%;
    margin: 0px auto 0 auto;
    height: 821px;
    background: url(../images/ys_bg.jpg) no-repeat bottom center;
}

.ys_bg .ys{
    width: 1280px;
    margin: 0 auto;
    position: relative;
    padding-top: 105px;
}

.ys_bg .ys .title{
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 5;
    background: none;

}

.ys_bg .ys .ys_box{
    width: 1280px;
    margin: 0 auto;
    position: relative;
}

.ys_bg .ys .ys_box .gallery-top{
    height: 620px;
    width: 1350px;
}

.ys_bg .ys .ys_box .gallery-top .swiper-slide{

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt{
    float: left;
    width: 665px;
    margin-top: 65px;

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt .txt_t{
    height: 140px;
    position: relative;
    overflow: hidden;

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt .txt_t::after{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 640px;
    height: 1px;
    background: #dedede;
    content: "";
}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt .txt_t h5{
    float: left;
    padding-left: 20px;
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    background: url(../images/buttom3.png) no-repeat left center;
    margin-top: 80px;

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt .txt_t span img{
    display: block;
    float: right;
    width: 150px;
    height: 150px;

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .txt p{
    font-size:16px;
    color: #8c8c8c;
    line-height: 36px;
    margin: 17px 0 0 20px;

}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .ys_img{
    float: right;
    width: 610px;
    height: 610px;
    border: 5px solid #ffe800;
    border-radius: 50%;


}

.ys_bg .ys .ys_box .gallery-top .swiper-slide .ys_img img{
    width: 572px;
    height: 572px;
    border-radius: 50%;
    margin: 19px;

}

.ys_bg .ys .ys_box .gallery-thumbs{
    position: absolute;
    left: 85px;
    top: 545px;
    z-index: 5;
    width: 550px;
}

.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide{
    float: left;
    width: 240px;

}

.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide span{
    background: url(../images/ys_list.png) no-repeat  center;
    display: block;
    width: 117px;
    height: 85px;
    float: left;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide span img{
    display: block;
    width: 82px;
    height: 85px;
    margin: 0 auto;
}

.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide h5{
    float: left;
    margin-left: 20px;
    margin-top: 17px;
    padding-left: 15px;
    background: url(../images/buttom5.png) no-repeat left 11px;
    font-size:16px;
    color: #333;
}

.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide h5 i{
    display: block;
    font-size:12px;
    color: #bfbfbf;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 5px;
}


.ys_bg .ys .ys_box .gallery-thumbs .swiper-slide-thumb-active span{
    background: url(../images/ys_list1.jpg) no-repeat  center;
  }


  .swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after {
    content: 'prev';
    display: none;
}

.swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after {
    content: 'next';
    display: none;
}

.swiper-button-next{
    position: absolute;
    left: 0;
    top: 580px;
    width: 22px;
    height: 59px;
    background: #009944 url(../images/ys_left1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.swiper-button-prev{
    position: absolute;
    left: 640px;
    top: 580px;
    width: 22px;
    height: 59px;
    background: #009944 url(../images/ys_right1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.swiper-button-next:hover{
    background: #ffe800 url(../images/ys_left.png) no-repeat center;
}

.swiper-button-prev:hover{
    background: #ffe800 url(../images/ys_right.png) no-repeat center;
}

  .ys_bg .ys .ys_box .zx{
    position: absolute;
    left: 20px;
    top: 395px;
    z-index: 5;

  }

  .ys_bg .ys .ys_box .zx .tel{
      float: left;
      background: url(../images/xt2.jpg) no-repeat left center;
      height: 30px;
      padding-left: 20px;
      font-size: 16px;
      color:  #808080;
      text-transform: uppercase;
      padding-top: 40px;
      width: 315px;
  }

  .ys_bg .ys .ys_box .zx .tel i{
    font-size: 16px;
    color:  #333;
    font-weight: bold;
  }

  .ys_bg .ys .ys_box .zx .zixun{
      float: left;
      background: url(../images/zx.png) no-repeat left center;
      padding-left: 55px;
      line-height: 36px;
      margin-top: 35px;
  }

  .ys_bg .ys .ys_box .zx .zixun a{
      display: block;
      font-size: 18px;
      color: #808080;
  }


/*product*/

.pro_bg{
    width: 100%;
    margin: 80px auto 0 auto;
    height: 1005px;
    background: url(../images/pro_bg.jpg) no-repeat bottom center;
}

.pro_bg .product{
    width: 1280px;
    margin: 0 auto;
}

.pro_bg .product .pro_box{
    width: 1280px;
    margin: 50px auto 0 auto;
    height: 440px;
} 

.pro_bg .product .pro_box .pro_l{
    float: left;
    width: 194px;
    position: relative;
}

.pro_bg .product .pro_box .pro_l .bd{
    width: 194px;
    margin-top: 40px;
    height: 350px;
    overflow: hidden;
}

.pro_bg .product .pro_box .pro_l .bd ul li{
    width: 194px;
    height: 49px;
    line-height: 49px;
    background: #fbfbfb;
    margin-bottom: 26px;
    position: relative;
    z-index: 5;

}

.pro_bg .product .pro_box .pro_l .bd ul li a{
    font-size: 16px;
    color: #333333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding-left: 65px;
    background: url(../images/buttom2.png) no-repeat 15px center;
}

.pro_bg .product .pro_box .pro_l .bd ul li::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0px;
    height: 49px;
    background: #009944;
    content: "";
    z-index: -1;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.pro_bg .product .pro_box .pro_l .bd ul li:hover::after{
    width: 100%;
}

.pro_bg .product .pro_box .pro_l .bd ul li:hover a{
    color: #fff;
    background: url(../images/buttom1.png) no-repeat 15px center;
}

.pro_bg .product .pro_box .pro_l .next{
    position: absolute;
    left: 80px;
    top: 0;
    cursor: pointer;
    background: url(../images/left2.png) no-repeat  center;
    width: 35px;
    height: 18px;
}

.pro_bg .product .pro_box .pro_l .prev{
    position: absolute;
    left: 80px;
    top: 413px;
    cursor: pointer;
    background: url(../images/right2.png) no-repeat  center;
    width: 35px;
    height: 18px;
}

.pro_bg .product .pro_box .pro_r{
    float: right;
    width: 1035px;
    height: 420px;
    position: relative;
    margin-top: 15px;
} 

.pro_bg .product .pro_box .pro_r .bd{
    width: 1035px;
}

.pro_bg .product .pro_box .pro_r .bd ul li{
    float: left;
    width: 1035px;
}

.pro_bg .product .pro_box .pro_r .bd ul li .pic{
    float: left;
    width: 578px;
    height: 418px;
    border: 1px solid #dedede;
    border-radius: 8px;
    overflow: hidden;
}

.pro_bg .product .pro_box .pro_r .bd ul li .pic img{
    width: 578px;
    height: 418px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.pro_bg .product .pro_box .pro_r .bd ul li .txt{
    float: right;
    width: 405px;
    margin-right: 15px;
}

.pro_bg .product .pro_box .pro_r .bd ul li .txt h5 a{
    font-size: 18px;
    color: #009944;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    margin-top: 30px;
}

.pro_bg .product .pro_box .pro_r .bd ul li .txt i{
    display: block;
    width: 40px;
    height: 2px;
    background: #009944;
    margin: 20px 0;
}

.pro_bg .product .pro_box .pro_r .bd ul li .txt p{
    font-size: 14px;
    color: #8c8c8c;
    line-height: 30px;
    height: 60px;
    overflow: hidden;

}

.pro_bg .product .pro_box .pro_r .bd ul li .txt .more{
    display: block;
    width: 125px;
    height: 42px;
    line-height: 42px;
    background: #009944;
    font-size: 14px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    text-align: center;
    margin-top: 40px;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}

.pro_bg .product .pro_box .pro_r .bd ul li:hover .pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.pro_bg .product .pro_box .pro_r .bd ul li:hover .txt  .more{
    border-radius: 45px;

}

.pro_bg .product .pro_box .pro_r .hd {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    z-index: 5;
}

.pro_bg .product .pro_box .pro_r .hd .next{
    float: left;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #9b9b9b;
    width: 36px;
    height: 36px;
    background: url(../images/left1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.pro_bg .product .pro_box .pro_r .hd .prev{
    float: right;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #9b9b9b;
    width: 36px;
    height: 36px;
    background: url(../images/right1.png) no-repeat center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.pro_bg .product .pro_box .pro_r .hd .next:hover{
    border: 1px solid #ffe800;
    background: #ffe800 url(../images/left.png) no-repeat center;
}

.pro_bg .product .pro_box .pro_r .hd .prev:hover{
    border: 1px solid #ffe800;
    background: #ffe800 url(../images/right.png) no-repeat center;
}

.pro_bg .product .pro_box .pro_r .tel {
    position: absolute;
    width: 370px;
    right: 0;
    bottom: 80px;
    z-index: 5;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    color: #8c8c8c;
    font-family: Arial, Helvetica, sans-serif;
    background:  url(../images/tel.png) no-repeat left center;
    padding-left: 50px;
}

.pro_bg .product .pro_box .pro_r .tel i{
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.pro_bg .product .pro_show{
    margin: 35px auto 0 auto;
    width: 1360px;
} 

.pro_bg .product .pro_show ul li{
    float: left;
    width: 400px;
    margin-right: 37px;
    
}

.pro_bg .product .pro_show ul li .pic{
    width: 398px;
    height: 298px;
    border: 1px solid #dedede;
    border-radius: 8px;
    overflow: hidden;

}

.pro_bg .product .pro_show ul li .pic img{
    width: 398px;
    height: 298px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.pro_bg .product .pro_show ul li .txt{
    height: 70px;
    line-height: 70px;

} 

.pro_bg .product .pro_show ul li .txt h5 a{
    float: left;
    width: 280px;
    font-size: 16px;
    color: #333333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}

.pro_bg .product .pro_show ul li .txt .more{
    display: block;
    float: right;
    background:  url(../images/more.png) no-repeat center;
    width: 14px;
    height: 22px;
    margin-top: 34px;
}

.pro_bg .product .pro_show ul li:hover .pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.pro_bg .product .pro_show ul li:hover .txt h5 a{
    color: #009944;
}


 /* about*/


.ab_bg{
    width: 100%;
    height: 821px;
    margin: 0 auto;
    background:  url(../images/ab_bg.jpg) no-repeat center;
}

.ab_bg .about{
    width: 1280px;
    margin: 0 auto;
}

.ab_bg .about .ab_img{
    float: left;
    border-radius: 50%;
    width: 560px;
    height: 560px;
    border: 4px solid #ffe800;
    margin-top: 125px;
    position: relative;
    overflow: hidden;
}

.ab_bg .about .ab_img img{
    border-radius: 50%;
    width: 519px;
    height: 519px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}


.shiny {
    background: #007eaf;
    background: linear-gradient(-45deg, #a9a9a9 50%, #242424 60%, #000 70%);
    background-size: 600% 100%;
    -webkit-animation: shine 20s infinite;
    animation: shine 20s infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 519px;
    height: 519px;
    opacity: 0.3;
    border-radius: 50%;
  }
  
  
  @-webkit-keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
  }
  
  @keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
  }
  

.ab_bg .about .ab_r{
    float: right;
    width: 640px;
    margin-top: 65px;
} 

.ab_bg .about .ab_r .title{
    background: none;
    width: 377px;
    margin: 0;
}

.ab_bg .about .ab_r .txt{
    margin-top: 60px;
 

}

.ab_bg .about .ab_r .txt h5{
    padding-left: 25px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    background:  url(../images/buttom3.png) no-repeat left center;
}

.ab_bg .about .ab_r .txt i{
    display: block;
    width: 2px;
    height: 25px;
    background: #009944;
    margin: 25px 0 0 25px;
}

.ab_bg .about .ab_r .txt p{
    font-size: 16px;
    color: #8c8c8c;
    line-height: 40px;
    height: 160px;
    overflow: hidden;
    margin-top: 15px;
}

.ab_bg .about .ab_r .ab_list{
    margin-top: 80px;
    width: 680px;

} 

.ab_bg .about .ab_r .ab_list ul li{
    float: left;
    width: 340px;
    height: 85px;
    margin-bottom: 65px;

}

.ab_bg .about .ab_r .ab_list ul li a{
    display: block;
}

.ab_bg .about .ab_r .ab_list ul li span{
    display: block;
    float: left;
    width: 117px;
    height: 85px;
    background:  url(../images/ab_list.png) no-repeat  center;
    position: relative;
    z-index: 5;
}
.ab_bg .about .ab_r .ab_list ul li span img{
    display: block;
    width: 82px;
    height: 85px;
    margin: 0 auto;
    position: relative;
    z-index: 5;


}

.ab_bg .about .ab_r .ab_list ul li i{
    display: block;
    float: left;
    margin-left: 20px;
    margin-top: 20px;
    padding-left: 15px;
    font-size: 12px;
    color: #bfbfbf;
   text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    background:  url(../images/buttom4.png) no-repeat  left 12px;
}

.ab_bg .about .ab_r .ab_list ul li i em{
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.ab_bg .about .ab_r .ab_list ul li span::after{
    position: absolute;
    left: 58px;
    top: 47px;
    z-index: -1;
    content: "";
    border-radius: 50%;
    width: 0px;
    height: 0px;
    background: #ffe800;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.ab_bg .about .ab_r .ab_list ul li.on span::after{
    width: 24px;
    height: 24px;
}


 /* news*/

 .news{
    width: 1280px;
    margin: 80px auto 0 auto;
    position: relative;
} 

.news .title{
    position: absolute;
    left: 0;
    top: 0;
    background: none;
}

.news .news_list{
    position: absolute;
    left: 0;
    top: 95px;
    height: 100px;
    width: 625px;
    border-bottom: 1px solid #e6e6e6;
} 

.news .news_list ul li{
    float: left;
    margin-right: 93px;
    width: 115px;
    height: 100px;
    line-height: 100px;
    position: relative;
}

.news .news_list ul li a{
    padding-left: 45px;
    font-size: 16px;
    color: #343434;
    display: block;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_list ul li.n1 a{
    background: url(../images/news1.png) no-repeat left center;
}

.news .news_list ul li.n2 a{
    background: url(../images/news2.png) no-repeat left center;
}

.news .news_list ul li.n3 a{
    background: url(../images/news3.png) no-repeat left center;
}

.news .news_list ul li.casehover a{
    color: #009944;

}

.news .news_list ul li.n1.casehover a{
    background: url(../images/news11.png) no-repeat left center;
}

.news .news_list ul li.n2.casehover a{
    background: url(../images/news22.png) no-repeat left center;
}

.news .news_list ul li.n3.casehover a{
    background: url(../images/news33.png) no-repeat left center;
}

.news .news_list ul li::after{
    position: absolute;
    left: 0px;
    border: 0px;
    content: "";
    width: 0px;
    height: 1px;
    background: #009944;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_list ul li.casehover::after{
    width: 100%;
}

.news .news_box{
    width: 1280px;
    margin: 0 auto;
} 


.news .news_box .news_top{
    width: 1360px;
    height: 438px;

}

.news .news_box .news_top ul li{
    float: left;
    width: 625px;
    height: 198px;
    background: #fafafa;
    z-index: 5;
    position: relative;
    margin: 0 30px 40px 0;
}

.news .news_box .news_top ul li:first-child{
    margin-left: 655px;
}

.news .news_box .news_top ul li .news_img{
    float: left;
    width: 217px;
    height: 157px;
}

.news .news_box .news_top ul li .news_img img{
    width: 217px;
    height: 157px;
    margin: 20px 0 0 20px;
}

.news .news_box .news_top ul li .txt{
    float: right;
    width: 310px;
    margin-right: 40px;
} 

.news .news_box .news_top ul li .txt a{
    font-size: 16px;
    color: #333333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    margin-top: 38px;
}

.news .news_box .news_top ul li .txt em{
    display: block;
    width: 2px;
    height: 14px;
    background: #ffe800;
    margin: 9px 0 7px 0;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_box .news_top ul li .txt p{
    font-size: 14px;
    color: #8c8c8c;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_box .news_top ul li .txt span{
    display: block;
    font-size: 12px;
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 15px;
    background: url(../images/more1.png) no-repeat right center;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_box .news_top ul li .txt span i{
    font-size: 30px;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 5px;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.news .news_box .news_top ul li::after{
    position: absolute;
    left: 0px;
    top: 0;
    content: "";
    z-index: -1;
    width: 0px;
    height: 198px;
    background: #009944;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

}

.news .news_box .news_top ul li.on::after{
    width: 100%;
}

.news .news_box .news_top ul li.on .txt a{
    color: #fff;

}

.news .news_box .news_top ul li.on .txt em{
    background: #fff;

}

.news .news_box .news_top ul li.on .txt p{
    color: #8dc6a0;

}

.news .news_box .news_top ul li.on .txt span{
    color: #8dc6a0;
    background: url(../images/more2.png) no-repeat right center;
}

.news .news_box .news_top ul li.on .txt span i{
    color: #fff;
}

.news .news_box .list{
    margin: 40px auto 0 auto;
    width: 1280px;
    height: 115px;
    border: 1px solid #f2f2f2;
} 

.news .news_box .list ul li{
    float: left;
    width: 370px;
    height: 115px;
    background: url(../images/xt1.png) no-repeat right center;
    margin: 0 40px 0 30px;
}

.news .news_box .list ul li:last-child{
    background: none;
    margin-right: 0;
}


.news .news_box .list ul li h5 a{
    font-size: 16px;
    color: #333333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding-left: 20px;
    background: url(../images/buttom6.png) no-repeat left center;
    margin-top: 28px;
}

.news .news_box .list ul li:hover h5 a{
    color: #009944;
    background: url(../images/buttom5.png) no-repeat left center;
}

.news .news_box .list ul li .more{
    width: 285px;
    height: 36px;
    line-height: 36px;
    margin-top: 10px;

}

.news .news_box .list ul li .more span{
    display: block;
    font-size: 12px;
    color: #bfbfbf;
    font-family: Arial, Helvetica, sans-serif;
    float: left;
}

.news .news_box .list ul li .more span i{
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 5px;
}

.news .news_box .list ul li .more a{
    font-size: 16px;
    color: #595959;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    display: block;
    float: right;
} 





 /* links*/

 .links{
    width: 1280px;
    margin: 75px auto 0 auto;
    overflow: hidden;
} 

 .links .links_t{
    float: left;
    background: url(../images/links_t.png) no-repeat bottom center;
    width: 139px;
    height: 45px;
}

 .links .links_t i{
    display: block;
    text-align: center;
    font-size: 16px;
    color: #009944;
}

 .links .yq{
    float: right;
    width: 1110px;
} 

 .links .yq a{
  font-size: 16px;
  color: #8c8c8c;
  margin-right: 15px;
}