main{
	margin-top: 100px;
}
.m-header{
	display: none;
}
.header_nav{
	display: none;
}
.w1800{
	/*max-width: calc(100% - 90px);*/
	max-width: calc(100% - 10%);
	margin: 0 auto;
	width: 100%;
}
.pc-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	padding: 40px 0;
	transition: padding .5s;
	z-index: 999;
	border-bottom: 1px solid #eee;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
}
.pc-header.active{
	background-color: #fff;
	padding: 20px 0;
}
.pc-header.on{
	background-color: #fff;
	padding: 20px 0;
}
.pc-header:hover{
	background-color: #fff;
}
.pc-header .an{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pc-header .img{
	width: 300px;
	margin-right: 15px;
}
.pc-header .img img{
	width: 100%;
	max-height: 60px;
	display: block;
	object-fit: contain;
	object-position: left;
}
.pc-header .img img:nth-child(1){
	display: block;
}
.pc-header .img img:nth-child(2){
	display: none;
}
.pc-header.active .img img:nth-child(1){
	display: none;
}
.pc-header.active .img img:nth-child(2){
	display: block;
}
.pc-header:hover .img img:nth-child(1),
.pc-header.on .img img:nth-child(1){
	display: none;
}
.pc-header:hover .img img:nth-child(2),
.pc-header.on .img img:nth-child(2){
	display: block;
}
.pc-header .uls{
	display: flex;
	align-items: center;
}
.pc-header .uls{
	width: calc(100% - 235px - 30px - 26px);
	padding-left: 10vw;
	
}
.pc-header .uls>li>a{
	margin-top: 10px;
	padding-right: 10px;
	position: relative;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom: 2px solid transparent;
	color: #fff;
	margin-right: 40px;
	white-space: nowrap;
}
.pc-header.active .uls>li>a{
	color: #333;
}
.pc-header:hover .uls>li>a,
.pc-header.on .uls>li>a{
	color: #333;
}
.pc-header .uls>li>a:hover,
.pc-header .uls>li.active>a{
	color: #73bb49;
	border-color:#73bb49;
}
/* pc端二级菜单 */
.pc_head{
	display: block;
	position: absolute;
	background-color: #fff;
	top: calc(100%);
	left: 0;
	padding-bottom: 50px;
	width: 100%;
	transition: top .5s;
	display: none;
	border-top: 1px solid #eee;
}
.pc_head ul{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 77%;
	margin: 0 auto;
}
.pc_head ul{
	width: calc(100% - 235px - 30px - 26px);
	padding-left: calc(10vw);
	margin: 0;
	margin-left: calc(235px + 15px);
}
.pc_head ul li{
	position: relative;
	width: 30%;
    margin-right: 5%;
	padding: 20px 0 10px;
	border-bottom: 1px solid #ddd;
}
.pc_head ul li:nth-child(3n){
	margin-right: 0;
}
.pc_head ul li a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	font-size: 0;
	z-index: 10;
}
.pc_head ul li h3{
	line-height: 1.6;
	font-size: 1rem;
	color: #333;
	font-weight: normal;
	transition:padding  .5s;
	text-transform: capitalize;
	padding: 0 10px;
}
.pc_head ul li h3+h3{
	padding-right: 15px;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}
.pc_head ul li h3+h3::after{
	content: "";
	width: 5px;
	height: 5px;
	background-color: #ddd;
	position: absolute;
	top: 50%;
	right: 2px;
	transform: translate(0,-50%);
}
.pc_head ul li:hover h3{
	color: #73bb49;
	padding-left: 20px;
}
.pc_head ul li:hover h3+h3::after{
	background-color: #73bb49;
}
.pc-header .uls>li:last-child>a{
	margin-right: 0;
}
/* 搜索 */
.pc-header .so{
	margin-left: 15px;
	cursor: pointer;
	display: block;
}
.pc-header .so img{
	max-width: 26px;
	display: block;
	width: 100%;
}
.pc-header .so img:nth-child(1){
	display: block;
}
.pc-header .so img:nth-child(2){
	display: none;
}
.pc-header.active .so img:nth-child(1){
	display: none;
}
.pc-header.active .so img:nth-child(2){
	display: block;
}
.pc-header:hover .so img:nth-child(1),
.pc-header.on .so img:nth-child(1){
	display: none;
}
.pc-header:hover .so img:nth-child(2),
.pc-header.on .so img:nth-child(2){
	display: block;
}
/* 移动端导航 */
.m-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 999;
	padding: 15px 0;
	transition: padding .5s;
	padding: 5px 0;
	border: 1px solid #eee;
}
/* .m-header.active{
	padding: 5px 0;
	border: 1px solid #eee;
} */
.m-header .an{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.m-header .img{
	max-width: 196px;
}
.m-header .img img{
	width: 100%;
	max-height: 50px;
	object-fit: cover;
	object-position: left;
}
.m-header .flex{
	display: flex;
	align-items: center;
}
.m-header .m_so{
	margin-right: 20px;
}
.header_list{
	width: 30px;
	height: 23px;
	position: relative;
	cursor: pointer;
}
.header_list i{
    position: absolute;
    width: 100%;
    height: 4px;
    border: #000 solid 1px;
    color: #000;
    border-radius:20px;
    background-color: #333;
}
.header_list i:nth-child(1){
	top: 0;
}
.header_list i:nth-child(2){
	top: 7px;
	top: 9px;
}
.header_list i:nth-child(3){
	top: auto;
	bottom: 1px;
}

.header_nav{position: fixed;top: 0;left: 0;z-index: 9999;background-color: rgba(0, 0, 0, 0.4);right: 0;bottom: 0;display: none;}
.xs{position: fixed;right: 20px;height: 20px;width: 20px;top: 15px;z-index: 9999;opacity: 0;transition:all .5s;overflow: hidden;}
.xs img{width: 100%;}
.header_nav .uls{position: fixed;left: 100%;right:0;background-color: #3d3d3d;z-index: 9998;height: 100%;overflow-y: auto;padding-top: calc(10px + 28px);transition: all .5s;opacity: 0;}
.header_nav .uls.on{opacity: 1;transition-delay: 0s;}
.xs.on{opacity: 1;transition-delay: 0.2s;}
.header_nav .uls li{position: relative;}
.header_nav .uls li a{color: #fff;width: 100%;border-bottom: 1px solid #666;display: block;line-height: 1.5;font-size: 16px;padding: 12px 10px;}
.header_nav .uls>li ul{display: none;}
.header_nav .uls>li>ul>li>a{padding: 12px 10px 12px 25px;}
.header_nav .uls>li>ul{display: none;}
.header_nav .uls>li>ul>li>ul>li>a{padding: 12px 10px 12px 40px;}
.mToggle{height: 48px;width: 48px;top: 0px;right: 0px;position: absolute;z-index: 9998;background: url(../images/mhead_i1.png) no-repeat center center;cursor: pointer;display: none;}
.mToggle2{background: url(../images/reduce.png) no-repeat center center;}
/* banner */
.index1 .swiper-slide{
	position: relative;
}
.index1 video{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}
.index1 .swiper-slide img{
	width: 100%;
}
.index1 .swiper-slide::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
}
.index1 .swiper-slide .text{
	z-index:10;
}
.index1 .swiper-slide .text{
	max-width: 1310px;
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.index1 .swiper-slide .text h2{
	font-size: 3rem;
	line-height: 1.5;
	text-align: left;
	/*display: none;*/
}
.index1 .swiper-slide .text h2 span{
	font-size: 2.04rem;
}
.index1 .swiper-slide:nth-child(2n) .text h2{
	/*color: #208027;*/
	color: #fff;
}
.index1 .swiper-slide:nth-child(2n+1) .text h2{
	color: #fff;
}
.index1 .swiper-slide:nth-child(2n+1) .text h2 span{
	font-size: 3rem;
}
.index1 .swiper-slide:nth-child(2n) .text p{
	color: #fff;
}
.index1 .swiper-slide:nth-child(2n+1) .text p{
	color: #fff;
	font-size: 2rem;
	line-height: 1.8;
}
.index1 .swiper-slide .text h2:nth-child(2){
	font-size: 42px;
}
.index1 .swiper-slide .text h2:nth-child(1){
	margin-bottom: 15px;
}
.index1 .swiper-slide .text p:nth-child(1){
	margin-bottom: 20px;
}
.index1 .swiper-slide .text p{
	line-height: 2.8;
	text-align: left;
	font-size: 1.45rem;
	color: #fff;
	font-weight: bold;
}
/* banner的底部按钮 */
.index1 .swiper-pagination{
	padding-bottom: 30px;
}
.index1 .swiper-pagination>span{
	background-color: transparent;
	display: inline-block;
	width: 120px;
	padding-bottom: 15px;
	height: auto;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	position: relative;
	margin: 0 !important;
	opacity: 0.3;
}
.index1 .swiper-pagination>span.swiper-pagination-bullet-active{
	opacity: 1;
}
.index1 .swiper-pagination>span span{
	opacity: 0;
	font-size: 0.9375rem;
	color: #fff;
	font-weight: bold;
}
.index1 .swiper-pagination>span.swiper-pagination-bullet-active span{
	opacity: 1;
}
.index1 .swiper-pagination span::after{
	content: "";
	position: absolute;
	bottom: -3px;
	right: -3px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #fff;
}
.index1 .swiper-pagination span::before{
	content: "";
	position: absolute;
	left: -3px;
	bottom: -3px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #fff;
}
/* 首页-影响力 */
.index_title h2{
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.5;
	color: #333;
	
}
.index_title h3{
	margin-top: 1rem;
	font-weight: normal;
	color: #666;
	font-size: 1.375rem;
	text-align: center;
	margin-bottom: 60px;
}
.index_impact{
	padding: 70px 0;
}
.index_impact .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.index_impact .uls li{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: #f0f0f0;
	position: relative;
	width: 31.6%;
	margin-right: 2.6%;
	overflow: hidden;
	min-height: 570px!important;
}
.index_impact .uls li:nth-child(3n){
	margin-right: 0%;
}
.index_impact .uls li a>img{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	height: 100%;
}
.index_impact .uls li .text{
	position: relative;
	z-index: 10;
	padding: 70px 40px 40px;
	opacity: 0;
	margin-bottom: 50px;
}
.index_impact .uls li .url+.text{
	background-color: #f0f0f0;
	opacity: 1;
	margin-bottom: 0px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 45px 40px 30px;
}
.index_impact .uls li .url+.text img{
	width: 36px;
}
.index_impact .uls li .url+.text span{
	font-size: 1rem;
	color: #73bb49;
}
.index_impact .uls li .url{
	padding: 20px 40px 70px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	opacity: 0;
	position: relative;
	z-index: 10;
}
.index_impact .uls li .text h2{
	font-size: 1.45rem;
	margin-bottom: 20px;
	line-height: 1.5;
	color: #333;
	font-weight: normal;
}
.index_impact .uls li .text p{
	font-size: 1.1rem;
	line-height: 1.5;
	color: #333;
	position: relative;
	margin-bottom: 25px;
	overflow:hidden; 
	display: -webkit-box;  
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 2; 
	text-overflow: ellipsis; 
}
.index_impact .uls li .url a{
	width: 50%;
	display: block;
	padding-right: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	transition: padding .5s;
}
.index_impact .uls li .url a:hover{
	padding-left: 15px;
}
.index_impact .uls li::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0%;
	width: 100%;
	background-color: rgba(0,0,0,0.6);
	transition: height .5s;
}
.index_impact .uls li:hover::after{
	height: 100%;
}
.index_impact .uls li:hover .text{
	opacity: 1;
}
.index_impact .uls li:hover .url+.text{
	display: none;
}
.index_impact .uls li:hover .text h2{
	color: #fff;
}
.index_impact .uls li:hover .text p{
	color: #fff;
	overflow:hidden; 
	display: -webkit-box;  
	-webkit-box-orient: vertical; 
	-webkit-line-clamp: 6;  
	text-overflow: ellipsis;
}
.index_impact .uls li:hover .url{
	display: flex;
	opacity: 1;
	margin-top: 0;
}
.index_impact .uls li:hover .url a{
	color: #fff;
}
.index_impact .uls li:nth-child(n+2) .url a{
	width: 100%;
	position: relative;
}
.index_impact .uls li:nth-child(n+2) .url a::after{
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	top: 50%;
	right: 5px;
	transform: translate(-0,-50%);
	background-color: rgba(255,255,255,0.5);
}
.index_impact .uls li:nth-child(n+2) .url a:hover::after{
	background-color: #fff;
}
/* 首页-横幅 */
.index_banner{
	position: relative;
	padding: 154px 0;
	background: url("../images/banner_bg.jpg") no-repeat center/cover;
}
.index_banner>a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	font-size: 0;
	z-index: 10;
}
.index_banner h3{
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 1.375rem;
	font-weight: normal;
	margin-bottom: 30px;
	line-height: 1.5;
	text-transform: uppercase;
	position: relative;
	z-index: 9;
}
.index_banner h2{
	width: 100%;
	text-align: center;
	color: #fff;
    font-size: 1.875rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	z-index: 9;
	margin-bottom: 10px;
}
.index_banner p{
	width: 100%;
	text-align: center;
	color: #fff;
    font-size: 1.25rem;
	line-height: 1.8;
	position: relative;
	z-index: 9;
	font-size: 1.25rem;
	
}
.index_banner .mao{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	z-index: 8;
	transition: background .5s;
}
.index_banner:hover .mao{
	background-color: rgba(0,0,0,0.5);
}
/* 产品中心 */
.index_product{
	padding: 70px 0;
}
.index_product .mySwiper2{
	overflow: hidden;
	padding-bottom: 80px;
}
.index_product .swiper-wrapper{
	display: flex;
	align-items: stretch;
}
.index_product .swiper-slide{
	position: relative;
	width: auto;
	display: block;
	overflow: hidden;
	margin-left:0;
}
.index_product .swiper-slide::after{
	content: "";
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	transition:background .5s;
}
.index_product .swiper-slide>a{
	position: absolute;
	opacity: 0;
	font-size: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.index_product .swiper-slide .img{
	width: 100%;
	position: relative;
}
.index_product .swiper-slide .img img{
	width: 100%;
}
.index_product .swiper-slide .img .text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .5s;
	z-index: 9;
	width: 99%;
}
.index_product .swiper-slide .img .text h4{
	position: relative;
	color: #fff;
    margin-bottom: 17px;
	font-size: 1.625rem;
	line-height: 1;
}
.index_product .swiper-slide .img .text h4::after{
	content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -20px;
}
.index_product .swiper-slide .img .text h3{
	color: #fff;
	font-size: 1.375rem;
}
.index_product .swiper-slide .txt{
	width: 100%;
	padding: 110px 40px 20px;
	position: absolute;
	transform: translate(0%,0px);
	z-index: 8;
	height: 230px;
	line-height: 1.7;
	padding: 100px 40px 20px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index_product .swiper-slide .txt::after{
	position: absolute;
	content: "";
	background-color: rgba(115,187,73,0.8);
	height: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	transition: height .5s;
}
.index_product .swiper-slide .txt p{
	color: #fff;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	display: -webkit-box;
	overflow: hidden;
	text-align: justify;
	position: relative;
	z-index: 2;
	font-size: 1rem;
}
.index_product_btn{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	width: 100px;
	display: flex;
	justify-content: space-between;
}

.index_product_btn .swiper-button-prev{
	background-image:url("../images/l.png");
	width: 40px;
	height: 40px;
	border: 1px solid #73bb49;
	background-size: 14px;
	top: 0;
	transform: translate(0,-50%);
	left: 0;
	right: auto;
}
.index_product_btn .swiper-button-next{
	background-image: url("../images/r.png");
	width: 40px;
	height: 40px;
	border: 1px solid #73bb49;
	background-size: 14px;
	top: 0;
	transform: translate(0,-50%);
	left: auto;
	right: 0;
}
.index_product_btn .swiper-button-prev:hover{
	background-image:url("../images/l_1.png");
	background-color: #73bb49;
}
.index_product_btn .swiper-button-next:hover{
	background-image: url("../images/r_1.png");
	background-color: #73bb49;
}
.index_product .swiper-slide:nth-child(2n)::after{
	background-color: rgba(0, 0, 0, 0.5);
}
.index_product .swiper-slide .txt p{
	-webkit-line-clamp: 3;
}
/* 子公司 */
.index_children{
	background-color: #f5f5f5;
	padding: 70px 0;
}
.index_children .titles h3{
	margin-bottom: 30px;
	font-weight: normal;
	color: #666;
	font-size: 1.375rem;
	text-align: center;
	margin-top: 1rem;
}
.index_children .titles h2{
	margin-bottom: 10px;
	font-weight: bold;
	color: #333;
	font-size: 1.875rem;
	font-size: 2.4rem;
	text-align: center;
}
.index_children .titles p{
	margin-bottom: 60px;
	color: #666;
	font-size: 1.25rem;
	text-align: center;
}
.index_children .swiper{
	overflow: hidden;
	padding-bottom: 40px;
}
.index_children .swiper-slide{
	width: auto;
	background-color: transparent;
	display: block;
	border-right: 1px dashed #ddd;
	padding: 20px 35px;
	margin-right: 1px;
	background-color: #fff;
}
.index_children.hzhb .swiper-slide{
	width: auto;
	background-color: transparent;
	display: block;
	border-right: 1px dashed #ddd;
	padding: 10px 15px;
	margin-right: 1px;
	background-color: #fff;
}
.index_children .swiper-slide:last-child{
	border-right: none;
}
.index_children .swiper-slide h3{
	margin: 10px 0;
}
.index_children .swiper-slide p{
	margin-bottom: 30px;
	color: #666;
	font-size: 1rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 2;
	width: 100%;
	text-align: justify;
	height: 72px;
}
.index_children.hzhb .swiper-slide p{
	margin-bottom: 30px;
	color: #666;
	font-size: 1rem;
	overflow: hidden;
	text-overflow: ellipsis;
	/*display: -webkit-box;*/
	display: none;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 2;
	width: 100%;
	text-align: justify;
	height: 64px;
}
/* .index_children .swiper-slide p{
	margin-bottom: 10px;
	-webkit-line-clamp: 3;
	height: 96px;
} */
.index_children .swiper-slide img{
	max-width: 100%;
	display: block;
	margin: 0 auto 10px;
	height: 150px;
	object-fit: contain;
}
.index_children.hzhb .swiper-slide img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
	height: 80px;
	object-fit: contain;
}
.index_children .swiper-slide .btn{
	font-size: 14px;
	line-height: 14px;
	color: #333333;
	display: block;
	margin: 0 auto;
	width: 66px;
}
.index_children .swiper-slide a:hover{
	color: #73bb49;
}
.index_children .swiper-pagination{
	bottom: 0;
}
.index_children .swiper-pagination-bullet{
	width: 25px;
	height: 4px;
	border-radius: 0;
}
.index_children .swiper-pagination-bullet-active{
	background-color: #73bb49;
}
.w1400{
	max-width: 1400px;
	width: 94%;
	margin: 0 auto;
}
/* 新闻资讯 */
.index_news{
	padding: 70px 0;
}
.index_news .flex{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.index_news .left{
	width: 45%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.index_news .left .text{
	width: 100%;
	padding-right: 30px;
}
.index_news .left .text .img{
	width: 100%;
	position: relative;
	padding-top: 70%;
	overflow: hidden;
	display: block;
}
.index_news .left .text .img img{
	transition: transform .5s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index_news .left .text:hover .img img{
	transform: scale(1.05);
}
.index_news .left .text h3 a{
    margin: 30px 0 20px;
	font-size: 1.375rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.time span{
	color: #666;
	padding-left: 20px;
	padding-right: 10px;
	margin-right: 8px;
	display: inline-block;
	position: relative;
	font-size: 1rem;
}
.time span::after{
	content: "";
	position: absolute;
	top: 53%;
	left: 0;
	transform: translate(-0,-50%);
	width: 16px;
	height: 16px;
	background: url("../images/news-time.svg") center/cover;
	background-repeat: no-repeat;
	background-size: 16px;
}
.time span::before{
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #ddd;
	top: 50%;
	right: 0;
	transform: translate(-0,-50%);
}
.time a{
	color: #666;
	font-size: 1rem;
}
.time a:hover{
	color: #73bb49;
}
.index_news .left .text>p{
	padding-top: 30px;
	font-size: 1rem;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	color: #666;
	line-height: 1.9;
}
.index_news .left .text:hover h3 a{
	color: #73bb49;
}
.index_news .left .text:hover .time span{
	color: #73bb49;
}
.index_news .left .text:hover .time span:after{
	background-image: url("../images/news-time2.svg");
}
.index_news .left .uls{
	padding-left: 10px;
	width: 39%;
}
.index_news .left .uls li{
	margin-bottom: 30px;
}
.index_news .left .uls li:last-child{
	margin-bottom: 0px;
}
.index_news .left .uls li .img{
	position: relative;
	width: 100%;
	padding-top: 68%;
	overflow: hidden;
	display: block;
}
.index_news .left .uls li .img img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition:  .5s;
	display: block;
}
.index_news .left .uls li:hover .img img{
	transform: scale(1.05);
}
.index_news .left .uls li h3 a{
	margin: 10px 0;
	font-size: 1.375rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.index_news .left .uls li:hover h3 a{
	color: #73bb49;
}
.index_news .left .uls li:hover .time span{
	color: #73bb49;
}
.index_news .left .uls li:hover .time span::after{
	background-image: url("../images/news-time2.svg");
}
.index_news .right{
	width: 55%;
	padding-left: 70px;
}
.index_news .right li{
    border-bottom: 1px solid #e0e0e0;
    flex: 1;
	display: block;
    padding: 1% 0;
}
.index_news .right li h3 a{
	margin:  1.8% 0 3%;
	font-size: 1.375rem;
	font-weight: normal;
	font-stretch: normal;
	line-height: 1.5;
	letter-spacing: 0px;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s;
}
.index_news .right li .time{
	margin-bottom: 4%;
}
.index_news .right li:hover .time span{
	color: #73bb49;
}
.index_news .right li:hover h3 a{
	color: #73bb49;
}
.index_news .right li:hover .time span::after{
	background-image: url("../images/news-time2.svg");
}



/* 关于我们 */
.index_about{
	padding: 90px 0;
	background: url("../images/index_about.jpg") no-repeat center/cover;
}
.index_about .an{
	max-width: 1500px;
	margin: 0 auto;
	width: 94%;
}
.index_about h1{
	display: none;
}
.index_about h2{
	margin-bottom: 4px;
	color: #73bb49;
	font-size: 1.875rem;
	font-size: 2.4rem;
}
.index_about h3{
	margin-bottom: 25px;
	color: #666;
	font-size: 1rem;
	font-weight: normal;
}
.index_about p{
	/*max-width: 420px;*/
	max-width: 50%;
	color: #666;
	margin-bottom: 6%;
    font-size: 1rem;
    line-height: 1.8;
}
.index_about a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    width: 260px;
    color: #eee;
	font-size: 0.875rem;
}
.index_about a:hover{
	color: #fff;
	border-bottom: 1px solid #fff;
}
/* 联系我们 */
.index_contact{
	padding: 70px 0;
	background-color: #fff;
	background: url("../images/concent.jpg") no-repeat center/cover;
}
.index_contact h2{
	color: #333;
	font-size: 1.625rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 5px;
	font-size: 2rem;
}
.index_contact h3{
	color: #333;
	font-size: 1.25rem;
	line-height: 1.8;
	text-align: center;
	margin-bottom: 50px;
	font-size: 1.7rem;
	margin-bottom: 40px;
}
.index_contact a{
	background-color: #73bb49;
	color: #fff;
	width: 120px;
	padding: 10px 20px;
	font-size: 1rem;
	display: block;
	margin: 0 auto;
	text-align: center;
	border-radius: 30px;
}
.index_contact a:hover{
	opacity: 0.8;
}
/* 底部 */
.footers{
	padding: 50px 0 30px;
	background-color: #323232;
}
.footers .flex{
	display: flex;
	align-items: stretch;
	padding-bottom: 40px;
}
.footer_nav{
	flex: 1 1 auto;
	display: flex;
	align-items: stretch;
	padding-right: 20%;
}
.footer_nav>li{
	flex: 1;
}
.footer_nav>li>a{
	padding: 10px 5px;
	font-size: 1.125rem;
	color: #ddd;
	display: block;
	text-align: left;
}
.footer_nav>li>a:hover{
	color: #fff;
}
.footer_nav>li> ul{
	margin-top: 20px;
	color: #ddd;
}
.footer_nav>li> ul li a{
	padding: 10px 5px;
	font-size: 1rem;
	color: #ddd;
	display: block;
	text-align: left;
}
.footer_nav>li> ul li a:hover{
	color: #fff;
}
.footer_txt{
	width: auto;
	display: flex;
	flex-direction: column;
	align-content: center;
    align-items: center;
	padding-right: 5%;
}
.footer_txt>a{
	border:1px solid #eee;
	font-size: 1.125rem;
	padding: 10px 30px 10px 55px;
	display: inline-block;
	text-align: center;
	color: #fff;
	position: relative;
	margin-bottom: 5px;
}
.footer_txt>a::after{
	content: "";
	position: absolute;
	left: 30px;
	top: 50%;
	width: 18px;
	height: 18px;
	background: url("../images/tel.png") no-repeat center/cover;
	transform: translate(-0,-50%);
}
.footer_txt>a:hover{
	border-color: #73bb49;
	background-color: #73bb49;
}
.footer_txt>p{
	font-size: 1.125rem;
	color: #ddd;
	padding: 10px 0;
}
.footer_txt>p>a{
	color: #ddd;
	font-size: 1.125rem;
}
.footer_txt>p>a:hover{
	color: #fff;
}
.footer_txt .er{
	display: flex;
	align-items: stretch;
	margin-top: 20px;
}
.footer_txt .er div{
	width: 50%;
	padding: 10px;
}
.footer_txt .er div:nth-child(2){
	display: none;
}
.footer_txt .er div img{
	width: 110px;
	height: 110px;
	object-fit: contain;
}
.footer_txt .er div p{
	margin-top: 5px;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	white-space: nowrap;
	padding: 10px 0;
}
.footer_friendship{
	padding: 20px 0;
	border-top: 1px solid #555;
	line-height: 1.7;
}
.footer_friendship span{
	display: inline-block;
	color: #fff;
	font-size: 1rem;
}
.footer_friendship a{
	display: inline-block;
	margin-right: 25px;
	color: #ddd;
	font-size: 1rem;
}
.footer_friendship a:hover{
	color: #fff;
}
.footer_copyright{
	border-top: 1px solid #555;
	padding: 20px 0 0;
}
.footer_copyright p{
	color: #ddd;
	text-align: center;
	line-height: 1.6;
}
.footer_copyright p a{
	color: #ddd;
}
.footer_copyright p a:hover{
	color: #fff;
}
.footer_copyright p span{
	margin-left: 30px;
}
/* 子页面banner */
.z-banner{
	position: relative;
}
.z-banner img{
	width: 100%;
	display: block;
	margin: 0 auto;
	max-height: 595px;
	max-height: 340px;
	object-fit: cover;
}
.z-banner::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.1);
}
.z-banner .text{
	max-width: 1310px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 10;
}
.z-banner .text h2{
    font-size: 42px;
    line-height: 1.5;
    color: #208027;
    text-align: left;
}
.z-banner .text h2{
	margin-bottom: 15px;
}
.z-banner .text p{
    line-height: 1.8;
    text-align: left;
    font-size: 1.125rem;
    color: #208027;
}
/* 子页面导航 */
.mb{
	background-color: #f5f5f5;
	border-bottom: 1px solid #ddd;
	width: 100%;
}
.flash_mb{
	position: absolute;
}
.flash_mb+*{
	margin-top: 60px;
}
.mb.color_f{
	background-color: #fff;
}
.mb .an{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mb .text{
	flex: 1 1 auto;
	white-space: nowrap;
	padding: 10px 0;
}
.mb .text a{
	display: inline-block;
	font-size: 1rem;
	margin-right: 7px;
	color: #999;
}
.mb .text a:hover{
	color: #73bb49;
}
.mb .text span{
	display: initial;
	margin-right: 7px;
	font-size: 1rem;
	color: #999;
}
.mb .text span:last-child{
	margin-right: 0;
	color: #666;
}
.mb .swiper{
	padding-left: 20px;
	width: auto;
}
.mb .swiper-slide{
	background-color: transparent;
	width: auto;
	display: block;
	padding: 20px 20px;
	position: relative;
	font-size: 1rem;
}
.mb .swiper-slide:before{
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	height: 24px;
	width: 1px;
	transform: translate(0,-50%);
	background-color: #ddd;
}
.mb .swiper-slide:last-child:before{
	display: none;
}
.mb .swiper-slide::after{
	content: "";
	position: absolute;
	width: 0;
	bottom: -1px;
	left: 50%;
	transform: translate(-50%,0);
	height: 2px;
	background-color: #73bb49;
}
.mb .swiper-slide:hover,
.mb .swiper-slide.active{
	color: #73bb49;
}
.mb .swiper-slide.active::after{
	width: 100%;
}
.mb .text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.7;
}
.mb .text p{
	display: flex;
    align-items: center;
    color: #8b8b8b;
    font-size: 1rem;
}
.mb .text p img{
	display: inline-block;
	margin-right: 10px;
}
/* 产品中心 */
/* 子页面-产品中心 */
.z-pad{
	padding: 70px 0;
}
.mainwrap .an{
	display: flex;
	justify-content: space-between;
}
.mainwrap .an>h1{
	display: none;
}
.main_l{
	width: 15%;
	width: 240px;
	width: 320px;
}
.main_r {
    width: 85%;
	width: calc(100% - 320px);
    padding-left: 50px;
}
.m_l_top{
	position: relative;
	padding-bottom: 1px;
}
.m_l_top::after{
	background-color: #eee;
	width: 100%;
	height: 1px;
	content: "";
	position: absolute;
	bottom: 15px;
}
.m_l_top h2{
	font-weight: normal;
	font-size: 1.375rem;
	line-height: 1.5;
	color: #333;
}
.m_l_top h3{
	font-weight: normal;
	font-size: 1.125rem;
	line-height: 1.5;
	text-transform: uppercase;
	margin-bottom: 25px;
	font-size: 22px;
	font-family: "Impact" !important;
	color: #e2e2e2;
}
.main_l ul li{
	display: block;
	border-bottom:#ededed solid 1px;
	height: 60px;
	line-height: 60px;
	padding:0 5%;
	display: flex;
	justify-content: space-between;
}
.main_l ul li:first-child{
	border-top:#ededed solid 1px;
}
.main_l ul li.active:first-child{
	border-top:transparent solid 1px;	
}
.main_l ul li a{
	color: #333;
	display: inline-block;
	width: 80%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.main_l ul li a span{
	color: #333;
	text-align: left;
}
.main_l ul li font{
	text-align: right;
	color: #999;
}
.main_l ul li:hover font{
	color:#73bb49;
	-webkit-transform:translateX(-10px);-moz-transform:translateX(-10px);-ms-transform:translateX(-10px);
	 -o-transform:translateX(-10px);transform:translateX(-10px);
	 transition: all .3s;
}
.main_l ul li a{
	padding-left: 10px;
	position: relative;
}
.main_l ul li a::after{
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: #666;
	top: 50%;
	left: 0;
	transform: translate(-0,-50%);
}
.main_l ul li:hover,
.main_l ul li.active{
	background-color: #73bb49;
	border-color: #73bb49;
}
.main_l ul li:hover a::after,
.main_l ul li.active a::after{
	background-color: #fff;
}
.main_l ul li:hover a span,
.main_l ul li.active a span{
	color: #fff;
}
.main_l ul li:hover font,
.main_l ul li.active font{
	color: #fff;
}
.case-list img.up-pic {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    *height: auto;
}
.i-wrap .up-graybox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.4s ease 0s;
}
.i-wrap .up-graybox .bgbox {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.i-wrap .up-graybox .stit {
  font-size: 1rem;
  line-height: 1.875rem;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.875rem;
  color: #fff;
}
.i-wrap .up-graybox .line {
  display: inline-block;
  width: 6.25rem;
  height: 1px;
  background-color: #f2f2f2;
  position: absolute;
  left: 50%;
  margin-left: -3.125rem;
  transition: all 0.6s ease 0s;
}
.i-wrap .up-graybox .linet {
  top: 0;
}
.i-wrap .up-graybox .lineb {
  bottom: 0;
}
.i-wrap .up-graybox .out-ico {
  display: none;
  width: 1.625rem;
  height: 26px;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
.i-wrap  li:hover .up-graybox .line {
  width: 6px;
  margin-left: -3px;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.pb3{
	padding-bottom: 3.125rem;
}
.hcase-bg{
    background: url(../images/case-bg.png) center top;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    position: relative;
    transition: all 0.5s ease 0s;
}
.page_fw{
	margin-bottom: 3%;
}
.page_fw p{
	line-height: 30px;
	color: #333;
	font-size: 1rem;
}
.case-wrap .case-list {
    position: relative;
    overflow: hidden;
	display: flex;
	flex-direction: column;
}
.case-wrap .case-list ul {
    width: 101.7%;
}
.case-wrap ul.clearfix li {
    width: 31.6%;
    margin-right: 1.7%;
    margin-bottom: 30px;
    float: left;
	position: relative;
}
.case-wrap ul.clearfix li>a{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	font-size: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
}
.case-wrap .case-list .img-box{
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.case-wrap ul.clearfix li h3{
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.7;
	margin-top: 20px;
	font-weight: normal;
	color: #333;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}
.case-wrap ul.clearfix li:hover h3{
	color: #73bb49;
}
.case-wrap ul.clearfix .img-box img {
    width: 100%;
    transform: translateZ(0px);
    transition: transform 0.3s ease 0s;
}
.case-wrap ul.clearfix li:hover .img-box img {
  transform: scale(1.05, 1.05);
  transition: transform 0.6s ease 0s;
}
.case-wrap ul.clearfix li:hover .img-box .up-graybox {
  opacity: 1;
  filter: alpha(opacity=1);
}
.case-wrap ul.clearfix .up-graybox {
    z-index: 3;
}
/* 子页面-行业应用 */
.page_hyapp h1{
	font-size: 2rem;
	line-height: 2;
	font-weight: normal;
}
.page_hyapp  p{
	font-size: 1.5rem;
	color: #65ac1e;
	line-height: 1.5;
}
.hyapp_con {
	display: flex;
	flex-wrap: wrap;
	margin-top: 3%;
	justify-content: space-between;
}
.hyapp_con dl{
	width: calc(48%);
	margin-right: 2%;
	margin-bottom: 25px;
}
.hyapp_con dl dt {
	margin-bottom: 10px;
}
.hyapp_con dl dt img{
	width: 100%;
	height: auto;
}
.hyapp_con dl dd h4{
	font-size: 1.25rem;
	color: #333;
	line-height: 2;
	font-weight: normal;
}
.hyapp_con dl dd p{
	font-size: 1rem;
	line-height: 28px;
	color: #999;
}
/* 子页面-产品详情 */
.pagede_con1 .pc_detail{
	display: flex;
	justify-content: space-between;
}
.pagede_con1_l{
	width: calc(40%);
	overflow: hidden;
}
.detail_img01{
	border:#ededed solid 1px;
}
.detail_img01 img{
	object-fit: cover;
	min-height: 400px;
	width: 100%;
}
.pagede_con1_r{
	width: calc(100% - 40% - 30px);
	margin-left: 30px;
}
.pagede_con1_r h1{
	font-size: 22px;
	text-align: left;
	color: #73bb49;
	line-height: 30px;
	border-bottom: #eee solid 1px;
	padding-bottom: 10px;
	font-weight: normal;
	margin-bottom: 20px;
}
.pagede_con1_r p{
	line-height: 30px;
	color: #666;

}
.detail_but{
	margin-top: 3rem;
	display: flex;
	flex-wrap: wrap;
}
.detail_but a {
    float: left;
    font-size: 16px;
    color: #666;
    line-height: 46px;
    text-align: center;
    padding: 0 30px;
    margin-right: 20px;
	margin-bottom: 10px;
	border:#ededed solid 1px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	overflow: hidden;
}
.detail_but a:hover {
    color: #73bb49;
    cursor: pointer;
    text-decoration: none;
	border:#73bb49 solid 1px;
}
/*tab*/
.pagede_con2{
	margin-top: 5%;
}
#hi-tab ul li{
	list-style-type:none;
	width: 100%;
}
#hi-tab ul li a{
	width: 100%;
	display: block;
	margin: 0 auto;
}
#hi-tab ul li a:hover{
	background-color: #73bb49;
	color: #fff;
}
#hi-tab{
	display: flex;
	text-align: center;
	width: 100%;
	background-color: white;
	border-bottom: #eee solid 2px;
	border-left: #eee solid 2px;
	z-index: 99;
}
#hi-tab ul{
	display: flex;
	width: 100%;
}
/* 测试区域 */
.test-up-area{
	height: 200px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	background-color: #51D266;
}
.test-down-area{
	width: 100%;
	text-align: left;
	margin: 0 auto;
}
#s1{
	padding: 20px 0;
	width: 100%;
	text-align: left;
	margin: 0 auto;
	border-bottom: #eee solid 1px;
}
#s1 img{display: inline-block;max-width: 100%;}
#s2{
	padding: 20px 0;
	width: 100%;
	margin: 0 auto;
	border-bottom: #eee solid 1px;
}
#s2 dl dd{
	width: 100%;
	line-height: 30px;
	list-style: square;
	color: #333;
}
#s3{
	padding: 20px 0;
	width: 100%;
	text-align: left;
	margin: 0 auto;
	/* border-bottom: #eee solid 1px; */
}
#s4{
	padding: 20px 0;
	width: 100%;
	text-align: left;
	margin: 0 auto;
}
.test-down-area h5{
	font-size: 25px;
	color: #73bb49;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
}
.test-down-area p{
	color: #666;
	line-height: 30px;
}

.hi-select-btn.hi-selected-full{
	background-color: #ededed;
	color: #73bb49;
}
.hi-select-btn.hi-selected-underline{
	border-bottom: 3px #ededed solid;
}
.toggle{
	width: 5%;
}
.toggle a{
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 20px 0px;
}
/* 子页面-科研创新页面 */
.pagenews_item ul{
	margin:0;
	padding:0;
}
.pagenews_item ul li {
    list-style: none;
    width: 100%;
}
.pagenews_item ul .li1 {
    margin-bottom: 20px;
	padding:20px 20px;
    background: #ffffff;	
}
.pagenews_item ul .li1 a{
	display: flex;
	justify-content: space-between;
}
.pagenews_item ul .li1 .img-box {
    width: calc(33.3%);
}
.pagenews_item ul .li1 .img-box img {
    max-width: 100%;
    padding-right: 20px;
}
.pagenews_item ul .li1 .right-content{
	width: calc(100% - 33.3% - 30px);
	margin-left: 30px;
	overflow: hidden;
    line-height: 1.8;
	transition: all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s;
}
.pagenews_item ul .li1 .content-title {
    color: #333333;
    font-size: 18px;
    margin-top: 10px;
    width: 80%;
}
.pagenews_item ul .li1 .content-desc {
    color: #666666;
    padding-right: 120px;
	font-weight: 200;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	display: -webkit-box;
	overflow: hidden;
}
.pagenews_item ul .li1 .content-time {
    color: #666666;
}
.pagenews_item ul .li1 .right-content:after {
    content: 'MORE';
    height: 40px;
    padding-left: 30px;
    line-height: 40px;
    display: block;
    text-align: left;
    margin: -60px 20px 0 0;
    color: #727272;
    border-left: 1px solid #666666;
    transition: all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s;
    font-size: 16px;
    float: right;
    display: block;
}
.pagenews_item ul .li1 .right-content:after {
    border-color: #ccc;
    color: #666666;
}
.pagenews_item ul .li1:hover .content-title {
    color: #73bb49;
}
.pagenews_item ul .li1:hover .right-content{margin-right:-15px}
.pagenews_item ul .li1:hover{-moz-box-shadow:0 7px 17px rgba(6,6,6,.10);-webkit-box-shadow:0 7px 17px rgba(6,6,6,.10);box-shadow:0 7px 17px rgba(6,6,6,.10)}
.pagenews_item ul .li1:hover img{transition:all 0.6s cubic-bezier(0.215,0.61,0.355,1) 0s}
.pagenews_item ul .right-content .after::hover{border-color:#0da781 !imp;color:#0da781}

/* 子页面-新闻详情页面 */
.pagebg{
	background: #f4f9f9;
}
.page_de2{
	padding:2rem;
	background: #fff;
}
.page_de2 h1{
	font-size: 30px;
	text-align: left;
	line-height: 1.8;
	color: #333;
	font-weight: normal;
}
.page_de2 .de_info {
    font-size: 16px;
    color: #a3afb7;
	font-weight: 300;
	padding-bottom: 20px;
}
.page_de2 .de_info span {
    padding-right: 10px;
}
.border-bottom{
	border-bottom: #eee solid 1px;
}
.de_info2{
	padding: 30px 0;
	width: 100%;
	max-width: 100%;
	word-wrap: break-word;
}
.de_info2 p{
	font-size: 16px;
	line-height: 2.5;
	color: #333;
}
.page_de2 .detail_but{
	justify-content: space-between;
}
.page_de2 .detail_but a{
	float: none;
}
/* 分页 */
.pageNum {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    margin: 3.75rem auto;
	margin-bottom: 0 !important;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
  width: auto !important;
  margin-right: 0 !important;
  margin-top: 5px !important;
}
.pagination{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  padding: 8px 18px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #73bb49;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #73bb49;
  border-color: #73bb49;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* 关于我们 */
.about1{
	padding: 70px 0 70px;
}
.about1 h1{
	display: none;
}
.about1>.an{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
	position: relative;
	flex-direction: row-reverse;
}
.about1 .img{
	width: 50%;
}
.about1 .img img,.about1 .img video{
	width: 100%;
}
.about1#a3 .img img{
	width: 80%;
	margin: 0 auto;
}
.about1 .text{
	width: 50%;
	/*padding-left: 50px;
	padding-right: 6%;*/
	padding: 0 2%;
}
.about1 .text h3{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 30px;
	line-height: 1.5;
}
.about1 .text .txt{
	line-height: 2;
	color: #333;
	font-size: 1rem;
	text-align: justify;
}
.about1 .text h4{
	position: absolute;
	top: 50%;
	left: 0px;
	width: 24px;
	transform: translate(-0%,-50%);
	text-transform: uppercase;
	font-weight: normal;
	font-size: 1.125rem;
    writing-mode: vertical-lr;
	color: #999;
	white-space: nowrap;
	padding-top: 40px;
}
.about1 .text h4::after{
	content: "";
	width: 1px;
	height: 30px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%,-0);
	background-color: #999;
}
.about2{
	padding: 70px 0;
	border-top: 1px solid #ddd;
	background-color: #f5f5f5;
}
.about2>.an{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.about2 .img{
	width: 50%;
	padding-left: 50px;
}
.about2 .img img{
	width: 80%;
	margin: auto;
}
.about2 .text{
	width: 50%;
	padding-left: 6%;
}
.about2 .text h3{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 30px;
	line-height: 1.5;
}
.about2 .text .txt{
	line-height: 2;
	color: #333;
	font-size: 1rem;
	text-align: justify;
}
.about2 .text h4{
	position: absolute;
	top: 50%;
	left: 0px;
	width: 24px;
	transform: translate(-0%,-50%);
	text-transform: uppercase;
	font-weight: normal;
	font-size: 1.125rem;
    writing-mode: vertical-lr;
	color: #999;
	white-space: nowrap;
	padding-top: 40px;
}
.about2 .text h4::after{
	content: "";
	width: 1px;
	height: 30px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translate(-50%,-0);
	background-color: #999;
}
.about3{
	padding: 70px 0 50px;
	background: url("../images/about3_bg.jpg") no-repeat center/cover;
	position: relative;
}
.about3::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 0;
}
.about3 .an{
	position: relative;
	z-index: 1;
}
.about3 h2{
    color: #fff;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 60px;
    line-height: 1.5;
	text-align: center;
}
.about3 .swiper-slide{
	background-color: transparent;
	width: auto;
	position: relative;
	display: block;
}
.about3 .swiper-slide h3{
    font-size: 1.625rem;
    line-height: 28px;
    margin-bottom: 60px;
    color: #fff;
    transition: all 0.1s;
	position: relative;
	opacity: 0.9;
}
.about3 .swiper-slide h3::after{
	opacity: 0.9;
	content: "";
    position: absolute;
    width: 75%;
    height: 33px;
    background: url("../images/about3_top_bg.png") no-repeat;
    background-size: contain;
    background-position: right center;
    left: -25%;
    margin-left: 10px;
    top: 35px;
    z-index: 3;
}
.about3 .swiper{
	overflow: hidden;
	width: calc(100% - 72px);
	margin: 0 36px;
	position: relative;
}
.about3 .swiper::after{
	content: "";
	width: 100%;
	height: 3px;
	background: url("../images/about3_hr_bg.png") no-repeat;
	background-size: 100% auto;
	background-position: center;
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 0;
}
.about3 .swiper-slide .text{
    display: block;
    margin: 0 auto;
    padding: 20px 21px;
    transition: all 0.3s;
    border-radius: 2px;
	color: #fff;
	line-height: 1.8;
	font-size: 1rem;
}
.about3 .swiper-slide:hover h3{
	font-size: 1.75rem;
}
.about3 .swiper-slide:hover h3::after{
	background-image: url("../images/about3_top_bg_red.png");
}
.about3 .swiper-slide:hover .text{
	background: url("../images/about3_man_bg.png") no-repeat;
	background-size: 100% 100%;
}
.about3>.an>div{
	position: relative;
}
.mySwiper6 .swiper-button-prev{
	display: none;
}
.mySwiper6 .swiper-button-next{
	display: none;
}
.about3 .swiper-button-prev{
	background-image: url("../images/l.svg");
}
.about3 .swiper-button-next{
	background-image: url("../images/r.svg");
}
.about3 .swiper-button-next,
.about3 .swiper-button-prev{
	width: 27px;
	height: 33px;
	background-size: 27px 33px;
}
html{
	scroll-padding-top: 100px;
}
.about4{
	padding: 70px 0;
	background-color: #f5f5f5;
}
.about4 h2{
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}
.about4 .swiper{
	overflow: hidden;
	padding-bottom: 70px;
}
.about4 .swiper-slide{
	display: block;
	background-color: transparent;
	cursor: zoom-in;
}
.about4 .swiper-slide .img{
	position: relative;
	width: 100%;
	padding-top: 74%;
	overflow: hidden;
}
.about4 .swiper-slide .img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .5s;
}
.about4 .swiper-slide:hover .img img{
	transform: scale(1.05);
}
.about4 .swiper-slide p{
	text-align: center;
	line-height: 1.5;
	margin-top: 10px;
}
.about4 .swiper-pagination-bullet-active{
	background-color: #73bb49;
}
.about4 .swiper-slide:hover p{
	color: #73bb49;
}
.about5{
	padding: 70px 0;
	border-top: 1px solid #ddd;
}
.about5 h2{
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}
.about5 .swiper{
	overflow: hidden;
	padding-bottom: 70px;
}
.about5 .swiper-slide{
	display: block;
	background-color: transparent;
	cursor: zoom-in;
}
.about5 .swiper-slide .img{
	position: relative;
	width: 100%;
	padding-top: 74%;
	overflow: hidden;
}
.about5 .swiper-slide .img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .5s;
}
.about5 .swiper-slide:hover .img img{
	transform: scale(1.05);
}
.about5 .swiper-slide p{
	text-align: center;
	line-height: 1.5;
	margin-top: 10px;
}
.about5 .swiper-slide:hover p{
	color: #73bb49;
}
.about5 .swiper-pagination-bullet-active{
	background-color: #73bb49;
}
/* 子页面-可持续发展 */
.sustained1{
	padding: 70px 0 100px;
}
.sustained1 .an>h1{
	display: none;
}
.sustained1 .an>h2{
	color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}
.sustained1 .text{
	font-size: 1rem;
	line-height: 2;
	color: #333;
}
.sustained1 .text p{
	text-indent: 2em;
}
/* 子页面-可持续发展-可持续发展报告 */
.download1{
	padding: 70px 0 60px;
}
.download1 .an>h1{
	display: none;
}
.download1 .an>h2{
	color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}
.download1 .uls{
	display: flex;
	flex-wrap: wrap;
}
.download1 .uls li{
	width: 100%;
	/* margin-right: 1.16%;
	margin-bottom: 20px; */
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.download1 .uls li:nth-child(3n){
	margin-right: 0;
}
.download1 .uls li:hover{
	border-color:#73bb49;
}
.download1 .uls li h3{
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 10px;
}
.download1 .uls li h3 a:hover{
	color: #73bb49;
}
.download1 .uls li>div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.download1 .uls li>div .times{
	color: #999;
	line-height: 1.5;
	font-size: 0.875rem;
}
.download1 .uls li>div a{
	color: #73bb49;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: bold;
}
.download1 .uls li>div a:hover{
	color: #73bb49;
}
/* 联系方式 */
.contact1{
	padding: 70px 0;
}
.contact1 .an>h1{
	display: none;
}
.contact1 h2{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 40px;
	line-height: 1.5;
	text-align: center;
}
.contact1 .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.contact1 .uls li{
	min-height: 300px;
	width: 32.5%;
	margin-right: 1.16%;
	padding: 75px 20px 20px;
	background-color: #f5f5f5;
	margin-bottom: 10px;
}
.contact1 .uls li:nth-child(3n){
	margin-right: 0;
}
.contact1 .uls li .img{
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.contact1 .uls li .img img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.contact1 .uls li h3{
	font-size: 1.125rem;
	color: #333;
	line-height: 1.7;
	margin: 20px 0;
	text-align: center;
	font-weight: bold;
}
.contact1 .uls li p{
	line-height: 2;
	text-align: center;
	color: #333;
	font-size: 0.9375rem;
}
.contact1 .uls li p a{
	color: #333;
	font-size: 0.9375rem;
	margin-right: 7px;
	line-height: 1.6;
	display: inline-block;
}
.contact1 .uls li p a:hover{
	color: #73bb49;
}
.contact1 .uls li p a:last-child{
	margin-right: 0;
}
/*地图*/
.map{
	width: 100%;
	text-align: center;
	margin-top: 50px;
}
.map img{
	display: inline-block;
	max-width: 100%;
}
/*表单*/
.form1{
	margin-top: 50px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.form1 form{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.form1 form label{
	display: block;
	font-size: 18px;
	color: #fff;
	margin-bottom: 10px;
}
.form1 form input{
	width: calc(100%);
	border: 1px solid #bebdbd;
	padding: 10px 10px;
	background: none;
	display: block;
	color: #ffffff;
	font-size: 18px;
}
.form1 form input:focus{
	outline: 1px solid #73bb49;
}
input::placeholder{
	color: #fff;
}
.form1 .field{
	width: 100%;
	margin-bottom: 20px;
}
.form1 .field:nth-child(1),
.form1 .field:nth-child(2){
	width: 49%;
	margin-right: 2%;
}
.form1 .field:nth-child(2){
	margin-right: 0%;
}
.btn-submit{
	width: 100%;
	margin-top: 20px;
}
.form1 .btn-submit input{
	width: 100%;
	cursor: pointer;
	background-color: #73bb49;
	border: 1px solid #73bb49;
	transition: .5s;
	color: #fff;
}
.btn-submit input:hover{
	background-color: transparent;
	border: 1px solid #bebdbd;
	color: #333;
}
.contact1 h2,.contact1 p,.form1 form label,input::placeholder,.mainwrap dl dt,.mainwrap dl dd a,.form1 form input{
	color: #333;
}
.form1 .field:nth-child(3) input{
	padding: 10px 10px 30px;
}
.allmap,
#allmap{
	margin-top: 50px;
	z-index: 9;
	width: 100%;
	height: 500px;
}
.allmap{
	height: auto;
}
.allmap img{
	width: 100%;
	display: block;
}
/* 子页面-公司治理 */
.investor1 .an>h1{
	display: none;
}
.investor1 h2{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 40px;
	line-height: 1.5;
	text-align: center;
}
.investor1 .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.investor1 .uls li{
	width: 100%;
	/* margin-right: 1.16%;
	margin-bottom: 20px; */
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
	position: relative;
}
.investor1 .uls li>a{
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	font-size: 0;
}
.investor1 .uls li:nth-child(3n){
	margin-right: 0;
}
.investor1 .uls li:hover{
	border-color:#73bb49;
}
.investor1 .uls li h3{
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 10px;
}
.investor1 .uls li:hover h3{
	color: #73bb49;
}
.investor1 .uls li>div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.investor1 .uls li>div .times{
	color: #999;
	line-height: 1.5;
	font-size: 0.875rem;
}
.investor1 .uls li>div a{
	color: #73bb49;
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: bold;
}
.investor1 .uls li>div a:hover{
	color: #73bb49;
}
/* 公司治理详情页 */
.investor_detail3 h1{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 30px;
	line-height: 1.5;
	text-align: center;
}
.investor_detail3 .text {
    font-size: 1rem;
    line-height: 2;
    color: #333;
}
.investor_detail3 .text p{
    text-indent: 2em;
}
.investor_detail3 .text img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.investor_detail3 .detail_but {
    justify-content: space-between;
}
/* 主要股东 */
.investor2 .an>h1{
	display: none;
}
.investor2 h2{
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.5;
	text-align: center;
}
.investor2 .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.investor2 .uls li{
	width: 100%;
	margin-right: 0%;
	margin-bottom: 0px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}
.investor2 .uls li:first-child{
	padding-top: 0;
}
/* .investor2 .uls li:nth-child(2n){
	margin-right: 0%;
} */
.investor2 .uls li h3{
	color: #333;
	line-height: 1.5;
	margin-bottom: 5px;
	font-weight: normal;
	font-size: 1.375rem;
}
.investor2 .uls li h4{
	font-size: 1rem;
	color: #666;
	line-height: 1.5;
	margin-bottom: 10px;
	font-weight: normal;
}
.investor2 .uls li p{
	line-height: 1.8;
	font-size: 1rem;
	color: #666;
}
/* 子页面-公司新闻 */
.news1 h1{
	display: none;
}
/* .news1 .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
} */
.news1 .uls li{
	width: 100%;
	margin-right: 0;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	background-color: #f5f5f5;
	margin-bottom: 20px;
}
.news1 .uls li .img{
	width: 20%;
	position: relative;
	padding-top: 14%;
	display: block;
	overflow: hidden;
	display: none;
}
.news1 .uls li .img img{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}
.news1 .uls li .text{
	/*width: calc(100% - 20%);*/
	padding-left: 20px;
	width: 100%;
}
.news1 .uls li>a{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	font-size: 0;
	z-index: 10;
}
.news1 .uls li h3{
	font-size: 1.25rem;
	line-height: 1.5;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
	margin-bottom: 10px;
}
.news1 .uls li p{
	line-height: 2;
	color: #666;
	font-size: 1rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	overflow: hidden;
	width: 100%;
}
.news1 .uls li .times{
	font-size: 0.875rem;
	margin-top: 10px;
	color: #666;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news1 .uls li .times span{
	font-size: 0.875rem;
	color: #666;
}
.news1 .uls li .text{
	padding: 20px 30px;
}
.news1 .uls li{
	transition: all .5s;
}
.news1 .uls li:hover{
	box-shadow: 0px 0px 20px -7px rgba(0,0,0,0.4);
}
.news1 .uls li:hover .img img{
	transform: scale(1.05);
}
.news1 .uls li:hover h3{
	color: #73bb49;
}
.news1 .uls li:hover .times span{
	color: #73bb49;
}
.news1 .uls{
	display: flex;
	flex-wrap: wrap;
}
/* .news1 .uls li{
	width: 49%;
	margin-right: 2%;
} */
.news1 .uls li:nth-child(2n){
	margin-right: 0;
}
.news1 .uls li .text{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.news1 .uls li .text .times{
	width: 100%;
	font-size: 1rem;
	color: #666;
}
.news1 .uls li .text .times span{
	display: block;
	width: 100px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background-color: #73bb49;
	color: #fff;
	font-weight: none;
}
/* 子页面-新闻中心-新闻详情 */
.dteail4{
	width: 100%;
}
.fa.fa-eye{
	background: url("../images/erey.png") no-repeat center/cover;
	width: 16px;
	height: 10px;
	display: inline-block;
}
.dteail4 h1{
	text-align: center;
}
.dteail4 .de_info{
	text-align: center;
}
.dteail4 .de_info2 img{
	text-align: center;
	margin: 0 auto;
	max-width: 100%;
	display: block;
}
.main_r.dteail4{
	width: 100%;
	padding-left: 0;
	margin-top: 0 !important;
}

/* 子页面-人才招聘 */
.join1 h2{
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}
.join1 h1{
	display: none;
}
.join1 .uls li{
	margin-bottom: 20px;
}
.join1 .uls li .flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	cursor: pointer;
	background-color: #f5f5f5;
}
.join1 .uls li .flex h3{
	font-size: 1.125rem;
	color: #333;
	font-weight: normal;
	line-height: 1.5;
}
.join1 .uls li:hover .flex h3{
	color: #73bb49;
}
.join1 .uls li .flex i{
	width: 30px;
	height: 30px;
	background-color: #eee;
	position: relative;
}
.join1 .uls li .flex i::after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 16px;
	height: 2px;
	background-color: #fff;
	transform: translate(-50%,-50%);
}
.join1 .uls li .flex i:before{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 2px;
	height: 16px;
	background-color: #fff;
	transform: translate(-50%,-50%);
}
.join1 .uls li .text{
	padding: 20px 20px 20px 20px;
	background-color: #f8f8f8;
	border-top: 1px solid #eee;
	line-height: 1.6;
	color: #666;
	display: none;
}
.join1 .uls li .flex.active{
	background-color: #fff;
}
.join1 .uls li .flex.active h3{
	color: #73bb49;
}
.join1 .uls li .flex.active i{
	background-color: #73bb49;
}
.join1 .uls li .flex.active i:before{
	display: none;
}
.join1 .uls li .text a{
	margin-top: 20px;
	display: inline-block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 1rem;
	background-color: #73bb49;
	transition: opacity .5s;
}
.join1 .uls li .text a:hover{
	opacity: 0.8;
}
/*福利关怀*/
.join_con2 h2{
	font-size: 1.5rem;
	color: #333;
	line-height: 2;
	text-align: left;
	border-bottom: #eee solid 1px;
	margin-bottom: 30px;
}
.join_con2_01{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.join_con2_01 dl{
	width: calc(30%);
	margin-right: 1%;
	position: relative;
}
.join_con2_01 dt {
	overflow: hidden;
}

.join_con2_01 dt img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s;
}
.join_con2_01 dt:hover  img{
	transform: scale(1.05);
}
.join_con2_01 dd{
	width: 100%;
	height:170px;
	overflow: hidden;
	
	background-color: #f8f8f8;
	padding:4% 4%;
}
.join_con2_01 dd p{
	font-size: 1rem;
	color: #333;
	line-height: 2;
}
.join_con2_01 dd:hover{
	background-color: #73bb49;
}
.join_con2_01 dd:hover p{
	color: #fff;
}
.join_con2_02{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.join_con2_02 dl{
	width: calc(24%);
	margin-right: 1%;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 2px 24px 0px rgba(175,175,175,0.2);
	transition: 0.5s;
	text-align: center;
	padding:3% 0;
	margin-bottom: 2%;
	transition: transform 0.3s ease;
}
.join_con2_02 dl dt img{
	text-align: center;
	margin:0 auto 20px;
	width: 50px;
}
.join_con2_02 dl dd h4{
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 2;
}
.join_con2_02 dl dd p{
	font-size: 1rem;
	color: #666;
	padding: 0 15px;
}
.join_con2_02 dl:hover{
	transform: translateY(-10px);
}
/*职业发展*/
.join_con2 .zyfzcon p{
	font-size: 1rem;
	color: #333;
	line-height: 2;
}



/* 搜索页面 */
.search1 h1{
	display: none;
}
.search1 h2{
	color: #333;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 40px;
	line-height: 1.5;
	text-align: center;
}
.search1 .uls{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	/* border: 1px solid #ddd; */
	border-bottom: 0px;
	/* max-width: 1400px;
	margin: 0 auto; */
}
/* .search1 .uls li{
	width: 32.5%;
    margin-right: 1.16%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    position: relative;
} */
.search1 .uls li{
	width: 100%;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
	position: relative;
}
/* .search1 .uls li::after{
	content: "";
	position: absolute;
	z-index: 1;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border: 1px solid #ddd;
} */
.search1 .uls li>a{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    font-size: 0;
}
.search1 .uls li:nth-child(3n){
	margin-right: 0%;
}
.search1 .uls li h3{
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 10px;
}
.search1 .uls li .times{
    display: flex;
    align-items: center;
    justify-content: space-between;
	font-size: 0.875rem;
	color: #666;
}
.search1 .uls li .times span{
	color: #73bb49;
	font-weight: bold;
}
/* .search1 .uls li:hover::after{
	border-color: #73bb49;
	z-index: 2;
} */
.search1 .uls li:hover{
	border-color: #73bb49;
}
.search1 .uls li:hover h3{
	color: #73bb49;
}
.search_form{
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	margin-bottom: 30px;
}
.search_form input{
	width: calc(100% - 80px);
	height: 42px;
	line-height: 42px;
	max-width: 400px;
	border: none;
	padding: 0 10px;
	outline: none;
	margin: 0;
	border: 1px solid #ddd;
	border-right: 0;
}
.search_form button{
	border: none;
	outline: none;
	margin: 0;
	width: 80px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	color: #fff;
	background-color: #73bb49;
	transition: opacity .5s;
	cursor: pointer;
	border: 1px solid #ddd;
	border-left: 0;
}
.search_form button:hover{
	opacity: 0.8;
}
/* 搜索暂无数据暂无内容 */
.Nonetr{
	display: flex;
	align-items: center;
	justify-content: center;			
}
.Nonetr>td{
	display: block;
	width: 100%;			
}
.None{
	text-align: center;
	padding:0;
	font-size: 1.25rem;
	line-height: 1.7;
	color: #ccc;
	margin: 0;
	position: relative;
	margin-top: 160px;
	margin: 160px auto 0;
}
.None::before{
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translate(-50%,-0%);
	content: "";
	display: block;
	margin: 0 auto;
	max-width: 150px;
	width: 100%;
	width: 150px;
	background: url("../images/erroey.png") no-repeat center;
	background-size: 100%;
	height: 200px;
}
.product1 h2{
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 50px;
	text-align: center;
}
/* 73bb49 */
/* {
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}
{
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	overflow: hidden;
} */
/* 修改 */
.index_impact .uls li{
	min-height: initial;
}
.index_impact .uls li .text{
	padding: 3.5vw 2vw 2vw;
	margin-bottom: 2vw;
}
.index_impact .uls li .url+.text{
	padding: 1.8vw 2vw;
}
.index_impact .uls li .url{
	padding: 1vw 2vw 3.5vw;
}
.index_impact .uls li .text h2{
	margin-bottom: 1vw;
}
.index_impact .uls li .text p{
	margin-bottom: 1.2vw;
}
.index_impact .uls li .url a{
	padding-top: 1.3vw;
	padding-bottom: 1.3vw;
}
/* pc特效 */
@media (min-width:1025px){
	/* 首页-产品中心 */
	.index_product .swiper-slide{transition:width .5s;}
	.index_product .swiper-slide:hover::after{background-color: rgba(0,0,0,0);}
	.index_product .swiper-slide:hover .txt::after{height: 100%;transition: height .5s;}
	.index_product .swiper-slide:hover .img .text{top: 100%;transition: all .5s 1s;}
	.index_product .swiper-slide:last-child:hover{margin-left: -105px;position: relative;z-index: 11;transition: all .5s;margin-left: -42px;}
	.index_product .swiper-slide{height: 460px}
	.index_product .swiper-slide{width: calc(1269px / 4) !important;height: 400px;}
	.index_product .swiper-slide:hover{width: calc(1269px / 3.5) !important;}
	.index_product .swiper-slide .txt{padding-top: 110px;}
	.index_product .swiper-slide:hover .txt{padding-top: 120px;}
	.index_product .swiper-slide:hover .img .text{transform: translate(-50%, -90px);}
	.index_product .swiper-slide:nth-child(2n):hover::after{background-color: rgba(0, 0, 0, 0);}
}
@media (min-width:1300px){
	/* 首页-产品中心 */
	.index_product .swiper-slide{width: calc(1903px / 5) !important;}
	.index_product .swiper-slide:hover{width: calc(1903px / 4) !important;}
	.index_product .swiper-slide{height: 460px;}
	.index_product .swiper-slide:hover{width: calc(1903px / 4.5) !important;}
	.index_product .swiper-slide .txt{padding-top: 100px;}
	.index_product .swiper-slide:hover .txt{padding-top: 110px;}
	.index_product .swiper-slide:hover .img .text{transform: translate(-50%, -75px);}
	/* 科研成果 */
	.pagenews_item ul .li1 .content-title{margin-bottom: 1vw;}
	.pagenews_item ul .li1 .content-desc{margin-bottom: 1vw;}
	.pagenews_item ul .li1 .content-desc{-webkit-line-clamp: 5;}
}
/* 适配 */
@media (max-width:1600px){
	.pc-header .uls{padding-left: 2vw;}
	.pc_head ul{padding-left: 2vw;}
}
@media (max-width:1400px){
	.pc-header .uls>li>a{margin-right: 12px;padding-left: 9px;padding-right: 9px;}
	.pc-header .uls{padding-left: 0;}
	.pc_head ul{padding-left: 0vw;}
	/* 底部 */
	.footer_txt{padding-right: 3%;}
	.footer_nav{padding-right: 7vw;}
	/* 关于我们 */
	.about1 .text{padding: 0 4% 0 40px;}
	.about1 .uls li{padding: 40px;}
	.about1 .text h4{left: 0px;font-size: 1rem;width: 20px;}
	.about2 .img{padding-left: 40px;}
	.about2 .text{padding-left: 4%;}
	.about2 .text h4{left: 0px;font-size: 1rem;width: 20px;}
	.pc_head ul li h3+h3{font-size:14px;}
	/* 研究成果 */
	.pagenews_item ul .li1 .img-box img{padding-right: 0px;}
	/* 修改首页 */
	.index_impact .uls li .text{padding: 2vw;}
	.index_impact .uls li .url{padding: 1vw 2vw 2vw;}
	.pagenews_item ul .li1 .content-desc{-webkit-line-clamp: 3;}
	/* 产品中心 */
	.main_l{width: 240px;}
	.main_r{width: calc(100% - 240px);}
	/* 新闻动态 */
	.news1 .uls li .img{width: 200px;padding-top: 14%;}
	.news1 .uls li .text{width: calc(100% - 200px);padding: 15px 20px;}
	.news1 .uls li p{-webkit-line-clamp: 2;}
	.news1 .uls li h3{line-height:1.2;margin-bottom: 5px;}
	.news1 .uls li .text .times{margin-top: 5px;}
	.news1 .uls li .text .times span{line-height:32px;height: 32px;width: 80px;}
}
@media (max-width:1200px) {
	.w1800{max-width: 100%;width: 94%;}
	.pc-header .uls>li>a{padding: 0 5px 10px;margin-right: 10px;}
	
}
@media (max-width:1100px){
	.pc-header .uls>li>a{padding: 0 4px 10px;margin-right: 5px;}
}
@media (max-width:1024px) {
	.pc-header{display: none;}
	.m-header{display: block;}
	/* 首页-banner */
	.index1 .swiper-slide .text h2{font-size: 1.75rem;}
	.index1 .swiper-slide .text p{font-size: 1rem;}
	.index1 .swiper-slide .text h2:nth-child(2){font-size: 1.5rem;}
	/* 首页-影响力 */
	.index_impact .uls li .url{padding: 0 20px 40px;}
	.index_impact .uls li .text{padding: 40px 20px 40px;}
	.index_impact .uls li .url a{padding-top: 10px;padding-bottom: 10px;}
	.index_impact .uls li{min-height: initial;}
	/* 首页-产品中心 */
	.index_product .swiper-slide .txt{position: relative;height: auto;padding: 40px 30px 40px;}
	/* 首页-新闻中心 */
	.index_news .left{width: 100%;}
	.index_news .right{width: 100%;padding-left: 0;margin-top: 20px;}
	.index_news .right li .time{margin-bottom: 2%;}
	.index_news .right li h3 a{margin: 1.8% 0 2%;}
	.footer_nav{padding-right: 2vw;}
	.footer_txt{padding-right: 0;}
	.footer_nav>li>a{padding: 10px 2px;}
	/* 关于我们 */
	html{scroll-padding-top: 60px;}
	main{margin-top: 60px;}
	.mb .swiper{display: none;}
	.about1 .img{width: 100%;}
	.about1 .text{width: 100%;padding: 0 !important;}
	.about1 .text h3{margin-top: 30px;margin-bottom: 5px;}
	.about1 .text h4{position: static;width: 100%;writing-mode:initial;padding-top: 0;transform: initial;margin-bottom: 20px;}
	.about1 .text h4::after{display: none;}
	.about2 .img{width: 100%;padding-left: 0;}
	.about2 .text{width: 100%;padding: 0 !important;}
	.about2 .text h3{margin-top: 30px;margin-bottom: 5px;}
	.about2 .text h4{position: static;width: 100%;writing-mode:initial;padding-top: 0;transform: initial;margin-bottom: 20px;}
	.about2 .text h4::after{display: none;}
	.flash_mb{position: static;}
	.flash_mb+*{margin-top: 0;}
	/* 新闻动态 */
	.news1 .uls li .img{width: 100%;padding-top: 75%;}
	.news1 .uls li .text{width: 100%;}
	.news1 .uls li{width: 49%;margin-right: 2%;}
}
@media (max-width:820px) {
	main{margin-top: 60px;}
	/* banner */
	.index1 .swiper-slide img{min-height: 145px;object-fit: cover;object-position: center;}
	.index1 .swiper-slide .text h2{text-align: center;font-size: 1.125rem;margin-bottom: 5px;}
	.index1 .swiper-slide .text p{text-align: center;font-size: 0.875rem;line-height: 1.4;}
	.index1 .swiper-slide .text h2:nth-child(1){margin-bottom: 5px;}
	.index1 .swiper-slide .text p:nth-child(1){margin-bottom: 5px;}
	.index1 .swiper-slide .text h2:nth-child(2){font-size: 1rem;}
	.index1 .swiper-slide:nth-child(2n+1) .text h2 span{font-size: .875rem;}
	.index1 .swiper-slide:nth-child(2n) .text h2 span{display: none;}
	.index1 .swiper-slide:nth-child(2n) .text h2{font-size: 1.125rem;}
	.index1 .swiper-slide:nth-child(2n+1) .text p{font-size: .875rem;line-height: .8;}
	/* banner底部按钮 */
	.index1 .swiper-pagination{padding-bottom: 10px;}
	.index1 .swiper-pagination>span{padding-bottom: 10px;width: 80px;}
	.index1 video{width: 100%;}
	/* 首页-影响力 */
	.index_impact{padding: 30px 0 30px;}
	.index_impact .uls li{width: 100%;min-height: initial!important;}
	.index_impact .uls li:last-child{margin-bottom: 0;}
	.index_impact .uls li{width: 100%;margin-right: 0;margin-bottom: 15px;padding: 20px 0;}
	.index_impact .uls li::after{height: 100%;}
	.index_impact .uls li .url+.text{display: none;}
	.index_impact .uls li .url{margin-top: 0;opacity: 1;padding: 0 10px 30px;}
	.index_impact .uls li .url a{color: #fff;padding-top: 15px;padding-bottom: 15px;}
	.index_impact .uls li .text{margin-bottom: 0;opacity: 1;padding: 20px 10px 30px;}
	.index_impact .uls li .text h2{color: #fff;margin-bottom: 10px;}
	.index_impact .uls li:hover .text p{overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 8;text-overflow: ellipsis;}
	.index_impact .uls li .text p{color: #fff;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 8;text-overflow: ellipsis;}
	.index_title h2{margin-bottom: 20px;font-size: 1.25rem;}
	/* 首页-横幅 */
	.index_banner{padding: 30px 0;}
	.index_banner h3{margin-bottom: 5px;}
	.index_banner h2{margin-bottom: 5px;font-size: 1.25rem;}
	.index_banner p{font-size: 1rem;}
	/* 首页-产品中心 */
	.index_product{padding: 30px 0 20px;}
	.index_product .swiper-slide .txt{padding: 30px 20px;height: 141px;}
	.index_product .swiper-slide .txt p{font-size: 1rem;}
	.index_product .mySwiper2{padding-bottom: 60px;}
	.index_product_btn{width: 88px;}
	.index_product_btn .swiper-button-prev{width: 35px;height: 35px;}
	.index_product_btn .swiper-button-next{width: 35px;height: 35px;}
	/* 首页-子公司 */
	.index_children{padding: 30px 0;}
	.index_children .titles h3{font-size: 1.125rem;margin-bottom: 10px;}
	.index_children .titles h2{font-size: 1.25rem;margin-bottom: 15px;}
	.index_children .titles p{margin-bottom: 20px;}
	.index_children .swiper-slide{padding: 15px 20px;margin-right: 0;}
	.index_children .swiper-slide p{margin-bottom: 15px;}
	.index_children .swiper{padding-bottom: 30px;}
	/* 首页-新闻中心 */
	.index_news{padding: 30px 0;}
	.index_news .left .text{width: 100%;padding-right: 0;margin-bottom: 20px;}
	.index_news .left .uls{width: 100%;padding-left: 0;}
	.index_news .left .text h3 a{font-size: 1.125rem;margin: 10px 0;}
	.index_news .left .text>p{padding-top: 10px;}
	.index_news .left .uls li h3 a{font-size: 1.125rem;}
	.index_news .left .uls li{margin-bottom: 20px;}
	.index_news .right li h3 a{font-size: 1.125rem;}
	.index_news .right li:last-child{ border: none !important; }
	/* 首页-关于我们 */
	.index_about{padding: 30px 0;background-position: left}
	.index_about h2{text-align: center;font-size: 1.25rem;}
	.index_about h3{text-align:center;}
	.index_about p{margin: 0 auto 3%;}
	.index_about a{text-align:center;margin: 0 auto;justify-content: center;padding: 15px 0;}
	/* 首页-联系我们 */
	.index_contact{padding: 30px 0;}
	.index_contact h2{font-size: 1.5rem;}
	.index_contact h3{margin-bottom: 20px;font-size: 1.125rem;}
	.index_contact a{padding: 9px 15px;}
	/* 底部 */
	.footer_nav{display: none;}
	.footers .flex{justify-content: center;padding-bottom: 10px;}
	.footers{padding: 30px 0 30px;}
	.footer_txt .er{margin-top: 10px;}
	.footer_txt .er div p{margin-top: 0;}
	.footer_friendship{padding: 10px 0;}
	.footer_copyright{padding-top: 10px;}
	.footer_copyright p span{margin: 0;display: block;text-align: center;margin-top: 5px;}
	.footer_friendship a{margin-right: 14px;}
	.footer_copyright p{font-size: 0.9375rem;}
	.footer_copyright p a{font-size: 0.9375rem;}
	/* 子页banner */
	.z-banner img{min-height: 230px;object-fit: cover;}
	.z-banner .text p{text-align: center;font-size: 0.875rem;line-height: 1.4;margin-bottom: 5px;}
	.z-banner .text h2{font-size: 1rem;text-align: center;}
	/* 关于我们 */
	.z-pad{padding: 30px 0 40px}
	.about1{padding: 30px 0 40px;}
	.about1 .text h3{font-size: 1.25rem;margin: 10px 0 0px;}
	.about1 .text h4{position: static;width: 100%;writing-mode:initial;padding-top: 0;transform: initial;margin-bottom: 8px;}
	.about1 .text .txt{font-size: 1rem;}
	.about2{padding: 30px 0 40px;}
	.about2 .text h3{font-size: 1.25rem;margin: 10px 0 0px;}
	.about2 .text h4{position: static;width: 100%;writing-mode:initial;padding-top: 0;transform: initial;margin-bottom: 8px;}
	.about2 .text .txt{font-size: 1rem;}
	.about3{padding: 30px 0 10px;}
	.about3 .swiper-slide h3::after{width: 76%;}
	.about3 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.about3 .swiper-slide h3{margin-bottom: 50px;font-size: 1.25rem;}
	.about3 .swiper-slide:hover h3{font-size: 1.375rem;}
	.about4{padding: 30px 0;}
	.about4 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.about4 .swiper-slide p{margin-top: 5px;}
	.about4 .swiper{padding-bottom: 30px;}
	.about4 .swiper-pagination{bottom:0;}
	.about5{padding: 30px 0;}
	.about5 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.about5 .swiper-slide p{margin-top: 5px;}
	.about5 .swiper{padding-bottom: 30px;}
	.about5 .swiper-pagination{bottom:0;}
	/*产品中心页面*/
	.z-pad{ padding:2rem 0;}
	.mainwrap .an{ flex-wrap: wrap;}
	.main_l{ width:100%;}	
	.main_r{ width: 100%; padding-left: 0; margin-top: 1.5rem;}
	.case-wrap .case-list .clearfix li{width:49%;margin-bottom:20px;float:left;position:relative;overflow:hidden;margin-right: 2%;}
	.case-wrap .case-list .clearfix li:nth-child(2n){margin-right: 0;}
	/*产品详情页*/
	.pagede_con1 .pc_detail{ flex-wrap: wrap;}
	.pagede_con1_l{ width: 100%;}
	.pagede_con1_r{ width: 100%; margin-left: 0; margin-top: 2rem;}
	.detail_img01 img{width: 100%;min-height: initial;height: auto;}
	.pagede_con1_r p{ display: none;}
	#s1 img{display: block;}
	/*分页*/
	.pageNum{ margin:0;}
	.pagination > li > a, .pagination > li > span{ padding:5px 12px;}
	/* 可持续发展 */
	.sustained1 .an>h2{font-size: 1.25rem;margin-bottom: 20px;}
	/* 可持续发展-可持续报告 */
	/* .download1 .uls li{width: 49%;margin-right: 2%;}
	.download1 .uls li:nth-child(3n){margin-right: 2%;}
	.download1 .uls li:nth-child(2n){margin-right: 0;} */
	/* 子页面-联系方式 */
	.contact1{padding: 30px 0 40px;}
	.contact1 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.contact1 .uls li{width: 100%;margin-right: 0;height: auto;padding: 15px 20px 15px;min-height: initial;}
	.contact1 .uls li h3{margin: 10px 0;font-size: 1rem;}
	.contact1 .uls li .img img{max-height:40px;}
	/* 公司治理 */
	/* .investor1 .uls li{width: 49%;margin-right: 2%;}
	.investor1 .uls li:nth-child(3n){margin-right: 2%;} */
	.investor1 .uls li:nth-child(2n){margin-right: 0;}
	.investor1 h2{font-size: 1.25rem;margin-bottom: 20px;}
	/* 公司治理-详情页 */
	.investor_detail3 h1{font-size: 1.25rem;margin-bottom: 20px;}
	/* 子页面-主要股东 */
	.investor2 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.investor2 .uls li{padding: 20px 15px;width: 100%;margin-right: 0;margin-bottom: 15px;}
	.investor2 .uls li h3{font-size: 1.125rem;}
	/* 子页面-公司新闻 */
	.news1 .uls li{margin-right: 2%;width: 49%;margin-bottom: 15px;}
	.news1 .uls li:nth-child(3n){margin-right: 2%;}
	.news1 .uls li:nth-child(2n){margin-right: 0%;}
	.news1 .uls li .text{padding: 20px 15px;}
	.news1 .uls li h3{font-size: 1rem;}
	.news1 .uls li .times{margin-top: 5px;}
	.news1 .uls li h3{margin-bottom: 5px;}
	.news1 .main_r{margin-top: 0;}
	/* 子页面-人力资源-招聘岗位 */
	.join1 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.join1 .uls li .flex h3{font-size: 1rem;}
	.join1 .uls li .flex{padding: 10px 10px;}
	.join1 .uls li .flex i{width: 24px;height: 24px;}
	.join1 .uls li .flex i::after{width: 12px;}
	.join1 .uls li .flex i:before{height: 12px;}
	.join1 .uls li .text{padding: 20px 15px;}
	.join1 .uls li{margin-bottom: 15px;}
	.join1 .uls{margin-top: 20px;}
	.join1 .uls li .text a{line-height:38px;}
	/* 搜索页面 */
	.search1 h2{font-size: 1.25rem;margin-bottom: 20px;}
	.search1 .uls li{margin-bottom: 15px;padding: 15px 15px;}
	/* .search1 .uls li:nth-child(3n){margin-right: 2%;}
	.search1 .uls li:nth-child(2n){margin-right: 0%;} */
	.search_form input{height: 38px;line-height: 38px;}
	.search_form button{height: 38px;line-height: 38px;}
}
@media(max-width:767px){
	/* 子页面-科研创新页面 */
	.pagenews_item ul .li1 a{ flex-wrap: wrap;}
	.pagenews_item ul .li1 .img-box{ width: 100%; padding-right: 0;}
	.pagenews_item ul {padding:40px 0}
	.pagenews_item ul{padding: 0;}
	.pagenews_item ul .li1 .content-title{width: 100%;line-height:1.5;margin-bottom: 5px;}
	.pagenews_item ul  .right-content{width:100%}
	.pagenews_item ul  .content-desc{padding:0}
	.pagenews_item ul  .img-box{width:100% !important}
	.pagenews_item ul .li1 .img-box img{max-width:100%;padding-right:0}
	.pagenews_item ul .li1 .right-content{ width: 100%; margin-left: 0;}
	.pagenews_item ul  .right-content p.content-desc{padding:0}
	.pagenews_item ul  .right-content:after{margin:0 !important;}
	.pagenews_item ul .li1 .content-time{margin-top: 6px;display:inline-block;}
	.pagenews_item ul .right-content p.content-desc{margin-bottom: 10px;}
	.pagenews_item ul .li1{box-shadow: 0 7px 13px rgba(6,6,6,.10);}
	/* 子页面-科研创新详情页面 */
	.page_de2 .de_info{margin-top: 5px;padding-bottom: 10px;}
	.detail_but{margin-top: 30px;}
	.detail_but a{padding: 0 15px;}
	/* 子页面-新闻详情页面 */
	.page_de2{ padding:1rem}
	.page_de2 h1{font-size: 1.25rem;}
	.de_info2{ padding:1rem 0}
	.de_info2 p{ line-height: 2;}
	/* 子页面-福利关怀页面 */
	.join_con2_01 dl{ width: 100%; margin-right: 0;}
	.join_con2_02 dl{ width: 48%; margin-right: 1%;}
	.join_con2_02 dl:nth-of-type(2n){ margin-right: 0;}
	.join_con2_02 dl dt img{ margin-bottom: 0; width:40px;}
	.join_con2_02 dl dd{ padding:2%;}
}
@media(max-width:567px){ 	
	/* 首页banner */
	.index1 .swiper-pagination>span{padding-bottom: 5px;}
	.index1 .swiper-pagination{padding-bottom: 0;}
	/* 首页栏目推荐 */
	.index_title h2{margin-bottom: 10px;}
	.index_title h3{margin-bottom: 20px;font-size: 1.125rem;margin-top: 0;}
	.index_impact .uls li{padding: 10px 0;}
	.index_impact .uls li .text{padding-bottom: 10px;}
	.index_impact .uls li .text h2{font-size: 1.25rem;}
	.index_impact .uls li .url a{padding: 10px 10px 10px 0;}
	/* 首页产品中心 */
	.index_product .swiper-slide .img .text h3{font-size: 1.125rem;}
	.index_product .swiper-slide .txt{padding: 20px 15px;height: auto;}
	.index_children .titles p{font-size: 1rem;line-height:1.5;}
	.index_contact h2{font-size: 1.25rem;}
	.index_children .titles h3{font-size: 1.125rem;margin-top: 0;}
	.index_children .titles h2{margin-bottom: 10px;}
	.index_children .swiper-slide{padding: 10px 15px;}
	/* 子页面-产品 */
	.case-wrap ul.clearfix li h3{font-size: 1rem;margin-top: 5px;}
	/* 分页 */
	.pagenews_item ul  .right-content{max-width:100%;float:none}
	.pagenews_item ul  .right-content p.content-desc{padding:0}
	/* 子页面-可持续发展-可持续报告 */
	.download1 .uls li{width: 100%;margin-right: 0%;padding: 15px 10px;margin-bottom: 15px;}
	.download1 .uls li:nth-child(3n){margin-right: 0%;}
	.download1 .uls li h3{margin-bottom: 5px;}
	/* 子页面-公司治理 */
	.investor1 .uls li{width: 100%;margin-right: 0%;padding: 15px 10px;margin-bottom: 15px;}
	.investor1 .uls li:nth-child(3n){margin-right: 0%;}
	/* 子页面-公司新闻 */
	.news1 .uls li{margin-right: 0%;width: 100%;}
	.news1 .uls li:nth-child(3n){margin-right: 0%;}
	.news1 .uls li:nth-child(2n){margin-right: 0%;}
	/* 搜索页面 */
	.search1 .uls li{width: 100%;margin-right: 0%;}
	.search1 .uls li:nth-child(3n){margin-right: 0%;}
	/* 子页面-产品详情 */
	#hi-tab ul li a{padding: 10px 0 !important;}
	.pagede_con1_r{margin-top: 1rem;}
	.detail_but{margin-top: 15px;}
	.test-down-area h5{height: 30px;line-height:30px;margin-bottom: 10px;}
	/* 子页面-研究成果详情 */
	.page_de2 .detail_but{}
}
@media (max-width:320px) {
	.index1 .swiper-slide:nth-child(2n) .text p{display:none;}
}