/*初始化样式*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section{
	margin: 0;
	padding: 0;
	border: 0;
}

body{
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei,arial,宋体,sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden!important;
}

a{
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover,
a:active,
a:focus{
	text-decoration: none;
	outline: none;
	color: #d02634;
}

input{
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img{
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li{
	list-style-type: none;
}

select,
input,
img,
select{
	vertical-align: middle;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td{
	vertical-align: middle;
}

.clearfix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix{
	zoom: 1;
}

.clearboth{
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2{
	font-weight: bold;
}

hr{
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6{
	font-weight: normal;
}

p{
	margin: 0;
}

/*----- Common css ------*/
.fl{
	float: left;
}

.fr{
	float: right;
}

/*flex布局*/
.flex_wrap{
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise{
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice{
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con{
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen{
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/*scrollbar*/
body::-webkit-scrollbar{
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-track{
	background: #9f9f9f;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical{
	background: #d02634;
	border: none;
	-webkit-border-radius: 0;
}

body::-webkit-scrollbar-thumb:vertical:active{
	background: #d02634;
	border: none;
	-webkit-border-radius: 0;
}

.section .fp-tableCell{
	padding-top: 80px;
}

.section1 .fp-tableCell{
	padding-top: 0;
}

.fp-auto-height .fp-tableCell{
	padding-top: 0;
}

@media(max-width: 991px){
	.section{
		height: auto!important;
	}

	.fp-tableCell{
		height: auto!important;
	}

	#fp-nav{
		display: none;
	}

	.section .fp-tableCell{
		padding-top: 0;
	}
}

/*主体区域*/
.max1600{
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti{
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px){
	.max1600{
		padding: 0 30px;
	}

	.page_con_zhuti{
		padding: 0 30px;
	}
}

@media(max-width:991px){
	.max1600{
		padding: 0 20px;
	}

	.page_con_zhuti{
		padding: 0 20px;
	}

	body{
		padding-top: 61px!important;
	}
}

@media(max-width:768px){
	.max1600{
		padding: 0 15px;
	}

	.page_con_zhuti{
		padding: 0 15px;
	}
}

/*头部*/
#pc_header{
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.7);
	padding: 0 45px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.08);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_header_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo{
	max-width: 12%;
}

.pc_logo img{
	max-width: 100%;
	max-height: 70px;
}

.pc_nav{
	width: 64%;
	max-width: 880px;
}

.pc_nav>ul{
	width: 100%;
	display: -webkit-box;
	/* Chrome 4+,Safari 3.1,iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+,Safari 6.1+,iOS Safari 7+,Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+,Firefox 22+,IE 11+,Opera 12.1/17/18,Android 4.4+ */
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>.pc_nav_li_www{
	float: left;
	width: 14.285714285714%;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	position: relative;
}

.pc_nav>ul>.pc_nav_li_www::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 18px;
	background: #333;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav>ul>.pc_nav_li_www:last-child::before{
	display: none;
}

.pc_nav>ul>.pc_nav_li_www>li{
	position: relative;
	text-align: center;
	max-width: 100%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav>ul>.pc_nav_li_www>li>a{
	display: block;
	position: relative;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	font-size: 18px;
	line-height: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_nav_erji_w{
	position: absolute;
	z-index: 999;
	width: 160px;
	left: 50%;
	top: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%,20px);
	-moz-transform: translate(-50%,20px);
	-ms-transform: translate(-50%,20px);
	-o-transform: translate(-50%,20px);
	transform: translate(-50%,20px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.pc_nav>ul>.pc_nav_li_www>li:hover .pc_nav_erji_w{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	transform: translate(-50%,0);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi,
.pc_nav>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi{
	color: #d02634;
}

.pc_nav_erji_li a{
	font-size: 16px;
	line-height: 2;
	padding: 5px;
	color: #666;
	display: block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_nav_erji_li a:hover{
	color: #fff;
	background: #d02634;
}

.pc_header_search{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_search_btn{
	margin-right: 30px;
	position: relative;
	display: none;
}

.pc_header_search_btn span{
	width: 20px;
	height: 22px;
	background: url(../images/img/top_header_search_ico.png) no-repeat left center;
	background-size: 20px;
	cursor: pointer;
	display: block;
	position: relative;
}

.pc_header_search_btn span::before{
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	width: 1px;
	height: 22px;
	background-color: #333;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_header_search_btn_pull_down{
	position: absolute;
	top: 61px;
	right: -20px;
	z-index: 900;
	display: none;
}

.pc_header_search_btn_pull_down_sousuo{
	width: 220px;
	height: 44px;
	background-color: #d02634;
	overflow: hidden;
}

.pc_header_search_btn_pull_down_sousuo_con_fl{
	width: 100%;
	padding-right: 52px;
	margin-right: -52px;
	overflow: hidden;
}

.pc_header_search_btn_pull_down_sousuo_shuru{
	background: none;
	border: 0;
	outline: none;
	width: 100%;
	font-size: 16px;
	color: #fff;
	line-height: 44px;
	padding-left: 15px;
	float: left;
}

.pc_header_search_btn_pull_down_sousuo_shuru::-webkit-autofill{
	-webkit-text-fill-color: #fff!important;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-ms-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_header_search_btn_pull_down_sousuo_shuru::placeholder{
	color: #fff;
}

.pc_header_search_btn_pull_down_sousuo_tijiao{
	cursor: pointer;
	outline: none;
	border: 0;
	float: left;
	width: 50px;
	font-size: 16px;
	color: #666;
	line-height: 42px;
	background: url(../images/img/top_header_search2_ico.png) no-repeat center;
	background-size: 20px;
	position: relative;
	z-index: 10;
}

.pc_sousuo2{
	width: 220px;
	height: 42px;
	background-color: #fff;
	border-radius: 30px;
	overflow: hidden;
	margin-right: 15px;
}

.pc_sousuo_con_fl{
	width: 100%;
	padding-right: 62px;
	margin-right: -62px;
	overflow: hidden;
}

.pc_sousuo2 .pc_sousuo_con_shuru{
	background: none;
	border: 0;
	outline: none;
	width: 100%;
	font-size: 16px;
	color: #333;
	line-height: 42px;
	padding-left: 25px;
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_shuru::-webkit-autofill{
	-webkit-text-fill-color: #666!important;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-ms-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder{
	color: #666;
}

.pc_sousuo2 .pc_sousuo_con_tijiao{
	cursor: pointer;
	outline: none;
	border: 0;
	float: left;
	width: 60px;
	font-size: 16px;
	color: #666;
	line-height: 42px;
	background: url(../images/img/top_header_search1_ico.png) no-repeat center;
	background-size: 20px;
	position: relative;
	z-index: 10;
}

.pc_header_language_navigation_fl{
	margin-right: 12px;
}

.pc_header_language_navigation_fl_ft,.pc_header_language_navigation_fr_ft{
	font-size: 18px;
	line-height: 2.2;
	color: #333;
}

.pc_header_language_navigation_fr{
	position: relative;
}

.pc_header_language_navigation_fr_ft{
	position: relative;
	padding-right: 22px;
	cursor: pointer;
}

.pc_header_language_navigation_fr_ft.click{
	color: #d02634;
}

.pc_header_language_navigation_fr_ft::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 13px;
	height: 13px;
	background-image: url(../images/img/top_header_arrow_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_header_language_navigation_fr_fb{
	position: absolute;
	left: 50%;
	top: 100%;
	display: none;
	width: 110px;
	box-shadow: 0 0px 5px rgba(0,0,0,0.15);
	background: rgba(255,255,255,0.7);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.pc_header_language_navigation_fr_fb_li a{
	display: block;
	font-size: 16px;
	line-height: 2;
	color: #666;
	text-align: center;
}

.pc_header_language_navigation_fr_fb_li a:hover{
	color: #d02634;
}

#pc_header.on .pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	line-height: 80px;
}

#pc_header.on .pc_header_search_btn_pull_down{
    top: 51px;
}

#pc_header.on .pc_header_search_btn{
	display: block;
}

#pc_header.on .pc_sousuo2{
	display: none;
}

@media(max-width:1600px){
	#pc_header{
		padding: 0 50px;
	}

	.pc_header_search_btn{
		display: block;
	}

	.pc_sousuo2{
		display: none;
	}
}

@media(max-width:1366px){
	.pc_nav>ul>.pc_nav_li_www::before{
		height: 17px;
	}

	.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
		font-size: 17px;
	}

	.pc_header_language_navigation_fl_ft,.pc_header_language_navigation_fr_ft{
		font-size: 17px;
	}

	.pc_header_language_navigation_fl{
		display: none;
	}
}

@media(max-width:1280px){
	#pc_header{
		padding: 0 30px;
	}

	.pc_nav>ul>.pc_nav_li_www::before{
		height: 16px;
	}

	.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
		font-size: 16px;
	}

	.pc_nav_erji_li a{
		font-size: 15px;
	}

	.pc_header_language_navigation_fl_ft,.pc_header_language_navigation_fr_ft{
		font-size: 16px;
	}

	.pc_header_language_navigation_fr_ft::before{
		width: 12px;
		height: 12px;
	}

	.pc_header_language_navigation_fr_fb_li a{
		font-size: 15px;
	}
}

/*首页banner*/
.index_banner{
	position: relative;
	overflow: hidden;
}

.index_banner_li{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_banner img{
	width: 100%;
	height: 100vh;
	opacity: 0;
}

.index_banner_yuandian{
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 5%!important;
	z-index: 99;
}

.index_banner_yuandian span{
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px!important;
	position: relative;
	overflow: hidden;
}

.index_banner_yuandian span.swiper-pagination-bullet-active{
	background: #d02634;
}

.index_banner_btnl,.index_banner_btnr{
	width: 40px;
	height: 65px;
	background: rgba(0,0,0,1);
	position: absolute;
	z-index: 800;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_banner_btnl{
	left: 0;
}

.index_banner_btnr{
	right: 0;
}

.index_banner_btnl:hover,.index_banner_btnr:hover{
	background: #d02634;
}

.index_banner_btnl span,.index_banner_btnr span{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.index_banner_btnl span{
	background-image: url(../images/img/index_banner_arrow_l.png);
}

.index_banner_btnr span{
	background-image: url(../images/img/index_banner_arrow_r.png);
}

@media(max-width:1366px){
	.index_banner_btnl,.index_banner_btnr{
		width: 35px;
		height: 60px;
	}

	.index_banner_btnl span,.index_banner_btnr span{
		width: 15px;
		height: 15px;
	}
}

@media(max-width:1200px){
	.index_banner_btnl,.index_banner_btnr{
		width: 30px;
		height: 55px;
	}

	.index_banner_btnl span,.index_banner_btnr span{
		width: 14px;
		height: 14px;
	}
}

@media(max-width:991px){
	.index_banner{
		margin-top: 0;
	}
	
	.index_banner_btnl,.index_banner_btnr{
		display: none;
	}

	.index_banner img{
		height: auto;
	}
}

@media(max-width:768px){
	.index_banner_yuandian{
		bottom: 15px!important;
	}

	.index_banner_yuandian span{
		width: 10px;
		height: 10px;
		margin: 0 4px!important;
	}
}

@media(max-width:468px){
	.index_banner_yuandian{
		bottom: 12px!important;
	}

	.index_banner_yuandian span{
		width: 8px;
		height: 8px;
		margin: 0 3px!important;
	}
}

/*about*/
.section2{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.index_changyuanming_about{
	padding: 4% 0;
}

.index_changyuanming_about_fl{
	width: 48%;
}

.index_changyuanming_about_fl_ft{
	overflow: hidden;
	cursor: pointer;
}

.index_changyuanming_about_fl_ft img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fl_ft:hover img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.index_changyuanming_about_fl_fb{
	margin-top: 5%;
}

.index_changyuanming_about_fl_fb_ul{
	text-align: center;
}

.index_changyuanming_about_fl_fb_li{
	float: left;
	width: 22%;
	max-width: 140px;
	text-align: center;
	border: dashed 1px #dbdbdb;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fl_fb_li a{
	padding: 18% 5px;
	display: block;
}

.index_changyuanming_about_fl_fb_li .img{
	position: relative;
	font-size: 0;
	line-height: 0;
}

.index_changyuanming_about_fl_fb_li .img img{
	height: 45px;
	display: block;
	margin: 0 auto;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fl_fb_li .img .img2{
	position: absolute;
	left: 50%;
	top: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.index_changyuanming_about_fl_fb_li .wz{
	font-size: 16px;
	line-height: 1.3;
	color: #ffffff;
	margin-top: 12%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fl_fb_li:hover{
	border-color: #fff;
	background-color: #fff;
}

.index_changyuanming_about_fl_fb_li:hover .img .img1{
	opacity: 0;
}

.index_changyuanming_about_fl_fb_li:hover .img .img2{
	opacity: 1;
}

.index_changyuanming_about_fl_fb_li:hover .wz{
	color: #d02634;
}

.index_changyuanming_about_fr{
	width: 48%;
}

.index_changyuanming_about_fr_ft{
	font-family: Arial;
	font-size: 3.9rem;
	line-height: 0.9;
	color: #fff;
	font-weight: bold;
}

.index_changyuanming_about_fr_fc{
	font-size: 16px;
	line-height: 2;
	color: #ffffff;
	margin: 4% 0 3.5%;
	text-indent: 2em;
	max-height: 20em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 10;
}

.index_changyuanming_about_fr_links{
	overflow: hidden;
}

.index_changyuanming_about_fr_links a{
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	position: relative;
	padding-left: 22px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fr_links a::before{
	content: '';
	width: 15px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_about_fr_links a:hover{
	padding-left: 37px;
}

.index_changyuanming_about_fr_links a:hover::before{
	width: 30px;
}

.index_changyuanming_about_fr_fb{
	text-align: right;
	margin-top: 4%;
	font-family: Arial;
	font-size: 4.8rem;
	line-height: 1;
	color: #fff;
	font-weight: bold;
}

@media(max-width:991px){
	.index_changyuanming_about_fl{
		width: 100%;
	}

	.index_changyuanming_about_fl_fb{
		margin-top: 4%;
	}

	.index_changyuanming_about_fr{
		width: 100%;
		margin-top: 4%;
	}

	.index_changyuanming_about_fr_ft{
		font-size: 6rem;
	}
	
	.index_changyuanming_about_fr_fc{
		margin: 3% 0 2.5%;
	}

	.index_changyuanming_about_fr_fb{
		margin-top: 3%;
	}
}

@media(max-width:768px){
	.index_changyuanming_about{
		padding: 30px 0;
	}

	.index_changyuanming_about_fl_fb{
		margin-top: 30px;
	}

	.index_changyuanming_about_fr{
		margin-top: 30px;
	}

	.index_changyuanming_about_fr_ft{
		font-size: 45px;
	}

	.index_changyuanming_about_fr_fc{
		font-size: 15px;
		margin: 20px 0 15px;
	}

	.index_changyuanming_about_fr_links a{
		font-size: 15px;
	}

	.index_changyuanming_about_fr_fb{
		margin-top: 20px;
		font-size: 40px;
	}
}

@media(max-width:600px){
	.index_changyuanming_about_fl_fb_li{
		width: 48%;
		max-width: 260px;
	}

	.index_changyuanming_about_fl_fb_li:nth-child(n+3){
		margin-top: 4%;
	}

	.index_changyuanming_about_fl_fb_li a{
		padding: 20px 5px;
	}

	.index_changyuanming_about_fl_fb_li .img img{
		height: 40px;
	}

	.index_changyuanming_about_fl_fb_li .wz{
		font-size: 15px;
		margin-top: 15px;
	}
}

@media(max-width:468px){
	.index_changyuanming_about{
		padding: 25px 0;
	}

	.index_changyuanming_about_fl_fb{
		margin-top: 25px;
	}

	.index_changyuanming_about_fl_fb_li a{
		padding: 15px 5px;
	}

	.index_changyuanming_about_fl_fb_li .img img{
		height: 35px;
	}

	.index_changyuanming_about_fl_fb_li .wz{
		margin-top: 12px;
	}

	.index_changyuanming_about_fr{
		margin-top: 25px;
	}

	.index_changyuanming_about_fr_ft{
		font-size: 3.9rem;
	}

	.index_changyuanming_about_fr_fc{
		margin: 15px 0 12px;
	}

	.index_changyuanming_about_fr_fb{
		margin-top: 15px;
		font-size: 3.5rem;
	}
}

/*product*/
.section3{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.index_changyuanming_product_box1{
	padding: 2.5% 0;
}

.index_changyuanming_product_box1_ft_li{
	width: 15%;
	background-color: rgba(255,255,255,0.3);
	border-radius: 5px;
	text-align: center;
	margin-right: 2%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_product_box1_ft_li:nth-child(6n){
	margin-right: 0;
}

.index_changyuanming_product_box1_ft_li:nth-child(n+7){
	margin-top: 2%;
}

.index_changyuanming_product_box1_ft_li a{
	padding: 10.5% 0;
	display: block;
}

.index_changyuanming_product_box1_ft_li .img img{
	max-width: 100%;
	max-height: 2.5rem;
	display: block;
	margin: 0 auto;
}

.index_changyuanming_product_box1_ft_li .wz{
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	padding: 0 5px;
	margin-top: 7%;
}

.index_changyuanming_product_box1_ft_li:hover{
	background-color: #d02634;
}

.index_changyuanming_product_box1_fc{
	max-width: 1420px;
	margin: 0 auto;
	margin-top: 3.2%;
	margin-top: 0!important;
}

.index_changyuanming_product_box1_fc_con{
    overflow: hidden;
}

.index_changyuanming_product_box1_fc_li_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_product_box1_fc_li_fl{
	width: 38%;
	overflow: hidden;
}

.index_changyuanming_product_box1_fc_li_fl img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_product_box1_fc_li_fl:hover img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.index_changyuanming_product_box1_fc_li_fr{
	width: 55%;
}

.index_changyuanming_product_box1_fc_li_fr_ft{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.3;
	color: #ffffff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_changyuanming_product_box1_fc_li_fr_ft::after{
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background-color: #ffffff;
	margin-top: 1.2rem;
}

.index_changyuanming_product_box1_fc_li_fr_fc{
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 3% 0;
	max-height: 7.2em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.index_changyuanming_product_box1_fc_li_fr_fb{
	overflow: hidden;
}

.index_changyuanming_product_box1_fc_li_fr_fb a{
	display: block;
	float: left;
	min-width: 150px;
	font-size: 15px;
	line-height: 1.5;
	color: #ffffff;
	border-radius: 4px;
	padding: 13px 0;
	padding-left: 18px;
	padding-right: 30px;
	background-color: #d02634;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_product_box1_fc_li_fr_fb a:hover{
	background-color: #fff;
	color: #d02634;
}

.index_changyuanming_product_box1_fc_li_fr_fb a::before{
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	width: 12px;
	height: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/img/index_product_arrow_ico.png);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_product_box1_fc_li_fr_fb a:hover::before{
	background-image: url(../images/img/index_product_arrow_ico1.png);
}

.index_changyuanming_product_box2{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #ffffff;
	overflow: hidden;
}

.index_changyuanming_product_box2_li{
	width: 20%;
	background-color: #ffffff;
	text-align: center;
	padding: 1.5rem 5px;
	border-right: 1px solid #dcdcdc;
	cursor: pointer;
}

.index_changyuanming_product_box2_li_ft{
	font-size: 1.2rem;
	line-height: 1.4;
	color: #666666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_changyuanming_product_box2_li_fb{
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
	margin-top: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_changyuanming_product_box2_li.on{
	background-color: #d02634;
	border-right: 1px solid #d02634;
}

.index_changyuanming_product_box2_li.on .index_changyuanming_product_box2_li_ft{
	color: #fff;
}

.index_changyuanming_product_box2_li.on .index_changyuanming_product_box2_li_fb{
	color: #fff;
}

@media(max-width:1280px){
	.index_changyuanming_product_box1_ft_li .img img{
		max-height: 38px;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft{
		font-size: 22px;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft::after{
		width: 44px;
	}

	.index_changyuanming_product_box2_li{
		width: 25%;
	}

	.index_changyuanming_product_box2_li_ft{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.index_changyuanming_product_box1{
		padding: 4% 0;
	}

	.index_changyuanming_product_box1_ft_li{
		width: 32%;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(6n){
		margin-right: 2%;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(3n){
		margin-right: 0;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(n+4){
		margin-top: 2%;
	}

	.index_changyuanming_product_box1_ft_li a{
		padding: 15px 0;
	}

	.index_changyuanming_product_box1_ft_li .wz{
		margin-top: 10px;
	}

	.index_changyuanming_product_box1_fc{
		margin-top: 4%;
	}

	.index_changyuanming_product_box1_fc_li_fl{
		width: 45%;
	}

	.index_changyuanming_product_box1_fc_li_fr{
		width: 50%;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft{
		font-size: 20px;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft::after{
		width: 40px;
	}

	.index_changyuanming_product_box2_li{
		width: 33.3333333333333333%;
		padding: 15px 5px;
	}

	.index_changyuanming_product_box2_li_ft{
		font-size: 17px;
	}

	.index_changyuanming_product_box2_li_fb{
		margin-top: 3px;
	}
}

@media(max-width:768px){
	.index_changyuanming_product_box1{
		padding: 30px 0;
	}

	.index_changyuanming_product_box1_ft_li{
		width: 49%;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(6n){
		margin-right: 2%;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(3n){
		margin-right: 2%;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(2n){
		margin-right: 0;
	}

	.index_changyuanming_product_box1_ft_li:nth-child(n+3){
		margin-top: 2%;
	}

	.index_changyuanming_product_box1_ft_li .img img{
		max-height: 35px;
	}

	.index_changyuanming_product_box1_ft_li .wz{
		font-size: 15px;
	}

	.index_changyuanming_product_box1_fc{
		margin-top: 30px;
	}

	.index_changyuanming_product_box1_fc_li_fl{
		width: 100%;
	}

	.index_changyuanming_product_box1_fc_li_fr{
		width: 100%;
		margin-top: 25px;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft{
		font-size: 18px;
	}

	.index_changyuanming_product_box1_fc_li_fr_ft::after{
		width: 36px;
		height: 2px;
		margin-top: 13px;
	}

	.index_changyuanming_product_box1_fc_li_fr_fc{
		font-size: 15px;
		margin: 13px 0;
	}

	.index_changyuanming_product_box1_fc_li_fr_fb a{
		min-width: 140px;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-left: 15px;
		padding-right: 28px;
	}

	.index_changyuanming_product_box1_fc_li_fr_fb a::before{
		width: 11px;
		height: 11px;
	}

	.index_changyuanming_product_box2_li{
		width: 50%;
	}

	.index_changyuanming_product_box2_li_ft{
		font-size: 16px;
	}

	.index_changyuanming_product_box2_li_fb{
		font-size: 13px;
	}
}

@media(max-width:468px){
	.index_changyuanming_product_box1{
		padding: 25px 0;
	}

	.index_changyuanming_product_box1_fc{
		margin-top: 25px;
	}

	.index_changyuanming_product_box1_fc_li_fr{
		margin-top: 20px;
	}
}

/*customized service*/
.section4{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.index_changyuanming_customized_service{
	padding: 4% 0;
}

.index_changyuanming_customized_service_ft{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_customized_service_ft_fl{
	width: 80%;
}

.index_changyuanming_customized_service_ft_fl_ft{
	font-size: 2rem;
	line-height: 1.1;
	color: #fff;
	font-style: italic;
}

.index_changyuanming_customized_service_ft_fl_fb{
	font-size: 1.8rem;
	line-height: 1.4;
	color: #fff;
	font-weight: bold;
	margin-top: 5px;
}

.index_changyuanming_customized_service_ft_fr{
	overflow: hidden;
}

.index_changyuanming_customized_service_ft_fr a{
	display: block;
	float: left;
	min-width: 150px;
	font-size: 15px;
	line-height: 1.5;
	color: #ffffff;
	border-radius: 4px;
	padding: 12px 0;
	padding-left: 18px;
	padding-right: 30px;
	border: 1px solid #d02634;
	background-color: #d02634;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_customized_service_ft_fr a:hover{
	background-color: #fff;
	border-color: #fff;
	color: #d02634;
}

.index_changyuanming_customized_service_ft_fr a::before{
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	width: 12px;
	height: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/img/index_product_arrow_ico.png);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_customized_service_ft_fr a:hover::before{
	background-image: url(../images/img/index_product_arrow_ico1.png);
}

.index_changyuanming_customized_service_fb{
	margin-top: 3.5%;
}

.index_changyuanming_customized_service_fb_ul{
	overflow: hidden;
}

.index_changyuanming_customized_service_fb_li{
	width: 23.5%;
	margin-right: 2%;
	background-color: #f3f2f2;
	border-radius: 25px 0 25px 0;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_customized_service_fb_li:hover{
	background-color: #d02634;
}

.index_changyuanming_customized_service_fb_li:nth-child(4n){
	margin-right: 0;
}

.index_changyuanming_customized_service_fb_li:nth-child(n+5){
	margin-top: 2%;
}

.index_changyuanming_customized_service_fb_li .wz{
	padding: 9% 5px;
}

.index_changyuanming_customized_service_fb_li .wz .wz_ft{
	font-size: 20px;
	line-height: 1.5;
	color: #393939;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_customized_service_fb_li:hover .wz .wz_ft{
	color: #fff;
}

.index_changyuanming_customized_service_fb_li .wz .wz_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #646464;
	margin-top: 4%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_customized_service_fb_li:hover .wz .wz_fb{
	color: #fff;
}

.index_changyuanming_customized_service_fb2{
	margin-top: 3.5%;
	display: none;
}

.index_changyuanming_customized_service_fb2_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

@media(max-width:1280px){
	.index_changyuanming_customized_service_ft_fl_ft{
		font-size: 28px;
	}

	.index_changyuanming_customized_service_ft_fl_fb{
		font-size: 26px;
	}

	.index_changyuanming_customized_service_fb_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_changyuanming_customized_service_fb_li .wz .wz_fb{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_changyuanming_customized_service_ft_fl{
		width: 100%;
	}

	.index_changyuanming_customized_service_ft_fl_ft{
		font-size: 26px;
	}

	.index_changyuanming_customized_service_ft_fl_fb{
		font-size: 24px;
	}

	.index_changyuanming_customized_service_ft_fr{
		display: none;
	}

	.index_changyuanming_customized_service_fb_li{
		width: 49%;
	}

	.index_changyuanming_customized_service_fb_li:nth-child(2n){
		margin-right: 0;
	}

	.index_changyuanming_customized_service_fb_li:nth-child(n+3){
		margin-top: 2%;
	}

	.index_changyuanming_customized_service_fb_li .wz{
		padding: 20px 5px;
	}

	.index_changyuanming_customized_service_fb_li .wz .wz_ft{
		font-size: 17px;
	}

	.index_changyuanming_customized_service_fb_li .wz .wz_fb{
		font-size: 16px;
		margin-top: 8px;
	}

	.index_changyuanming_customized_service_fb2{
		display: block;
	}

	.index_changyuanming_customized_service_ft_fr_mc{
		display: block!important;
	}
}

@media(max-width:768px){
	.index_changyuanming_customized_service{
		padding: 30px 0;
	}

	.index_changyuanming_customized_service_ft_fl_ft{
		font-size: 24px;
	}

	.index_changyuanming_customized_service_ft_fl_fb{
		font-size: 22px;
	}

	.index_changyuanming_customized_service_ft_fr a{
		min-width: 140px;
		padding-top: 11px;
		padding-bottom: 11px;
		padding-left: 15px;
		padding-right: 28px;
	}

	.index_changyuanming_customized_service_ft_fr a::before{
		width: 11px;
		height: 11px;
	}

	.index_changyuanming_customized_service_fb{
		margin-top: 25px;
	}

	.index_changyuanming_customized_service_fb_li .wz{
		padding: 15px 5px;
	}

	.index_changyuanming_customized_service_fb_li .wz .wz_fb{
		margin-top: 5px;
	}

	.index_changyuanming_customized_service_fb2{
		margin-top: 25px;
	}
}

@media(max-width:468px){
	.index_changyuanming_customized_service{
		padding: 25px 0;
	}

	.index_changyuanming_customized_service_ft_fl_ft{
		font-size: 22px;
	}

	.index_changyuanming_customized_service_ft_fl_fb{
		font-size: 20px;
	}

	.index_changyuanming_customized_service_fb{
		margin-top: 20px;
	}

	.index_changyuanming_customized_service_fb_li{
		width: 100%;
		margin-right: 0!important;
	}

	.index_changyuanming_customized_service_fb_li:nth-child(n+2){
		margin-top: 20px;
	}

	.index_changyuanming_customized_service_fb2{
		margin-top: 20px;
	}
}

/*news*/
.section5{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f1f1f1;
}

.index_changyuanming_news{
	padding: 4% 0;
}

.index_changyuanming_news_ft .index_changyuanming_customized_service_ft_fl_ft{
	color: #d02634;
}

.index_changyuanming_news_ft .index_changyuanming_customized_service_ft_fl_fb{
	color: #d02634;
}

.index_changyuanming_customized_service_ft_fr2 a:hover{
	border-color: #d02634;
	color: #d02634;
	background-color: rgba(255,255,255,0);
}

.index_changyuanming_news_fb{
	margin-top: 3.5%;
}

.index_changyuanming_news_fb_con{
	overflow: hidden;
}

.index_changyuanming_news_fb_fl{
	width: 59%;
}

.index_changyuanming_news_fb_fl_ul{
	overflow: hidden;
}

.index_changyuanming_news_fb_fl_li{
	width: 48%;
}

.index_changyuanming_news_fb_fl_li .img{
	overflow: hidden;
}

.index_changyuanming_news_fb_fl_li .img img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fl_li:hover .img img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.index_changyuanming_news_fb_fl_li .wz{
	margin-top: 6%;
}

.index_changyuanming_news_fb_fl_li .wz .wz_ft{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fl_li:hover .wz .wz_ft{
	color: #d02634;
}

.index_changyuanming_news_fb_fl_li .wz .wz_fc{
	font-size: 17px;
	line-height: 1.5;
	color: #666;
	max-height: 4.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 4% 0 5%;
}

.index_changyuanming_news_fb_fl_li .wz .wz_fb{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fl{
	font-size: 17px;
	line-height: 1.5;
	color: #666;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fl_li:hover .wz .wz_fb .wz_fb_fl{
	color: #d02634;
}

.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fr{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #999;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fl_li:hover .wz .wz_fb .wz_fb_fr{
	border-color: #d02634;
}

.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fr::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 11px;
	height: 11px;
	background-image: url(../images/img/index_news_arrow_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fl_li:hover .wz .wz_fb .wz_fb_fr::before{
	background-image: url(../images/img/index_news_arrow_ico1.png);
}

.index_changyuanming_news_fb_fr{
	width: 37%;
}

.index_changyuanming_news_fb_fr_li{
	background-color: #ffffff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fr_li:hover{
	background-color: #d02634;
}

.index_changyuanming_news_fb_fr_li:nth-child(n+2){
	margin-top: 4%;
}

.index_changyuanming_news_fb_fr_li_links{
	overflow: hidden;
	padding: 4%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_news_fb_fr_li_fl{
	width: 80px;
	text-align: center;
	position: relative;
	z-index: 5;
}

.index_changyuanming_news_fb_fr_li_fl_ft{
	font-size: 2.4rem;
	line-height: 0.9;
	color: #555;
	font-weight: bold;
	font-family: Arial;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fr_li:hover .index_changyuanming_news_fb_fr_li_fl_ft{
	color: #fff;
}

.index_changyuanming_news_fb_fr_li_fl_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	margin-top: 5px;
	font-family: Arial;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fr_li:hover .index_changyuanming_news_fb_fr_li_fl_fb{
	color: #fff;
}

.index_changyuanming_news_fb_fr_li_fr{
	width: 97%;
	padding-left: 80px;
	margin-left: -80px;
}

.index_changyuanming_news_fb_fr_li_fr_con{
	padding-left: 5.5%;
	border-left: 1px solid #ddd;
}

.index_changyuanming_news_fb_fr_li:hover .index_changyuanming_news_fb_fr_li_fr_con{
	border-left-color: #fff;
}

.index_changyuanming_news_fb_fr_li_fr_ft{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fr_li:hover .index_changyuanming_news_fb_fr_li_fr_ft{
	color: #fff;
}

.index_changyuanming_news_fb_fr_li_fr_fb{
	font-size: 17px;
	line-height: 1.5;
	color: #666;
	max-height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 3%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_changyuanming_news_fb_fr_li:hover .index_changyuanming_news_fb_fr_li_fr_fb{
	color: #fff;
}

.index_changyuanming_news_fb2{
	margin-top: 3.5%;
	display: none;
}

.index_changyuanming_news_fb2_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	overflow: hidden;
}

@media(max-width:1280px){
	.index_changyuanming_news_fb_fl_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fc{
		font-size: 16px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fl{
		font-size: 16px;
	}

	.index_changyuanming_news_fb_fr_li_fl_fb{
		font-size: 17px;
	}

	.index_changyuanming_news_fb_fr_li_fr_ft{
		font-size: 18px;
	}

	.index_changyuanming_news_fb_fr_li_fr_fb{
		font-size: 16px;
	}
}

@media(max-width:991px){
	.index_changyuanming_news_fb_fl{
		width: 100%;
	}

	.index_changyuanming_news_fb_fl_li .wz{
		margin-top: 5%;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fc{
		margin: 3% 0 4%;
	}

	.index_changyuanming_news_fb_fr{
		width: 100%;
		margin-top: 3.5%;
	}

	.index_changyuanming_news_fb_fr_li:nth-child(n+2){
		margin-top: 3.5%;
	}

	.index_changyuanming_news_fb_fr_li_links{
		padding: 3%;
	}

	.index_changyuanming_news_fb_fr_li_fl_ft{
		font-size: 26px;
	}

	.index_changyuanming_news_fb_fr_li_fr_con{
		padding-left: 4%;
	}

	.index_changyuanming_news_fb_fr_li_fr_fb{
		margin-top: 2%;
	}

	.index_changyuanming_news_fb2{
		display: block;
	}
}

@media(max-width:768px){
	.index_changyuanming_news{
		padding: 30px 0;
	}

	.index_changyuanming_news_fb{
		margin-top: 25px;
	}

	.index_changyuanming_news_fb_fl_li .wz{
		margin-top: 15px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_ft{
		font-size: 17px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fc{
		font-size: 15px;
		margin: 10px 0 15px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fl{
		font-size: 15px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fr{
		width: 32px;
		height: 32px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fb .wz_fb_fr::before{
		width: 9px;
		height: 9px;
	}

	.index_changyuanming_news_fb_fr{
		margin-top: 25px;
	}

	.index_changyuanming_news_fb_fr_li:nth-child(n+2){
		margin-top: 25px;
	}

	.index_changyuanming_news_fb_fr_li_links{
		padding: 20px;
	}

	.index_changyuanming_news_fb_fr_li_fl{
		width: 70px;
	}

	.index_changyuanming_news_fb_fr_li_fl_ft{
		font-size: 24px;
	}

	.index_changyuanming_news_fb_fr_li_fl_fb{
		font-size: 16px;
	}

	.index_changyuanming_news_fb_fr_li_fr{
		padding-left: 70px;
		margin-left: -70px;
	}

	.index_changyuanming_news_fb_fr_li_fr_con{
		padding-left: 20px;
	}

	.index_changyuanming_news_fb_fr_li_fr_ft{
		font-size: 17px;
	}

	.index_changyuanming_news_fb_fr_li_fr_fb{
		font-size: 15px;
		margin-top: 10px;
	}

	.index_changyuanming_news_fb2{
		margin-top: 25px;
	}

}

@media(max-width:468px){
	.index_changyuanming_news{
		padding: 25px 0;
	}

	.index_changyuanming_news_fb{
		margin-top: 20px;
	}

	.index_changyuanming_news_fb_fl_li{
		width: 100%;
	}

	.index_changyuanming_news_fb_fl_li:nth-child(n+2){
		margin-top: 20px;
	}

	.index_changyuanming_news_fb_fl_li .wz{
		margin-top: 10px;
	}

	.index_changyuanming_news_fb_fl_li .wz .wz_fc{
		margin: 8px 0 13px;
	}

	.index_changyuanming_news_fb_fr{
		margin-top: 20px;
	}

	.index_changyuanming_news_fb_fr_li:nth-child(n+2){
		margin-top: 20px;
	}

	.index_changyuanming_news_fb_fr_li_links{
		padding: 15px;
	}

	.index_changyuanming_news_fb_fr_li_fl_ft{
		font-size: 22px;
	}

	.index_changyuanming_news_fb_fr_li_fr_con{
		padding-left: 15px;
	}

	.index_changyuanming_news_fb_fr_li_fr_fb{
		margin-top: 8px;
	}

	.index_changyuanming_news_fb2{
		margin-top: 20px;
	}
}

/*case*/
.section7{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f1f1f1;
}

.index_changyuanming_case{
    padding: 4% 0;
}

.index_changyuanming_case_fc{
    margin-top: 3%;
}

.index_changyuanming_case_fc_ul{
    overflow: hidden;
    position: relative;
    width: 100%;
}

.index_changyuanming_case_fc_li{
	position: absolute;
	width: 32%;
	text-align: center;
	background: #fff;
	float: left;
	overflow: hidden;
	-webkit-transition: all 0.6s ease-out;
	-moz-transition: all 0.6s ease-out;
	-ms-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}

.index_changyuanming_case_fc_li:nth-child(1){
    left: 0;
    position: relative;
    z-index: 2;
}

.index_changyuanming_case_fc_li:nth-child(2){
    left: 32%;
    z-index: 3;
}

.index_changyuanming_case_fc_li:nth-child(3){
    left: 49%;
    z-index: 4;
}

.index_changyuanming_case_fc_li:nth-child(4){
    left: 66%;
    z-index: 5;
}

.index_changyuanming_case_fc_li:nth-child(5){
    left: 83%;
    z-index: 6;
}

.index_changyuanming_case_fc_li_links{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    width: 17vw;
    height: 100%;
	-webkit-transition: all 0.6s ease-out;
	-moz-transition: all 0.6s ease-out;
	-ms-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}

.index_changyuanming_case_fc_li.active .index_changyuanming_case_fc_li_links{
    width: 32vw;
}

.index_changyuanming_case_fc_li .img{
    position: relative;
    z-index: 2;
    width: 26vw;
	-webkit-transition: all 0.6s ease-out;
	-moz-transition: all 0.6s ease-out;
	-ms-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;
}

.index_changyuanming_case_fc_li.active .img{
    width: 32vw;
}

.index_changyuanming_case_fc_li .img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21,60,153,0.3);
}

.index_changyuanming_case_fc_li .img .img_con{
    padding: 12.5vw 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_changyuanming_case_fc_li .wz{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.index_changyuanming_case_fc_li .wz .wz_con{
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_case_fc_li .wz .wz_con .wz_nnn{
    position: relative;
    padding: 0 5%;
    width: 100%;
}

.index_changyuanming_case_fc_li .wz .wz_con::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0.95;
    background-color: #d02634;
    width: 0;
    height: 90%;
    max-width: 330px;
    max-height: 300px;
    border-radius: 30px;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.index_changyuanming_case_fc_li:hover .wz .wz_con::before,.index_changyuanming_case_fc_li.active .wz .wz_con::before{
    width: 90%;
}

.index_changyuanming_case_fc_li .wz .wz_icon{
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    margin: 0 auto;
    background-color: #f7b503;
    position: relative;
    z-index: 4;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_changyuanming_case_fc_li .wz .wz_icon img{
    width: 55%;
}

.index_changyuanming_case_fc_li .wz .wz_title{
    font-size: 1.3rem;
    line-height: 1.5;
    color: #fff;
    padding: 0.75rem 0;
    position: relative;
    z-index: 4;
}

.index_changyuanming_case_fc_li .wz .wz_title::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 3;
	width: 2.6rem;
	max-width: 240px;
	height: 1px;
	background-color: #f7b503;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-ms-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
}

.index_changyuanming_case_fc_li:hover .wz .wz_title::before,.index_changyuanming_case_fc_li.active .wz .wz_title::before{
	width: 80%;
}

@media(max-width:1280px){
    .index_changyuanming_case_fc_li .wz{
        padding: 15px;
    }

    .index_changyuanming_case_fc_li .wz .wz_con .wz_nnn{
        padding: 0 10px;
    }

    .index_changyuanming_case_fc_li .wz .wz_icon{
        width: 55px;
        height: 55px;
    }

    .index_changyuanming_case_fc_li .wz .wz_title{
        font-size: 18px;
        padding: 12px 0;
    }

    .index_changyuanming_case_fc_li .wz .wz_title::before{
        width: 40px;
    }
}

@media(max-width:991px){
    .index_changyuanming_case_fc_li{
        width: 100%;
        position: relative;
        left: 0!important;
    }

    .index_changyuanming_case_fc_li_links{
        width: 100%;
    }

    .index_changyuanming_case_fc_li.active .index_changyuanming_case_fc_li_links{
        width: 100%;
    }

    .index_changyuanming_case_fc_li .img{
        width:100%;
    }

    .index_changyuanming_case_fc_li.active .img{
        width:100%;
    }

    .index_changyuanming_case_fc_li .img .img_con{
        padding: 25vw 0;
    }

    .index_changyuanming_case_fc_li .wz .wz_con::before{
        max-width: 600px;
        max-height: 360px;
        border-radius: 20px;
    }

    .index_changyuanming_case_fc_li .wz .wz_title::before{
        max-width: 500px;
    }

    .index_changyuanming_case_fc_li .wz .wz_con::before{
        width: 90%;
    }

    .index_changyuanming_case_fc_li:hover .wz .wz_title::before{
    	width: 80%;
    }
}

@media(max-width:768px){
    .index_changyuanming_case{
        padding: 30px 0;
    }

    .index_changyuanming_case_fc{
        margin-top: 25px;
    }

    .index_changyuanming_case_fc_li .img .img_con{
        padding: 28vw 0;
    }

    .index_changyuanming_case_fc_li .wz .wz_icon{
        width: 50px;
        height: 50px;
    }

    .index_changyuanming_case_fc_li .wz .wz_title{
        font-size: 17px;
        padding: 10px 0;
    }

    .index_changyuanming_case_fc_li .wz .wz_title::before{
        width: 36px;
    }
}

@media(max-width:468px){
    .index_changyuanming_case{
        padding: 25px 0;
    }

    .index_changyuanming_case_fc{
        margin-top: 20px;
    }

    .index_changyuanming_case_fc_li .img .img_con{
        padding:36.25vw 0;
    }
}

/*footer*/
.pc_footer{
	background-color: #202020;
	border-top: 5px solid #d02634;
}

.pc_footer_ft{
	padding: 2.5rem 0;
}

.pc_footer_ft_con{
	overflow: hidden;
}

.pc_footer_ft_fl{
	width: 71%;
	max-width: 1020px;
}

.pc_footer_ft_fl_ft_ul{
	overflow: hidden;
}

.pc_footer_ft_fl_ft_li{
	max-width: 24%;
}

.pc_footer_ft_fl_ft_li_ft a{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fl_ft_li_ft a:hover{
	color: #d02634;
}

.pc_footer_ft_fl_ft_li_fb{
	margin-top: 0.8rem;
}

.pc_footer_ft_fl_ft_li_fb_li:nth-child(n+2){
	margin-top: 0.7rem;
}

.pc_footer_ft_fl_ft_li_fb_li a{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255,255,255,0.6);
	display: inline-block;
	max-width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fl_ft_li_fb_li:hover a{
	color: #d02634;
}

.pc_footer_ft_fl_fb{
	margin-top: 4%;
}

.pc_footer_ft_fl_fb_ul{
	overflow: hidden;
}

.pc_footer_ft_fl_fb_li{
	max-width: 32%;
}

.pc_footer_ft_fl_fb_li .img img{
	height: 2.3rem;
}

.pc_footer_ft_fl_fb_li .wz{
	margin-top: 12px;
}

.pc_footer_ft_fl_fb_li .wz .wz_ft{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255,255,255,1);
}

.pc_footer_ft_fl_fb_li .wz .wz_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin-top: 5px;
}

.pc_footer_ft_fr{
	width: 24%;
	max-width: 350px;
}

.pc_footer_ft_fr_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_ft_fr_fc{
	margin: 6.5% 0;
}

.pc_footer_ft_fr_fc li{
	font-size: 0;
}

.pc_footer_ft_fr_fc li:nth-child(n+2){
	margin-top: 15px;
}

.pc_footer_ft_fr_fc li input,.pc_footer_ft_fr_fc li textarea{
	background: #fff;
	outline: none;
	padding: 0 15px;
	border: 0;
	width: 100%;
	font-size: 16px;
	line-height: 40px;
	color: #666;
	font-family: Microsoft YaHei,arial,宋体,sans-serif;
}

.pc_footer_ft_fr_fc_submit{
	overflow: hidden;
	margin-top: 15px;
}

.pc_footer_ft_fr_fc_submit input{
	background: #d02634;
	outline: none;
	padding: 0 15px;
	border: 0;
	width: 100%;
	font-size: 16px;
	line-height: 44px;
	color: #fff;
	cursor: pointer;
	font-family: Microsoft YaHei,arial,宋体,sans-serif;
}

.pc_footer_ft_fr_fb_li{
	width: 48%;
	max-width: 120px;
	text-align: center;
}

.pc_footer_ft_fr_fb_li .img img{
	width: 100%;
}

.pc_footer_ft_fr_fb_li .wz{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255,255,255,0.6);
	margin-top: 10px;
}

.pc_footer_fb{
	border-top: 1px solid rgba(255,255,255,0.2);
}

.pc_footer_fb_con{
	padding: 18px 0;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,0.6);
}

.pc_footer_fb_con a{
	color: rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_fb_con a:hover{
	color: #d02634;
}

@media(max-width:1280px){
	.pc_footer_ft_fl_ft_li_ft a{
		font-size: 17px;
	}

	.pc_footer_ft_fl_fb_li .img img{
		height: 34px;
	}

	.pc_footer_ft_fl_fb_li .wz .wz_fb{
		font-size: 17px;
	}

	.pc_footer_ft_fr_ft{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.pc_footer_ft{
		padding: 30px 0;
	}

	.pc_footer_ft_fl{
		width: 100%;
	}

	.pc_footer_ft_fl_ft{
		display: none;
	}

	.pc_footer_ft_fl_ft_li_fb{
		margin-top: 10px;
	}

	.pc_footer_ft_fl_ft_li_fb_li:nth-child(n+2){
		margin-top: 8px;
	}

	.pc_footer_ft_fl_fb{
		margin-top: 0;
	}

	.pc_footer_ft_fl_fb_li .img img{
		height: 30px;
	}

	.pc_footer_ft_fr{
		width: 100%;
		max-width: 100%;
		margin-top: 20px;
	}

	.pc_footer_ft_fr_fc{
		margin: 20px 0;
	}
}

@media(max-width:768px){
	.pc_footer{
		border-top-width: 3px;
	}

	.pc_footer_ft{
		padding: 25px 0;
	}

	.pc_footer_ft_fl_ft_li{
		width: 49%;
		max-width: 49%;
	}

	.pc_footer_ft_fl_ft_li:nth-child(n+3){
		margin-top: 15px;
	}

	.pc_footer_ft_fl_ft_li_ft a{
		font-size: 16px;
	}

	.pc_footer_ft_fl_ft_li_fb_li a{
		font-size: 15px;
	}

	.pc_footer_ft_fl_fb_li{
		width: 100%;
		max-width: 100%;
	}

	.pc_footer_ft_fl_fb_li:nth-child(n+2){
		margin-top: 15px;
	}

	.pc_footer_ft_fl_fb_li .img img{
		height: 28px;
	}

	.pc_footer_ft_fl_fb_li .wz{
		margin-top: 10px;
	}

	.pc_footer_ft_fl_fb_li .wz .wz_ft{
		font-size: 15px;
	}

	.pc_footer_ft_fl_fb_li .wz .wz_fb{
		font-size: 16px;
	}

	.pc_footer_ft_fr{
		margin-top: 15px;
	}

	.pc_footer_ft_fr_ft{
		font-size: 16px;
	}

	.pc_footer_ft_fr_fc{
		margin: 15px 0 20px;
	}

	.pc_footer_ft_fr_fc li input,.pc_footer_ft_fr_fc li textarea{
		font-size: 15px;
	}

	.pc_footer_ft_fr_fc_submit input{
		font-size: 15px;
		line-height: 42px;
	}

	.pc_footer_ft_fr_fb_li .wz{
		font-size: 15px;
	}

	.pc_footer_fb_con{
		padding: 15px 0;
		font-size: 15px;
	}
}

@media(max-width:468px){
	.pc_footer_ft{
		padding: 22px 0;
	}

	.pc_footer_ft_fl_fb_li .img img{
		height: 25px;
	}
}