/**************************************/
/*************[公用start]**************/
/**************************************/

/*主站变灰*/
/*html {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
* {
-moz-filter: grayscale(100%); 
-ms-filter: grayscale(100%); 
-o-filter: grayscale(100%); 
filter: gray;
}*/
/*主站变灰*/

/*淘宝变灰*/
/* body, html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    }*/

/*淘宝变灰*/

/*百度百科變灰*/


/*body.memorial>* {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1)
}
*/


/*百度百科變灰*/

body::-webkit-scrollbar {
    width: 4px;
}
body::-webkit-scrollbar-thumb {
    width: 4px;
    height: 36px;
    border-radius: 4px;
    background-color: #aaa;
}
body::-webkit-scrollbar-track {
    width: 4px;
    border-radius:6px;
}
div.clear{
	clear: both;
	height: 0;
	width: 0;
}




a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}
.tver{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}



/*图片中心放大代码区域*/

.img-box{/*图片盒子类名*/

	overflow: hidden;
}

.img-box img{
	transition: .3s;
	width: 100%;
	max-width: 100%;
}

.img-box:hover img{
	/*图片中心放大代码*/
	  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*图片中心放大代码区域*/


.imgbox_a{
	position:relative;
	padding-bottom: 100%;
	overflow:hidden;
	display: block;
}

.imgbox_a>img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
}
.imgbox_hover>img{
	/* ueco 时间曲线*/
	/*transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;

}
.imgbox_hover:hover>img{
	-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}


.section {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  overflow: hidden;
	background-color: #fff;

	/*padding-top: 178px;*/
}

.fuwu_plate .section{
	padding-top: 111px;
}

.fuwu_plate .section.fp-auto-height{
	padding: 0px;
}



/**************************************/
/************[公用over]****************/
/**************************************/




/*header-start*/
/**************************************************************/

#header{
	position: fixed;
	z-index: 999;
	width: 100%;
	top: 0;
	left: 0;
	height: 111px;
	border-bottom: 1px solid rgba(255,255,255,0.36);
	z-index: 1500;
}

#header.erji-header{
	position: absolute;
	
}

.logo{
	width: 127px;
	margin-top: 19px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}
.menu{
	margin-top: 40px;
	cursor: pointer;
}

.menu {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255, 50%);
  transition: ease all .3s
}

.menu.is-active, .menu:hover {
    background-color: #fff;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2)
}

.menu .menu-btn {
    display: inline-block;
    width: 15px;
    position: relative;
    border-top: 1px solid #333;
    transition: transform cubic-bezier(.55, .055, .675, .19) .3s, ease-in width .32s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.menu .menu-btn::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -5px;
    width: 15px;
    border-top: inherit;
    transition: top .1s .34s ease-in, ease-in width .32s
}

.menu .menu-btn::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 15px;
    border-top: inherit;
    transition: bottom .1s .34s ease-in, ease-in width .32s, -webkit-transform .3s cubic-bezier(.55, .055, .675, .19);
    transition: bottom .1s .34s ease-in, ease-in width .32s, transform .3s cubic-bezier(.55, .055, .675, .19);
    transition: bottom .1s .34s ease-in, ease-in width .32s, transform .3s cubic-bezier(.55, .055, .675, .19), -webkit-transform .3s cubic-bezier(.55, .055, .675, .19)
}

.menu.is-active .menu-btn, .menu:hover .menu-btn {
    border-color: #217a9a
}

.menu.is-active span, .menu:hover span {
    color: #c21277
}

.menu.is-active .menu-btn {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition: transform cubic-bezier(.215, .61, .355, 1) .3s .14s;
    background-color: #00936f
}

.menu.is-active .menu-btn::before {
    width: 100%;
    top: 0;
    opacity: 0;
    transition: top .1s ease-out, opacity .1s .14s ease-out
}

.menu.is-active .menu-btn::after {
    width: 100%;
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom .1s ease-out, -webkit-transform .3s .14s cubic-bezier(.215, .61, .355, 1);
    transition: bottom .1s ease-out, transform .3s .14s cubic-bezier(.215, .61, .355, 1);
    transition: bottom .1s ease-out, transform .3s .14s cubic-bezier(.215, .61, .355, 1), -webkit-transform .3s .14s cubic-bezier(.215, .61, .355, 1);
    background-color: #00936f
}

.nav{
padding-right: 30px;

}
.nav ul{
	margin:0;
}

.nav>ul>li{
	float: left;
	padding: 37px 30px 36px;
	position: relative;
	/*margin-right: 60px;*/
}

.nav>ul>li>a{
	font-size: 16px;
	color: #fff;
	display: block;
	position: relative;
	height: 37px;
	line-height: 37px;
}


.nav>ul>li>a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: -8px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.nav>ul>li:hover>a::after,.nav>ul>li.cur>a::after{
  width: 100%;
  right: auto;
  left: 0;
}

.nav>ul>li>ul{
	position: absolute;
	left: -15px;
	right: -15px;
	top:100%;
	z-index: 600;
	background-color: rgba(255,255,255,0.2);
	display: none;
	padding: 7px 0 12px;
}
.nav>ul>li>ul>li{
	font-size: 0;
	line-height: normal;
	text-align: center;
}
.nav>ul>li>ul>li>a{
	display: inline-block;
	padding: 7px 0px;
	text-align: center;
	line-height: 1.6;
	font-size: 14px;
	color:#fff;
	/*transition: .3s;*/
	text-align: center;
	position: relative;

}
.nav>ul>li>ul>li>a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: 0px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.nav>ul>li>ul>li:hover>a::after{
  width: 100%;
  right: auto;
  left: 0;
}




/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{
	position: relative;
	z-index: 100;
}

.banner{
	position: relative;
	height: 100%;
}
@keyframes fadeInRight1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@-webkit-keyframes fadeInUp1 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fafa,.fafa .slides,.fafa .slides>li{
	height: 100%;
}
.fafa .slides>li{
	position: relative;
	overflow: hidden;
}


.fafa .slides>li video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
}


.banner-bg{
	background-repeat: no-repeat;
	background-position: center ;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	height: 100%;
	z-index: 15;
}

.banner-wen-wp{
	position: absolute;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 50;
}
.banner-wen{
	padding-left: 75px;

}
.banner-wen h1{
	margin:0;
	font-size: 48px;
	color: #fff;
	-webkit-animation-duration:0.7s;
  animation-duration:0.7s;
  -webkit-animation-fill-mode:both;
  animation-fill-mode:both;
}
.banner-wen h2{
	margin:0;
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
	margin-top: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-animation-duration:0.7s;
  animation-duration:0.7s;
  -webkit-animation-delay:0.3s;
  animation-delay:0.3s;
  -webkit-animation-fill-mode:both;
  animation-fill-mode:both;
}


.fafa .slides>li.flex-active-slide  .banner-wen h1{
	-webkit-animation-name: fadeInRight1;
	animation-name: fadeInRight1;
}

.fafa .slides>li.flex-active-slide  .banner-wen h2{
	-webkit-animation-name: fadeInRight1;
	animation-name: fadeInRight1;
}
















.fafa .flex-direction-nav{
	position: absolute;
	width: 1600px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom:90px;
	height: 0; 
	z-index: 70;
}
.fafa .flex-direction-nav a{
	width: 42px;
	height: 42px;
	margin-top: 0;
	top: 0;
	transition: background-image .3s;
}

.fafa .flex-direction-nav .flex-next{
	right: 0px;
}
.fafa .flex-direction-nav .flex-next:hover{
	background-image: url(../images/b-right-h.png);
}


.fafa .flex-direction-nav .flex-prev{
	left: auto;
	right: 70px;
}
.fafa .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/b-left-h.png);
}


















#fp-nav{
	left: 35px;
}
#fp-nav::before{
	position: absolute;
	width: 1px;
	background-color: #fff;
	content:"";
	top: 3px;
	bottom: 3px;
	left: 7px;
	z-index: 5;
}
#fp-nav ul{
	position: relative;
	z-index: 50;
}
#fp-nav ul li{
	width: 56px;
	height: 15px;
	margin:0;
}
#fp-nav ul li:last-child{
	display: none;
}
#fp-nav ul li+li{margin-top: 60px;}

#fp-nav ul li a span{
	position: absolute;
	width: 100%;
	font-size: 14px;
	color: #fff;
	height: 15px;
	line-height: 15px;
	text-align: right;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/fp.png);
}

#fp-nav ul li a.active span{
  background-image: url(../images/fp-cur.png);
}

.index_plate .section6{
	padding-top: 111px;
}
.index_plate .section3{
	padding-top: 111px;
}
.index_plate .section4{
	padding-top: 111px;
}
.index_plate .section5{
	padding-top: 111px;
}


.index2{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 43.24%;
	background-color: rgba(0,175,186,0.95);
	z-index: 15;
}


.index2-1{
	width: 900px;
	margin-top: 60px;
}

.index2-1-con-wp{
	/*font-size: */
	margin-top: 35px;
}
.index2-1-con{
	font-size: 14px;
	color: #fff;
	line-height: 2;
	height: 6em;
	overflow: hidden;
}
.index2-2{
	width: 642px;
	position: relative;
	top: -172px;
}
.index2-2 .about-sp .imgbox_a{
	border-radius: 0;
}
.more22{
	margin-top: 35px;
}
.more22>a{
	display: block;
	width: 42px;
	position: relative;
	margin-left: auto;
}
.more22>a>img{
	display: block;
	width: 100%;
	position: relative;
	z-index: 50;
}

.more22>a span{
	position: absolute;
	width: 400px;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 14px;
	color: #fff;
	transition: width .3s
}
.more22>a span::after{
	position: absolute;
	content:"";
	left: 70px;
	right:60px;
	top: 50%;
	background-color: #fff;
	height: 1px;
}

.more22>a>img:hover+span{
	width: 160px;
}


.index3{
	height: 100%;
	position: relative;
	z-index: 100
}

.index3-bg-wp{
	position: absolute;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	z-index: 15;
	/*background-color: #000;*/
}
.index3-bg-wp .index3-bg{
	display: none;
	height: 100%;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.index3-bg-wp .index3-bg:first-child{
	display: block;
	
}
.index3 .container{
	height: 100%;
}
.index3-list{
	height: 100%;
	border-right: 1px solid rgba(255,255,255,0.36);
}

.index3-item{
	border-left: 1px solid rgba(255,255,255,0.36);
	height: 100%;
	position: relative;
	float: left;
	width: 33.33333333%;
}
.index3-item::after{
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	height: 0;
	content:"";
	background-color: rgba(0,0,0,0.12);
	transition: height .5s;
}
.index3-item-div{
	position: absolute;
	width: 100%;
	left: 0%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0 40px;
	z-index: 50;
}
.index3-ico-wp{
	position: relative;
	width: 280px;
	height: 280px;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-image: url(../images/liu.png);
	background-repeat: no-repeat;
	background-position: center;
	margin:0 auto;
	transition: width .5s,height .5s;
}
.index3-ico{
	position: absolute;
	
	width: 0px;
	height: 0px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
.index3-ico-wp span{
	position: absolute;
	width: 280px;
	font-size: 36px;
	color: #fff;
	text-align: center;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	padding: 0	30px;
	white-space: nowrap;overflow: hidden;
}
.index3-con{
	display: none;
	position: relative;
}
.index3-con h1{
	margin:0;
	font-size: 36px;
	color: #fff;
	padding: 60px 0 70px;
	text-align: center;
}

.index3-con-p{
	font-size: 14px;
	color: #fff;
	line-height: 2;
	height: 8em;
	overflow: hidden;
	text-align: center;
}

.more33{
	margin-top: 100px;
	text-align: center;
	font-size: 0;
	line-height: normal;
	display: none;
}
.more33 a{
	display: inline-block;
	font-size: 14px;
	color: #fff;
	padding-bottom: 34px;
	position: relative;
	
}
.more33 a::after{
	position: absolute;
	content:"";
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 31px;
	height: 10px;
	background-image: url(../images/more33.png);
	background-position: 0 0;
}
.more33 a:hover::after{
	background-position: -800px 0;
	transition: background-position 20s;
}

.index3-item:hover::after{
	height: 100%;
}


.index3-item:hover .index3-ico-wp{
	width: 115px;
	height: 115px;
}

.index3-item:hover .index3-ico-wp span{
	display: none;
}
.index3-item:hover .index3-ico{
	opacity: 1;
	visibility: visible;
	width: 53px;
	height: 53px;
}

.index3-item:hover .index3-con{
	display: block;
}

.index3-item:hover .more33{
	display: block;
}

.index2-img img{
	display: block;
	width: 100%;
}

.index4-1-dl dl{
	margin:0;
}

.index4-1-dl  dd{
	float: left;
	
}
.index4-1-dl  dd+dd{
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: 12px	center;
	background-image: url(../images/gang.png);
}
.index4-1-dl  dd span{
	display: block;
	position: relative;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}


.index4-1-dl  dd span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: -10px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.index4-1-dl dd.cur span::after{
  width: 100%;
  right: auto;
  left: 0;
}


.index4-1-dl  dd a{
	display: block;
	position: relative;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

.index4-1-dl  dd a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: -10px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.index4-1-dl dd a:hover::after{
  width: 100%;
  right: auto;
  left: 0;
}



.index4-2{
	margin-top: 45px;
	padding-left: calc((100vw - 1600px) / 2);
}

.index4-2-list{
	overflow-x: auto;
	

}
.index4-2-list-ul{
	padding: 20px 0 60px 100px;
	font-size: 0;
	line-height: normal;
	white-space: nowrap;

}



.index4-2-item{
	display: inline-block;
	width: 640px;
	background-color: #fff;
	margin-left: 30px;
	position: relative;
	top: 0;
	transition: top .3s,background-color .3s;
}

.index4-2-item-bottom{
	border-top: 1px solid #ececec;
	padding: 22px 45px;
	transition: border-color .3s;
}
.index4-2-item-bottom a.fl{
	font-size: 14px;
	color: #333;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/jiao1.png);
	transition: color .3s,background-image .3s;
}

.index4-2-item-bottom .fr{
	font-size: 14px;
	color: #333;
	transition: color .3s;
}




.index4-2-item-top{
	padding: 40px  0 30px;
	position: relative;
}
.index4-2-item-top::before{
	position: absolute;
	width: 1px;
	left: 108px;
	top: 0;
	bottom: 0;
	content:"";
	z-index: 10;
	background-color: #ececec;
	transition: background-color .3s;
}


.index4-2-menu{
	width: 108px;
	font-size: 18px;
	color: #197292;
	text-align: center;
	margin-top: 35px;
	transition: color .3s;
}

.index4-2-con{
	overflow: hidden;
	padding: 0	45px;
}
.index4-2-pic .imgbox_a{
	padding-bottom: 63%;
}
.index4-2-h1{
	font-size: 18px;
	color: #333;
	margin-top: 22px;
	transition: color .3s;
}
.index4-2-item:hover{top:-20px;background-color: #02acb9;}
.index4-2-item:hover .index4-2-menu{color: #fff;}
.index4-2-item:hover .index4-2-item-top::before{background-color: #fff;}
.index4-2-item:hover .index4-2-h1{color: #fff;}
.index4-2-item:hover .index4-2-item-bottom{border-color: #fff;}
.index4-2-item:hover .index4-2-item-bottom a.fl{color: #fff;background-image: url(../images/jiao1h.png);}
.index4-2-item:hover .index4-2-item-bottom .fr{color: #fff;}



.index5-div{
	width: 50%;
}

.index5-pic1{
	width: 398px;
	margin-left: auto;
}

.index5-pic1 .imgbox_a{
	padding-bottom: 64.32%;
	border-radius: 25px;
	border-bottom-right-radius: 0;
}

.title-11-2{
	border-bottom: 1px solid #fff;
	padding-bottom: 25px;
}


.index5 .title-11-2{
	padding-bottom: 20px;
}

.index5-1 .index5-div.fr{
	padding-left: 65px;
}

.findex5{
	margin-top: 25px;
}

.index5-1-h1{
	padding-left: 37px;
	background-repeat: no-repeat;
	background-position: left top;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	height: 24px;
}

.index5-1-p{
	font-size: 14px;
	color: #fff;
	line-height: 2;
	height: 4em;
	font-weight: bold;
	overflow: hidden;
	margin-top: 15px;
}


.findex5 .flex-control-nav{
	position: relative;
	bottom: 0;
	text-align: left;
	margin-top: 18px;
}

.findex5 .flex-control-nav li{margin:0;}
.findex5 .flex-control-nav li+li{margin:0;margin-left: 15px;}

.index5-pic2 .imgbox_a{
	padding-bottom: 52.5%;

}
.index5-2 .index5-div.fl{
	padding-top: 20px;
}

.index5-2 .zhaopin2-ul{
	padding-top: 30px;
}
.zhaopin2-li>a{
	display: block;

}
.zhaopin2-li>a .zhaopin2-li-top{
	transition: background-color .3s;
}


.zhaopin2-li>a .zhaopin2-1::before{
	background-color: #8ada5a;
}
.zhaopin2-li>a .zhaopin2-li-top::after{
	display: none;
}
.zhaopin2-li>a .zhaopin2-li-top::before {
  position: absolute;
  right: 45px;
  width: 24px;
  height: 24px;
  content: "";
  top: 50%;
	margin-top: -12px;
  background-image: url(../images/zhao2-ico1.png);
}
.zhaopin2-li>a .zhaopin2-1{color: #fff;text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;width: 40%}
.zhaopin2-li>a .zhaopin2-2{color: #fff;text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;width: 15%;margin-left: 5%;}
.zhaopin2-li>a .zhaopin2-3{color: #fff;text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;width: 35%;margin-left: 5%;}


.zhaopin2-li>a:hover .zhaopin2-li-top{
	background-color: #03adba;
	
}

.zhaopin2-li>a:hover .zhaopin2-li-top::before{
	/*background-color: #03adba;*/
	/*transform: rotate(360deg)*/
	transition: .5s;
   transform: rotateZ(180deg);
}



.index6 .map-wp{
	width: 1090px;
	height: 528px;
	box-shadow: 0px 0px 81px 0px rgba(0, 46, 87, 0.16);
}
.index6-con{
	overflow: hidden;
	padding-top: 90px;
}

.title-11 h1{
	margin:0;
	font-size: 28px;
	color: #fff;
	text-transform: uppercase;
}
.title-11 h2{
	margin:0;
	font-size: 22px;
	color: #fff;
	margin-top: 15px;
}
.index6-dl{
	padding-top: 30px;
}
.index6-dl dl{
	margin:0;
}
.index6-dl dd{
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	padding-left: 34px;
	background-repeat: no-repeat;
	background-position: left 1px;
	margin-top: 35px;
}


.index6-con .er-wp2{
	margin-top: 70px;
	color:#fff;
}
.index6-con .er{color: #fff;}



/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-image: url(../images/footer-bg.jpg);
}

.footer-1{
	padding: 45px 0;
	border-bottom: 1px solid rgba(255,255,255,0.14);
}
.er-wp{
	width: 340px;
}
.er{
	width: 100px;
	font-size: 14px;
	color: #999; 
	text-align: center;
}
.er-wp2{
	width: 260px;
	margin-top: 15px;
}
.er-wp2 .er{
	width: 120px;
}
.er-wp2 .er:first-child+.er{
	margin:0;
}
.er:first-child+.er{
	margin:0 20px;
}
.er img{
	display: block;
	width: 100%;
	margin-bottom: 11px;
}

.foo-nav ul{
	margin:0;

}
.foo-nav li{

	float: left;
}
.foo-nav li+li{
	margin-left: 160px;
}
.foo-nav li h1{
	margin:0;
	font-size: 18px;
	color: #fff;
	text-align: center;
}

.foo-nav dl{
	margin:0;
	padding-top:17px; 

}
.foo-nav dd{
	margin-top: 13px;
	text-align: center;
}
.foo-nav dd a{
	font-size: 14px;
	color: #999;
	transition: .3s;
}
.foo-nav dd a:hover{
	color: #fff;
}
.footer-2{
	padding: 35px 0;
	font-size: 14px;
	color: #999;
	line-height: 1.8;
}
.footer-2 a:hover{
	color: #fff;
	transition: .3s;
}
/**************************************************************/
/*footer-over*/





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/

#header-2{
	display: none;
	height: 75px;
	/*border-bottom:0px solid #035cac;*/
	box-shadow: 0 4px 8px -3px #000;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1001;
	background-color: #00afba;
	/*background-color: #0089d0;*/

}
.nav-2{
	display: none;
	background-color: #fff;
	position: relative;
	z-index:900;

}

.nav-2>ul>li{

	border-top: 1px dotted #ccc;
	position: relative;
}

.jiaspan{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia2.png);
	background-repeat: no-repeat;
	background-position: center ;
	top: 5px;

	right: 14px;
}
.jiaspan.cur{
	background-image: url(../images/jia2h.png);

}
.nav-2>ul>li:first-child{
	/*border-top: 0;*/
}
.nav-2>ul>li>a{

	padding:8px 10px;
	display: block;
	font-size: 16px;
	width: 100%;
	color:#333;
	text-transform: uppercase;

}
.nav-2>ul>li>ul{
	padding-bottom: 10px;
	display: none;
}
.nav-2>ul>li>ul>li>a{
	padding: 4px 10px;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	width: 100%;
	color:#666;
}
/*.downla-2 {
	padding: 5px 0 10px;
	display: none;
}
.downla-2 dd{
	padding-left: 30px;
}
.downla-2 dd a{
	font-size: 14px;
	display: inline-block;
	padding: 3px 0;
	width: auto;
}*/
/*.nav-2 li a:hover{
	color:#1a0d07;
}*/

.nav-2-form{
	padding: 10px;
	position: relative;
}
.nav-2-form input[type="image"]{
	position: absolute;
	right: 19px;
    top: 17px;
    width: 18px;

}

.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width:100px;
   margin-left: 15px;
   margin-top:8px;
}

.logo-2 img{
	display: block;
	width: 100%;
}


.menu2{

	margin-right: 15px;
	height: 75px;
	font-size: 0;

}
.menu2 li{
	cursor:pointer ;
	margin-left: 15px;
	float: right;
	margin-top: 29px;
}
.menu2 li+li{
	margin-top: 21px;
}
.menu2 li img{
	/*vertical-align: middle;*/


}

.chenggao{
		display: none;
		height: 75px;
	}


#nav-2-heidi{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-image: url(../images/heidi.png);
	display: none;

}





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/


.banner-2{
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.banner-2::after{
	position: absolute;
	left: 0;top:0;
	content:"";
	width: 100%;
	height: 100%;
	z-index: 15;
	background-color: #000;
	opacity: .1;
}

.banner-2 .container{
	position: relative;
	z-index: 30;
	height: 548px;
}

.banner-2-title{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%); 
	text-align: center;
	z-index: 30;
}

.banner-2-title h1{
	margin:0;
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
}

.banner-2-title h2{
	margin:0;
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	margin-top: 20px;
}

.erji-nav{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	z-index: 30;
}

.erji-nav dl{
	margin:0;
	font-size: 0;
	line-height: normal;
	text-align: center;
	margin-left: -1%;
}

.erji-nav dd{
	display: inline-block;
	width: 19%;
	margin-left: 1%;
	margin-bottom: 1%;
}

.erji-nav dd>a{
	display: block;
	padding: 20px 0;
	color: #0b4d65;
	background-color: rgba(255,255,255,0.7);
	transition: background-color .3s,color .3s;
}

.erji-nav dd>a h1{
	margin:0;
	font-size: 16px;
	color: inherit;
}

.erji-nav dd>a h2{
	margin:0;
	font-size: 12px;
	color: inherit;
	margin-top:8px;
	text-transform: uppercase;
}

.erji-nav dd>a:hover,.erji-nav dd.cur>a{
	background-color: rgba(0,175,186,0.85);
	color:#fff;
}

.erji{
	padding: 110px 0;
	background-color: #eef1f6;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(../images/erji-bg.jpg);
	-webkit-background-size: contain;
	background-size: contain;
}

.erji-title h1{
	margin:0;
	font-size: 24px;
	color: #333;
	position: relative;
}

.erji-title h1::after{
	position: absolute;
	left: 0;
	bottom: -24px;
	width: 78px;
	height: 8px;
	background-image: url(../images/h1.png);
	content:"";
}

.erji-title h2{
	margin:0;
	font-size:16px;
	color: #333;
	padding-left: 150px;
	margin-top: 10px;
	letter-spacing: 5px;
}

.erji-content{
	margin-top: 40px;
}

.about-pic{
	width: 40.125%;
	margin-left: 60px;
}

.about-sp .imgbox_a{
	padding-bottom: 60%;
	border-top-right-radius: 35px;
	border-bottom-left-radius: 35px;
}

.about-sp .imgbox_a::after{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	content:"";
	z-index: 15;
	background-color: rgba(0,0,0,0.12);
}

.about-sp .imgbox_a::before{
	position: absolute;
	width: 60px;
	left: 50%;
	top: 50%;
	height: 60px;
	content:"";
	z-index: 25;
	background-image: url(../images/bo.png);
	-webkit-background-size: 100%;
	background-size: 100%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}



.fabout1 .imgbox_a{
	padding-bottom: 60%;

}

.fabout1 .flex-direction-nav a{
	width: 42px;
	height: 42px;
	margin-top: 0;
	top: auto;
	bottom: 30px;
	transition: background-image .3s;
}

.fabout1 .flex-direction-nav .flex-next{
	right: 15px;
}
.fabout1 .flex-direction-nav .flex-next:hover{
	background-image: url(../images/b-right-h.png);
}


.fabout1 .flex-direction-nav .flex-prev{
	left: auto;
	right: 75px;
}
.fabout1 .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/b-left-h.png);
}


.about-con{
	overflow: hidden;
}

.about-con-p{
	font-size: 15px;
	color: #333;
	line-height: 2;
}
.rongyu-list{
	overflow: hidden;
}
.rongyu-list .row{
	margin-left: -20px;
	margin-right: -20px;
	margin-top: -40px;
}
.rongyu-list .col-sm-6{
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 40px;
}

.rongyu-item{
	border:1px solid #c6d0df;
	background-color: #fff;
	padding: 40px 40px 35px;
}

.rongyu-pic{
	box-shadow: 0px 6px 16px 0px rgba(32, 0, 0, 0.2);	
}

.rongyu-pic .imgbox_a{
	padding-bottom: 76.655%;
}

.rongyu-h1{
	font-size: 16px;
	color: #333;
	text-align: center;
	margin-top: 30px;
}

.rongyu-item:hover .rongyu-h1{color: #00afba;}

.fenye{
	margin-top: 70px;
	text-align: center;
}

.fenye ul{
	margin:0;
}

.xinwen1-1{
	width: 58.8%;
}

.xinwen1-2{
	width: 36.5%;
}

.xinwen-f{
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	color: #fff;
	padding: 0 18px;
}

.xinwen-f1{background-color:#00afba;}
.xinwen-f2{background-color:#1d59b4;}
.xinwen-f3{background-color:#dfa11b;}

.xinwen-date{
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	color: #777;
}
.xinwen1-1-div{margin-top: 35px;}
.xinwen1-1-div>a{
	display: block;
	position: relative;
}
.xinwen1-1-div .imgbox_a{
	padding-bottom: 63%;
	z-index: 15;
}

.xinwen1-1-div .imgbox_a::after{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background-repeat: repeat-x;
	background-position: left center;
	background-image: url(../images/yy.png);
	z-index: 15;
	content:"";
	height: 318px;
}

.xinwen1-1-con{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 0 90px 50px;
	z-index: 30;
}

.xinwen1-1-con h1{
	margin:0;
	font-size: 30px;
	color: #fff;
}

.xinwen1-1-con p{
	margin:0;
	font-size: 14px;
	color: #fff;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 18px;
}

.xinwen1-2-div{
	margin-top: 28px;
}

.xinwen1-2-div h1{
	margin:0;
	font-size: 30px;
	color: #333;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
}
.xinwen1-2-div h1 a:hover{
	color: #00afba;
}
.xinwen1-2-div p{
	margin:0;
	font-size: 14px;
	color: #777;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 20px;
}
.xinwen1-2-pic{
	margin-top: 66px;
}
.xinwen1-2-pic .imgbox_a{
	padding-bottom: 63%;
}
.xinwen2{
	margin-top: 130px;
}
.xinwen2 .row{
	margin-top: -30px;
}
.xinwen2 .col-sm-6{
	margin-top: 30px;
}
.xinwen2-item{
	border-top: 1px solid #c6d0df;
	border-bottom: 1px solid #c6d0df;
	padding: 22px 0 32px;
	position: relative;
}

.xinwen2-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #00afba;
    top: -1px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.xinwen2-item:hover::before{
  width: 100%;
  right: auto;
  left: 0;
}
.xinwen2-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #00afba;
    bottom: -1px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.xinwen2-item:hover::after{
  width: 100%;
  right: auto;
  left: 0;
}
.xinwen2-item:hover .xinwen2-a{
	background-image: url(../images/aah.png);
	color: #00afba;

}
.xinwen2-con{
	padding-top: 20px;
}
.xinwen2-con h1{
	margin:0;
	font-size: 22px;
	color: #333;
	overflow: hidden;
}
.xinwen2-con h1 a:hover{
	color: #00afba;
}
.xinwen2-con p{
	margin:0;
	font-size: 14px;
	color: #777;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 20px;
}
.xinwen2-a{
	font-size: 14px;
	color: #333;
	width: 75px;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url(../images/aa.png);
	margin-top: 18px;
	transition: .5s;
}

.xinwen-tui{
	width: 375px;
	margin-left: 120px;
	margin-top: 30px;
	position: relative;
}

.xinwen-tui::before{
	position: absolute;
	top: 67px;
	bottom: 0;
	left: -60px;
	width: 1px;
	background-color: #c6d0df;
	content:"";
}

.xinwen-xx-h2{
	font-size: 26px;
	color: #333;
	line-height: 1.6;
	border-bottom: 1px solid #c6d0df;
	padding-bottom: 25px;
}

.xinwen-tui-list dl{
	margin:0;
}

.xinwen-tui-list dd{
	padding: 30px 0;
	border-bottom: 1px solid #c6d0df;
	position: relative;
}
.xinwen-tui-list dd::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #00afba;
    bottom: -1px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.xinwen-tui-list dd.cur::after{
  width: 100%;
  right: auto;
  left: 0;
}
.xinwen-tui-list dd:first-child .xinwen-tui-pic{
	display: block;
}
.xinwen-tui-pic{
	display: none;
	margin-bottom: 20px;
}
.xinwen-tui-pic .imgbox_a{
	padding-bottom: 63.1%;
}

.xinwen-tui-list dd .xinwen2-con{
	padding-top: 0;
}
.xinwen-tui-list dd .xinwen2-con h2{
	margin:0;
	font-size: 14px;
	color: #333;
	margin-bottom: 15px;
}

.xinwen-tui-list dd.cur .xinwen2-a{
	background-image: url(../images/aah.png);
	color: #00afba;
}


.xinwen-xx-div{
	overflow: hidden;
}

.xinwen-xx-h1{
	font-size: 14px;
	color: #999;
	padding-bottom: 10px;
}

.xinwen-xx-div .about-con-p{
	margin-top: 30px;
}
.shipin-dl{
	overflow: hidden;
}
.shipin-dl dl{
	margin:0;
	margin-left: -4%;
	margin-top: -75px;
}

.shipin-dl dd{
	float: left;
	width: 46%;
	padding-right: 124px;
	margin-left: 4%;
	margin-top: 75px;
	position: relative;
}
.shipin-dl dd .about-sp{margin:0;width: 100%;float: none;}
.shipin-con{
	position: absolute;
	right: 0;
	bottom:0;
	width: 370px;
	border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  background-color: rgba(255,255,255,0.95);
  padding: 40px;
  z-index: 25;
	transition:background-color .3s;
}

.shipin-con h1{
	margin:0;
	font-size: 24px;
	color: #333;
	transition: color .3s;
}
.shipin-con p{
	margin:0;
	font-size: 14px;
	color: #777;
	line-height: 2;
	height: 4em;
	overflow: hidden;margin-top: 12px;
	transition: color .3s;
}

.shipin-dl dd:hover .shipin-con{
  background-color: rgba(0,175,186,0.85);
}
.shipin-dl dd:hover .shipin-con h1{color: #fff;}
.shipin-dl dd:hover .shipin-con p{color: #fff;}
.erji.contact{
	background-image: none;
	background-color: #dce5ea;
}
.map-wp{
	width: 68.75%;
	height: 546px;
}

.map{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
	background-color: #fff;
}

.map-con{
	overflow: hidden;
	padding: 0 50px;
}

.contact-div{
	background-color: #0db3be;
}

.map-dl dl{
	margin:0;
}

.map-dl dd{
	padding: 45px 0 36px 75px;
	border-bottom: 1px solid #25dbe9;
	background-repeat: no-repeat;
	background-position: left center;
}

.map-dl dd h1{
	margin:0;
	font-size: 16px;
	color: #fff;
}
.map-dl dd p{
	margin:0;
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	margin-top: 15px;
}

.map-con .er-wp2{

	color:#fff;
	margin-top: 40px;
}
.map-con .er-wp2 .er{
	color: #fff;
}
.contact .erji-content {
    margin-top:0px;
}

.erji.zhaopin{
	padding: 0;
	background-image: none;
}

.zhaopin1{
	background-color: #fff;
	padding: 110px 0;
}

.zhaopin1-pic{
	width:46.625%;
}
.zhaopin1-con{
	width:46.625%;
}

.zhaopin1-pic .imgbox_a{
	padding-bottom: 60.32%;
}

.zhaopin1-con{
	overflow: hidden;
	padding-top: 100px;
}

.zhaopin1-con .erji-title h3
{
	margin:0;
	font-size: 24px;
	color: #333;
	padding-bottom: 20px;
}

.zhaopin1-con .erji-title h1{
	font-size: 36px;
}
.zhaopin1-con .erji-title h1::after{
	bottom: -30px;
}

.zhaopin1-p{
	font-size: 18px;
	color: #545454;
	line-height: 2;
	margin-top: 60px;
}

.zhaopin1-div+.zhaopin1-div{
	margin-top: 90px;
}

.zhaopin2{
	padding: 50px 0 60px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-image: url(../images/zhaopin2-bg.jpg);
}


.zhaopin2-title{
	border-bottom: 1px solid #c8d2e2;
}

.zhaopin2-title h1{
	margin:0;
	font-size: 28px;
	color: #333;
	text-transform: uppercase;
}

.zhaopin2-title h2{
	margin:0;
	font-size: 22px;
	color: #333;
	padding: 11px 0 17px;
}


.zhaopin2-ul{
	padding-top: 50px;
}

.zhaopin2-li-top{
	padding: 25px 100px 25px 20px;
	background-color: rgba(0,51,119,0.16);
	position: relative;
	cursor: pointer;
}
.zhaopin2-li-top::after{
	position: absolute;
	right: 45px;
	width: 24px;
	height: 24px;
	content:"";
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url(../images/zhao2-ico1.png);
}

.zhaopin2-1{
	font-size: 16px;
	color: #333;
	padding-left: 25px;
	line-height: 1.5;
	position: relative;
	width: 340px;
}

.zhaopin2-1::before{
	position: absolute;
	left: 0px;
	top: 2px;
	width: 5px;
	height: 20px;
	background-color: #0c89bd;
	content:"";
}

.zhaopin2-2{
	font-size: 16px;
	color: #333;
	margin-left: 30px;
	line-height: 1.5;
	position: relative;
}
.zhaopin2-3{
	font-size: 16px;
	color: #333;
	margin-left: 50px;
	line-height: 1.5;
	position: relative;
}

.zhaopin2-li-top.cur{
	background: -webkit-linear-gradient(left, #0cb2bd , #0c89bd); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0cb2bd, #0c89bd); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0cb2bd, #0c89bd); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0cb2bd , #0c89bd); /* 标准的语法 */
}
.zhaopin2-li-top.cur::after{
	background-image: url(../images/zhao2-ico2.png);
}


.zhaopin2-li-top.cur .zhaopin2-1{color: #fff;}
.zhaopin2-li-top.cur .zhaopin2-2{color: #fff;}
.zhaopin2-li-top.cur .zhaopin2-3{color: #fff;}
.zhaopin2-li-top.cur .zhaopin2-1::before{
	background-color: #8ada5a;
}


.zhaopin2-li-bottom{
	background-color: #fff;
	padding: 35px 45px;
	display: none;
}

.zhaopin2-con-wp{
	padding-right: 300px;
	position: relative;
}

.zhaopin2-con{
	font-size: 14px;
	color: #333;
	line-height: 2.2;
}

.zhaopin2-jl{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 286px;
	padding: 20px 0;
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: -webkit-linear-gradient(left, #0cb2bd , #0c89bd); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0cb2bd, #0c89bd); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0cb2bd, #0c89bd); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0cb2bd , #0c89bd); /* 标准的语法 */
  border-radius: 5px;
}

.zhaopin2-li+.zhaopin2-li{
	margin-top: 30px;
}
.fuwu-title{
	font-size: 48px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.fuwu-title::after{
	display: block;
	width: 68px;
	height: 4px;
	content:"";
	background-color: #fff;
	margin:20px auto 0;
}
.fuwu3-list-wp{
	padding: 150px 0 0;
}
.fuwu3-list .item .about-sp{
	float: none;
	width: 100%;
	margin:0;
}

.fuwu3-list .item .about-sp .imgbox_a{
	border-radius: 0!important;

}

.fuwu3-h1{
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 25px;
}

.fuwu3-list  .owl-nav{
	width: 113px;
	height: 42px;
	position: relative;
	margin:65px auto 0;
}
.fuwu3-list  .owl-nav button.owl-prev{
    position: absolute;
    left:0px;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/b-left.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;
    font-size: 0;
    z-index: 50;
    -webkit-background-size: 100%;
    background-size: 100%;
    transition: background-image .3s;
}
.fuwu3-list  .owl-nav button.owl-prev:hover{background-image: url(../images/b-left-h.png);}
.fuwu3-list  .owl-nav button.owl-next{
    position: absolute;
    right:0px;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/b-right.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;font-size: 0;
    z-index: 50;
    -webkit-background-size: 100%;
    background-size: 100%;
    transition: background-image .3s;
}
.fuwu3-list  .owl-nav button.owl-next:hover{background-image: url(../images/b-right-h.png);}


.fuwu2-pic .imgbox_a{
	padding-bottom: 60%;
}
.fuwu2-pic .imgbox_a::after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 15;
	background-color: rgba(0,0,0,0.58);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	content:"";
}
.fuwu2-pic-h1{
	position: absolute;
	width: 100%;
	padding: 0	15px;
	font-size: 26px;
	color: #fff;
	text-align: center;
	z-index: 25;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.fuwu2-h1{
	font-size: 22px;
	color: #fff;
	margin-top: 25px;
	text-align: center;
	opacity: 1;
	visibility: visible;
	transition: .3s;
}

.pp60{
	padding-top: 60px;
}

.fuwu2-list  .owl-nav button.owl-prev{
  position: absolute;
  left:-72px;
  top: 50%;
  margin-top: -21px;
  width: 42px;
  height: 42px;
  background-image: url(../images/b-left.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;
  font-size: 0;
  z-index: 50;
  -webkit-background-size: 100%;
  background-size: 100%;
  transition: background-image .3s;
}
.fuwu2-list  .owl-nav button.owl-prev:hover{background-image: url(../images/b-left-h.png);}
.fuwu2-list  .owl-nav button.owl-next{
  position: absolute;
  right:-72px;
  top: 50%;
  margin-top: -21px;
  width: 42px;
  height: 42px;
  background-image: url(../images/b-right.png);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center ;font-size: 0;
  z-index: 50;
  -webkit-background-size: 100%;
  background-size: 100%;
  transition: background-image .3s;
}
.fuwu2-list  .owl-nav button.owl-next:hover{background-image: url(../images/b-right-h.png);}

.fuwu2-list  .item:hover .fuwu2-pic .imgbox_a::after{
	opacity: 1;
	visibility: visible;
}
.fuwu2-list  .item:hover .fuwu2-pic-h1{
	opacity: 1;
	visibility: visible;
}

.fuwu2-list  .item:hover .fuwu2-h1{
	opacity: 0;
	visibility: hidden;
}



.fuwu2-list .owl-dots {
    margin-top: 50px;
}

.fuwu2-list .owl-dot span{
    width: 16px;
    height: 16px;
}


















.fuwu1-con-p{
	font-size: 16px;
	color: #fff;
	line-height: 2.4;
	text-align: center;
	padding: 0	100px;
}

.fuwu1-con-p p{margin:0;}


.wwp{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../images/wwp.jpg);
	display: none;
	padding-top: 111px;
}

.wwp1{
	border-bottom: 1px solid rgba(255,255,255,0.36);
	
}
.wwp1 .container{
	position: relative;
	padding: 10% 0;
}
.wwp1 .container::after{
	position: absolute;
	width: 1px;
	background-color:  rgba(255,255,255,0.36);
	top: 0;
	height: 100%;
	right: 520px;
	content:"";
}
.wwp2{
	font-size: 14px;
	color: #fff;
	margin-top: 30px;
	line-height: 1.6;
}

.wwp1-right{
	width: 390px;
	font-size: 14px;
	color: #fff;
	line-height: 2.4;
	
}
.wwp1-right .er{
	color: #fff;
	line-height: 1.4;
	
}
.wwp1-left  .foo-nav dd{
	font-size: 0;
}
.wwp1-left  .foo-nav dd a{
	color: #fff;
	display: inline-block;
	position: relative;
}

.wwp1-left  .foo-nav dd a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  bottom: -5px;
  right: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.wwp1-left  .foo-nav dd a:hover::after{
  width: 100%;
  right: auto;
  left: 0;
}



.video-wp{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	z-index: 1800;
	padding: 0 60px;
	transition:  .3s;
	text-align: center;
}
.video-wp.cur{
	opacity: 1;
	visibility: visible;
}
.video-box{
	position: relative;
	width: 100%;
}
.video-close{
	position: absolute;
	width: 36px;
	right: -18px;
	top: -18px;
	cursor: pointer;
	z-index: 50;
}
.video-close img{
	display: block;
	width: 100%;
	transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.video-close:hover img{
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transition: transform .3s;
}
.video-box video {
    max-height: calc(100vh - 4em);
    width: 100%!important;
    vertical-align: middle;
    max-width: 100%;
    position: relative;
    z-index: 15;
}
.video-box video:focus{
	outline: none;
}




.cp{
	background-image: none!important;
}

.cp2{
	margin-top: 50px;
}

.cp2-dl{
	padding: 50px 0 0;
}

.cp2-dl dl{
	margin:0;
}

.cp2-dl dd{
	float: left;
	margin-right: 12px;
}

.cp2-dl dd>a{
	display: block;
	padding: 0 45px;
	height: 47px;
	line-height: 47px;
	font-size: 18px;
	color: #333;
	background-color: #fff;
}
.cp2-dl dd>a:hover{
	color: #07a8ba;
}
.cp2-dl dd.cur>a{
	background-color: #07a8ba;
	color:#fff!important;
}

.cp2-list dl{
	margin:0;
	margin-left: -3%;
}

.cp2-list dd{
	float: left;
	width:22%;
	margin-left: 3%;
	margin-top: 3%;
}

.cp2-pic{
	border:5px solid #fff;
	transition: border-color .3s;
}

.cp2-pic .imgbox_a{
	padding-bottom: 111.336%;
}

.cp2-h1{
	font-size:  18px;
	color: #333;
	text-align: center;
	margin-top: 20px;
	transition: color .3s;
}

.cp2-list dd:hover .cp2-pic{
	border-color:#d9e1ef;
}

.cp2-list dd:hover .cp2-h1{color: #07a8ba;}