/*初始化样式*/
*{
	-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: #b01e23;
}

input{
	padding: 0;
	margin: 0;
	font-family: Microsoft YaHei,arial,宋体,sans-serif;
}

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;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}

body::-webkit-scrollbar-track{
	background: #9f9f9f;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical{
	background: #b01e23;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}

body::-webkit-scrollbar-thumb:vertical:active{
	background: #b01e23;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 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{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #1c1d39;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s 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: 13%;
	position: relative;
}

.pc_logo img{
	max-width: 100%;
	max-height: 68px;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_logo 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%);
}

.pc_nav{
	width: 83%;
	max-width: 1100px;
}

.pc_nav_con{
	width: 97%;
	padding-right: 120px;
	margin-right: -120px;
}

.pc_nav>.pc_nav_con>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>.pc_nav_con>ul>.pc_nav_li_www{
	float: left;
	width: 16.6666666666666%;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	position: relative;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li{
	position: relative;
	text-align: center;
	max-width: 100%;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a{
	display: block;
	position: relative;
}

.pc_nav>.pc_nav_con>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;
	height: 100px;
	overflow: hidden;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_con::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #b01e23;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_nav>.pc_nav_con>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: #fff;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi{
	color: #b01e23;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi_name{
	font-size: 18px;
	line-height: 100px;
	color: #b01e23;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	z-index: 5;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi_name{
	top: 0;
}

.pc_nav_erji_w{
	position: absolute;
	z-index: 999;
	width: 150px;
	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,0.2);
}

.pc_nav>.pc_nav_con>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>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi,
.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi{
	color: #b01e23;
}

.pc_nav_erji_li{
	position: relative;
}

.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: #b01e23;
}

.pc_nav_sanji{
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 5;
	background: #fff;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-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,0.2);
	-webkit-transform: translate(20px,0);
	-moz-transform: translate(20px,0);
	-ms-transform: translate(20px,0);
	-o-transform: translate(20px,0);
	transform: translate(20px,0);
}

.pc_nav_erji_li:hover .pc_nav_sanji{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
}

.pc_nav_sanji_li a{
	font-size: 15px;
}

.pc_header_search{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	width: 115px;
	height: 100px;
	position: relative;
	z-index: 10;
}

.pc_header_search_btn{
	position: relative;
	width: 100%;
}

.pc_header_search_btn_expand_button{
	width: 100%;
	height: 42px;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 0 15px;
	cursor: pointer;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_search_btn_expand_button_ico{
	width: 16px;
	height: 16px;
	background: url(../images/img/top_header_search2_ico.png) no-repeat left center;
	background-size: 100% 100%;
	display: block;
	position: relative;
}

.pc_header_search_btn_expand_button_text{
	font-size: 16px;
	line-height: 40px;
	color: #fff;
}

.pc_header_search_btn_pull_down{
	position: absolute;
	top: 71px;
	right: 0;
	z-index: 900;
	display: none;
}

.pc_header_search_btn_pull_down_sousuo{
	width: 230px;
	height: 45px;
	background-color: #b01e23;
	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: 45px;
	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: 45px;
	background: url(../images/img/top_header_search2_ico.png) no-repeat center;
	background-size: 20px;
	position: relative;
	z-index: 10;
}

#pc_header:hover,#pc_header.on{
	background-color: #fff;
}

#pc_header:hover .pc_logo img.img1,#pc_header.on .pc_logo img.img1{
	opacity: 0;
}

#pc_header:hover .pc_logo img.img2,#pc_header.on .pc_logo img.img2{
	opacity: 1;
}

#pc_header:hover .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi,#pc_header.on .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	color: #333;
}

#pc_header:hover .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi,#pc_header.on .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi{
	color: #b01e23;
}

#pc_header:hover .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_con::before,#pc_header.on .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_con::before,#pc_header:hover .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_con::before,#pc_header.on .pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_con::before{
	width: 100%;
}

#pc_header:hover .pc_header_search_btn_expand_button,#pc_header.on .pc_header_search_btn_expand_button{
	border-color: #b01e23;
	background-color: #b01e23;
}

@media(max-width:1280px){
	.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
		font-size: 17px;
	}

	.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi_name{
		font-size: 17px;
	}
}

/*首页banner*/
.index_banner{
	position: relative;
	overflow: hidden;
	margin-top: 100px;
}

.index_banner_li{
	overflow: hidden;
	position: relative;
}

.index_banner_li::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	width: 105%;
	height: 105%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background-color: rgba(0,0,0,0.05);
}

.index_banner_li a{
	position: relative;
	z-index: 15;
}

.index_banner_li .img{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 5;
	-webkit-transition: 1s 2.5s;
	-moz-transition: 1s 2.5s;
	-ms-transition: 1s 2.5s;
	-o-transition: 1s 2.5s;
	transition: 1s 2.5s;
	-webkit-transform: perspective(1000px) translate3d(0,0,100px);
	-moz-transform: perspective(1000px) translate3d(0,0,100px);
	-ms-transform: perspective(1000px) translate3d(0,0,100px);
	-o-transform: perspective(1000px) translate3d(0,0,100px);
	transform: perspective(1000px) translate3d(0,0,100px);
}

.index_banner_li.swiper-slide-active .img{
	-webkit-transition: 5s 0s;
	-moz-transition: 5s 0s;
	-ms-transition: 5s 0s;
	-o-transition: 5s 0s;
	transition: 5s 0s;
	-webkit-transform: perspective(1000px) translate3d(0,0,0);
	-moz-transform: perspective(1000px) translate3d(0,0,0);
	-ms-transform: perspective(1000px) translate3d(0,0,0);
	-o-transform: perspective(1000px) translate3d(0,0,0);
	transform: perspective(1000px) translate3d(0,0,0);
}

.index_banner .img img{
	width: 100%;
	opacity: 0;
	min-height: 280px;
}

.index_banner_li .wz{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 15;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_banner_li .wz .wz_ft .wz_ft_ft{
	font-size: 1.8rem;
	line-height: 1.4;
	color: #fff;
	opacity: 0;
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-ms-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	transform: translate3d(0,80px,0);
	-webkit-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-o-transition-duration: 2s;
	transition-duration: 2s;
}

.index_banner_li.swiper-slide-active .wz .wz_ft .wz_ft_ft{
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.index_banner_li .wz .wz_ft .wz_ft_fb{
	font-size: 2.65rem;
	line-height: 1.4;
	color: #fff;
	font-weight: bold;
	opacity: 0;
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-ms-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	transform: translate3d(0,80px,0);
	-webkit-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-o-transition-duration: 2s;
	transition-duration: 2s;
}

.index_banner_li.swiper-slide-active .wz .wz_ft .wz_ft_fb{
	-webkit-transition-delay: 0.7s;
	-moz-transition-delay: 0.7s;
	-ms-transition-delay: 0.7s;
	-o-transition-delay: 0.7s;
	transition-delay: 0.7s;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.index_banner_li .wz .wz_fb{
	position: relative;
	padding-top: 2%;
	margin-top: 1.5%;
}

.index_banner_li .wz .wz_fb::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4.5rem;
	height: 5px;
	background-color: #fff;
	opacity: 0;
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-ms-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	transform: translate3d(0,80px,0);
	-webkit-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-o-transition-duration: 2s;
	transition-duration: 2s;
}

.index_banner_li.swiper-slide-active .wz .wz_fb::before{
	-webkit-transition-delay: 0.9s;
	-moz-transition-delay: 0.9s;
	-ms-transition-delay: 0.9s;
	-o-transition-delay: 0.9s;
	transition-delay: 0.9s;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.index_banner_li .wz .wz_fb .wz_fb_nnn{
	font-size: 18px;
	line-height: 1.8;
	color: #fff;
	max-width: 980px;
	opacity: 0;
	-webkit-transform: translate3d(0,80px,0);
	-moz-transform: translate3d(0,80px,0);
	-ms-transform: translate3d(0,80px,0);
	-o-transform: translate3d(0,80px,0);
	transform: translate3d(0,80px,0);
	-webkit-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-o-transition-duration: 2s;
	transition-duration: 2s;
}

.index_banner_li.swiper-slide-active .wz .wz_fb .wz_fb_nnn{
	-webkit-transition-delay: 1.1s;
	-moz-transition-delay: 1.1s;
	-ms-transition-delay: 1.1s;
	-o-transition-delay: 1.1s;
	transition-delay: 1.1s;
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,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: 30px;
	opacity: 1;
	margin: 0 8px!important;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_banner_yuandian span.swiper-pagination-bullet-active{
	background: #b01e23;
	width: 45px;
}

@media(max-width:1280px){
	.index_banner_li .wz .wz_ft .wz_ft_ft{
		font-size: 26px;
	}

	.index_banner_li .wz .wz_fb{
		margin-top: 15px;
		padding-top: 24px;
	}

	.index_banner_li .wz .wz_fb::before{
		height: 4px;
	}

	.index_banner_li .wz .wz_fb .wz_fb_nnn{
		font-size: 17px;
		line-height: 1.7;
	}
}

@media(max-width:991px){
	.index_banner{
		margin-top: 0;
	}

	.index_banner_li .wz .wz_ft .wz_ft_ft{
		font-size: 24px;
	}

	.index_banner_li .wz .wz_fb::before{
		width: 50px;
	}

	.index_banner_yuandian span{
		width: 10px;
		height: 10px;
		margin: 0 6px!important;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active{
		width: 40px;
	}
}

@media(max-width:768px){
	.index_banner_li .wz .wz_ft .wz_ft_ft{
		font-size: 22px;
	}

	.index_banner_li .wz .wz_ft .wz_ft_fb{
		font-size: 24px;
	}

	.index_banner_li .wz .wz_fb{
		margin-top: 12px;
		padding-top: 20px;
	}

	.index_banner_li .wz .wz_fb::before{
		width: 45px;
		height: 3px;
	}

	.index_banner_li .wz .wz_fb .wz_fb_nnn{
		font-size: 16px;
		line-height: 1.6;
	}

	.index_banner_yuandian{
		bottom: 15px!important;
	}

	.index_banner_yuandian span{
		width: 9px;
		height: 9px;
		margin: 0 5px!important;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active{
		width: 30px;
	}
}

@media(max-width:468px){
	.index_banner_li .wz .wz_ft .wz_ft_ft{
		font-size: 18px;
	}

	.index_banner_li .wz .wz_ft .wz_ft_fb{
		font-size: 20px;
	}

	.index_banner_li .wz .wz_fb{
		margin-top: 8px;
		padding-top: 13px;
	}

	.index_banner_li .wz .wz_fb .wz_fb_nnn{
		font-size: 15px;
		line-height: 1.5;
	}

	.index_banner_yuandian{
		bottom: 12px!important;
	}

	.index_banner_yuandian span{
		width: 8px;
		height: 8px;
		margin: 0 3px!important;
	}

	.index_banner_yuandian span.swiper-pagination-bullet-active{
		width: 25px;
	}
}

/*about*/
.index_weilisi_product{
	background-color: #f7f7f7;
	background-image: url(../images/img/index_product_background.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 4% 0;
}

.index_weilisi_product_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_weilisi_product_fl{
	width: 48%;
}

.index_weilisi_product_fl_ft_ft,.index_weilisi_product_fl_ft_fb{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #000;
}

.index_weilisi_product_fl_fc{
	font-size: 17px;
	line-height: 1.8;
	color: #333;
	margin: 2.8% 0 4%;
	text-indent: 2em;
}

.index_weilisi_product_fl_fb{
	overflow: hidden;
}

.index_weilisi_product_fl_fb a{
	float: left;
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 0.7rem 3rem;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_product_fl_fb a:hover{
	border-color: #b01e23;
	background-color: #b01e23;
	color: #fff;
}

.index_weilisi_product_fr{
	width: 48%;
}

.index_weilisi_product_fr .img{
	overflow: hidden;
}

.index_weilisi_product_fr .img img{
	width: 100%;
}

@media(max-width:1280px){
	.index_weilisi_product_fl_ft_ft,.index_weilisi_product_fl_ft_fb{
		font-size: 26px;
	}

	.index_weilisi_product_fl_fc{
		font-size: 16px;
		line-height: 1.7;
	}

	.index_weilisi_product_fl_fb a{
		padding: 10px 3rem;
	}
}

@media(max-width:991px){
	.index_weilisi_product_fl{
		width: 100%;
	}

	.index_weilisi_product_fl_ft_ft,.index_weilisi_product_fl_ft_fb{
		font-size: 24px;
	}

	.index_weilisi_product_fl_fc{
		margin: 1.7% 0 2.5%;
		line-height: 1.6;
	}

	.index_weilisi_product_fl_fb a{
		padding: 9px 35px;
	}

	.index_weilisi_product_fr{
		width: 100%;
		margin-top: 3.5%;
	}
}

@media(max-width:768px){
	.index_weilisi_product{
		padding: 30px 0;
	}

	.index_weilisi_product_fl_ft_ft,.index_weilisi_product_fl_ft_fb{
		font-size: 22px;
	}

	.index_weilisi_product_fl_fc{
		margin: 12px 0 18px;
	}

	.index_weilisi_product_fl_fb a{
		padding: 8px 28px;
	}

	.index_weilisi_product_fr{
		margin-top: 25px;
	}
}

@media(max-width:468px){
	.index_weilisi_product{
		padding: 25px 0;
	}

	.index_weilisi_product_fl_ft_ft,.index_weilisi_product_fl_ft_fb{
		font-size: 20px;
	}

	.index_weilisi_product_fr{
		margin-top: 20px;
	}
}

/*product*/
.index_weilisi_about{
	padding: 4% 0;
}

.index_weilisi_about_ft{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_weilisi_about_ft_fl{
	width: 100%;
	padding-right: 120px;
	margin-right: -120px;
}

.index_weilisi_about_ft h3{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #000;
}

.index_weilisi_about_ft h4{
	font-size: 18px;
	line-height: 1.6;
	color: #666;
	margin-top: 5px;
}

.index_weilisi_about_ft_fr{
	position: relative;
	z-index: 10;
}

.index_weilisi_about_ft_fr a{
	font-size: 16px;
	line-height: 2;
	color: #333;
	display: block;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_about_ft_fr a:hover{
	color: #b01e23;
	text-decoration: underline;
}

.index_weilisi_about_fb{
	margin-top: 3%;
}

.index_weilisi_about_fb_li{
	position: relative;
	overflow: hidden;
}

.index_weilisi_about_fb_li .img{
	background-color: rgba(0,0,0,0.2);
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.index_weilisi_about_fb_li .img::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 9;
	width: 102%;
	height: 102%;
	background-color: rgba(176,30,35,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%);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_about_fb_li:hover .img::before{
	background-color: rgba(176,30,35,0.8);
}

.index_weilisi_about_fb_li .img img{
	width: 100%;
	position: relative;
	z-index: 7;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-ms-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}

.index_weilisi_about_fb_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_weilisi_about_fb_li .wz{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	width: 100%;
	height: 100%;
	padding: 9%;
	-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_weilisi_about_fb_li .wz .wz_ft{
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	max-height: 4.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	opacity: 0;
	-webkit-transition: all 0.5s ease 0.2s;
	-moz-transition: all 0.5s ease 0.2s;
	-ms-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}

.index_weilisi_about_fb_li:hover .wz .wz_ft{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_weilisi_about_fb_li .wz .wz_fb{
	margin-top: 2%;
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	font-weight: bold;
	opacity: 0;
	-webkit-transition: all 0.5s ease 0.4s;
	-moz-transition: all 0.5s ease 0.4s;
	-ms-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
}

.index_weilisi_about_fb_li:hover .wz .wz_fb{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_weilisi_about_fb_li .wz2{
	padding: 0 9%;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
	position: absolute;
	left: 0;
	bottom: 9%;
	z-index: 15;
	width: 100%;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media(max-width:1280px){
	.index_weilisi_about_ft h3{
		font-size: 26px;
	}

	.index_weilisi_about_ft h4{
		font-size: 17px;
		line-height: 1.5;
	}

	.index_weilisi_about_fb_li .wz2{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.index_weilisi_about_ft h3{
		font-size: 24px;
	}
}

@media(max-width:768px){
	.index_weilisi_about{
		padding: 30px 0;
	}

	.index_weilisi_about_ft_fl{
		padding-right: 0;
		margin-right: 0;
	}

	.index_weilisi_about_ft h3{
		font-size: 22px;
	}

	.index_weilisi_about_ft h4{
		font-size: 16px;
	}

	.index_weilisi_about_ft_fr{
		display: none;
	}

	.index_weilisi_about_ft_fr a{
		font-size: 15px;
	}

	.index_weilisi_about_fb{
		margin-top: 22px;
	}

	.index_weilisi_about_fb_li .wz{
		padding: 25px;
	}

	.index_weilisi_about_fb_li .wz .wz_ft{
		font-size: 15px;
		line-height: 1.5;
		max-height: 4.5em;
	}

	.index_weilisi_about_fb_li .wz .wz_fb{
		font-size: 15px;
		line-height: 1.5;
		margin-top: 8px;
	}

	.index_weilisi_about_fb_li .wz2{
		padding: 0 25px;
		font-size: 17px;
		bottom: 25px;
	}
}

@media(max-width:468px){
	.index_weilisi_about{
		padding: 25px 0;
	}

	.index_weilisi_about_ft h3{
		font-size: 20px;
	}

	.index_weilisi_about_fb{
		margin-top: 17px;
	}

	.index_weilisi_about_fb_li .wz{
		padding: 20px;
	}

	.index_weilisi_about_fb_li .wz2{
		padding: 0 20px;
		font-size: 16px;
		bottom: 20px;
	}
}

/*case*/
.index_weilisi_case{
	background-color: #f7f7f7;
	background-image: url(../images/img/index_product_background.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 4% 0;
}

.index_weilisi_case_fc{
	margin-top: 3%;
}

.index_weilisi_case_fc_ul{
	overflow: hidden;
	position: relative;
	width: 100%;
}

.index_weilisi_case_fc_li{
	position: absolute;
	width: 32%;
	text-align: center;
	float: left;
	overflow: hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_weilisi_case_fc_li:nth-child(1){
	left: 0;
	position: relative;
	z-index: 2;
}

.index_weilisi_case_fc_li:nth-child(2){
	left: 20%;
	z-index: 3;
}

.index_weilisi_case_fc_li:nth-child(3){
	left: 40%;
	z-index: 4;
}

.index_weilisi_case_fc_li:nth-child(4){
	left: 60%;
	z-index: 5;
}

.index_weilisi_case_fc_li:nth-child(5){
	left: 80%;
	z-index: 6;
}

.index_weilisi_case_fc_li_links{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	width: 20vw;
	height: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_weilisi_case_fc_li.active .index_weilisi_case_fc_li_links{
	width: 32vw;
}

.index_weilisi_case_fc_li.deactive .index_weilisi_case_fc_li_links{
	width: 17vw;
}

.index_weilisi_case_fc_li .img{
	position: relative;
	z-index: 2;
	width: 26vw;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_weilisi_case_fc_li.active .img{
	width: 32vw;
}

.index_weilisi_case_fc_li.deactive .img{
	width: 24vw;
}

.index_weilisi_case_fc_li .img::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(21,60,153,0.35);
}

.index_weilisi_case_fc_li .img .img_con{
	padding: 13vw 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_weilisi_case_fc_li .wz{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	padding: 1rem;
}

.index_weilisi_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_weilisi_case_fc_li .wz .wz_con .wz_nnn{
	position: relative;
	padding: 0 5%;
	width: 100%;
}

.index_weilisi_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.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_weilisi_case_fc_li:hover .wz .wz_con::before,.index_weilisi_case_fc_li.active .wz .wz_con::before{
	width: 90%;
}

.index_weilisi_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_weilisi_case_fc_li .wz .wz_icon img{
	width: 55%;
}

.index_weilisi_case_fc_li .wz .wz_title{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	padding: 0.75rem 0 1rem;
	position: relative;
	z-index: 4;
}

.index_weilisi_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: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.index_weilisi_case_fc_li:hover .wz .wz_title::before,.index_weilisi_case_fc_li.active .wz .wz_title::before{
	width: 80%;
}

@media(max-width:1280px){
	.index_weilisi_case_fc_li .wz{
		padding: 15px;
	}

	.index_weilisi_case_fc_li .wz .wz_con .wz_nnn{
		padding: 0 10px;
	}

	.index_weilisi_case_fc_li .wz .wz_icon{
		width: 55px;
		height: 55px;
	}

	.index_weilisi_case_fc_li .wz .wz_title{
		font-size: 18px;
		padding: 12px 0 16px;
	}

	.index_weilisi_case_fc_li .wz .wz_title::before{
		width: 40px;
	}
}

@media(max-width:991px){
	.index_weilisi_case_fc_li{
		width: 100%;
		position: relative;
		left: 0!important;
	}

	.index_weilisi_case_fc_li_links{
		width: 100%;
	}

	.index_weilisi_case_fc_li.active .index_weilisi_case_fc_li_links{
		width: 100%;
	}

	.index_weilisi_case_fc_li.deactive .index_weilisi_case_fc_li_links{
		width: 100%;
	}

	.index_weilisi_case_fc_li .img{
		width:100%;
	}

	.index_weilisi_case_fc_li.active .img{
		width:100%;
	}

	.index_weilisi_case_fc_li.deactive .img{
		width:100%;
	}

	.index_weilisi_case_fc_li .img .img_con{
		padding: 37.5% 0;
	}

	.index_weilisi_case_fc_li .wz .wz_con::before{
		max-width: 600px;
		max-height: 450px;
		border-radius: 20px;
	}

	.index_weilisi_case_fc_li .wz .wz_title::before{
		max-width: 500px;
	}

	.index_weilisi_case_fc_li .wz .wz_con::before{
		width: 90%;
	}

	.index_weilisi_case_fc_li:hover .wz .wz_title::before{
		width: 80%;
	}
}

@media(max-width:768px){
	.index_weilisi_case{
		padding: 30px 0;
	}

	.index_weilisi_case_fc{
		margin-top: 22px;
	}

	.index_weilisi_case_fc_li .wz .wz_icon{
		width: 50px;
		height: 50px;
	}

	.index_weilisi_case_fc_li .wz .wz_title{
		font-size: 17px;
		padding: 10px 0 14px;
	}

	.index_weilisi_case_fc_li .wz .wz_title::before{
		width: 36px;
	}
}

@media(max-width:468px){
	.index_weilisi_case{
		padding: 25px 0;
	}

	.index_weilisi_case_fc{
		margin-top: 17px;
	}

	.index_weilisi_case_fc_li .wz .wz_title{
		font-size: 16px;
	}
}

/*news*/
.index_weilisi_news{
	padding: 4% 0;
}

.index_weilisi_news_fb{
	margin-top: 3%;
}

.index_weilisi_news_fb_ul{
	overflow: hidden;
}

.index_weilisi_news_fb_li{
	width: 25%;
	background-color: #fff;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_news_fb_li:hover{
	background-color: #f7f7f7;
}

.index_weilisi_news_fb_li_links{
	display: block;
	padding: 6%;
}

.index_weilisi_news_fb_li .wz_ft h3{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_news_fb_li .wz_ft .wz_time{
	font-size: 15px;
	line-height: 1.5;
	color: #595959;
	margin-top: 4%;
	padding-left: 28px;
	position: relative;
}

.index_weilisi_news_fb_li .wz_ft .wz_time::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 17px;
	height: 17px;
	opacity: 0.8;
	background-image: url(../images/img/index_news_time_ico.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100% 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_weilisi_news_fb_li .wz_fc{
	margin: 5% 0 6%;
	padding-top: 5%;
	border-top: 1px solid #dfdfdf;
	position: relative;
}

.index_weilisi_news_fb_li .wz_fc::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 0;
	height: 1px;
	background-color: #b01e23;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_news_fb_li:hover .wz_fc::before{
	width: 100%;
}

.index_weilisi_news_fb_li .wz_fc .wz_fc_nnn{
	font-size: 15px;
	line-height: 1.5;
	color: #777;
	height: 7.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.index_weilisi_news_fb_li .wz_fb span{
	display: block;
	width: 30px;
	height: 25px;
	border: 1px solid #ccc;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_news_fb_li .wz_fb span::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 14px;
	opacity: 0.6;
	background-image: url(../images/img/index_news_arrow_ico.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	-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.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_weilisi_news_fb_li:hover .wz_fb span{
	border-color: #afafaf;
}

.index_weilisi_news_fb_li:hover .wz_fb span::before{
	opacity: 0.8;
}

@media(max-width:1280px){
	.index_weilisi_news_fb_li_links{
		padding: 20px;
	}

	.index_weilisi_news_fb_li .wz_ft h3{
		font-size: 18px;
	}

	.index_weilisi_news_fb_li .wz_ft .wz_time{
		margin-top: 10px;
		padding-left: 25px;
	}

	.index_weilisi_news_fb_li .wz_ft .wz_time::before{
		width: 16px;
		height: 16px;
	}

	.index_weilisi_news_fb_li .wz_fc{
		margin: 13px 0 15px;
		padding-top: 15px;
	}

	.index_weilisi_news_fb_li .wz_fb span{
		width: 28px;
		height: 23px;
	}

	.index_weilisi_news_fb_li .wz_fb span::before{
		width: 13px;
		height: 13px;
	}
}

@media(max-width:991px){
	.index_weilisi_news_fb_li{
		width: 50%;
	}

	.index_weilisi_news_fb_li_links{
		padding: 18px;
	}

	.index_weilisi_news_fb_li .wz_ft .wz_time{
		margin-top: 8px;
	}

	.index_weilisi_news_fb_li .wz_fc{
		margin: 10px 0 12px;
		padding-top: 12px;
	}
}

@media(max-width:768px){
	.index_weilisi_news{
		padding: 30px 0;
	}

	.index_weilisi_news_fb{
		margin-top: 22px;
	}

	.index_weilisi_news_fb_li{
		width: 100%;
	}

	.index_weilisi_news_fb_li_links{
		padding: 15px;
	}

	.index_weilisi_news_fb_li .wz_ft h3{
		font-size: 17px;
	}

	.index_weilisi_news_fb_li .wz_ft .wz_time{
		margin-top: 5px;
	}

	.index_weilisi_news_fb_li .wz_ft .wz_time::before{
		width: 15px;
		height: 15px;
	}

	.index_weilisi_news_fb_li .wz_fb span{
		width: 25px;
		height: 20px;
	}

	.index_weilisi_news_fb_li .wz_fb span::before{
		width: 12px;
		height: 12px;
	}
}

@media(max-width:468px){
	.index_weilisi_news{
		padding: 25px 0;
	}

	.index_weilisi_news_fb{
		margin-top: 17px;
	}
}

/*footer*/
.pc_footer{
	background-color: #202020;
}

.pc_footer_ft{
	padding: 3% 0;
}

.pc_footer_ft_con{
	overflow: hidden;
}

.pc_footer_ft_fl{
	width: 48%;
}

.pc_footer_ft_fl_li{
	max-width: 23.5%;
}

.pc_footer_ft_fl_li_ft{
	font-size: 0;
	line-height: 0;
}

.pc_footer_ft_fl_li_ft a{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	display: inline-block;
	max-width: 100%;
	padding-right: 17px;
	position: relative;
}

.pc_footer_ft_fl_li_ft a::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 12px;
	height: 12px;
	background-image: url(../images/img/footer_nav_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_footer_ft_fl_li_fb{
	margin-top: 1rem;
}

.pc_footer_ft_fl_li_fb_li{
	font-size: 0;
}

.pc_footer_ft_fl_li_fb_li:nth-child(n+2){
	margin-top: 0.8rem;
}

.pc_footer_ft_fl_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.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_footer_ft_fl_li_fb_li a:hover{
	color: rgba(255,255,255,1);
}

.pc_footer_ft_fc{
	max-width: 29%;
}

.pc_footer_ft_fc_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_ft_fc_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #d3d3d3;
	margin-top: 1rem;
}

.pc_footer_ft_fc_fb p:nth-child(n+2){
	margin-top: 0.8rem;
}

.pc_footer_ft_fr{
	max-width: 13%;
}

.pc_footer_ft_fr_li{
	width: 100%;
	max-width: 130px;
	text-align: center;
}

.pc_footer_ft_fr_li .img img{
	width: 100%;
}

.pc_footer_ft_fr_li .wz{
	font-size: 16px;
	line-height: 1.5;
	color: #ccc;
	margin-top: 12px;
}

.pc_footer_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #b2b2b2;
}

.pc_footer_fb_con{
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 22px 0;
}

.pc_footer_fb a{
	color: #b2b2b2;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_footer_fb a:hover{
	color: rgba(255,255,255,1);
}

@media(max-width:1280px){
	.pc_footer_ft_fl_li_ft a{
		font-size: 17px;
		padding-right: 16px;
	}

	.pc_footer_ft_fl_li_ft a::before{
		width: 11px;
		height: 11px;
	}

	.pc_footer_ft_fc_ft{
		font-size: 17px;
	}

	.pc_footer_fb_con{
		padding: 20px 0;
	}
}

@media(max-width:991px){
	.pc_footer_ft{
		padding: 30px 0;
	}

	.pc_footer_ft_fl{
		width: 100%;
		display: none;
	}

	.pc_footer_ft_fl_li_fb{
		margin-top: 12px;
	}

	.pc_footer_ft_fl_li_fb_li:nth-child(n+2){
		margin-top: 10px;
	}

	.pc_footer_ft_fc{
		width: 70%;
		max-width: 100%;
	}

	.pc_footer_ft_fc_fb{
		margin-top: 12px;
	}

	.pc_footer_ft_fc_fb p:nth-child(n+2){
		margin-top: 10px;
	}

	.pc_footer_ft_fr{
		max-width: 18%;
	}

	.pc_footer_fb_con{
		padding: 18px 0;
	}
}

@media(max-width:768px){
	.pc_footer_ft{
		padding: 25px 0;
	}

	.pc_footer_ft_fl_li_ft a{
		font-size: 16px;
		padding-right: 15px;
	}

	.pc_footer_ft_fl_li_ft a::before{
		width: 10px;
		height: 10px;
	}

	.pc_footer_ft_fl_li_fb{
		margin-top: 10px;
	}

	.pc_footer_ft_fl_li_fb_li:nth-child(n+2){
		margin-top: 8px;
	}

	.pc_footer_ft_fl_li_fb_li a{
		font-size: 15px;
	}

	.pc_footer_ft_fc{
		width: 100%;
	}

	.pc_footer_ft_fc_ft{
		font-size: 16px;
	}

	.pc_footer_ft_fc_fb{
		font-size: 15px;
		margin-top: 10px;
	}

	.pc_footer_ft_fc_fb p:nth-child(n+2){
		margin-top: 8px;
	}

	.pc_footer_ft_fr{
		max-width: 100%;
		width: 100%;
		margin-top: 15px;
	}

	.pc_footer_ft_fr_li{
		max-width: 120px;
	}

	.pc_footer_ft_fr_li .wz{
		font-size: 15px;
	}

	.pc_footer_fb{
		font-size: 15px;
	}

	.pc_footer_fb_con{
		padding: 15px 0;
	}
}

@media(max-width:468px){
	.pc_footer_ft{
		padding: 20px 0;
	}
}