/*Initialize style*/
*{
	-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{
	position: relative;
	width: 100%;
	font: 15px/1.5 Microsoft YaHei,arial,宋体,sans-serif;
	color: #333333;
	word-break: break-word;
	vertical-align: baseline;
	overflow-x: hidden!important;
	background-color: #ffffff;
}

a{
	outline: none;
	color: #333333;
	text-decoration: none;
}

a:hover,a:active,a:focus{
	outline: none;
	color: #0262b8;
	text-decoration: none;
}

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

img{
	border: none;
	vertical-align: middle;
	-webkit-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	background: none;
}

ul,ol,li{
	list-style-type: none;
}

select,input,img{
	vertical-align: middle;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

table,th,td{
	vertical-align: middle;
}

.clearfix:after{
	content: ".";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
	display: block;
}

.clearfix{
	zoom: 1;
}

.clearboth{
	height: 0px;
	font-size: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
}

h1,h2{
	font-weight: bold;
}

hr{
	height: 0;
	border: 0;
	border-top: 1px solid #cccccc;
}

h3,h4,h5,h6{
	font-weight: normal;
}

p{
	margin: 0;
}

/*Common css*/
.fl{
	float: left;
}

.fr{
	float: right;
}

/*Flex layout*/
.flex_wrap{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*Flex layout vertically aligned*/
.flex_alise{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-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 layout is centered up and down*/
.flex_alice{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-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 layout aligned left and right*/
.flex_con{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-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 layout is centered on the left and right sides*/
.flex_con_cen{
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-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: 6px;
	-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: #0262b8;
	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: #0262b8;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}

/*Main area*/
.max1240{
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti{
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 50px;
}

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

	.page_con_zhuti{
		padding: 0 30px;
	}
}

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

	.page_con_zhuti{
		padding: 0 20px;
	}

	body{
		padding-top: 61px!important;
	}
}

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

	.page_con_zhuti{
		padding: 0 15px;
	}
}

/*PC header*/
.pc_header_top{
	font-size: 15px;
	line-height: 40px;
	color: #666666;
	background-color: #f4f4f4;
}

.pc_header_top a{
	color: #666666;
	-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_top a:hover{
	color: #0262b8;
}

.pc_header_top_con{
	overflow: hidden;
}

.pc_header_top_fr_ul{
	overflow: hidden;
}

.pc_header_top_fr_li{
	position: relative;
	padding-right: 6px;
	margin-right: 6px;
}

.pc_header_top_fr_li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.pc_header_top_fr_li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 14px;
	background-color: #666666;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_header_top_fr_li:last-child::before{
	display: none;
}

#pc_header{
	padding: 20px 0;
	background-color: #ffffff;
}

.pc_header_con{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo{
	width: 45%;
	max-width: 480px;
}

.pc_logo img{
	max-width: 100%;
	max-height: 80px;
}

.pc_header_qrcode_phone{
	max-width: 45%;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_qrcode{
	margin-right: 1.2rem;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_qrcode .wz{
	width: 20px;
	font-size: 14px;
	line-height: 1.15;
	color: #666666;
	margin-right: 10px;
	text-align: center;
}

.pc_header_qrcode .img{
	width: 90px;
}

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

.pc_header_phone{
	padding-right: 3.3rem;
	background-image: url(../images/img/pc_header_phone_ico.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 2.7rem;
}

.pc_header_phone .wz_ft{
	font-size: 16px;
	line-height: 1.7;
	color: #666666;
	text-align: right;
}

.pc_header_phone .wz_fb{
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.46;
	color: #0262b8;
}

.pc_header_nav{
	background-color: #0262b8;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www{
	position: relative;
	float: left;
	width: 14%;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

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

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

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_con{
	position: relative;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	width: 100%;
	font-size: 16px;
	line-height: 60px;
	color: #ffffff;
	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;
}

.pc_nav_erji_w{
	position: absolute;
	z-index: 999;
	width: 100%;
	min-width: 175px;
	left: 50%;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	background: #ffffff;
	-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;
}

.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: #ffffff;
	background-color: #e4aa1d;
}

.pc_nav_erji_li{
	position: relative;
}

.pc_nav_erji_li a{
	font-size: 16px;
	line-height: 2;
	color: #666666;
	padding: 5px;
	background-color: #ffffff;
	display: block;
}

.pc_nav_erji_li a:hover{
	color: #ffffff;
	background: #0262b8;
}

.pc_nav_sanji{
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 5;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	background: #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;
	-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;
}

@media(max-width:1200px){
	.pc_header_phone{
		padding-right: 58px;
		background-size: 45px;
	}

	.pc_header_phone .wz_fb{
		font-size: 22px;
	}
}

@media(max-width:991px){
	.pc_header_top{
		display: none;
	}

	#pc_header{
		display: none;
	}

	.pc_header_nav{
		display: none;
	}
}

/*Home 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%;
	opacity: 0;
}

.index_banner_yuandian{
	position: absolute;
	left: 0;
	bottom: 7%!important;
	z-index: 99;
	font-size: 0;
	text-align: center;
}

.index_banner_yuandian span{
	position: relative;
	width: 2.25rem;
	height: 0.35rem;
	margin: 0 0.45rem!important;
	opacity: 1;
	overflow: hidden;
	border-radius: 0;
	background: rgba(255,255,255,0.5);
}

.index_banner_yuandian span.swiper-pagination-bullet-active{
	background: #0262b8;
}

.index_banner_btnl,.index_banner_btnr{
	position: absolute;
	top: 50%;
	z-index: 800;
	width: 50px;
	height: 65px;
	cursor: pointer;
	background: rgba(255,255,255,0.1);
	-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: #0262b8;
}

.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: 45px;
		height: 60px;
	}

	.index_banner_btnl span,.index_banner_btnr span{
		width: 15px;
		height: 15px;
	}
}

@media(max-width:1280px){
	.index_banner_btnl,.index_banner_btnr{
		width: 40px;
		height: 55px;
	}

	.index_banner_btnl span,.index_banner_btnr span{
		width: 14px;
		height: 14px;
	}
}

@media(max-width:991px){
	.index_banner_btnl,.index_banner_btnr{
		display: none;
	}
}

@media(max-width:768px){
	.index_banner_yuandian{
		bottom: 20px!important;
	}

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

@media(max-width:468px){
	.index_banner_yuandian{
		bottom: 15px!important;
	}

	.index_banner_yuandian span{
		width: 20px;
		height: 2px;
		margin: 0 4px!important;
	}
}

/*They are all searching*/
.index_popular_keywords{
	padding: 15px 0;
	background-color: #f3f3f3;
}

.index_popular_keywords_con{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_popular_keywords_fl{
	font-size: 15px;
	line-height: 40px;
	color: #666666;
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_popular_keywords_fl_title{
	font-weight: bold;
}

.index_popular_keywords_fl_ul{
	overflow: hidden;
}

.index_popular_keywords_fl_li{
	position: relative;
	margin-right: 8px;
}

.index_popular_keywords_fl_li:last-child{
	margin-right: 0;
}

.index_popular_keywords_fl_li a{
	color: #666666;
	-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_popular_keywords_fl a:hover{
	color: #0262b8;
}

.index_popular_keywords_fr{
	width: 280px;
}

.index_popular_keywords_fr_searchform_box{
	position: relative;
	height: 40px;
	border: 1px solid #ededed;
	border-radius: 30px;
	overflow: hidden;
	display: block;
	background-color: #ffffff;
}

.index_popular_keywords_shuru_box{
	position: relative;
	z-index: 3;
	width: 100%;
	padding-right: 40px;
}

.index_popular_keywords_shuru{
	width: 100%;
	font-size: 15px;
	line-height: 38px;
	color: #666666;
	padding-left: 15px;
	padding-right: 15px;
	border: 0;
	outline: none;
	background: none;
}

.index_popular_keywords_shuru::-webkit-autofill{
	-webkit-text-fill-color: #999999!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;
}

.index_popular_keywords_shuru::placeholder{
	color: #999999;
}

.index_popular_keywords_tijiao{
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 8;
	width: 40px;
	height: 100%;
	cursor: pointer;
	outline: none;
	border: 0;
	border-radius: 50%;
	background-image: url(../images/img/index_hotsearch_search_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 16px;
	background-color: #0262b8;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media(max-width:991px){
	.index_popular_keywords{
		display: none;
	}
}

/*Product center*/
.index_bailinwang_product{
	padding: 4% 0;
}

.index_bailinwang_product_ft{
	text-align: center;
}

.index_bailinwang_product_ft h3{
	position: relative;
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1.5;
	color: #333333;
	-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;
}

.index_bailinwang_product_ft h3::before,.index_bailinwang_product_ft h3::after{
	content: '';
	width: 3%;
	height: 1px;
	background-color: #0262b8;
	vertical-align: middle;
	display: inline-block;
}

.index_bailinwang_product_ft h3::before{
	margin-right: 2.7%;
}

.index_bailinwang_product_ft h3::after{
	margin-left: 2.7%;
}

.index_bailinwang_product_ft h3 span{
	color: #0262b8;
}

.index_bailinwang_product_ft h4{
	font-size: 18px;
	line-height: 1.5;
	color: #999999;
	margin-top: 10px;
}

.index_bailinwang_product_fb{
	margin-top: 3%;
}

.index_bailinwang_product_fb_con{
	overflow: hidden;
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.index_bailinwang_product_fb_fl{
	position: relative;
	z-index: 10;
	width: 248px;
	background-color: #0262b8;
	border-radius: 5px 5px 0 0;
}

.index_bailinwang_product_fb_fl_ft{
	padding: 10.5% 14%;
}

.index_bailinwang_product_fb_fl_ft_title{
	position: relative;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
	color: #ffffff;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_bailinwang_product_fb_fl_ft_title span{
	width: 1.4rem;
	display: block;
}

.index_bailinwang_product_fb_fl_ft_title span::before{
	content: '';
	padding: 50% 0;
	background-image: url(../images/img/index_product_nav_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: block;
}

.index_bailinwang_product_fb_fl_fc{
	padding: 12px;
	background-color: #f7f7f7;
}

.index_bailinwang_product_fb_fl_fc_li{
	margin: 8px 0;
}

.index_bailinwang_product_fb_fl_fc_li_links{
	font-size: 18px;
	line-height: 2;
	color: #666666;
	padding: 0.45rem 14%;
	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;
}

.index_bailinwang_product_fb_fl_fc_li:hover .index_bailinwang_product_fb_fl_fc_li_links{
	color: #ffffff;
	background-color: #0262b8;
}

.index_bailinwang_product_fb_fl_fc_li_links_box{
	position: relative;
}

.index_bailinwang_product_fb_fl_fc_li_links span{
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 10px;
	background-image: url(../images/img/index_product_nav_links_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%);
	-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_bailinwang_product_fb_fl_fc_li:hover .index_bailinwang_product_fb_fl_fc_li_links span{
	background-image: url(../images/img/index_product_nav_links_ico2.png);
}

.index_bailinwang_product_fb_fl_fb{
	padding: 9% 0;
	text-align: center;
}

.index_bailinwang_product_fb_fl_fb_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
}

.index_bailinwang_product_fb_fl_fb_fb{
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.2;
	color: #ffffff;
	margin-top: 10px;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.index_bailinwang_product_fb_fl_fb_fb_con{
	padding-left: 1.4rem;
	background-image: url(../images/img/index_product_nav_phone_ico.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 1.1rem;
}

.index_bailinwang_product_fb_fr{
	width: 97%;
	padding-left: 248px;
	margin-left: -248px;
}

.index_bailinwang_product_fb_fr_ul{
	overflow: hidden;
}

.index_bailinwang_product_fb_fr_li{
	width: 32%;
	margin-right: 2%;
	text-align: center;
}

.index_bailinwang_product_fb_fr_li:nth-child(3n){
	margin-right: 0;
}

.index_bailinwang_product_fb_fr_li:nth-child(n+4){
	margin-top: 2%;
}

.index_bailinwang_product_fb_fr_li .img{
	overflow: hidden;
	border: 1px solid #eeeeee;
}

.index_bailinwang_product_fb_fr_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_bailinwang_product_fb_fr_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_bailinwang_product_fb_fr_li .wz{
	font-size: 17px;
	line-height: 1.5;
	color: #444444;
	padding: 0.5125rem 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-color: #f5f5f5;
	-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_bailinwang_product_fb_fr_li:hover .wz{
	color: #ffffff;
	background-color: #0262b8;
}

@media(max-width:1280px){
	.index_bailinwang_product_ft h4{
		font-size: 17px;
	}

	.index_bailinwang_product_fb_fl_fc_li_links{
		font-size: 17px;
	}

	.index_bailinwang_product_fb_fl_fb_ft{
		font-size: 17px;
	}

	.index_bailinwang_product_fb_fr_li .wz{
		font-size: 16px;
	}
}

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

	.index_bailinwang_product_fb_fl{
		width: 100%;
	}

	.index_bailinwang_product_fb_fl_ft{
		padding: 20px;
	}

	.index_bailinwang_product_fb_fl_ft_title{
		font-size: 20px;
	}

	.index_bailinwang_product_fb_fl_ft_title span{
		width: 20px;
	}

	.index_bailinwang_product_fb_fl_fc{
		padding: 15px;
	}

	.index_bailinwang_product_fb_fl_fc_li{
		margin: 5px 0;
	}

	.index_bailinwang_product_fb_fl_fc_li_links{
		padding: 7px 15px;
	}

	.index_bailinwang_product_fb_fl_fb{
		padding: 20px;
	}

	.index_bailinwang_product_fb_fl_fb_fb{
		font-size: 20px;
	}

	.index_bailinwang_product_fb_fl_fb_fb_con{
		padding-left: 22px;
		background-size: 18px;
	}

	.index_bailinwang_product_fb_fr{
		width: 100%;
		padding-left: 0;
		margin-left: 0;
		margin-top: 3%;
	}

	.index_bailinwang_product_fb_fr_li .wz{
		padding: 8px 5px;
	}
}

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

	.index_bailinwang_product_ft h3{
		font-size: 24px;
	}

	.index_bailinwang_product_ft h3::before,.index_bailinwang_product_ft h3::after{
		width: 20px;
	}

	.index_bailinwang_product_ft h3::before{
		margin-right: 18px;
	}

	.index_bailinwang_product_ft h3::after{
		margin-left: 18px;
	}

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

	.index_bailinwang_product_fb{
		margin-top: 22px;
	}

	.index_bailinwang_product_fb_fl_ft{
		padding: 15px;
	}

	.index_bailinwang_product_fb_fl_ft_title{
		font-size: 18px;
	}

	.index_bailinwang_product_fb_fl_ft_title span{
		width: 18px;
	}

	.index_bailinwang_product_fb_fl_fc{
		padding: 10px;
	}

	.index_bailinwang_product_fb_fl_fc_li_links{
		font-size: 16px;
		padding: 7px 12px;
	}

	.index_bailinwang_product_fb_fl_fc_li_links span{
		width: 5px;
		height: 8px;
	}

	.index_bailinwang_product_fb_fl_fb{
		padding: 15px;
	}

	.index_bailinwang_product_fb_fl_fb_ft{
		font-size: 16px;
	}

	.index_bailinwang_product_fb_fl_fb_fb{
		font-size: 18px;
	}

	.index_bailinwang_product_fb_fl_fb_fb_con{
		padding-left: 20px;
		background-size: 16px;
	}

	.index_bailinwang_product_fb_fr{
		margin-top: 22px;
	}

	.index_bailinwang_product_fb_fr_li{
		width: 48.5%;
		margin-right: 3%;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(3n){
		margin-right: 3%;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(2n){
		margin-right: 0;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(n+3){
		margin-top: 3%;
	}

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

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

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

	.index_bailinwang_product_ft h3::before,.index_bailinwang_product_ft h3::after{
		width: 15px;
		display: none;
	}

	.index_bailinwang_product_ft h3::before{
		margin-right: 10px;
	}

	.index_bailinwang_product_ft h3::after{
		margin-left: 10px;
	}

	.index_bailinwang_product_fb{
		margin-top: 18px;
	}

	.index_bailinwang_product_fb_fr{
		margin-top: 20px;
	}

	.index_bailinwang_product_fb_fr_li{
		width: 48%;
		margin-right: 4%;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(3n){
		margin-right: 4%;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(2n){
		margin-right: 0;
	}

	.index_bailinwang_product_fb_fr_li:nth-child(n+3){
		margin-top: 4%;
	}
}

/*About us*/
.index_bailinwang_about_con{
	overflow: hidden;
}

.index_bailinwang_about_fl{
	width: 48%;
}

.index_bailinwang_about_fl .img{
	position: relative;
	height: 100%;
	overflow: hidden;
}

.index_bailinwang_about_fl .img::before{
	content: '';
	cursor: pointer;
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
	background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
	-webkit-transform: skewx(-25deg);
	-moz-transform: skewx(-25deg);
	-ms-transform: skewx(-25deg);
	-o-transform: skewx(-25deg);
	transform: skewx(-25deg);
}

.index_bailinwang_about_fl .img:hover::before{
	left: 100%;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.index_bailinwang_about_fl .img .img_con{
	height: 100%;
	padding: 33.5% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_about_fr{
	width: 52%;
	padding-right: calc(50% - 620px);
	background-image: url(../images/img/index_about_background_ico.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_about_fr_con{
	padding-top: 9%;
	padding-left: 12%;
}

.index_bailinwang_about_fr_ft h3{
	position: relative;
	font-size: 1.7rem;
	font-weight: bold;
	line-height: 1.1;
	color: #0262b8;
	padding-left: 1.5rem;
}

.index_bailinwang_about_fr_ft h3::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0.3rem;
	height: 100%;
	background-color: #0262b8;
}

.index_bailinwang_about_fr_ft h4{
	font-size: 20px;
	line-height: 1.5;
	color: #333333;
	margin-top: 3.5%;
}

.index_bailinwang_about_fr_fc{
	margin: 6% 0 6.8%;
	font-size: 15px;
	line-height: 2.25rem;
	color: #666666;
	text-indent: 2em;
}

.index_bailinwang_about_fr_fb_ul{
	overflow: hidden;
}

.index_bailinwang_about_fr_fb_li{
	width: 48.25%;
	margin-right: 3.5%;
	cursor: pointer;
}

.index_bailinwang_about_fr_fb_li:nth-child(2n){
	margin-right: 0;
}

.index_bailinwang_about_fr_fb_li:nth-child(n+3){
	margin-top: 3.5%;
}

.index_bailinwang_about_fr_fb_li .img{
	overflow: hidden;
}

.index_bailinwang_about_fr_fb_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_bailinwang_about_fr_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);
}

@media(max-width:1340px){
	.index_bailinwang_about_fr{
		padding-right: 50px;
	}
}

@media(max-width:1280px){
	.index_bailinwang_about_fr{
		padding-right: 30px;
	}

	.index_bailinwang_about_fr_ft h4{
		font-size: 18px;
	}
}

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

	.index_bailinwang_about_fl .img{
		height: auto;
	}

	.index_bailinwang_about_fl .img .img_con{
		height: auto;
		min-height: auto!important;
	}

	.index_bailinwang_about_fr{
		width: 100%;
		padding-right: 0;
	}

	.index_bailinwang_about_fr_con{
		padding: 4% 20px;
	}

	.index_bailinwang_about_fr_ft h3{
		font-size: 24px;
		padding-left: 20px;
	}

	.index_bailinwang_about_fr_ft h3::after{
		width: 4px;
	}

	.index_bailinwang_about_fr_ft h4{
		margin-top: 2%;
	}

	.index_bailinwang_about_fr_fc{
		margin: 3% 0 3.4%;
		line-height: 2;
	}
}

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

	.index_bailinwang_about_fr_ft h3{
		font-size: 22px;
		padding-left: 18px;
	}

	.index_bailinwang_about_fr_ft h3::after{
		width: 3px;
	}

	.index_bailinwang_about_fr_ft h4{
		font-size: 17px;
		margin-top: 15px;
	}

	.index_bailinwang_about_fr_fc{
		margin: 20px 0 23px;
		line-height: 1.8;
	}
}

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

	.index_bailinwang_about_fr_ft h3{
		font-size: 20px;
		padding-left: 15px;
	}

	.index_bailinwang_about_fr_fc{
		margin: 18px 0 20px;
	}
}

/*Keep improving*/
.index_bailinwang_advantage{
	padding: 4% 0;
}

.index_bailinwang_advantage_fb{
	margin-top: 3.5%;
}

.index_bailinwang_advantage_fb_ul{
	border: 1px solid #ebebeb;
	overflow: hidden;
}

.index_bailinwang_advantage_fb_li{
	position: relative;
	width: 25%;
	border-right: 1px solid #ebebeb;
	cursor: pointer;
	overflow: hidden;
}

.index_bailinwang_advantage_fb_li:nth-child(4n){
	border-right-color: rgba(0,0,0,0);
}

.index_bailinwang_advantage_fb_li:nth-child(n+5){
	border-top: 1px solid #ebebeb;
}

.index_bailinwang_advantage_fb_li::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background-color: #0262b8;
	-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;
	-webkit-transform: translateY(105%);
	-moz-transform: translateY(105%);
	-ms-transform: translateY(105%);
	-o-transform: translateY(105%);
	transform: translateY(105%);
}

.index_bailinwang_advantage_fb_li:hover::after{
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_bailinwang_advantage_fb_li_con{
	position: relative;
	z-index: 10;
	padding: 13% 11.35%;
}

.index_bailinwang_advantage_fb_li .img{
	width: 2.8rem;
	margin: auto;
}

.index_bailinwang_advantage_fb_li .img .img_con{
	padding: 50% 0;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	-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_bailinwang_advantage_fb_li:hover .img .img_con{
	background-position: bottom center;
}

.index_bailinwang_advantage_fb_li .wz1{
	position: relative;
	font-size: 22px;
	line-height: 1.5;
	color: #333333;
	padding: 11% 0;
	text-align: center;
	-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_bailinwang_advantage_fb_li:hover .wz1{
	color: #ffffff;
}

.index_bailinwang_advantage_fb_li .wz1::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 24px;
	height: 3px;
	background-color: #0262b8;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.index_bailinwang_advantage_fb_li:hover .wz1::before{
	background-color: #ffffff;
}

.index_bailinwang_advantage_fb_li .wz2{
	font-size: 16px;
	line-height: 1.75;
	color: #888888;
	margin-top: 11%;
	text-align: center;
	-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_bailinwang_advantage_fb_li:hover .wz2{
	color: #ffffff;
}

@media(max-width:1280px){
	.index_bailinwang_advantage_fb_li .wz1{
		font-size: 20px;
	}
}

@media(max-width:991px){
	.index_bailinwang_advantage_fb{
		margin-top: 3%;
	}

	.index_bailinwang_advantage_fb_li{
		width: 50%;
	}

	.index_bailinwang_advantage_fb_li:nth-child(2n){
		border-right-color: rgba(0,0,0,0);
	}

	.index_bailinwang_advantage_fb_li:nth-child(n+3){
		border-top: 1px solid #ebebeb;
	}

	.index_bailinwang_advantage_fb_li_con{
		padding: 7% 5.675%;
	}

	.index_bailinwang_advantage_fb_li .img{
		width: 42px;
	}

	.index_bailinwang_advantage_fb_li .wz1{
		font-size: 18px;
		padding: 5.5% 0;
	}

	.index_bailinwang_advantage_fb_li .wz2{
		margin-top: 5.5%;
	}
}

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

	.index_bailinwang_advantage_fb{
		margin-top: 22px;
	}

	.index_bailinwang_advantage_fb_li_con{
		padding: 25px 20px;
	}

	.index_bailinwang_advantage_fb_li .img{
		width: 40px;
	}

	.index_bailinwang_advantage_fb_li .wz1{
		font-size: 17px;
		padding: 18px 0;
	}

	.index_bailinwang_advantage_fb_li .wz1::before{
		width: 20px;
		height: 2px;
	}

	.index_bailinwang_advantage_fb_li .wz2{
		font-size: 15px;
		line-height: 1.7;
		margin-top: 18px;
	}
}

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

	.index_bailinwang_advantage_fb{
		margin-top: 18px;
	}

	.index_bailinwang_advantage_fb_li_con{
		padding: 20px 15px;
	}

	.index_bailinwang_advantage_fb_li .wz1{
		padding: 15px 0;
	}

	.index_bailinwang_advantage_fb_li .wz2{
		margin-top: 15px;
	}
}

/*Cooperation process*/
.index_bailinwang_process{
	padding: 4% 0;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_product_ft.index_bailinwang_process_ft h3{
	color: #ffffff;
}

.index_bailinwang_product_ft.index_bailinwang_process_ft h3::before, .index_bailinwang_product_ft.index_bailinwang_process_ft h3::after{
	display: none;
}

.index_bailinwang_process_fb{
	margin-top: 3.5%;
}

.index_bailinwang_process_fb_li{
	width: 8.065%;
}

.index_bailinwang_process_fb_li:nth-child(n+7){
	margin-top: 3%;
}

.index_bailinwang_process_fb_li .process_line{
	position: absolute;
	top: 60%;
	left: 105%;
	z-index: 5;
	width: 118%;
}

.index_bailinwang_process_fb_li:nth-child(2n) .process_line{
	top: 16%;
}

.index_bailinwang_process_fb_li:last-child .process_line{
	display: none;
}

.index_bailinwang_process_fb_li .process_line::before{
	content: '';
	padding-top: 17%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
}

.index_bailinwang_process_fb_li:nth-child(2n+1) .process_line::before{
	background-image: url(../images/img/index_process_line1_ico.png);
}

.index_bailinwang_process_fb_li:nth-child(2n) .process_line::before{
	background-image: url(../images/img/index_process_line2_ico.png);
}

.index_bailinwang_process_fb_li .img{
	position: relative;
	cursor: pointer;
}

.index_bailinwang_process_fb_li .img img{
	position: relative;
	z-index: 10;
	width: 100%;
}

.index_bailinwang_process_fb_li .img .ripple{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #0262b8;
	display: block;
	-webkit-animation-name: ripple;
	-moz-animation-name: ripple;
	-ms-animation-name: ripple;
	-o-animation-name: ripple;
	animation-name: ripple;
	-webkit-animation-duration: 5s;
	-moz-animation-duration: 5s;
	-ms-animation-duration: 5s;
	-o-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	-ms-animation-timing-function: ease-in-out;
	-o-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transition: background 1.5s ease;
	-moz-transition: background 1.5s ease;
	-ms-transition: background 1.5s ease;
	-o-transition: background 1.5s ease;
	transition: background 1.5s ease;
}

.index_bailinwang_process_fb_li .img .ripple.ripple-1{
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}

.index_bailinwang_process_fb_li .img .ripple.ripple-2{
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	-o-animation-delay: 2s;
	animation-delay: 2s;
}

.index_bailinwang_process_fb_li .wz{
	position: relative;
	z-index: 15;
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
	margin-top: 1rem;
	text-align: center;
}

@-webkit-keyframes ripple{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 0.5;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-moz-keyframes ripple{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 0.5;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-ms-keyframes ripple{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 0.5;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-o-keyframes ripple{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 0.5;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@keyframes ripple{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 0.5;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-webkit-keyframes ripple2{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-moz-keyframes ripple2{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-ms-keyframes ripple2{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@-o-keyframes ripple2{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@keyframes ripple2{
	0%{
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	30%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		-webkit-transform: scale(1.6);
		-moz-transform: scale(1.6);
		-ms-transform: scale(1.6);
		-o-transform: scale(1.6);
		transform: scale(1.6);
	}
}

@media(max-width:1280px){
	.index_bailinwang_process_fb_li .wz{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_bailinwang_process_fb{
		margin-top: 3%;
	}

	.index_bailinwang_process_fb_li{
		width: 33.33333333333333%;
	}

	.index_bailinwang_process_fb_li:nth-child(n+4){
		margin-top: 3%;
	}

	.index_bailinwang_process_fb_li_con{
		width: 80px;
		margin: 0 auto;
	}

	.index_bailinwang_process_fb_li .process_line{
		display: none;
	}

	.index_bailinwang_process_fb_li .img .ripple{
		display: none;
	}

	.index_bailinwang_process_fb_li .wz{
		margin-top: 15px;
	}
}

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

	.index_bailinwang_process_fb{
		margin-top: 22px;
	}

	.index_bailinwang_process_fb_li:nth-child(n+4){
		margin-top: 22px;
	}

	.index_bailinwang_process_fb_li .wz{
		font-size: 16px;
	}
}

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

	.index_bailinwang_process_fb{
		margin-top: 18px;
	}

	.index_bailinwang_process_fb_li:nth-child(n+4){
		margin-top: 18px;
	}

	.index_bailinwang_process_fb_li_con{
		width: 75%;
	}

	.index_bailinwang_process_fb_li .wz{
		margin-top: 12px;
	}
}


/*Independently developed*/
.index_bailinwang_developed{
	padding: 4% 0;
}

.index_bailinwang_developed_fb{
	margin-top: 3%;
}

.index_bailinwang_developed_fb_con{
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_bailinwang_developed_fb_fl{
	position: relative;
	z-index: 2;
	width: 50%;
}

.index_bailinwang_developed_fb_fl_box{
	overflow: hidden;
}

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

.index_bailinwang_developed_fb_fl_dot{
	position: absolute;
	left: auto!important;
	right: 20%;
	bottom: 7%!important;
	z-index: 99;
	font-size: 0;
	text-align: right;
}

.index_bailinwang_developed_fb_fl_dot span{
	position: relative;
	width: 0.75rem;
	height: 0.75rem;
	margin: 0 0.45rem!important;
	opacity: 1;
	overflow: hidden;
	border-radius: 50%;
	background: #0262b8;
}

.index_bailinwang_developed_fb_fl_dot span.swiper-pagination-bullet-active{
	background: #e7b233;
}

.index_bailinwang_developed_fb_fr{
	position: relative;
	z-index: 5;
	width: 50%;
}

.index_bailinwang_developed_fb_fr_con{
	-webkit-align-items: flex-end;
	-moz-align-items: flex-end;
	-ms-align-items: flex-end;
	-o-align-items: flex-end;
	align-items: flex-end;
}

.index_bailinwang_developed_fb_fr_fl{
	position: relative;
	width: 68%;
	margin-left: -17%;
	background-color: #ffffff;
}

.index_bailinwang_developed_fb_fr_fl_ul{
	padding: 7.7% 7.7% 8.452%;
}

.index_bailinwang_developed_fb_fr_fl_li:nth-child(n+2){
	margin-top: 3.635%;
}

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

.index_bailinwang_developed_fb_fr_fl_li .num{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	font-family: Impact;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1;
	color: #666666;
}

.index_bailinwang_developed_fb_fr_fl_li .num::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 38%;
	background-color: #ffffff;
}

.index_bailinwang_developed_fb_fr_fl_li .wz{
	font-size: 16px;
	line-height: 1.875;
	color: #333333;
	width: 100%;
	padding-left: 4rem;
}

.index_bailinwang_developed_fb_fr_fl_li .wz .wz_con{
	padding-bottom: 4.253%;
	border-bottom: 1px solid #e8e8e8;
}

.index_bailinwang_developed_fb_fr_fl_arrow{
	overflow: hidden;
}

.index_bailinwang_developed_fb_fr_fl_arrow_left,.index_bailinwang_developed_fb_fr_fl_arrow_right{
	width: 19.5%;
	cursor: pointer;
}

.index_bailinwang_developed_fb_fr_fl_arrow_left span,.index_bailinwang_developed_fb_fr_fl_arrow_right span{
	padding-top: 80%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 36%;
	display: block;
}

.index_bailinwang_developed_fb_fr_fl_arrow_left span{
	background-image: url(../images/img/index_developed_arrow_left_ico.png);
	background-color: #0262b8;
}

.index_bailinwang_developed_fb_fr_fl_arrow_right span{
	background-image: url(../images/img/index_developed_arrow_right_ico.png);
	background-color: #e7b233;
}

.index_bailinwang_developed_fb_fr_fr{
	width: 47.1875%;
}

.index_bailinwang_developed_fb_fr_fr_ft{
	position: relative;
	font-family: 'Arial';
	font-size: 2.9rem;
	font-weight: bold;
	line-height: 0.85;
	color: #dae4f2;
	padding-top: 6.5%;
	padding-left: 8%;
}

.index_bailinwang_developed_fb_fr_fr_ft::before{
	content: '';
	position: absolute;
	left: 53%;
	bottom: 100%;
	width: 1px;
	height: 10rem;
	background-color: #dae4f2;
}

.index_bailinwang_developed_fb_fr_fr_fb{
	margin-top: 15%;
}

.index_bailinwang_developed_fb_fr_fr_fb img{
	width: 100%;
}

@media(max-width:1750px){
	.index_bailinwang_developed_fb_fr_fr_ft{
		font-size: 2.5rem;
	}
}

@media(max-width:1500px){
	.index_bailinwang_developed_fb_fr_fr_ft{
		font-size: 2.25rem;
	}
}

@media(max-width:1450px){
	.index_bailinwang_developed_fb_fr_fl_arrow{
		display: none;
	}
}

@media(max-width:1340px){
	.index_bailinwang_developed_fb_fr_fr_ft{
		font-size: 2rem;
	}
}

@media(max-width:1280px){
	.index_bailinwang_developed_fb_fr_fl{
		width: 100%;
		margin-left: 0;
	}

	.index_bailinwang_developed_fb_fr_fl_ul{
		padding: 6%;
	}

	.index_bailinwang_developed_fb_fr_fr{
		display: none;
	}
}

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

	.index_bailinwang_developed_fb_fl_dot{
		right: 0;
		width: 100%;
		text-align: center;
	}

	.index_bailinwang_developed_fb_fl_dot span{
		width: 10px;
		height: 10px;
	}

	.index_bailinwang_developed_fb_fr{
		width: 100%;
	}

	.index_bailinwang_developed_fb_fr_fl{
		width: 100%;
		margin-left: 0;
	}

	.index_bailinwang_developed_fb_fr_fl_ul{
		padding: 4% 20px;
	}

	.index_bailinwang_developed_fb_fr_fl_li:nth-child(n+2){
		margin-top: 2%;
	}

	.index_bailinwang_developed_fb_fr_fl_li .num{
		font-size: 32px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .wz{
		padding-left: 50px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .wz .wz_con{
		padding-bottom: 2.2%;
	}

	.index_bailinwang_developed_fb_fr_fl_arrow{
		display: none;
	}

	.index_bailinwang_developed_fb_fr_fl_arrow_left,.index_bailinwang_developed_fb_fr_fl_arrow_right{
		width: 7%;
	}

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

	.index_bailinwang_developed_fb_fr_fr_ft{
		padding-top: 4%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.index_bailinwang_developed_fb_fr_fr_ft::before{
		display: none;
	}

	.index_bailinwang_developed_fb_fr_fr_fb{
		margin-top: 4%;
	}
}

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

	.index_bailinwang_developed_fb{
		margin-top: 22px;
	}

	.index_bailinwang_developed_fb_fl_dot{
		bottom: 20px!important;
	}

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

	.index_bailinwang_developed_fb_fr_fl_ul{
		padding: 30px 15px;
	}

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

	.index_bailinwang_developed_fb_fr_fl_li .num{
		font-size: 30px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .wz{
		font-size: 15px;
		line-height: 1.7;
		padding-left: 45px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .wz .wz_con{
		padding-bottom: 15px;
	}

	.index_bailinwang_developed_fb_fr_fl_arrow_left,.index_bailinwang_developed_fb_fr_fl_arrow_right{
		width: 50px;
	}

	.index_bailinwang_developed_fb_fr_fr_ft{
		font-size: 45px;
		padding-top: 30px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.index_bailinwang_developed_fb_fr_fr_fb{
		margin-top: 30px;
	}
}

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

	.index_bailinwang_developed_fb{
		margin-top: 18px;
	}

	.index_bailinwang_developed_fb_fl_dot{
		bottom: 15px!important;
	}

	.index_bailinwang_developed_fb_fl_dot span{
		width: 8px;
		height: 8px;
		margin: 0 4px!important;
	}

	.index_bailinwang_developed_fb_fr_fl_ul{
		padding: 25px 15px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .num{
		font-size: 28px;
	}

	.index_bailinwang_developed_fb_fr_fl_li .wz{
		padding-left: 40px;
	}

	.index_bailinwang_developed_fb_fr_fl_arrow_left,.index_bailinwang_developed_fb_fr_fl_arrow_right{
		width: 45px;
	}

	.index_bailinwang_developed_fb_fr_fr_ft{
		font-size: 40px;
		padding-top: 25px;
	}

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

/*Full-service*/
.index_bailinwang_service_fb{
	margin-top: 3%;
	background-color: #ececec;
}

.index_bailinwang_service_fb_con{
	overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_bailinwang_service_fb_fl{
	width: 39%;
}

.index_bailinwang_service_fb_fl .img{
	position: relative;
	height: 100%;
	overflow: hidden;
}

.index_bailinwang_service_fb_fl .img::before{
	content: '';
	cursor: pointer;
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: -moz-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
	background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,0),rgba(255,255,255,0.5),rgba(255,255,255,0));
	-webkit-transform: skewx(-25deg);
	-moz-transform: skewx(-25deg);
	-ms-transform: skewx(-25deg);
	-o-transform: skewx(-25deg);
	transform: skewx(-25deg);
}

.index_bailinwang_service_fb_fl .img:hover::before{
	left: 100%;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-ms-transition: 1s;
	-o-transition: 1s;
	transition: 1s;
}

.index_bailinwang_service_fb_fl .img .img_con{
	height: 100%;
	padding: 30% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_service_fb_fr{
	width: 61%;
	padding-right: calc(50% - 620px);
}

.index_bailinwang_service_fb_fr_ul{
	padding: 7.3% 0 7.3% 8%;
}

.index_bailinwang_service_fb_fr_ul_box{
	border-radius: 20px 0 0 20px;
	overflow: hidden;
}

.index_bailinwang_service_fb_fr_li{
	background-color: #ffffff;
}

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

.index_bailinwang_service_fb_fr_li_fl{
	width: 30%;
	background-color: #0262b8;
	-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_bailinwang_service_fb_fr_li:nth-child(2n) .index_bailinwang_service_fb_fr_li_fl{
	background-color: #e7b233;
}

.index_bailinwang_service_fb_fr_li_fl_con{
	font-size: 22px;
	line-height: 1.5;
	color: #ffffff;
	padding-left: 40px;
	background-image: url(../images/img/index_service_title_ico.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 30px;
}

.index_bailinwang_service_fb_fr_li_fr{
	font-size: 14px;
	line-height: 2;
	color: #666666;
	width: 70%;
	padding: 2.5% 3.5%;
}

@media(max-width:1340px){
	.index_bailinwang_service_fb_fr{
		padding-right: 50px;
	}
}

@media(max-width:1280px){
	.index_bailinwang_service_fb_fr{
		padding-right: 30px;
	}

	.index_bailinwang_service_fb_fr_li_fl_con{
		font-size: 20px;
		padding-left: 38px;
		background-size: 28px;
	}
}

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

	.index_bailinwang_service_fb_fl .img{
		height: auto;
	}

	.index_bailinwang_service_fb_fl .img .img_con{
		height: auto;
		min-height: auto!important;
	}

	.index_bailinwang_service_fb_fr{
		width: 100%;
		padding-right: 0;
	}

	.index_bailinwang_service_fb_fr_ul{
		padding: 4% 20px;
	}

	.index_bailinwang_service_fb_fr_li_fl_con{
		font-size: 18px;
		padding-left: 36px;
		background-size: 26px;
	}
}

@media(max-width:768px){
	.index_bailinwang_service_fb{
		margin-top: 22px;
	}

	.index_bailinwang_service_fb_fr_ul{
		padding: 30px 15px;
	}

	.index_bailinwang_service_fb_fr_ul_box{
		border-radius: 15px 0 0 15px;
	}

	.index_bailinwang_service_fb_fr_li_fl_con{
		font-size: 17px;
		padding-left: 34px;
		background-size: 24px;
	}

	.index_bailinwang_service_fb_fr_li_fr{
		line-height: 1.7;
		padding: 15px 20px;
	}
}

@media(max-width:468px){
	.index_bailinwang_service_fb{
		margin-top: 18px;
	}

	.index_bailinwang_service_fb_fr_ul{
		padding: 25px 15px;
	}

	.index_bailinwang_service_fb_fr_li_fr{
		padding: 12px 15px;
	}
}

/*Earned widespread acclaim in the industry*/
.index_bailinwang_customer{
	padding: 4% 0;
}

.index_bailinwang_customer_fb{
	margin-top: 3%;
}

.index_bailinwang_customer_fb_con{
	background-color: #ececec;
}

.index_bailinwang_customer_fb_fl{
	position: relative;
	z-index: 10;
	width: 50%;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.index_bailinwang_customer_fb_fl_con{
	height: 100%;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.index_bailinwang_customer_fb_fl_text{
	width: 100%;
	padding-top: 6.5%;
	padding-left: 6.5%;
	padding-right: 6.5%;
}

.index_bailinwang_customer_fb_fl_ft{
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	color: #333333;
}

.index_bailinwang_customer_fb_fl_fc{
	font-size: 16px;
	line-height: 2;
	color: #666666;
	margin-top: 5%;
}

.index_bailinwang_customer_fb_fl_fb{
	width: 116%;
	margin-top: 5%;
	padding: 3.3%;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	background-color: #ffffff;
}

.index_bailinwang_customer_fb_fl_fb_box{
	overflow: hidden;
}

.index_bailinwang_customer_fb_fl_fb .img{
	cursor: pointer;
	box-shadow: 0 0 12px 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;
}

.index_bailinwang_customer_fb_fl_fb .img:hover{
   box-shadow: 0 0 12px rgba(0,0,0,0.14);
}

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

.index_bailinwang_customer_fb_fr{
	position: relative;
	z-index: 5;
	width: 50%;
}

.index_bailinwang_customer_fb_fr .img{
	position: relative;
	height: 100%;
	overflow: hidden;
}

.index_bailinwang_customer_fb_fr .img .img_con{
	height: 100%;
	padding: 30% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media(max-width:1280px){
	.index_bailinwang_customer_fb_fl_ft{
		font-size: 18px;
	}
}

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

	.index_bailinwang_customer_fb_con{
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.index_bailinwang_customer_fb_fl_con{
		height: auto;
	}

	.index_bailinwang_customer_fb_fl_text{
		padding-top: 3%;
		padding-left: 3%;
		padding-right: 3%;
	}

	.index_bailinwang_customer_fb_fl_fc{
		line-height: 1.8;
		margin-top: 2%;
	}

	.index_bailinwang_customer_fb_fl_fb{
		width: 100%;
		margin-top: 3%;
		padding: 3%;
	}

	.index_bailinwang_customer_fb_fr{
		width: 100%;
	}

	.index_bailinwang_customer_fb_fr .img{
		height: auto;
	}

	.index_bailinwang_customer_fb_fr .img .img_con{
		height: auto;
		min-height: auto!important;
	}
}

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

	.index_bailinwang_customer_fb{
		margin-top: 22px;
	}

	.index_bailinwang_customer_fb_fl_text{
		padding-top: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.index_bailinwang_customer_fb_fl_ft{
		font-size: 17px;
	}

	.index_bailinwang_customer_fb_fl_fc{
		font-size: 15px;
		line-height: 1.7;
		margin-top: 12px;
	}

	.index_bailinwang_customer_fb_fl_fb{
		margin-top: 20px;
		padding: 20px;
	}
}

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

	.index_bailinwang_customer_fb{
		margin-top: 18px;
	}

	.index_bailinwang_customer_fb_fl_text{
		padding-top: 18px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.index_bailinwang_customer_fb_fl_fc{
		margin-top: 10px;
	}

	.index_bailinwang_customer_fb_fl_fb{
		margin-top: 18px;
		padding: 18px;
	}
}

/*News focus*/
.index_bailinwang_news{
	padding: 4% 0;
	background-image: url(../images/img/index_news_background_ico.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_news_fb{
	margin-top: 3.5%;
	padding: 3.5%;
	background-color: #ffffff;
}

.index_bailinwang_news_fb_con{
	overflow: hidden;
}

.index_bailinwang_news_fb_fl{
	width: 48%;
}

.index_bailinwang_news_fb_fl_li:nth-child(n+2){
	margin-top: 5%;
}

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

.index_bailinwang_news_fb_fl_li .img{
	width: 45%;
}

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

.index_bailinwang_news_fb_fl_li .img .img_con{
	padding: 40.625% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_bailinwang_news_fb_fl_li .wz{
	width: 50%;
}

.index_bailinwang_news_fb_fl_li .wz .wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #333333;
	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_bailinwang_news_fb_fl_li:hover .wz .wz_ft{
	color: #0262b8;
}

.index_bailinwang_news_fb_fl_li .wz .wz_fc{
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
	margin: 6% 0 8%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_bailinwang_news_fb_fl_li .wz .wz_fb .wz_fb_con{
	font-size: 14px;
	line-height: 1.6;
	color: #ffffff;
	padding: 8px 20px;
	background-color: #0262b8;
	-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_bailinwang_news_fb_fl_li:hover .wz .wz_fb .wz_fb_con{
	background-color: #1c4086;
}

.index_bailinwang_news_fb_fr{
	width: 48%;
}

.index_bailinwang_news_fb_fr_ft_ul{
	overflow: hidden;
}

.index_bailinwang_news_fb_fr_ft_li,.index_bailinwang_news_fb_fr_ft_li_last{
	padding: 0 3.5%;
	position: relative;
}

.index_bailinwang_news_fb_fr_ft_li:nth-child(1){
	padding-left: 0;
}

.index_bailinwang_news_fb_fr_ft_li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 2px;
	height: 16px;
	background-color: #666666;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_bailinwang_news_fb_fr_ft_li a{
	font-size: 18px;
	line-height: 1.5;
	color: #333333;
	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;
}

.index_bailinwang_news_fb_fr_ft_li.on a{
	font-weight: bold;
}

.index_bailinwang_news_fb_fr_ft_li_last a{
	font-size: 18px;
	line-height: 1.5;
	color: #333333;
	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;
}

.index_bailinwang_news_fb_fr_ft_li_last:hover a{
	color: #0262b8;
}

.index_bailinwang_news_fb_fr_fb{
	margin-top: 5.5%;
}

.index_bailinwang_news_fb_fr_fb_li{
	margin-bottom: 3.7%;
	padding-bottom: 3.7%;
	border-bottom: 1px dashed #e5e5e5;
}

.index_bailinwang_news_fb_fr_fb_li:last-child{
	margin-bottom: 0;
}

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

.index_bailinwang_news_fb_fr_fb_li .wz{
	width: 80%;
}

.index_bailinwang_news_fb_fr_fb_li .wz .wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #333333;
	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_bailinwang_news_fb_fr_fb_li_con:hover .wz .wz_ft{
	color: #0262b8;
}

.index_bailinwang_news_fb_fr_fb_li .wz .wz_ft span{
	font-weight: bold;
}

.index_bailinwang_news_fb_fr_fb_li .wz .wz_fb{
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
	margin-top: 2.5%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_bailinwang_news_fb_fr_fb_li .data{
	width: 18%;
	text-align: center;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

.index_bailinwang_news_fb_fr_fb_li .data .data_con{
	max-width: 100%;
}

.index_bailinwang_news_fb_fr_fb_li .data .data_ft{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8rem;
	line-height: 1;
	color: #333333;
}

.index_bailinwang_news_fb_fr_fb_li .data .data_fb{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1;
	color: #666666;
	margin-top: 10px;
}

@media(max-width:1280px){
	.index_bailinwang_news_fb_fl_li .wz .wz_ft{
	   font-size: 17px;
	}

	.index_bailinwang_news_fb_fr_ft_li a{
		font-size: 17px;
	}

	.index_bailinwang_news_fb_fr_ft_li_last a{
		font-size: 17px;
	}

	.index_bailinwang_news_fb_fr_fb_li .wz .wz_ft{
		font-size: 17px;
	}
}

@media(max-width:991px){
	.index_bailinwang_news_fb{
		margin-top: 3%;
		padding: 3%;
	}

	.index_bailinwang_news_fb_fl{
		width: 100%;
	}

	.index_bailinwang_news_fb_fl_li:nth-child(n+2){
		margin-top: 2.5%;
	}

	.index_bailinwang_news_fb_fr{
		width: 100%;
		margin-top: 3%;
	}

	.index_bailinwang_news_fb_fr_ft_li,.index_bailinwang_news_fb_fr_ft_li_last{
		padding: 0 15px;
	}

	.index_bailinwang_news_fb_fr_fb{
		margin-top: 3%;
	}

	.index_bailinwang_news_fb_fr_fb_li{
		padding-bottom: 3%;
		margin-bottom: 3%;
	}

	.index_bailinwang_news_fb_fr_fb_li .wz .wz_fb{
		margin-top: 2%;
	}

	.index_bailinwang_news_fb_fr_fb_li .data .data_ft{
		font-size: 24px;
	}
}

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

	.index_bailinwang_news_fb{
		margin-top: 22px;
		padding: 20px;
	}

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

	.index_bailinwang_news_fb_fl_li .wz .wz_ft{
	   font-size: 16px;
	}

	.index_bailinwang_news_fb_fl_li .wz .wz_fc{
		font-size: 14px;
	}

	.index_bailinwang_news_fb_fl_li .wz .wz_fb .wz_fb_con{
		font-size: 13px;
		line-height: 1.5;
		padding: 7px 18px;
	}

	.index_bailinwang_news_fb_fr{
		margin-top: 20px;
	}

	.index_bailinwang_news_fb_fr_ft_li,.index_bailinwang_news_fb_fr_ft_li_last{
		padding: 0 12px;
	}

	.index_bailinwang_news_fb_fr_ft_li::before{
		width: 1px;
		height: 14px;
	}

	.index_bailinwang_news_fb_fr_ft_li a{
		font-size: 16px;
	}

	.index_bailinwang_news_fb_fr_ft_li_last a{
		font-size: 16px;
	}

	.index_bailinwang_news_fb_fr_fb{
		margin-top: 20px;
	}

	.index_bailinwang_news_fb_fr_fb_li{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.index_bailinwang_news_fb_fr_fb_li .wz .wz_ft{
		font-size: 16px;
	}

	.index_bailinwang_news_fb_fr_fb_li .wz .wz_fb{
		font-size: 14px;
		margin-top: 10px;
	}

	.index_bailinwang_news_fb_fr_fb_li .data .data_ft{
		font-size: 22px;
	}

	.index_bailinwang_news_fb_fr_fb_li .data .data_fb{
		font-size: 15px;
	}
}

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

	.index_bailinwang_news_fb{
		margin-top: 18px;
		padding: 18px;
	}

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

	.index_bailinwang_news_fb_fl_li .img{
		width: 100%;
	}

	.index_bailinwang_news_fb_fl_li .wz{
		width: 100%;
		margin-top: 15px;
	}

	.index_bailinwang_news_fb_fl_li .wz .wz_fc{
		margin: 10px 0 13px;
	}

	.index_bailinwang_news_fb_fr{
		margin-top: 18px;
	}

	.index_bailinwang_news_fb_fr_ft_li,.index_bailinwang_news_fb_fr_ft_li_last{
		padding: 0 10px;
	}

	.index_bailinwang_news_fb_fr_fb{
		margin-top: 18px;
	}

	.index_bailinwang_news_fb_fr_fb_li{
		padding-bottom: 18px;
		margin-bottom: 18px;
	}

	.index_bailinwang_news_fb_fr_fb_li .wz{
		width: 96%;
		padding-right: 60px;
		margin-right: -60px;
	}

	.index_bailinwang_news_fb_fr_fb_li .data{
		width: 60px;
	}

	.index_bailinwang_news_fb_fr_fb_li .data .data_ft{
		font-size: 20px;
	}
}

/*Footer*/
.pc_footer{
	background-color: #1b1b1b;
}

.pc_footer_ft{
	padding: 3% 0;
}

.pc_footer_ft_fl{
	width: 40%;
	background-image: url(../images/img/footer_contact_background_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70%;
}

.pc_footer_ft_fl_ft{
	font-size: 20px;
	line-height: 1.5;
	color: #ffffff;
}

.pc_footer_ft_fl_fc{
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255,255,255,1);
	margin: 6% 0 7%;
}

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

.pc_footer_ft_fl_fb .social-share .social-share-icon{
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-color: #3c3c3c;
	color: #969696;
	margin: 0 8px;
}

.pc_footer_ft_fl_fb .social-share .social-share-icon:hover{
	border-color: #ffffff;
	color: #ffffff;
	background-color: rgba(0,0,0,0);
}

.pc_footer_ft_fl_fb .social-share .social-share-icon:nth-child(1){
	margin-left: 0;
}

.pc_footer_ft_fr{
	width: 56%;
}

.pc_footer_ft_fr_li{
	max-width: 23%;
}

.pc_footer_ft_fr_li_ft a{
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
}

.pc_footer_ft_fr_li_fb{
	margin-top: 1.2rem;
}

.pc_footer_ft_fr_li_fb_li{
	font-size: 0;
}

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

.pc_footer_ft_fr_li_fb_li a{
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255,255,255,0.5);
	display: inline-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_footer_ft_fr_li_fb_li a:hover{
	color: rgba(255,255,255,1);
}

.pc_footer_fb{
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255,255,255,0.5);
	border-top: 1px solid #323232;
	text-align: center;
}

.pc_footer_fb_con{
	padding: 25px 0;
}

.pc_footer_fb a{
	color: rgba(255,255,255,0.5);
	-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 a:hover{
	color: rgba(255,255,255,1);
}

@media(max-width:1280px){
	.pc_footer_ft_fl_ft{
		font-size: 18px;
	}

	.pc_footer_ft_fr_li_ft a{
		font-size: 17px;
	}
}

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

	.pc_footer_ft_fl{
		width: 100%;
	}

	.pc_footer_ft_fl_fc{
		margin: 2.5% 0 3%;
	}

	.pc_footer_ft_fr{
		width: 100%;
		margin-top: 3%;
		display: none;
	}

	.pc_footer_fb_con{
		padding: 20px 0;
	}
}

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

	.pc_footer_ft_fl_ft{
		font-size: 17px;
	}

	.pc_footer_ft_fl_fc{
		margin: 15px 0 18px;
	}

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

	.pc_footer_ft_fl_fb .social-share .social-share-icon{
		width: 36px;
		height: 36px;
		line-height: 36px;
		margin: 0 5px;
	}

	.pc_footer_ft_fr{
		margin-top: 20px;
	}

	.pc_footer_ft_fr_li_ft a{
		font-size: 16px;
	}

	.pc_footer_ft_fr_li_fb{
		margin-top: 12px;
	}

	.pc_footer_fb_con{
		padding: 18px 0;
	}
}

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

	.pc_footer_ft_fl_fc{
		margin: 12px 0 15px;
	}

	.pc_footer_ft_fr{
		margin-top: 18px;
	}

	.pc_footer_fb_con{
		padding: 15px 0;
	}
}