.menu{
	display: none;
}
.menu_down{
	display: none;
}
.header{
	width: 100%;
	height: 110px;
	background: #fff;
}
.index_logo{
	height: 100%;
	float: left;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	padding-left: 60px;
}
.nav{
	height: 100%;
	float:left;
	padding-left: 160px;
	position: relative;
}
.nav ul li{
	height: 100%;
	line-height: 110px;
	float: left;
	padding: 0 32px;
	position: relative;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.nav ul li a{
	color: #666666;
	font-size: 17px;
	display: block;
	text-transform: uppercase;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	font-family: 'Microsoft Yahei';
}
.nav ul li a:hover{
	color: #256576;
	font-weight: bold;
}
.nav ul li.hover2 a{
	color: #256576;
	font-weight: bold;
}
.nav ul li::after{
	content: '';
	position:absolute;
	width: 7px;
	height: 6px;
	background: url(../images/sanjiao.jpg) no-repeat center center;
	left:calc(50% - 3.5px);
	top:23px;
	opacity: 0;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.nav ul li:hover::after{
	opacity: 1;
}
.nav ul li.hover2::after{
	opacity: 1;
}
.language{
	width: 110px;
	height: 26px;
	border:1px solid #d2d3d8;
	border-radius: 20px;
	position: absolute;
	right:100px;
	top:calc(50% - 13px);
	overflow: hidden;
}
.language .img{
	position: absolute;
	width: 15px;
	height: 15px;
	left:10px;
	top:calc(50% - 7.5px);
}
.language select{
	width: 100%;
	height: 100%;
	padding-left:32px;
	background: url(../images/select2.png) no-repeat scroll 90px center transparent;
}
.search{
	float: right;
	height: 100%;
	position: relative;
	cursor:pointer;
}
.search_input{
	position: absolute;
	right:0px;
	bottom:-80px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	width: 500px;
	height: 80px;
	z-index: 9999;
	background: rgb(0,0,0,.7);
	display: none;
}
.search_input input{
	background: rgb(0,0,0,0);
	padding-left: 20px;
	color: #fff;
	width: 100%;
	height: 100%;
}
.search_input button{
	color: #fff;
    width: 20%;
    height: 100%;
    background:rgba(97,183,60,1);
    position: absolute;
    right:0px;
    bottom: 0;
    z-index: 3;
}
.search_input{
	display: none;
}
.module{
	background:url(../images/xian_bg.jpg);
	background-repeat: repeat-y;
	background-position: center top;
}
.w1400{
	max-width: 1400px;
	margin: 0 auto;
}
.module_page1 ul li{
	float: left;
	width: 280px;
	height: 200px;
	text-align: center;
	padding-top:45px;
}
.module_page1 ul li h3{
	color: #256576;
	font-size: 50px;
	font-weight: bold;
	padding-bottom: 7px;
}
.module_page1 ul li h3 span{
	font-size: 16px;
	color: #666;
}
.module_page1 ul li p{
	font-size: 15px;
	color: #666;
}
.module_page2{
	position: relative;
	padding-top: 60px;
	padding-bottom: 70px;
}
.module_page2::before{
	content: '';
	position: absolute;
	left:0;
	top:-24px;
	width: 48px;
	height: 260px;
	background: #60b73c;
	z-index: 999;
}
.module_page2::after{
	content: '';
	position: absolute;
	right:80px;
	top:220px;
	width: 96px;
	height: 482px;
	background:url(../images/logo2.jpg) no-repeat center center;
	z-index: 999;
}
.module_page2 figcaption{
	position: absolute;
	width: 852px;
	height: 600px;
	background: #f5fcfe;
	left:0;
	top:100px;
	z-index: 99;
	padding-top: 52px;
	padding-left: 300px;
	
}
.module_page2 figcaption h6{
	font-size: 16px;
	font-weight: bold;
	color: #e62129;
	padding-bottom: 10px;
}
.module_page2 figcaption h3{
	font-size: 40px;
	font-weight: bold;
	color: #2b697a;
	padding-bottom: 30px;
}
.module_page2 figcaption p{
	font-size: 15px;
	color: #666;
	line-height: 36px;
	max-width:520px;
	margin-bottom: 65px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}
.module_page2 figcaption a{
	display: block;
	width: 200px;
	height: 45px;
	background: #e62129;
	padding-left: 16px;
	border-radius: 10px;
	font-size: 15px;
	color: #fff;
	line-height: 45px;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.module_page2 figcaption a::after{
	position: absolute;
	content: '';
	right:30px;
	top:calc(50% - 3.5px);
	width: 27px;
	height: 7px;
	background: url(../images/more_jt.jpg)no-repeat center center;
}
.module_page2 figcaption a:hover{
	padding-left: 30px;
}
.module_page2 .w1400{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.nav2_list ul li{
	float:left;
	padding: 0 18px;
}
.nav2_list ul li:first-child{
	padding-left:32px;
}
.nav2_list ul li a{
	color: #888;
	font-size: 15px;
}
.nav2_list ul li:hover a{
	color: #000;
}
.nav2_list{
	max-width: 600px;
}
.module_page2 figure{
	max-width: 800px;
	height: 690px;
}
.module_page2 figure video{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.in_title{
	color:#2b697a;
	font-weight: bold;
	font-size: 40px;
	text-align: center;
}

.inpro_list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 45px;
}
.inpro_list{
	overflow: hidden;
	padding-bottom: 40px;
}
.inpro_list ul li{
	width: 33.33%;
	position:relative;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	z-index: 1;
}
.inpro_list ul li figure{
	overflow: hidden;
	-webkit-filter: brightness(0.50);
	filter: brightness(0.50);
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.inpro_list ul li figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inpro_list ul li figcaption{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: auto;
	padding: 40px 0px 40px 48px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.inpro_list ul li figcaption h3{
	font-size: 34px;
	color: #fff;
	position: relative;
	padding-top: 40px;
}
.inpro_list ul li figcaption h3::after{
	content:'';
	position: absolute;
	left:0;
	top:0;
	width: 45px;
	height: 3px;
	background: #fff;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s; 
}
.inpro_list ul li figcaption p{
	font-size: 20px;
	color: #fff;
	font-weight: lighter;
	padding-top: 3px;
}

.inpro_list ul li:hover figcaption{
	-webkit-transform:translateY(200px);
	-ms-transform:translateY(200px);
	-o-transform:translateY(200px);
	transform:translateY(200px);
	background:rgba(43,105,122,0.8);
}
.inpro_list ul li:hover figcaption h3::after{
	background: #60b73c;
}
.inpro_list ul li:hover{
	-webkit-filter: brightness(1);
	filter: brightness(1);
	border:4px solid #e62129;
	z-index: 2;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.inpro_list ul li.nonecolor figure{
	    filter: brightness(1);
}
.inpro_list ul li.nonecolor:hover figcaption{
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	-o-transform:translateY(0);
	transform:translateY(0);
	background:none;
}
.inpro_list ul li.nonecolor:hover{
	-webkit-filter: brightness(1);
	filter: brightness(1);
	border:0px solid #e62129;
	z-index: 2;
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.module_page3{
	width: 100%;
	padding: 40px 0 60px 0;
	position: relative;
}
.module_page3::after{
	position: absolute;
	content: '';
	width: 48px;
	height: 260px;
	background: #60b73c;
	right:0px;
	bottom:-16%;
	z-index: 99;
}
.news_swiper{
	display: -webkit-flex;
	display: flex;
	align-items: center;
	margin-top: 50px;
}
.news_swiper .gallery-thumbs{
	width: 600px;
	height: 450px;
}
.news_swiper .gallery-top{
	float: right;
	width: 800px;
	height: 365px;
	background:#ebf9fd;
}
.news_swiper .gallery-top figcaption{
	padding: 75px 30px 0 57px;
}
.news_swiper .gallery-top figcaption h6{
	font-size: 13px;
	color: #333;
	padding-bottom: 10px;
}
.news_swiper .gallery-top figcaption h3{
	font-size: 24px;
	color: #333;
	font-weight: bold;
	padding-bottom: 18px;
}
.news_swiper .gallery-top figcaption p{
	font-size: 16px;
	color: #888;
	line-height: 24px;
	padding-bottom: 58px;
}
.news_swiper .gallery-top figcaption a{
	display: block;
	font-size: 14px;
	color: #999;
	position: relative;
}
.news_swiper .gallery-top figcaption a::after{
	position: absolute;
	content:'';
	width: 28px;
	height: 1px;
	background: #999;
	top:50%;
	left:80px;
}
.news_swiper .gallery-top figcaption a:hover{
	color: #e62129;
	text-decoration: underline;
}
.news_swiper .swiper-button-next.swiper-button-white{
    background: url(../images/next22.png) no-repeat center center;
    right: 3px;
    top:auto;
    bottom:3px;
    width: 80px;
    height: 50px;
}
.news_swiper .swiper-button-prev.swiper-button-white{
    background: url(../images/prev22.png) no-repeat center center;
    left:auto;
    right:88px;
    top:auto;
    bottom:3px;
    width: 80px;
    height: 50px;
}
.innews_down ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.innews_down ul li{
	width:calc(50% - 10px);
	margin-right: 20px;
	border:1px solid #eee;
	margin-bottom: 20px;
	background: #fff;
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
}
.innews_down ul li:nth-child(2n){
	margin-right: 0;
}
.innews_down ul li a{
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.innews_down ul li .ul_time{
	width: 123px;
	height: 123px;
	background: #999;
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
}
.ul_time h3{
	font-size: 48px;
	color: #fff;
	text-align: center;
	padding-top:15px;
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
}
.ul_time h6{
	font-size: 16px;
	color: #fff;
	text-align: center;
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
}
.innews_down ul li .ul_con{
	width: 79%;
	margin: 0 30px 0 30px;
	overflow: hidden;
}
.innews_down ul li .ul_con h3{
	font-size: 18px;
	color: #666;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
}
.innews_down ul li .ul_con h3:before{
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
	content:'——';
	margin-left:-63px;
}
.innews_down ul li .ul_con p{
	font-size: 12px;
	color: #999;
	line-height: 24px;
	padding-top: 10px;
	-webkit-transition: ease-in-out.5s;
	-o-transition: ease-in-out.5s;
	transition: ease-in-out.5s;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.innews_down ul li:hover .ul_con h3{
	-webkit-transform:translateX(0px);
	-ms-transform:translateX(0px);
	-o-transform:translateX(0px);
	transform:translateX(0px);
	color: #fff;
}
.innews_down ul li:hover .ul_con h3:before{

	margin-left:-33px;
}
.innews_down ul li:hover .ul_time{
	background:#60b73c;
}
.innews_down ul li:hover{
	background: #2b697a;
}
.innews_down ul li:hover .ul_con p{
	color: #b4d1d9;
}
.innews_down ul{
	margin-top: 40px;
}
.module_page4{
	padding: 20px 0 70px 0;
}


.hist_page_tab1{
	background:url("../images/line.jpg") left top 69px repeat-x;
}
.hist_page_tab1 .swiper-container{
	padding-top: 50px;
}
.hist_page_tab1 .swiper-slide{
	text-align: center;
	cursor: pointer;
	position: relative;
}
.hist_page_tab1 .swiper-slide .years{
	font-size: 20px;
	color: #999;
	line-height: 60px;
	padding-top: 40px;
	background:url("../images/point.jpg") left 50% top 10px no-repeat;
}
.hist_page_tab1 .swip_choose .years{
	font-size: 32px;
	color: #e62129;
	font-weight: bold;
	background:url("../images/point2.jpg") left 50% top 10px no-repeat;
}
.hist_page_tab1 .swiper-pagination-bullet-active{
	background: #788498;
}

.years img{
	position: absolute;
	bottom:0;
	left:50%;
	margin-left: -5px;
	z-index: 999;
}
.histab2_time span{
	font-size: 32px;
	color: #788498;
}
.histab2_time i{
	font-size: 48px;
	color: #788498;
	padding-left: 10px;
}
.hist_page_tab2{
	max-width: 1400px;
	margin: 0 auto;
	margin-top: 55px;
}
.hist_page_tab2_in{
	display: none;
}
.hist_page_tab2_in:first-child{
	display: block;
}

.hist_page_tab1 .swiper-button-next{
	width: 9px;
	height: 18px;
	background:url("../images/right22.jpg") left top no-repeat;
	top:40%;
	right:0;
	margin-top: 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.hist_page_tab1 .swiper-button-prev{
	width: 9px;
	height: 18px;
	background:url("../images/left22.jpg") left top no-repeat;
	top:40%;
	left:0;
	margin-top: 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.histab2_list h3{
	font-size: 6rem;
	color: #e62129;
	font-weight: 100;
	padding-bottom: 30px;
	-webkit-transform: skewX(-5deg);
	-ms-transform: skewX(-5deg);
	-o-transform: skewX(-5deg);
	transform: skewX(-5deg);
}
.histab2_list p{
	font-size: 1.6rem;
	color: #777;
	line-height: 2;
}
.histab2_tukuang{
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 60px;
}
.histab2_tukuang .histab2_time{
	width: 660px;
	height: 450px;
	overflow:hidden;
}
.histab2_tukuang .histab2_time img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.histab2_tukuang .histab2_list{
	padding-left: 5%;
	width: 50%;
}
.hist_page{
	padding-bottom: 100px;
}
.module_page5{
	padding-top: 20px;
}

.footer_con{
	background: #022832;
	padding:80px 0 75px 0;
}
.footer_left{
	float: left;
}
.footer_right{
	float: right;
}
.footer_mod{
	float:left;
	margin-right:95px;
}
.footer_right .footer_mod:last-child{
	margin-right: 0;
}
.footer_mod .fo_title{
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	padding-bottom: 20px;
	position: relative;
}
.footer_mod .fo_title::after{
	content: '';
	position: absolute;
	width: 37px;
	height: 3px;
	background: #60b73c;
	left:0;
	bottom:0;
}
.footer_mod ul{
	margin-top:15px;
}
.footer_mod ul li{
	line-height: 40px;
}
.footer_mod ul li a{
	font-size: 15px;
	color: #8d9699;	
}
.footer_mod ul li a:hover{
	color: #fff;
}
.footer_mod_en .footer_mod{
	
	margin-right:65px;
}
.footer_mod_en .footer_mod:last-child{
	width:395px;
}
.in_contact{
	padding-top: 15px;
	border-bottom:1px solid #394e54;
	padding-bottom:18px;
}
.in_contact p{
	line-height: 30px;
	color: #8d9699;
	font-size: 15px;
	padding-left: 20px;
	position: relative;
	padding:5px 0 5px 20px;
}
.in_contact p:first-child::before{
	content:'';
	position: absolute;
	left:0;
	top:calc(50% - 8.5px);
	width: 13px;
	height: 17px;
	background: url(../images/con_icon1.jpg) no-repeat center center; 
}
.in_contact p:nth-child(2)::before{
	content:'';
	position: absolute;
	left:0;
	top:12px;
	width: 13px;
	height: 17px;
	background: url(../images/con_icon2.jpg) no-repeat center center; 
}
.ewm{
	width: 98px;
	height: 98px;
	border:4px solid #394e54;
	background: #fff;
}
.ewm img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer_mod dl{
	margin-top:35px;
}
.footer_mod dl dd{
	float: left;
	display:-webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	margin-right: 35px;
}
.footer_mod dl dd p{
	color: #8d9699;
	font-size: 12px;
	padding-left:10px;
	line-height: 24px;
}
.inside_banner{
	width: 100%;
	height: 550px;
	overflow: hidden;
}
.inside_banner h3{
	font-size: 60px;
	color: #fff;
	text-align: center;
}
.inside_banner p{
	font-size: 20px;
	color: #fff;
	font-weight: lighter;
	text-align: center;
	padding-top: 35px;
}
.wk{
	width: 100%;
	height: 100%;
	-webkit-display: flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.wn{
	width: inherit;
}
.wn ul{
	margin-top: 130px;
}
.wn ul li{
	float: left;
	width: 20%;
	background:#256576;
	height: 60px;
	line-height: 60px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	position: relative;
}
.wn ul li a{
	display: block;
	width:100%;
	height:100%;
	text-align: center;
	font-size: 18px;
	color: #fff;
}
.wn ul li.choose{
	background: #e62129;
}
.wn ul li:hover{
	background: #e62129;
}
.wn ul li::after{
	content: '';
	position: absolute;
	right: 0px;
	top:0px;
	width:1px;
	height: 100%;
	background: #217a92;
}
.wn ul li:last-child::after{
	display: none;
}
.inside_page{
	padding:80px 0;
	position: relative;
}
.inside_page::before{
	content: '';
    position: absolute;
    left: 0;
    top:25%;
    width: 48px;
    height: 260px;
    background: #60b73c;
    z-index: 99;
}
.inside_page::after{
	position: absolute;
    content: '';
    width: 48px;
    height: 260px;
    background: #60b73c;
    right: 0px;
    top:65%;
    z-index: 99;
}
.inside_title{
	text-align: center;
	font-size: 32px;
	color: #666;
	padding-bottom: 65px;
	position: relative;
}
.inside_title::before{
	content:'';
	display:inline-block;
	width: 40px;
	height: 1px;
	background: #ccc;
	vertical-align:middle;
	
}
.inside_title::after{
	content:'';
	display:inline-block;
	width: 40px;
	height: 1px;
	background: #ccc;
vertical-align:middle;
	
}
.about_top figure{
	float: left;
	width: 600px;
	height: 430px;
}
.about_top figure video{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.about_top figcaption{
	float:left;
	margin-left: 75px;
	width: 453px;
}
.about_top figcaption ul li{
	float:left;
	width: 45%;
	height: 145px;
	border-top:1px solid #e5e5e5;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
.about_top figcaption ul li:nth-child(2n){
	margin-left:10%;
}
.about_top{
	padding: 0 36px;
}
.about_top figcaption ul li h3{
	width: 100%;
	text-align: center;
	color: #256576;
    font-size: 50px;
    font-weight: bold;
    padding-bottom: 7px;
}
.about_top figcaption ul li h3 span{
	font-size: 16px;
	color: #666;
}
.about_top figcaption ul li p{
	width: 100%;
	text-align: center;
	font-size: 15px;
    color: #666;
}
.about_top figcaption ul li:nth-child(5){
	border-bottom:1px solid #e5e5e5;
}
.about_top figcaption ul li:nth-child(6){
	border-bottom:1px solid #e5e5e5;
}
.about_bottom{
	padding: 0 36px;
	margin-top: 65px;
}
.about_bottom p{
	font-size: 16px;
	color: #444;
	line-height: 36px;
}
.about_bottom p span{
	color: #000;
	font-weight: bold;
}
.about_bottom h3{
	font-size: 20px;
	font-weight: bold;
	color: #256576;
}
.about_bottom h4{
	font-weight: bold;
	font-size: 16px;
	color: #000;
}

.fre_page{
	background: #f7f7f7;
}
.about_con1 ul li{
	margin-bottom:40px;
	height: 485px;
	
}

.about_con1 ul li figcaption{
	overflow-y: scroll;
}
.about_con1 ul li figcaption::-webkit-scrollbar {  
  width: 14px;  
  height: 14px;  
}  
  
.about_con1 ul li figcaption::-webkit-scrollbar-track,  
.about_con1 ul li figcaption::-webkit-scrollbar-thumb {  
  border-radius: 999px;  
  border: 5px solid transparent;  
}  
  
.about_con1 ul li figcaption::-webkit-scrollbar-track {  
  box-shadow: 1px 1px 5px rgba(255,255,255,.2) inset;  
}  
  
.about_con1 ul li figcaption::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0,0,0,.5) inset;
}  
  
.about_con1 ul li figcaption::-webkit-scrollbar-corner {  
  background: transparent;  
} 


.about_con1 ul li figure{
	width: 50%;
	height: 100%;
	float:left;
}
.about_con1 ul li figure img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.about_con1 ul li figcaption{
	width: 50%;
	height: 100%;
	background: #fff;
	padding:0 55px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	float:left;
}
.about_con1 ul li:first-child figcaption{
	-webkit-align-items: normal;
	align-items: normal;
}
.about_con1 ul li:last-child figcaption{
	-webkit-align-items: normal;
	align-items: normal;
}
.about_con1 ul li figcaption h4{
	font-size: 24px;
	font-weight: 100;
	color: #000;
	padding-bottom: 10px;
}
.about_con1 ul li figcaption h3{
	font-size: 30px;
	color: #000;
	padding-bottom: 30px;
	position: relative;
	margin-bottom: 30px;
}
.about_con1 ul li figcaption h3::after{
	content:'';
	position: absolute;
	left:0;
	bottom:0;
	width: 45px;
	height: 6px;
	background: #4bb433; 
}
.about_con1 ul li figcaption p{
	font-size: 15px;
	color: #666;
	line-height: 38px;
}
.about_con1 ul li:nth-child(2n) figure{
	float: right;
}
.his_page .inside_title{
	padding-bottom: 15px;
}
.his_page::before{
	top:45%;
}
.his_page::after{
	display: none;
}

.honor_list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.honor_list ul li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
}
.honor_list ul li:nth-child(3n){
	margin-right: 0;
}
.honor_list ul li figure{
	width: 100%;
	padding: 20px;
	text-align: center;
	height: 289px;
	box-shadow: 0px 0px 3px #ccc;
}
.honor_list ul li figure img{
	width: 100%;
	height: 100%;
	object-fit:contain;
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
}
.honor_list ul li figcaption{
	width: 100%;
	text-align: center;
	padding:10px 0;
	font-size: 16px;
	color: #666;
}
.honor_list ul li:hover figure img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.pro_pading ul{
	padding-top: 20px;
	display: flex;
	display: -webkit-flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.pro_pading ul li{
	width: 40px;
	height: 40px;
	background: #fff;
	margin:0 5px;
	box-shadow: none;
	border:1px solid #ccc;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.pro_pading ul li a{
	width: 100%;
	height: 40px;
	line-height: 40px;
	color: #999;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	display: block;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.pro_pading ul li:hover{
	background: #256576;
	border:1px solid #fff;
}
.pro_pading ul li:hover a{
	color: #fff;
}
.pro_pading ul li.hover3{
	background: #256576;
	border:1px solid #fff;
}
.pro_pading ul li.hover3 a{
	color: #fff;
}
.boss_top figure{
	float: left;
}
.boss_top figcaption{
	float:left;
	width: 530px;
	height:394px;
	background: #eeeeee;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.boss_top figcaption h4{
	font-size: 20px;
	color: #444;
	padding-bottom:35px;
}
.boss_top figcaption h3{
	color: #256576;
	font-size: 32px;
	font-weight: lighter;
	letter-spacing:5.2px;
}
.boss_top figcaption p{
	color: #999999;
	font-size: 12px;
	text-transform: uppercase;
}
.w1180{
	max-width: 1180px;
	margin: 0 auto;
}

.wa ul li{
	width: 33.33%;
}
.product_type ul li{
	width:calc(50% - 10px);
	float: left;
	margin-right: 20px;
	position: relative;
	margin-bottom: 20px;
	border:4px solid #fff;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.product_type ul li:nth-child(2n){
	margin-right: 0;
}
.product_type ul li figure{
	width: 100%;
	height: 445px;
}
.product_type ul li figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product_type ul li figcaption{
	position: absolute;
	width:100%;
	height: 74px;
	background:rgba(0,0,0,0.6);
	left:0;
	bottom: 0;
	line-height: 74px;
	padding-left: 40px;
	font-size: 18px;
	color: #fff;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.product_type ul li figcaption div{
	float:right;
	width: 114px;
	height: 74px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:center;
	justify-content:center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.product_type ul li figcaption div img{
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}

.product_type ul li:hover{
	border:4px solid #256576;
}
.product_type ul li:hover figcaption{
	background: #256576;
}
.product_type ul li:hover figcaption div{
	background: #60b73c;
	-webkit-transform:translateY(-10px);
	-ms-transform:translateY(-10px);
	-o-transform:translateY(-10px);
	transform:translateY(-10px);
}
.product_type ul li:hover figcaption div img{
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.news_dea_title{
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 15px;
	border-bottom: 1px solid #ebebeb;
}
.dea_font h3{
	font-size: 30px;
	color: #000;
	font-weight: 400;
}
.dea_font p{
	font-size: 14px;
	color: #999;
	padding-top:14px;
}
.news_dea_page .news_bj p{
	font-size: 16px;
	color: #666;
	line-height: 48px;
	padding-top: 22px;
}
.news_dea_page .news_bj span{
	color: #ff0000;
	font-weight: bold;
}
.news_nav{
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
}
.news_nav p{
	font-size: 14px;
	color: #999;
	line-height: 38px;
}
.news_nav p a{
	color: #666;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.news_nav p a:hover{
	color: #2b697a;
}
.news_nav .news_back{
	width: 100px;
	height: 48px;
	border:1px solid #dddddd;
	line-height: 48px;
	border-radius: 30px;
	text-align: center;
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
}
.news_nav .news_back a{
	font-size: 14px;
	color: #999;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 48px;
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;

}
.news_nav .news_back:hover{
	background: #2c6e4f;
}
.news_nav .news_back:hover a{
	color: #fff;
}
.news_bj .img{
	width: 100%;
	text-align: center;
}
.prodea_pad{
	padding:0 80px;
}
.wz ul li a{
	font-size: 18px;
}
.precise_page{
	padding-top: 0;
}
.title3{
	text-align: center;
	font-size: 24px;
	padding: 60px 0 40px 0;
}
.precise_list ul li{
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.precise_list ul li:nth-child(2n){
	margin-right: 0;
}
.precise_list2 ul li:nth-child(2n){
	margin-right:20px;
}
.precise_list2 ul li:nth-child(4n){
	margin-right:0;
}
.precise_list3 ul li{
	margin-right: 10px;
}
.precise_list3 ul li:nth-child(2n){
	margin-right:15px;
}
.precise_list3 ul li:nth-child(5n){
	margin-right: 0;
}
.product2_bottom{
	margin-top: 0;
}
.product2_ewm{
	width: 465px;
	height: 225px;
	border:1px solid #e5e5e5;
	margin: 0 auto;
	padding: 22px 0 0 28px;
}
.product2_ewm figure{
	float: left;
	width: 185px;
	height: 185px;
	overflow: hidden;
}
.product2_ewm figcaption{
	float:left;
	padding-left: 40px;
	padding-top:30px;
}
.product2_ewm figcaption h6{
	font-size: 22px;
	color: #999999;
	padding-bottom: 15px;
}
.product2_ewm figcaption h3{
	font-size: 22px;
	color: #444;
	font-weight: bold;
	padding-bottom: 15px;
}
.product2_ewm figcaption h4{
	font-size: 22px;
	color: #444;
	font-weight:400;
}
.product3_list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.product3_list ul li{
	margin-right: 20px;
	width: 285px;
}
.product3_list ul li:last-child{
	margin-right: 0;
}
.product3_list ul li figure{
	width: 100%;
	border:1px solid #e5e5e5;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.product3_list ul li figcaption{
	font-size: 16px;
	color: #666;
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-align: center;
}
.product3_list ul li:hover figure{
	box-shadow: 0px 0px 5px #ccc;
}

.product3_page::after{
	display: none;
}
.contact_list{
	padding: 0 10px;
}
.contact_list ul li{
	width: 580px;
	margin-right: 20px;
	border:1px solid #e5e5e5;
	margin-bottom: 20px;
	float:left;
	padding:15px 0 25px 40px;
}
.contact_list ul li:nth-child(2n){
	margin-right: 0;
}
.contact_list ul li h3{
	color: #256576;
	font-size: 24px;
	line-height: 48px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.contact_list ul li p{
	font-size: 16px;
	color: #666;
	line-height: 38px;
	padding-left:15px;
	position: relative;
}
.contact_list ul li p::before{
	content: '';
	position: absolute;
	width: 6px;
	height: 5px;
	background:url(../images/con_jiantou.jpg) no-repeat center center;
	left:3px;
	top:calc(50% - 2.5px);
}
.contact_list ul li:hover h3{
	font-weight: bold;
}
.map{
	margin-top: 30px;
	height: 535px;
	width: 100%;
}
.wt ul li{
	width: 25%;
}
.peo_center{
	-webkit-transform:translateY(-10px);
	-ms-transform:translateY(-10px);
	-o-transform:translateY(-10px);
	transform:translateY(-10px);
	text-align: center;
}
.peo_center h5{
	font-size: 24px;
	line-height: 48px;
	color: #666;
	padding-top: 10px;
}
.people_endit p{
	font-size: 16px;
	line-height: 48px;
	color: #666;
	padding-top: 20px;
}
.jion_list ul li{
	float: left;
	width: 32%;
	height:350px;
	margin-right: 2%;
	border:1px solid #cccccc;
	padding: 35px 20px 30px 27px;
	margin-bottom:30px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.jion_list ul li div.jobcontent{
	height: 100px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.jion_list ul li:nth-child(3n){
	margin-right: 0;
}
.jion_list ul li h3{
	font-size: 20px;
	color: #000;
	padding-bottom: 12px;
}
.jion_list ul li h6{
	font-size: 14px;
	color: #999;
	padding-bottom: 28px;
}
.jion_list ul li h5{
	font-size: 16px;
	color: #666;
	font-weight: bold;
	padding-bottom: 10px;
}
.jion_list ul li p{
	font-size: 13px;
	color: #666;
	line-height: 36px;
}
.jion_list ul li .more{
	width: 126px;
	height: 36px;
	line-height: 36px;
	border-bottom:1px solid #ccc;
	padding-left: 10px;
	position: relative;
	margin-top: 24px;
	font-size: 14px;
	color: #999;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.jion_list ul li .more::after{
	content: '';
	position: absolute;
	width: 16px;
	height: 5px;
	right: 12px;
	top:calc(50% - 2.5px);
	background: url(../images/jion_jiantou.jpg) no-repeat center center;
}
.jion_list ul li:hover .more{
	color: #256576;
	border-bottom:1px solid #e62129;
}
.jion_list ul li:hover{
	box-shadow: 0px 0px 8px #ccc;
}
.jion_button{
	width: 132px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	border:1px solid #256576;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.jion_button a{
	display: block;
	width: 100%;
	height: 100%;
	color: #256576;
	font-size: 16px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.jion_button:hover{
	background: #256576;
}
.jion_button:hover a{
	color: #fff;
}
.jion_deapage{
	padding: 0 80px;
}
.jion_req{
	font-size: 15px;
	color: #666;
	line-height: 36px;
	margin-top: 30px;
}
.jion_req span{
	font-size: 16px;
	font-weight: bold;
}
.w627{
	max-width: 627px;
	margin: 0 auto;
}
.inside_title2{
	color:#000;
	font-size: 36px;
}
.message input{
	width: 100%;
	height: 45px;
	line-height: 45px;
	padding-left: 20px;
	box-shadow: 0px 0px 5px #ccc;
	border-radius:5px;
	margin-bottom: 24px;
	display: block;
}
.message input::-webkit-input-placeholder{
	font-size: 14px;
	color: #999;
}
.message div{
	position: relative;
}
.message div::after{
	content:'';
	position: absolute;
	right:15px;
	top:calc(40% - 8px);
	width: 7px;
	height: 6px;
	z-index:9;
	opacity:0;
	background:url(../images/111.jpg) no-repeat center center;
}
.message div.bixuan::after{
	opacity:1;
}
.message select{
	width: 100%;
	height: 45px;
	line-height: 45px;
	padding-left: 20px;
	box-shadow: 0px 0px 5px #ccc;
	border-radius:5px;
	margin-bottom: 24px;
	color: #999;
    background: url(../images/select.png) no-repeat scroll 100px center transparent;
}
.message textarea{
	height: 200px;
	padding-left: 20px;
	padding-top: 16px;
	border-radius:10px;
	width: 100%;
	box-shadow: 0px 0px 5px #ccc;
	margin-bottom: 24px;
}
.w314{
	width: 314px;
	margin: 0 auto;
	float: left;
}
.w296{
	width:296px;
	margin: 0 auto;
	float: right;
}
.message button{
	width: 48%;
	float: left;
	margin-right:4%;
	height: 45px;
	line-height: 45px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	border-radius:8px;
	cursor:pointer;
}
.message button.red{
	background: #e62129;
}
.message button.ccc{
	background: #999999;
}
.message button.ml0{
	margin-right: 0;
}
.message p{
	font-size: 14px;
	color: #e62129;
	padding-top:40px;
	float: left;
}
.staff_list li:first-child{
	border-top:1px solid #e5e5e5;
}
.staff_list li{
	width: 100%;
	height: 350px;
	border-bottom:1px solid #e5e5e5;
	padding: 0 30px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.staff_list li a{
	display: block;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.staff_list li figure{
	width: 360px;
}
.staff_list li figcaption{
	width: 740px;
	margin-left: 45px;
}
.staff_list li figcaption h3{
	font-size: 20px;
	color: #000;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.staff_list li figcaption h6{
	padding-top: 13px;
	font-size: 14px;
	color: #999;
}
.staff_list li figcaption p{
	padding-top: 35px;
	line-height: 36px;
	color: #666;
	font-size:14px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.staff_list li figcaption .more2{
	width: 126px;
	height: 31px;
	border:1px solid #999;
	line-height: 29px;
	padding-left: 10px;
	font-size: 14px;
	color: #999;
	margin-top:30px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	background: url(../images/more2_img1.jpg) no-repeat center center;
}
.staff_list li:hover figcaption .more2{
	color: #256576;
	border-color:#256576;
	background: url(../images/more2_img2.jpg) no-repeat center center;
}
.staff_list li:hover figcaption h3{
	color: #256576;
}
.staff_list li:hover figcaption p{
	color: #000;
}
.staff_list li:hover{
	box-shadow: 0px 0px 8px #ccc;
}
.inside_title2{
	color: #256576;
	font-weight: bold;
}
.w912{
	max-width:912px;
	margin: 0 auto;
}
.address{
	height: 115px;
	border-top:1px solid #e5e5e5;
	border-bottom:1px solid #e5e5e5;
	line-height: 115px;
	font-size: 16px;
	color: #666;
	text-align: center;
	padding-top:10px;
	position: relative;
}
.address::after{
	content: '';
	position: absolute;
	width: 14px;
	height: 19px;
	left:calc(50% - 7px);
	top:30px;
	background: url(../images/address_img.jpg) no-repeat center center;
}
.address_list{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.address_list li{
	text-align: center;
	padding:30px 80px;
}
.address_list li p{
	font-size: 12px;
	color: #999;
	padding-bottom:20px;
}
.address_list li h3{
	font-size: 16px;
	color: #222222;
}
.ww ul li{
	width: 16.66%;
}
.inside_swiper .gallery-top{
	width: 685px;
	height: 315px;
}
.inside_swiper .gallery-thumbs{
	width: 515px;
	height: 385px;
}
.inside_swiper .gallery-top figcaption{
	padding: 40px 30px 0 57px;
}
.inside_swiper .gallery-top figcaption h3{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-bottom: 0;
}
.inside_swiper .gallery-top figcaption p{
	padding-top: 24px;
}
.videp_list ul{
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.videp_list ul li{
	width: 385px;
	margin-right: 20px;
	margin-bottom: 20px;
	position: relative;
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
}
.videp_list ul li:nth-child(3n){
	margin-right: 0;
}
.videp_list ul li figcaption{
	position: absolute;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	left:0;
	top:0;
}
.videp_list ul li p{
	padding:10px 0;
	text-align:center;
}
.videp_list ul li:hover{
	box-shadow: 0px 0px 10px #999;
}
.videp_list ul li figure{
	width: 100%;
	height: 245px;
	overflow: hidden;
}
.videp_list ul li figure img{
	-webkit-transition: ease-in-out .5s;
	-o-transition: ease-in-out .5s;
	transition: ease-in-out .5s;
}
.videp_list ul li:hover figure img{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.down_list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.down_list ul li{
	width: 285px;
	height: 285px;
	border:1px solid #e5e5e5;
	margin-right: 20px;
	margin-bottom: 20px;
	text-align: center;
	padding-top: 30px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	background: url(../images/logo6.jpg) no-repeat center center;
}
.down_list ul li h3{
	font-size: 18px;
	padding-bottom: 18px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.down_list ul li p{
	font-size: 12px;
	color: #999;
	padding-bottom:150px;
}
.down_list ul li:nth-child(4n){
	margin-right: 0;
}
.down_list ul li .down{
	font-size: 12px;
	color: #999;
	padding-left: 10px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
	background:url(../images/down.jpg) no-repeat 95px center;
}
.down_list ul li:hover{
	border:2px solid #256576;
	box-shadow: 0px 0px 8px #ccc;
	background:url(../images/logo5.jpg) no-repeat center center;
}
.down_list ul li:hover h3{
	font-weight: bold;
	color: #256576;
}
.down_list ul li:hover .down{
	color: #e62129;
}
.leader_list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.leader_list ul li{
	width: 385px;
	/* height: 428px; */
	border:1px solid #e5e5e5;
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 10px;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.leader_list ul li:nth-child(3n){
	margin-right: 0;
}
.leader_list ul li figure{
	width: 100%;
	height: 276px;
	position: relative;
	overflow: hidden;
}
.leader_list ul li figure img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.leader_list ul li figure .time{
	position: absolute;
	left:0px;
	bottom: 0px;
	width: 116px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #256576;
	font-size: 14px;
	color: #fff;
	-webkit-transition: ease-in-out .3s;
	-o-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}
.leader_list ul li figcaption{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	padding: 27px 20px 0 20px;
}
.leader_list ul li figcaption h3{
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 20px;
	color: #333;
}
.leader_list ul li figcaption p{
	font-size: 14px;
	color: #888888;
	line-height: 24px;
	padding-top:15px;
}
.leader_list ul li:hover{
	border:1px solid #256576;
	box-shadow: 0px 0px 8px #ccc;
}
.leader_list ul li:hover figure .time{
	background: #e62129;
}
.inside_page .news_bj{
	font-size: 16px;
	color: #666;
	padding-top: 22px;
	padding-bottom: 60px;
	border-bottom: 1px solid #ebebeb;
}
.inside_page .news_bj h2{
	padding-bottom:20px;
}
.inside_page .news_bj p{
	font-size: 16px;
	line-height: 30px;
}
.w1000{
	max-width: 1000px;
	margin: 0 auto;
}
.prodetail_info>h1{text-align:center;margin-bottom:20px}

.nav_swiper{
	display: none;
}

.market .img .img2{
				padding-left:40px;
}

.videopalyer iframe{
	width:100%;
	height:700px;
}
.pcmen{
	display:-webkit-flex;
	display:flex;
	-webkit-justify-content:center;
	justify-content:center;
}
