﻿.ro180{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.ro90{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}

.ro270{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}

html{
	color: #333;
}

/*search*/
.search-shade{
	position: fixed;
	z-index: 101;
	background-color: rgba(0,149,120,0.9);
	left: 0;
	height: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.search-block{
	position: fixed;
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-align: center;
}

.search-block h1{
	font-size: 48px;
	color: #fff;
	margin-bottom: 30px;
	font-weight: bold;
}

.search-block input{
	width: 830px;
	padding: 0 10px;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color: #333;
	background-color: transparent;
}

.search-block a{
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
	background-color: #f18619;
	border-radius: 10px;
	margin: 0 auto;
}

.search-block i{
	font-size: 26px;
	color: #fff;
}

.search-block>div{
	background-color: #fff;
	padding: 0 10px;
	border-radius: 10px;
}

/*top nav*/
.top-nav-blank{
	height: 90px;
}

.header{
	height: 90px;
	width: 100%;
	padding-left: 6.25%;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	box-shadow: 0 0 5px #888;
}

.top-nav{
	height: 100%;
}

.top-nav .nav-block{
	height: 100%;
}

.top-nav .nav-block li>a{
	margin: 0 5px;
	padding: 0 20px;
	font-size: 16px;
	color: #666;
	height: 100%;
	position: relative;
	display:-webkit-flex; 
	display:-webkit-box; 
	display:-ms-flexbox; 
	display:-moz-flex; 
	display:flex;
	-webkit-align-items:center; 
	-webkit-box-align:center;
	-ms-flex-align:center;
	-moz-align-items:center; 
	align-items:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.top-nav .nav-block a::after{
	opacity: 0;
	display: none;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background-color: #6db6bd;
}

.top-nav .nav-block a:hover,
.top-nav .nav-block .active a{
	color: #009578;
}

.top-nav .nav-block a:hover::after,
.top-nav .nav-block .active a::after{
	opacity: 1;
}

.top-nav .nav-block li{
	position: relative;
}

.top-nav .nav-block dl{
	display: none;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%,0);
	padding-top: 10px;
}

.top-nav .nav-block li:hover dl{
	display: block;
}

.top-nav .nav-block dl::before{
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	border-bottom: 4px solid rgba(0,149,120,0.9);
	border-left: 2px solid transparent;
	border-right: 2px solid transparent;
}

.top-nav .nav-block dd{
	background-color: rgba(0,149,120,0.9);
}

.top-nav .nav-block dd:first-child{
	padding: 8px 0 0 0;
	border-radius: 8px 8px 0 0;
}

.top-nav .nav-block dd:last-child{
	padding: 0 0 8px 0;
	border-radius: 0 0 8px 8px;
}

.top-nav .nav-block dd a{
	display: block;
	line-height: 36px;
	white-space: nowrap;
	overflow: hidden;
	padding: 0 20px;
	color: #fff;
	font-size: 14px;
}

.top-nav .nav-block dd a:hover{
	background-color: #f1871c;
	color: #fff;
}

.index-lang{
	height: 100%;
	border-left: 1px solid #fafafa;
	display:-webkit-flex; 
	display:-webkit-box; 
	display:-ms-flexbox; 
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	-moz-align-items:center; 
	align-items:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.index-lang a{
	display: block;
	padding: 20px;
	color: #999;
	font-size: 14px;
	overflow: hidden;
}

.index-lang i{
	color: #666;
	margin-right: 10px;
	font-size: 14px;
}

.index-lang span{
	color: #f08519;
	font-weight: bold;
}

.top-menu{
	height: 100%;
	background-color: #009578;
	width: 90px;
	line-height: 90px;
	cursor: pointer;
	text-align: center;
}

.top-menu i{
	font-size: 40px;
	color: #fff;
}

.big-header-bg{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 101;
	width: 100%;
	height: 100%;
	background-color: rgba(0,149,120,0.9);
	transition: all 0.3s;
	visibility: hidden;
	opacity: 0;
	display:-webkit-flex; 
	display:-webkit-box; 
	display:-ms-flexbox; 
	display:-moz-flex; 
	display:flex;
	-webkit-align-items:center; 
	-webkit-box-align:center;
	-ms-flex-align:center;
	-moz-align-items:center; 
	align-items:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.big-header-bg.show{
	visibility: visible;
	opacity: 1;
}

.big-header{
	width: 100%;
	max-width: 1200px;
}

.big-header i{
	font-size: 40px;
	color: #fff;
}

.big-header ul{
	margin-top: 110px;
}

.big-header li{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.big-header li>a{
	font-size: 22px;
	color: #fff;
}

.big-header dd{
	margin-top: 35px;
}

.big-header dd>a{
	font-size: 17px;
	color: #fff;
}

.big-header dd>a:hover{
	text-decoration: underline;
}

.menu,.menu_down{
	display: none;
}

/* index banner */
.index-banner img{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}

/*index about*/
.index-about-block{
	
}

.index-about-block .textbox{
	padding: 60px 0;
	text-align: center;
}

.index-about-block .textbox h2{
	font-size: 36px;
	color: #333;
	font-weight: bold;
	margin-bottom: 25px;
}

.index-about-block .editbox{
	font-size: 15px;
	line-height: 2;
	color: #666;
	margin-bottom: 50px;
}

.index-about-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.index-about-block .editbox::after{
	display: block;
	content: "";
	margin: 30px auto 0;
	width: 60px;
	height: 5px;
	background-color: #01967a;
}

.index-about-block ul{
	border-left: 1px solid #eee;
	width: 88%;
	margin: 0 auto;
}

.index-about-block li{
	padding: 20px 0;
	border-right: 1px solid #eee;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.index-about-block li h3{
	margin-bottom: 15px;
	font-size: 50px;
	color: #01967a;
	font-weight: bold;
}

.index-about-block li p{
	font-size: 16px;
	color: #999;
}

.index-about-block li span{
	font-size: 20px;
	color: #999;
	vertical-align: top;
}

.index-about-block .imgbox{
	padding: 40px 6% 0;
	position: relative;
	z-index: 5;
}

.index-about-block .imgbox>div{
	position: relative;
	z-index: 5;
}

.index-about-block .imgbox::before{
	display: block;
	content: "";
	width: 90%;
	height: 100%;
	background-color: #01967a;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
}

.index-about-block .imgbox .border{
	width: 100px;
	height: 1px;
	background-color: #fff;
	margin-right: 15px;
	transform: translateY(15px);
}

.index-about-block .imgbox .info{
	overflow: hidden;
}

.index-about-block .imgbox h4{
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.index-about-block .imgbox h2{
	font-size: 48px;
	color: #fff;
}

.index-about-block .imgbox h3{
	font-size: 32px;
	color: #fff;
}

.index-about-block .imgbox p{
	font-size: 17px;
	color: #fff;
	background-color: #f18619;
	padding: 5px 0 5px 10px;
	border-radius: 16px 0 0 16px;
	margin-top: 10px;
}

.index-about-block .imgbox .graphic{
	height: 430px;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.index-about-block .imgbox video{
	width: 100%;
	height: 600px;
	object-fit: contain;
}

.index-about-block .imgbox img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}
.index-about-block .imgbox iframe{
width: 100%;
	height: 600px;
}

/* index useful */
.index-useful{
	padding: 240px 6% 40px;
	position: relative;
	background-image: url("../image/index_use_bg.jpg");
	background-position: center top;
}

.index-useful::after{
	position: absolute;
	display: block;
	content: "";
	right: 0;
	bottom: 0;
	background-color: #01967a;
	height: 65%;
	width: 59%;
	transform: translateY(65px);
}

.index-useful .title{
	padding: 0 6%;
	margin-bottom: 0px;
}

.index-useful .title h2{
	color: #01967a;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 10px;
}

.index-useful .title h4{
	font-size: 18px;
	color: #666;
}

.index-useful .usebox{
	position: relative;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.index-useful .usenav1{
	position: relative;
	z-index: 6;
	transform: translateY(100%);
}

.index-useful .usenav1 a{
	display: block;
	float: left;
	padding: 20px 40px;
	font-size: 14px;
	color: #fff;
	background-color: #6a6a6a;
}

.index-useful .usenav1 i{
	font-size: 40px;
	margin-right: 15px;
	display: inline-block;
	vertical-align: middle;
}

.index-useful .usenav1 a:hover,
.index-useful .usenav1 a.active{
	background-color: #01967a;
}

.index-useful .useblock{
	position: relative;
	display: none;
}

.index-useful .useblock.active{
	display: block;
}

.index-useful .useblock-child{
	display: none;
}

.index-useful .useblock-child.active{
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
}

.index-useful .usenav2{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 6;
	transform: translateY(100%);
}

.index-useful .usenav2 a{
	display: block;
	float: left;
	padding: 15px 40px;
	font-size: 14px;
	color: #fff;
	background-color: #003c31;
	margin-left: 1px;
}

.index-useful .usenav2 a:hover,
.index-useful .usenav2 a.active{
	background-color: #d98823;
}


.index-useful .text{
	padding: 160px 60px 0 60px;
	min-height: 650px;
	position: relative;
}

.index-useful .text>*{
	position: relative;
	z-index: 5;
}

.index-useful .text img{
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.index-useful .text h2{
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 15px;
}

.index-useful .text h3{
	color: #fff;
	font-size: 16px;
	margin-bottom: 20px;
}

.index-useful .text .border{
	width: 60px;
	height: 5px;
	background-color: #f18619;
	margin-bottom: 40px;
}

.index-useful .text .editbox{
	font-size: 16px;
	color: #fff;
	line-height: 2;
}


/* index product */
.index-product{
	background-image: url("../image/index_product_bg.jpg");
	background-position: center top;
	padding: 120px 0 0;
}

.index-product .title{
	padding: 0 6%;
	margin-bottom: 40px;
}

.index-product .title .text{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
	overflow: hidden;
}

.index-product .title h2{
	color: #01967a;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 10px;
}

.index-product .title h4{
	color: #666;
	font-size: 18px;
}

.index-product .title .icon{
	text-align: center;
	margin-left: 60px;
}

.index-product .title i{
	font-size: 32px;
	color: #999;
}

.index-product .title p{
	font-size: 16px;
	color: #999;
	margin-top: 15px;
}

.index-product ul{
	background-image: url("../image/index_product_bg2.jpg");
	background-position: center;
	background-size: cover;
}

.index-product li{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
	overflow: hidden;
	text-align: center;
	transition: all 0.3s;
	position: relative;
}

.index-product li:hover{
	background-color: rgba(0,149,120,0.7);
}

.index-product li::before{
	display: block;
	content: "";
	position: absolute;
	z-index: 4;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 1px solid #fff;
	opacity: 0;
	transition: all 0.3s;
}

.index-product li:hover::before{
	opacity: 1;
}

.index-product li+li{
	border-left: 1px solid #777;
}

.index-product li a{
	display: block;
	padding: 75px 40px;
	position: relative;
	z-index: 5;
}

.index-product li .imgbox{
	height: 300px;
	margin-bottom: 40px;
}

.index-product li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.index-product li p{
	font-size: 15px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.index-product li span{
	font-size: 12px;
	color: #999;
	display: inline-block;
	padding: 5px 20px;
	border: 1px solid #999;
	border-radius: 16px;
}

.index-product li:hover span{
	border-color: #f18619;
	color: #fff;
	background-color: #f18619;
}

/*index news*/
.index-news{
	padding: 70px 0 0;
}

.index-news .title{
	padding-bottom: 35px;
	border-bottom: 1px solid #eee;
}

.index-news .title h2{
	max-width: 1480px;
	margin: 0 auto;
	color: #01967a;
	font-size: 48px;
	font-weight: bold;
}

.index-news ul{
	max-width: 1480px;
	margin: 0 auto;
}

.index-news li{
	width: 33.33%;
	border-left: 1px solid #eee;
}

.index-news li:last-child{
	border-right: 1px solid #eee;
}

.index-news li a{
	display: block;
	padding: 40px 30px;
}

.index-news li .imgbox{
	height: 245px;
	margin-bottom: 30px;
	overflow: hidden;
}

.index-news li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-news li .text-block{
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.index-news li h4{
	font-size: 14px;
	color: #01967a;
	margin-bottom: 25px;
}

.index-news li p{
	font-size: 22px;
	color: #333;
	line-height: 32px;
	height: 64px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 35px;
}

.index-news li span{
	display: inline-block;
	padding: 15px 40px;
	font-size: 14px;
	color: #999;
	border: 1px solid #ccc;
	border-radius: 25px;
}

/*footer list*/
.footer-list-bg{
	background-color: #3f3f3f;
	position: relative;
	z-index: 5;
}

.footer-list{
	max-width: 1480px;
	margin: 0 auto;
	padding: 70px 0 30px;
	border-bottom: 1px solid #555;
}

.footer-list li h2{
	font-size: 18px;
	color: #fff;
	margin-bottom: 20px;
}

.footer-list li h2::after{
	display: block;
	content: "";
	margin-top: 15px;
	width: 30px;
	height: 5px;
	background-color: #01967a;
}

.footer-list a,
.footer-list p{
	display: block;
	font-size: 15px;
	color: #999;
}

.footer-list a:hover{
	color: #fff;
	text-decoration: underline;
}

.footer-list a+a,
.footer-list p+p{ 
	margin-top: 20px;
}

.footer-list li+li{
	padding-left: 2%;
}

.footer-list h3{
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	margin: 40px 0;
}

.footer-list i{
	font-size: 30px;
	font-weight: normal;
	color: #fff;
}

.footer-list h4{
	font-size: 15px;
	color: #ccc;
	margin-bottom: 30px;
}

.footer-list .qrbox{
	float: left;
	text-align: center;
	margin-right: 20px;
}

.footer-list .qrbox img{
	width: 97px;
	height: 97px;
	margin-bottom: 10px;
}

.copyall{
	position: relative;
	z-index: 4;
	background-color: #3f3f3f;
}

.copy{
	color: #fff;
}

.copy a{
	color: #fff;
}

.copy a:hover{
	color: #ccc;
}

/*other public*/
.other-banner{
	position: relative;
}

.other-banner img{
	width: 100%;
	min-height: 560px;
	object-fit: cover;
}

.shade-text{
	position: absolute;
	width: 100%;
	max-width: 1600px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}

.shade-text h2{
	color: #fff;
	font-size: 48px;
	font-weight: bold;
}

.shade-text h4{
	font-size: 30px;
	color: #fff;
}

/****/

.other-nav-bg{
	background-color: #fff;
	position: relative;
	z-index: 20;
}

.other-nav{
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}

.other-nav .uselessicon{
	position: absolute;
	left: 0;
	bottom: 110px;
	background-color: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
}

.other-nav .uselessicon i{
	color: #333;
	font-size: 30px;
}

.other-nav ul{
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 0 15px;
}

.other-nav li{
	text-align: center;
}

.other-nav li a{
	margin: 0 15px;
	padding: 0 10px;
	font-size: 16px;
	color: #666;
	height: 80px;
	position: relative;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.other-nav li a::after{
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #009578;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
}

.other-nav li:hover a,
.other-nav li.active a{
	color: #009578;
}

.other-nav li:hover a::after,
.other-nav li.active a::after{
	opacity: 1;
}

.other-local-bg{
	background-color: #eee;
}

.other-local{
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 0;
	color: #888;
	font-size: 14px;
}

.other-local i{
	display: inline-block;
	font-size: 18px;
	vertical-align: middle;
	color: #009578;
	margin-top: -2px;
}

.other-local b{
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: middle;
	margin-top: -2px;
	border-left: 4px solid #ccc;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}

.other-local a{
	color: #888;
	font-size: 14px;
}

.other-local a:hover,
.other-local a:last-child{
	color: #009578;
}

/*about us*/
.about-abo-block{
	max-width: 1480px;
	margin: 0 auto;
	padding: 60px 0;
}

.about-abo-block .title{
	font-size: 36px;
	color: #333;
	font-weight: bold;
}

.about-abo-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin-top: 20px;
}

.about-abo-block .editbox{
	width: 81%;
	float: left;
	padding-top: 20px;
	font-size: 16px;
	line-height: 3;
	color: #666;
}

.about-abo-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.about-abo-block .imgbox{
	width: 30%;
	height: 370px;
	float: right;
	margin-top: 90px;
}

.about-abo-block .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-abo-block ul{
	width: 13%;
	float: right;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	border-top: 1px solid #eee;
}

.about-abo-block li{
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.about-abo-block li h3{
	margin-bottom: 15px;
	font-size: 50px;
	color: #01967a;
	font-weight: bold;
	line-height: 1;
}

.about-abo-block li p{
	font-size: 14px;
	color: #999;
}

.about-abo-block li span{
	font-size: 20px;
	color: #999;
	vertical-align: top;
}

.about-abo-block2{
	padding-bottom: 200px;
}

/**/
.about-pro-block{
	padding: 50px 0 400px;
}

.about-pro-block .title{
	font-size: 36px;
	color: #333;
	font-weight: bold;
	position: relative;
	max-width: 1480px;
	margin: 0 auto;
}

.about-pro-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin-top: 20px;
}

.about-pro-block .title span{
	color: #01967a;
	font-size: 30px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.about-pro-swiper{
	position: relative;
	background-color: #f7f7f7;
}

.about-pro-swiper .show-block{
	width: 20%;
	position: absolute;
	z-index: 11;
	left: 50%;
	top: 100%;
	transform: translate(-50%,-320px);
	box-shadow: 0 0 5px #ccc;
	background-color: #fff;
}

.about-pro-swiper .showbox{
	width: 100%;
}

.about-pro-swiper .showbox img{
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.about-pro-swiper .showbox .textbox{
	padding: 25px;
}

.about-pro-swiper .showbox h2{
	color: #01967a;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
}

.about-pro-swiper .showbox h4{
	color: #f18519;
	font-size: 22px;
	font-weight: bold;
}

.about-pro-swiper .showbox .showvideo{
	cursor: pointer;
	text-align: center;
}

.about-pro-swiper .showbox i{
	color: #999;
	font-size: 24px;
}

.about-pro-swiper .showbox p{
	font-size: 12px;
	color: #999;
}

.about-pro-swiper .showbox .editbox{
	margin-top: 15px;
	color: #666;
	font-size: 15px;
	line-height: 2;
}

.about-pro-swiper .line{
	border-top: 1px dotted #ccc; 
	position: absolute;
	z-index: 9;
	top: 240px;
	left: 0;
	width: 100%;
}

.about-pro-swiper .big-swiper{
	padding: 190px 0 90px;
	position: relative;
	z-index: 10;
}

.about-pro-swiper .big-swiper .swiper-slide{
	text-align: center;
}

.about-pro-swiper .big-swiper a{
	display: inline-block;
	padding-top: 20px;
}

.about-pro-swiper .big-swiper .imgbox{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
	margin: 0 auto;
	border: 1px solid #06977b;
}

.about-pro-swiper .big-swiper .swiper-slide-prev a,
.about-pro-swiper .big-swiper .swiper-slide-next a{
	padding-top: 10px;
}

.about-pro-swiper .big-swiper .swiper-slide-prev .imgbox,
.about-pro-swiper .big-swiper .swiper-slide-next .imgbox{
	width: 80px;
	height: 80px;
}

.about-pro-swiper .big-swiper .swiper-slide-active a{
	padding-top: 0;
}

.about-pro-swiper .big-swiper .swiper-slide-active .imgbox{
	width: 100px;
	height: 100px;
}

.about-pro-swiper .big-swiper .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 2px solid #fff;
	border-radius: 50%;
}

.about-pro-swiper .big-swiper p{
	color: #999;
	font-size: 18px;
	font-weight: bold;
	margin-top: 15px;
}

.about-pro-swiper .swiper-button-prev{
	top: 0;
	left: 0;
	transform: translate(-200%,340px);
	margin: 0;
}

.about-pro-swiper .swiper-button-next{
	top: 0;
	right: 0;
	transform: translate(200%,340px);
	margin: 0;
}

.about-pro-swiper .swiper-button-prev::after,
.about-pro-swiper .swiper-button-next::after{
	display: none;
}

.about-pro-swiper .swiper-button-prev i,
.about-pro-swiper .swiper-button-next i{
	font-size: 40px;
	color: #666;
}

.video-block{
	width: 600px;
	height: 400px;
	background-color: #000;
}

.video-block video{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/**/
.about-cul-block{
	padding: 50px 0;
	max-width: 1480px;
	margin: 0 auto;
}

.about-cul-block .title{
	text-align: center;
	margin-bottom: 40px;
}

.about-cul-block .title h2{
	color: #333;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
}

.about-cul-block .title h2::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 25px auto 0;
}

.about-cul-block .title h4{
	color: #999;
	font-size: 16px;
}

.about-cul-block li{
	width: 23.5%;
	margin-right: 2%;
	text-align: center;
	padding: 25px 20px;
	background-color: #fff;
	border: 1px solid #ccc;
}

.about-cul-block li:nth-of-type(4n){
	margin-right: 0;
}

.about-cul-block li i{
	font-size: 50px;
	line-height: 1;
	color: #01967a;
}

.about-cul-block li h2{
	font-size: 20px;
	color: #333;
	margin: 40px 0 10px;
}

.about-cul-block li p{
	font-size: 14px;
	color: #666;
}

.about-cul-block2{

}

.about-cul-block2 .cul-text{
	margin-right: 40px;
}

.about-cul-block2 .cul-text h2{
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
}

.about-cul-block2 .cul-text .editbox{
	font-size: 20px;
	color: #fff;
	line-height: 2;
}

.about-cul-bg{
	background-image: url("../image/about_cul_bg.jpg");
	background-position: left top;
}

.about-cul-block3{
	padding: 230px 0 60px;
	max-width: 1480px;
	margin: 0 auto;
}

.about-cul-block3 li{
	width: 32%;
	margin-right: 2%;
	padding: 40px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}

.about-cul-block3 li:nth-of-type(3n){
	margin-right: 0;
}

.about-cul-block3 li i{
	font-size: 80px;
	color: #01967a;
	margin-right: 30px;
}

.about-cul-block3 li h2{
	color: #333;
	font-size: 20px;
	margin-bottom: 10px;
}

.about-cul-block3 li h4{
	color: #666;
	font-size: 14px;
}

.about-cul-block3 dd{
	width: 23.5%;
	margin-right: 2%;
	padding: 40px;
	margin-bottom: 20px;
	text-align: center;
	border: 1px solid #ccc;
}

.about-cul-block3 dd:nth-of-type(4n){
	margin-right: 0;
}

.about-cul-block3 dd i{
	font-size: 60px;
	color: #01967a;
}

.about-cul-block3 dd h2{
	color: #333;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 30px;
}

.about-cul-block3 dd h4{
	color: #666;
	font-size: 14px;
}

.about-cul-block4{
	max-width: 1600px;
	margin: 0 auto;
	background-image: url("../image/about_cul_bg2.jpg");
	background-position: center;
	background-size: cover;
}

.about-cul-block4 .title{
	padding: 30px 0;
	text-align: center;
	color: #fff;
	font-size: 36px;
	font-weight: bold;
}

.about-cul-block4 li{
	width: 25%;
	border-right: 1px solid #999;
	border-top: 1px solid #999;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	display:-webkit-flex; 
	display:-webkit-box; 
	display:-ms-flexbox; 
	display:-moz-flex; 
	display:flex;
	-webkit-align-items:center; 
	-webkit-box-align:center;
	-ms-flex-align:center;
	-moz-align-items:center; 
	align-items:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.about-cul-block4 li:nth-of-type(4n){
	border-right: none;
}

/**/
.about-honor-bg{
	background-image: url("../image/cul_bg.png");
	background-position: left center;
	background-size: auto 100%;
}

.about-honor-block{
	padding: 50px 0;
	max-width: 1600px;
	margin: 0 auto;
}

.about-honor-block .title{
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	border-bottom: 1px solid #eee;
}

.about-honor-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 25px auto 0;
}

.about-honor-swiper{
	width: 50%;
	height: 700px;
}

.about-honor-swiper .swiper-container{
	max-width: 650px;
	margin: 0 auto;
	height: 100%;
}

.about-honor-swiper img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-honor-swiper .swiper-pagination{
	display: none;
}

.about-honor-nav{
	max-height: 700px;
	overflow-y: auto;
}

.about-honor-nav li{
	color: #666;
	font-size: 16px;
	padding: 20px 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.about-honor-nav li::before{
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid #999;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	vertical-align: middle;
	margin-top: -4px;
	margin-right: 20px;
}

.about-honor-nav li.active,
.about-honor-nav li:hover{
	color: #01967a;
}

.about-honor-nav li.active::before,
.about-honor-nav li:hover::before{
	border-left-color: #f1871c;
}

/**/
.about-res-block{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.about-res-block .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.about-res-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.about-res-block li{
	width: 49%;
	margin-right: 2%;
	margin-bottom: 20px;
	border: 1px solid #eee;
	transition: all 0.3s;
}

.about-res-block li:hover{
	box-shadow: 0 0 5px #ccc;
}

.about-res-block li:nth-of-type(2n){
	margin-right: 0;
}

.about-res-block li a{
	padding: 30px;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center; 
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
	-webkit-flex-wrap:wrap;
	-webkit-box-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	flex-wrap:wrap;
}

.about-res-block li .textbox{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.about-res-block li h4{
	color: #999;
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 20px;
}

.about-res-block li h2{
	color: #666;
	font-size: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 40px;
}

.about-res-block li p{
	font-size: 15px;
	color: #f18619;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 40px;
}

.about-res-block li span{
	color: #999;
	font-size: 12px;
	text-decoration: underline;
}

.about-res-block li .imgbox{
	width: 240px;
	height: 180px;
}

.about-res-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**/
.about-res-detail{
	padding: 50px 0;
	margin: 0 auto;
	max-width: 1400px;
}

.about-res-detail .title{
	text-align: center;
	margin-bottom: 40px;
}

.about-res-detail .title h4{
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
}

.about-res-detail .title h2{
	font-size: 28px;
	color: #333;
	margin-bottom: 20px;
}

.about-res-detail .title h3{
	font-size: 30px;
	color: #f1871c;
	font-weight: bold;
}

.about-res-detail .editbox{
	text-align: center;
}

/**/
.about-care-block{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.about-care-block .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.about-care-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.about-care-block li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	transition: all 0.3s;
}

.about-care-block li:nth-of-type(3n){
	margin-right: 0;
}

.about-care-block li:hover{
	box-shadow: 0 0 5px #ccc;
}

.about-care-block li a{
	display: block;
	padding: 20px;
}

.about-care-block li .imgbox{
	height: 250px;
	margin-bottom: 20px;
}

.about-care-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-care-block li .textbox{
	border-top: 1px solid #ccc;
	padding-top: 20px;
}

.about-care-block li h4{
	font-size: 14px;
	color: #01967a;
	margin-bottom: 15px;
}

.about-care-block li i{
	font-size: 14px;
	color: #01967a;
}

.about-care-block li h2{
	font-size: 22px;
	color: #333;
	line-height: 30px;
	height: 90px;
	transition: all 0.3s;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}

.about-care-block li h2:hover{
	color: #01967a;
}

.about-care-block li span{
	display: block;
	font-size: 14px;
	color: #999;
	width: 140px;
	line-height: 52px;
	text-align: center;
	border-radius: 27px;
	background-color: #fff;
	border: 1px solid #ccc;
	transition: all 0.3s;
}

.about-care-block li:hover span{
	color: #fff;
	background-color: #f1871c;
	border-color: #f1871c;
}

/**/
.about-care-detail{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.about-care-detail .title{
	margin-bottom: 40px;
	text-align: center;
}

.about-care-detail .title h4{
	font-size: 20px;
	color: #009578;
	font-weight: bold;
	margin-bottom: 15px;
}

.about-care-detail .title h2{
	font-size: 28px;
	color: #333;
}

.about-care-detail .editbox{
	text-align: center;
}

/****/
.other-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

.other-right-block{
	width: 74%;
}

.products-left-menu{
	width: 22%;
	line-height: 1.5;
}

.products-left-menu h1{
	line-height: 80px;
	padding: 0 25px;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	background-image: url("404.png");
	background-position: center;
	background-size: cover
}

.products-left-nav{
	display: block;
	border-top: 2px solid #fff;
}

.products-left-nav>div{
	padding: 0 20px 0 30px;
	height: 54px;
	color: #666;
	background-color: #eee;
	cursor: pointer;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav div{
	font-size: 15px;
}

.products-left-nav>div:hover,
.products-left-nav.active>div{
	background-color: #6db6bd;
}

.products-left-nav>div i{
	font-size: 16px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

a.products-left-nav>div i{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

a.products-left-nav>div:hover,
a.products-left-nav.active>div{
	background-color: #6db6bd;
}

.products-left-nav>div:hover .flex-flex1,
.products-left-nav.active>div .flex-flex1,
.products-left-nav>div:hover i,
.products-left-nav.active>div i{
	color: #fff;
}

.products-left-nav.active>div i{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.products-left-nav ul{
	background-color: #fff;
	display: none;
}

.products-left-nav li{
	padding: 0 20px 0 30px;
	font-size: 16px;
	color: #666;
}

.products-left-nav li:hover,
.products-left-nav li.active{
	background-color: #f0f8f8;
}

.products-left-nav li:hover .flex-flex1,
.products-left-nav li.active .flex-flex1{
	color: #6db6bd;
}

.products-left-nav li+li{
	border-top: 1px dashed #ccc;
}

.products-left-nav li a{
	height: 46px;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
}

.products-left-nav li span{
	display: block;
	width: 10px;
	height: 1px;
	background-color: #999;
	margin-right: 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav li:hover span,
.products-left-nav li.active span{
	background-color: #fd9314;
}

.products-left-nav li .flex-flex1{
	overflow: hidden;
	font-size: 14px;
	color: #666;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav dl{
	display: none;
}

.products-left-nav dt{
	border-top: 1px dotted #ccc;
}

.products-left-nav dt a{
	display: block;
	padding-left: 20px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
}

.products-left-nav dt a:hover{
	color: #fd9314;
}

/* products */
.product-bg{
	background-color: #efefef;
}

.product-block{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.product-block .tags{
	margin-bottom: 40px;
}

.product-block .tags>*{
	display: block;
	float: left;
}

.product-block .tags span{
	line-height: 30px;
	color: #666;
	font-size: 14px;
}

.product-block .tags a{
	line-height: 30px;
	color: #666;
	font-size: 14px;
	padding: 0 15px;
}

.product-block .tags a:hover{
	color: #f1871c;
}

.product-block .tags a.active{
	background-color: #f1871c;
	color: #fff;
}

.product-block li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	border: 1px solid #fff;
	background-color: #fff;
	box-shadow: 0 0 5px #ccc;
}

.product-block li:nth-of-type(4n){
	margin-right: 0;
}

.product-block li:hover{
	border-color: #009578;
}

.product-block li a{
	display: block;
	padding: 15px;
}

.product-block li h3{
	font-size: 12px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.product-block li:hover h3{
	color: #009578;
}

.product-block li h2{
	font-size: 14px;
	color: #f1871c;
	margin-bottom: 40px;
}

.product-block li .imgbox{
	height: 300px;
}

.product-block li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*product detail*/
.product-detail{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.product-detail .title{
	text-align: center;
	margin-bottom: 40px;
	color: #333;
	font-size: 28px;
}

.product-detail .imgbox{
	height: 510px;
	position: relative;
}

.product-detail .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-detail .imgbox a{
	display: block;
	padding: 0 20px;
	line-height: 40px;
	color: #999;
	font-size: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 1px solid #ccc;
	transition: all 0.3s;
}

.product-detail .imgbox a:hover{
	color: #fff;
	background-color: #009578;
	border-color: #009578;
}

.product-detail .imgbox i{
	color: #999;
	font-size: 14px;
	transition: all 0.3s;
}

.product-detail .imgbox a:hover i{
	color: #fff;
}

.product-detail .imgbox a.prev{}

.product-detail .imgbox a.next{
	right: 0;
}

.product-detail .subtitle{
	margin: 40px 0;
	background-color: #ccc;
}

.product-detail .subtitle span{
	padding: 0 35px;
	line-height: 46px;
	color: #009578;
	font-size: 18px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}

.product-detail .subtitle span:hover,
.product-detail .subtitle span.active{
	color: #fff;
	background-color: #009578;
	font-weight: bold;
}

.product-detail .editbox{
	display: none;
}

.product-detail .editbox.active{
	display: block;
}

/* lean */
.lean-block1{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.lean-block1 .title{
	margin-bottom: 40px;
}

.lean-block1 .title h2{
	font-size: 36px;
	color: #009578;
	font-weight: bold;
	margin-bottom: 15px;
}

.lean-block1 .title h3{
	font-size: 30px;
	color: #666;
}

.lean-block1 li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	background-color: #fafafa;
	padding: 60px 30px 90px;
	border-radius: 10px;
}

.lean-block1 li:nth-of-type(3n){
	margin-right: 0;
}

.lean-block1 li i{
	font-size: 40px;
	color: #009578;
}

.lean-block1 li h4{
	font-size: 24px;
	color: #009578;
	font-weight: bold;
	margin: 25px 0 25px;
}

.lean-block1 li .editbox{
	color: #666;
	font-size: 16px;
	line-height: 1.8;
}

/**/
.lean-block2{
	height: 550px;
	position: relative;
}

.lean-block2 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lean-block2 .textbox{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	text-align: center;
	margin-top: -80px;
}

.lean-block2 .title{
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 55px;
}

.lean-block2 ul{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.lean-block2 li{
	padding: 0 40px;
}

.lean-block2 li h3{
	color: #fff;
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 5px
}

.lean-block2 li span{
	color: #fff;
	font-size: 16px;
	vertical-align: top;
	margin-top: 10px;
	display: inline-block;
}

.lean-block2 li p{
	color: #fff;
	font-size: 15px;
}

/**/
.lean-block3{

}

.lean-block3 .sublist{
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 5px #ccc;
	margin-top: -80px;
	position: relative;
	z-index: 5;
}

.lean-block3 .sublist li{
	width: 25%;
	text-align: center;
}

.lean-block3 .sublist li+li{
	border-left: 1px solid #e5e5e5;
}

.lean-block3 .sublist i{
	font-size: 50px;
	color: #999;
}

.lean-block3 .sublist p{
	color: #333;
	font-size: 18px;
	font-weight: bold;
	margin-top: 15px;
}

/**/
.lean-block4{
	height: 1020px;
	margin-top: 120px;
	position: relative;
}

.lean-block4 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lean-block4 .title{
	width:50%;
	position: absolute;
	top: -5%;
	right: 0;
}

.lean-block4 .title h2{
	color: #009578;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}

.lean-block4 .title h4{
	color: #333;
	font-size: 24px;
	margin-bottom: 25px;
}

.lean-block4 .title p{
	font-size: 15px;
	color: #666;
	margin-bottom: 20px;
	margin-right:30px;
	line-height:1.6;
}
.lean-block4 .title span{
	color:#EA7E03;
}


.lean-block4 .videobox{
	width: 550px;
	height: 410px;
	position: absolute;
	right: 9%;
	bottom: 80px;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 5px #ccc;
}

.lean-block4 .videobox video{
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
	background-color: #000;
}

/**/
.lean-block5{
	padding: 50px 0;
	max-width: 1740px;
	margin: 0 auto;
	text-align: center;
}


/*news*/
.news-bg{
	background-color: #efefef;
}

.news-block{
	padding: 50px 0 50px 0;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.news-block .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.news-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.news-block li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #fff;
	transition: all 0.3s;
}

.news-block li:nth-of-type(4n){
	margin-right: 0;
}

.news-block li:hover{
	box-shadow: 0 0 5px #ccc;
}

.news-block li a{
	display: block;
	padding: 10px 10px 0;
}

.news-block li .imgbox{
	height: 190px;
}

.news-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-block li .text-block{
	padding: 25px 10px;
}

.news-block li h4{
	font-size: 14px;
	color: #01967a;
	margin-bottom: 25px;
}

.news-block li i{
	font-size: 14px;
	color: #01967a;
}

.news-block li h2{
	font-size: 18px;
	color: #333;
	line-height: 30px;
	height: 60px;
	margin-bottom: 25px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s;
}

.news-block li:hover h2{
	color: #01967a;
}

.news-block li span{
	font-size: 14px;
	color: #999;
	transition: all 0.3s;
}

.news-block li:hover span{
	color: #f1871c;
}

/*news detail*/
.news-detail-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 140px 50px 0;
	position: relative;
}

.news-detail-block .title{
	font-size: 28px;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.6;
}

.news-detail-block .subtitle{
	font-size: 20px;
	color: #009578;
	font-weight: bold;
	margin-bottom: 20px;
}

.news-detail-block .edit-box{
	font-size: 16px;
	color: #333;
	line-height: 2.6;
}

.news-detail-block .detail-nav{
	border: 1px solid #ccc;
	border-radius: 5px;
	position: absolute;
	right: 0;
	top: 100px;
	width: 80px;
	background-color: #fff;
}

.news-detail-block .detail-nav a{
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 15px 0;
}

.news-detail-block .detail-nav a:hover{
	background-color: #01967a;
}

.news-detail-block .detail-nav a:hover>*{
	color: #fff;
}

.news-detail-block .detail-nav a+a{
	border-top: 1px solid #ccc;
}

.news-detail-block .detail-nav i{
	font-size: 26px;
	color: #999;
	display: inline-block;
}

.news-detail-block .detail-nav p{
	font-size: 12px;
	color: #999;
}

.news-detail-block .detail-nav a:first-child i,
.news-detail-block .detail-nav a:last-child i{
	transform: rotate(90deg);
}

/*service*/
.service-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.service-block .textbox{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.service-block .title{
	font-size: 60px;
	color: #009578;
	font-weight: bold;
	margin-bottom: 40px;
}

.service-block ul{
	border-top: 1px dashed #ccc;
	width: 80%;
}

.service-block li{
	border-bottom: 1px dashed #ccc;
	padding: 15px 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 20px;
	color: #666;
}

.service-block li::before{
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	background-color: #f18619;
	transform: rotate(45deg);
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 25px;
}

/**/
.service-bg2{
	background-color: #009578;
}

.service-block2{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.service-block2 .title{
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.service-block2 ul{
	position: relative;
}

.service-block2 ul::before{
	display: block;
	content: "";
	width: 100%;
	border-top: 1px dashed #fff;
	position: absolute;
	left: 0;
	top: 45px;
}

.service-block2 li{
	background-color: #009578;
	text-align: center;
	position: relative;
}

.service-block2 li i{
	display: inline-block;
	width: 90px;
	height: 90px;
	line-height: 88px;
	border: 1px dashed #fff;
	font-size: 40px;
	color: #fff;
	border-radius: 50%;
	margin-bottom: 25px;
}

.service-block2 li p{
	color: #fff;
	font-size: 16px;
}

/**/
.service-bg3{
	background-color: #f3f3f3;
}

.service-block3{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.service-block3 .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.service-block3 .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.service-block3 .form-block h3{
	width: 100%;
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
}

.service-block3 .form-block textarea{
	height: 100px;
}

.service-block3 .form-block button{
	width: 120px;
	background-color: #009578;
}

/**/
.service-block4{
	height: 750px;
}

.service-block4 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**/
.service-block5{
	background-color: #e8e8e8;
	padding: 50px 0;
	text-align: center;
}

.service-block5 .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.service-block5 .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

/*talent*/
.talent-block{
	position: relative;
	height: 870px;
}

.talent-block img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.talent-block .textbox{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
}

.talent-block .textbox h4{
	font-size: 30px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 25px;
}

.talent-block .textbox h4::after{
	display: block;
	content: "";
	width: 80px;
	height: 5px;
	background-color: #f18519;
	margin-top: 20px;
}

.talent-block .textbox h2{
	color: #fff;
	font-size: 72px;
	font-weight: lighter;
	margin-bottom: 35px;
}

.talent-block .textbox a{
	float: left;
	display: block;
	width: 150px;
	line-height: 48px;
	text-align: center;
	color: #fff;
	font-size: 15px;
	border: 1px solid #fff;
}

.talent-block .textbox a:hover{
	background-color: #009578;
	border-color: #009578;
}

.talent-block .textbox a:first-child{
	border-radius: 25px 0 0 25px;
}

.talent-block .textbox a:last-child{
	border-radius: 0 25px 25px 0;
}

/**/
.talent-soc-block{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.talent-soc-block .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.talent-soc-block .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.talent-soc-block li{
	border: 1px solid #dcdcdc;
	margin-bottom: 10px;
}

.talent-soc-block .cont-switch{
	padding: 10px 30px;
	color: #666;
	font-size: 15px;
	cursor: pointer;
}

.talent-soc-block li:hover,
.talent-soc-block li.active{
	box-shadow: 0 0 5px #999;
}

.talent-soc-block .cont-switch .flex-flex1{
	margin-right: 10px;
}
.talent-soc-block .cont-switch div:nth-child(2){
	flex: 0 1 250px;
	-webkit-flex: 0 1 250px;
}
.talent-soc-block .cont-switch div:nth-child(3){
	-webkit-flex: 0 1 250px;
	flex: 0 1 250px;
}

.talent-soc-block .switch-btn{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 3px;
	background-color: #999;
	color: #fff;
}

.talent-soc-block .switch-btn i{
	display: inline-block;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	font-size: 26px;
}

.talent-soc-block li.active .switch-btn{
	background-color: #01af84;
}

.talent-soc-block li.active .switch-btn i{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.talent-soc-block .cont-box{
	display: none;
}

.talent-soc-block .textbox{
	border-top: 1px solid #dcdcdc;
	padding: 30px 35px;
	color: #666;
	box-sizing: content-box;
}

.talent-soc-block .cont-box h1{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #dcdcdc;
	color: #555;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.talent-soc-block .cont-box a{
	position: absolute;
	right: 0;
	top: 0;
	color: #ffa800;
	opacity: 0.7;
}

.talent-soc-block .cont-box a:hover{
	opacity: 1;
}

.talent-soc-block .cont-box .editbox{
	font-size: 16px;
	line-height: 2;
}

.talent-soc-block .cont-box p+p{
	margin-top: 20px;
}

.talent-soc-block .adbox{
	margin-top: 50px;
}

/**/
.talent-sch-block1{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.talent-sch-block1 .title{
	margin-bottom: 30px;
	color: #333;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}

.talent-sch-block1 .title::after{
	display: block;
	content: "";
	width: 60px;
	height: 5px;
	background-color: #01967a;
	margin: 20px auto 0;
}

.talent-sch-block1 .subtitle{
	color: #333;
	font-size: 36px;
	text-align: center;
	margin-bottom: 30px;
}

.talent-sch-block1 .editbox{
	color: #666;
	font-size: 15px;
	line-height: 3;
}

.talent-sch-bg2{
	background-color: #efefef;
}

.talent-sch-block2{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.talent-sch-block2 .title{
	color: #01967a;
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}

.talent-sch-block2 li{
	background-color: #fff;
	padding: 15px 30px;
	color: #666;
	font-size: 15px;
}

.talent-sch-block2 li+li{
	margin-top: 15px;
}

/**/
.talent-sch-block3{
	padding: 50px 20px;
	max-width: 1400px;
	background-image: url("../image/sch_bg.jpg");
	background-size: cover;
	background-position: center;
	text-align: center;
	margin: 50px auto;
}

.talent-sch-block3 h2{
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
}

.talent-sch-block3 h3{
	color: #fff;
	font-size: 18px;
}

/**/
.talent-sch-block4{
	text-align: center;
	color: #666;
	font-size: 16px;
	padding-bottom: 50px;
}

/*relation*/
.relation-block{
	padding: 90px 0;
	background-image: url("../image/relation_bg.jpg");
	background-position: center;
	background-size: cover;
}

.relation-block .title{
	max-width: 1480px;
	margin: 0 auto 90px;
}

.relation-block .title h2{
	color: #333;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 25px;
}

.relation-block .title h4{
	color: #666;
	font-size: 16px;
}

.relation-block .infobox{
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 30px 50px 80px;
	background-color: #009578;
	border-radius: 10px;
}

.relation-block .infobox h3{
	font-size: 18px;
	color: #fff;
	margin-bottom: 20px;
}

.relation-block .infobox h2{
	font-size: 48px;
	font-weight: bold;
	color: #fff;
}

.relation-block .infobox img{
	vertical-align: middle;
	margin-bottom: -5px;
}

.relation-block .infobox span{
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}

.relation-block .infobox .cbox{
	padding: 0 50px;
}

.relation-block .infobox .cbox+.cbox{
	border-left: 1px dotted #fff;
}

.relation-block .infobox h4{
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
}

.relation-block .infobox p{
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}

.relation-block .infobox .tip{
	color: #fff;
	font-size: 16px;
	margin-top: 10px;
}

/*apply*/
.form-block span{
	color: #ff0000;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.form-block button{
	width: 48%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	background-color: #0080cc;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.form-block button[type='reset']{
	background-color: #999;
}

.form-block .tip{
	font-size: 14px;
	color: #ff0000;
	margin-top: 45px;
}

/* message */
.form-block .full-div,
.form-block .half-div,
.form-block .onethird-div,
.form-block .quater-div{
	margin-bottom: 20px;
	border: 1px solid #ededed;
	border-radius: 5px;
	box-shadow: 1px 1px 5px #ccc;
	overflow: hidden;
	position: relative;
}

.form-block .full-div{
	width: 100%;
}

.form-block .half-div{
	width: 49%;
}

.form-block .onethird-div{
	width: 32%;
}

.form-block .quater-div{
	width: 24%;
}

.form-block input{
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 10px;
	font-size: 14px;
	color: #428a7b;
}

.form-block textarea{
	width: 100%;
	height: 200px;
	line-height: 30px;
	padding: 5px 10px;
	font-size: 14px;
	color: #428a7b;
	resize: none;
}

.form-block select{
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 10px;
	font-size: 14px;
	color: #428a7b;
	cursor: pointer;
}

.form-block button{
	width: 48%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	background-color: #ec1010;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.form-block img{
	max-height: 44px;
	vertical-align: bottom;
}


/*contact us*/
.contact-block{
	position: relative;
}

.contact-block ul{
	background-color: rgba(0,149,120,0.9);
	position: absolute;
	top: 50%;
	right: 19%;
	border-radius: 20px;
	transform: translateY(-50%);
}

.contact-block li{
	text-align: center;
	padding: 20px 35px;
}

.contact-block li+li{
	border-top: 1px dotted #fff;
}

.contact-block li i{
	font-size: 30px;
	color: #fff;
}

.contact-block li h4{
	font-size: 12px;
	color: #fff;
	margin: 5px 0;
}

.contact-block li p{
	color: #fff;
	font-size: 17px;
}

.map{
	height: 860px;
	background-color: #f7f7f7;
}
.page{
	text-align: center;
	padding-top: 20px;
}

.page a {
    border: 1px solid #CCCCCC;
    margin-right: 5px;
    padding: 4px 10px;
}

.page span {
    border: 1px solid #CCCCCC;
    margin-right: 5px;
    padding: 4px 10px;
}

.page span.current {
    background: #0d357b;
    border: 1px solid #0d357b;
    color: #FFFFFF;
    font-weight: bolder;
}


/*-产品详情-*/
.product-detail .editbox{
	font-size:14px;
	line-height:1.8;
	color:#666;
}
.product-detail .editbox p{
	color:#666;
}
.product-detail .editbox h3{
	font-size:16px;
	font-weight:bold;
	color:#1da98d;
	padding-bottom:5px;
}
.product-detail .editbox table{
	width:100%;
}
.product-detail .editbox table tr:first-child{
	background:#009e7f;
	color:#fff;
}
.product-detail .editbox table tr:first-child p{
	color:#fff;
}
.product-detail .editbox table tr td.etbg{
	background:#009e7f;
	color:#fff;
}
.product-detail .editbox table tr td.etbg p{
	color:#fff;
}
.product-detail .editbox table td{
	text-align:center;
	padding:3px;
}

.product-detail .finger{
	display:none;
}
.talent-soc-block-two .cont-switch div:nth-child(2) {
    flex: 0 1 400px;
    -webkit-flex: 0 1 400px;
}








