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

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

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

input,textarea,select{
	font-family: Microsoft YaHei,arial,宋体,sans-serif;
	margin: 0;
	padding: 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{
	font-size: 0px;
	line-height: 0px;
	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;
}

/*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;
}

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

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

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

	.page_con_zhuti{
		padding: 0 30px;
	}
}

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

	.page_con_zhuti{
		padding: 0 20px;
	}

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

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

	.page_con_zhuti{
		padding: 0 15px;
	}
}

/*Pc header*/
#pc_header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
	background: #ffffff;
}

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

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

.pc_logo{
	position: relative;
	max-width: 12%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo_links{
	width: 100%;
}

.pc_logo img{
	max-width: 100%;
	max-height: 85px;
	display: block;
}

.pc_nav{
	width: 82%;
	max-width: 940px;
}

.pc_nav>.pc_nav_con{
	position: relative;
	z-index: 15;
	width: 100%;
}

.pc_nav>.pc_nav_con>ul{
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-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{
	position: relative;
	width: 14.2857142857%;
	float: left;
	-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;
	max-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{
	font-size: 18px;
	line-height: 100px;
	color: #000000;
	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>.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: #0b4ea2;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi.pc_nav_yiji_arrow_ico{
	padding-right: 15px;
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li>a .pc_nav_yiji_arrow_img{
	content: '';
	position: absolute;
	right: 0;
	z-index: 99;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
	cursor: pointer;
	overflow: hidden;
	border-top: 5px dashed #000000;
	border-right: 5px dashed transparent;
	border-left: 5px dashed transparent;
	border-bottom: none;
	-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>a .pc_nav_yiji_arrow_img{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_arrow_img,.pc_nav>.pc_nav_con>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_arrow_img{
	border-top-color: #0b4ea2;
}

.pc_nav_erji_w{
	position: absolute;
	left: 50%;
	top: 100%;
	z-index: 999;
	width: 160px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	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_erji_li{
	position: relative;
}

.pc_nav_erji_li a{
	font-size: 16px;
	line-height: 2;
	color: #666666;
	padding: 5px;
	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:hover>a{
	color: #ffffff;
	background: #0b4ea2;
}

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

.pc_nav_sanji_li:hover>a{
	color: #ffffff;
	background: #0b4ea2;
}

.pc_header_menu{
	position: relative;
	z-index: 20;
}

.pc_header_search_btn{
	position: relative;
	z-index: 5;
	height: 100px;
	-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;
}

.pc_header_search_btn_expand_button{
	position: relative;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: block;
}

.pc_header_search_btn_expand_button::before,.pc_header_search_btn_expand_button::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	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.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_search_btn_expand_button::before{
	opacity: 1;
	background-image: url(../images/img/pc_header_search_btn_ico.png);
}

.pc_header_search_btn_expand_button::after{
	opacity: 0;
	background-image: url(../images/img/pc_header_search_btn_ico_h.png);
}

.pc_header_search_btn_expand_button:hover::before{
	opacity: 0;
}

.pc_header_search_btn_expand_button:hover::after{
	opacity: 1;
}

.pc_header_search_btn_pull_down{
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 900;
	width: 265px;
	padding: 20px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
	background: #ffffff;
	display: none;
}

.pc_header_search_btn_pull_down_sousuo{
	position: relative;
	width: 100%;
	overflow: hidden;
	display: block;
}

.pc_header_search_btn_pull_down_sousuo_con_fl{
	width: 100%;
	padding-right: 55px;
	overflow: hidden;
}

.pc_header_search_btn_pull_down_sousuo_shuru{
	font-size: 14px;
	line-height: 34px;
	color: #666666;
	width: 100%;
	padding: 0 10px;
	border: 1px solid #c8c8c8;
	float: left;
	outline: none!important;
	background: none;
}

.pc_header_search_btn_pull_down_sousuo_shuru::-webkit-autofill{
	-webkit-text-fill-color: #666666!important;
	-webkit-transition: background-color 3000s ease-in-out 0s;
	-moz-transition: background-color 3000s ease-in-out 0s;
	-ms-transition: background-color 3000s ease-in-out 0s;
	-o-transition: background-color 3000s ease-in-out 0s;
	transition: background-color 3000s ease-in-out 0s;
}

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

.pc_header_search_btn_pull_down_sousuo_tijiao{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	width: 50px;
	height: 100%;
	cursor: pointer;
}

.pc_header_search_btn_pull_down_sousuo_tijiao_input{
	position: relative;
	z-index: 10;
	font-size: 14px;
	line-height: 36px;
	color: #ffffff;
	width: 100%;
	height: 100%;
	border: 0;
	outline: none!important;
	cursor: pointer;
	background: #0b4ea2;
	display: block;
}

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

	.pc_header_search_btn_expand_button{
		width: 18px;
		height: 18px;
	}

	.pc_header_search_btn_pull_down{
		width: 260px;
		padding: 16px;
	}
}

@media(max-width:991px){
	#pc_header{
		display: none;
	}
}

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

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

.index_banner_li .img_box{
	height: 100%;
}

.index_banner .index_banner_li .img_box .img_box_video{
	position: relative;
	height: 100%;
}

.index_banner .index_banner_li .img_box .img_box_video .img{
	height: 100%;
	min-height: 180px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.index_banner .index_banner_li .img_box .img_box_video .img img{
	width: 100%;
	height: 100%;
	opacity: 0;
}

.index_banner_video_class{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
}

.index_banner_canvas_class{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
	-ms-object-fit: cover;
	-o-object-fit: cover;
	object-fit: cover;
}

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

.index_banner_yuandian span{
	position: relative;
	width: 2.6rem;
	height: 4px;
	margin: 0 6px!important;
	opacity: 1;
	border-radius: 0;
	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;
}

.index_banner_yuandian span.swiper-pagination-bullet-active{
	background: #0b4ea2;
}

.index_banner_btnl,.index_banner_btnr{
	position: absolute;
	top: 50%;
	z-index: 800;
	width: 50px;
	height: 65px;
	background: #424246;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_banner_btnl{
	left: 0;
}

.index_banner_btnr{
	right: 0;
}

.index_banner_btnl:hover,.index_banner_btnr:hover{
	background: #0b4ea2;
}

.index_banner_btnl span,.index_banner_btnr span{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 17px;
	height: 17px;
	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: 16px;
		height: 16px;
	}
}

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

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

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

	.index_banner_li .img_box{
		height: auto;
	}

	.index_banner .index_banner_li .img_box .img_box_video{
		height: auto;
	}

	.index_banner .index_banner_li .img_box .img_box_video .img{
		height: auto;
	}

	.index_banner .index_banner_li .img_box .img_box_video .img img{
		height: auto;
	}

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

	.index_banner_btnl,.index_banner_btnr{
		display: none;
	}
}

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

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

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

/*About us*/
.index_panzhuo_plate1{
	position: relative;
	background: #fbfbfb;
}

.index_panzhuo_about{
	position: relative;
	z-index: 10;
	padding: 5% 0;
}

.index_panzhuo_about_con{
	position: relative;
}

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

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

.index_panzhuo_about_ft_fl{
	width: 45%;
}

.index_panzhuo_title h3{
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.5;
	color: #303841;
}

.index_panzhuo_title h4{
	font-size: 17px;
	line-height: 1.8;
	color: #666666;
	margin-top: 15px;
}

.index_panzhuo_about_ft_fr{
	width: 51%;
}

.index_panzhuo_about_ft_fr_li{
	max-width: 23.5%;
	text-align: center;
}

.index_panzhuo_about_ft_fr_li_ft{
	font-size: 17px;
	line-height: 1.3;
	color: #0b4ea2;
}

.index_panzhuo_about_ft_fr_li_ft span{
	font-size: 1.8rem;
	margin-right: 2px;
}

.index_panzhuo_about_ft_fr_li_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #303841;
	margin-top: 8px;
}

.index_panzhuo_about_fb{
	margin-top: 4%;
}

.index_panzhuo_about_fb_li{
	max-width: 23.5%;
	text-align: center;
}

.index_panzhuo_about_fb_li_img{
	position: relative;
	width: 6.5rem;
	margin: 0 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_panzhuo_about_fb_li:hover .index_panzhuo_about_fb_li_img{
	background: #ffffff;
}

.index_panzhuo_about_fb_li_img_con{
	position: relative;
	padding-top: 100%;
}

.index_panzhuo_about_fb_li_img_con img{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 2.4rem;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_panzhuo_about_fb_li:hover .index_panzhuo_about_fb_li_img_con img{
	-webkit-transform: translate(-50%,-50%) rotateY(360deg);
	-moz-transform: translate(-50%,-50%) rotateY(360deg);
	-ms-transform: translate(-50%,-50%) rotateY(360deg);
	-o-transform: translate(-50%,-50%) rotateY(360deg);
	transform: translate(-50%,-50%) rotateY(360deg);
}

.index_panzhuo_about_fb_li_svgs{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.index_panzhuo_about_fb_li_svgs .svg{
	-webkit-stroke-width: 2;
	-moz-stroke-width: 2;
	-ms-stroke-width: 2;
	-o-stroke-width: 2;
	stroke-width: 2;
	-webkit-r: calc(50% - 1px);
	-moz-r: calc(50% - 1px);
	-ms-r: calc(50% - 1px);
	-o-r: calc(50% - 1px);
	r: calc(50% - 1px);
}

.index_panzhuo_about_fb_li_svgs .circle{
	opacity: 0;
	-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_panzhuo_about_fb_li:hover .circle{
	opacity: 1;
	-webkit-animation: circle 3s linear;
	-moz-animation: circle 3s linear;
	-ms-animation: circle 3s linear;
	-o-animation: circle 3s linear;
	animation: circle 3s linear;
	-webkit-transition: 1s ease-in-out;
	-moz-transition: 1s ease-in-out;
	-ms-transition: 1s ease-in-out;
	-o-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}

.index_panzhuo_about_fb_li_wz{
	margin-top: 1rem;
}

.index_panzhuo_about_fb_li_wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #0b4ea2;
}

.index_panzhuo_about_fb_li_wz_fb{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #303841;
	margin-top: 10px;
}

@keyframes -webkit-circle{
	from{
		-webkit-stroke-dasharray: 0 1000;
		-moz-stroke-dasharray: 0 1000;
		-ms-stroke-dasharray: 0 1000;
		-o-stroke-dasharray: 0 1000;
		stroke-dasharray: 0 1000;
	}
	to{
		-webkit-stroke-dasharray: 1000 0;
		-moz-stroke-dasharray: 1000 0;
		-ms-stroke-dasharray: 1000 0;
		-o-stroke-dasharray: 1000 0;
		stroke-dasharray: 1000 0;
	}
}

@keyframes -moz-circle{
	from{
		-webkit-stroke-dasharray: 0 1000;
		-moz-stroke-dasharray: 0 1000;
		-ms-stroke-dasharray: 0 1000;
		-o-stroke-dasharray: 0 1000;
		stroke-dasharray: 0 1000;
	}
	to{
		-webkit-stroke-dasharray: 1000 0;
		-moz-stroke-dasharray: 1000 0;
		-ms-stroke-dasharray: 1000 0;
		-o-stroke-dasharray: 1000 0;
		stroke-dasharray: 1000 0;
	}
}

@keyframes -ms-circle{
	from{
		-webkit-stroke-dasharray: 0 1000;
		-moz-stroke-dasharray: 0 1000;
		-ms-stroke-dasharray: 0 1000;
		-o-stroke-dasharray: 0 1000;
		stroke-dasharray: 0 1000;
	}
	to{
		-webkit-stroke-dasharray: 1000 0;
		-moz-stroke-dasharray: 1000 0;
		-ms-stroke-dasharray: 1000 0;
		-o-stroke-dasharray: 1000 0;
		stroke-dasharray: 1000 0;
	}
}

@keyframes -o-circle{
	from{
		-webkit-stroke-dasharray: 0 1000;
		-moz-stroke-dasharray: 0 1000;
		-ms-stroke-dasharray: 0 1000;
		-o-stroke-dasharray: 0 1000;
		stroke-dasharray: 0 1000;
	}
	to{
		-webkit-stroke-dasharray: 1000 0;
		-moz-stroke-dasharray: 1000 0;
		-ms-stroke-dasharray: 1000 0;
		-o-stroke-dasharray: 1000 0;
		stroke-dasharray: 1000 0;
	}
}

@keyframes circle{
	from{
		-webkit-stroke-dasharray: 0 1000;
		-moz-stroke-dasharray: 0 1000;
		-ms-stroke-dasharray: 0 1000;
		-o-stroke-dasharray: 0 1000;
		stroke-dasharray: 0 1000;
	}
	to{
		-webkit-stroke-dasharray: 1000 0;
		-moz-stroke-dasharray: 1000 0;
		-ms-stroke-dasharray: 1000 0;
		-o-stroke-dasharray: 1000 0;
		stroke-dasharray: 1000 0;
	}
}

.index_panzhuo_customer{
	position: relative;
	z-index: 10;
	padding: 0 0 5%;
}

.index_panzhuo_customer_ft{
	text-align: center;
}

.index_panzhuo_customer_fb{
	margin-top: 4%;
	overflow: hidden;
}

.index_panzhuo_customer_fb_li{
	width: 14.2857142857%;
	cursor: pointer;
	overflow: hidden;
}

.index_panzhuo_customer_fb_li .img{
	margin: 0 5px;
	border: 1px solid rgba(0,0,0,0.08);
	overflow: hidden;
}

.index_panzhuo_customer_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_panzhuo_customer_fb_li:hover .img img{
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

@media(max-width:1366px){
	.index_panzhuo_about_ft_fl{
		width: 44%;
	}

	.index_panzhuo_about_ft_fr{
		width: 53%;
	}
}

@media(max-width:1280px){
	.index_panzhuo_title h4{
		font-size: 16px;
		line-height: 1.7;
		margin-top: 12px;
	}

	.index_panzhuo_about_ft_fr_li_ft{
		font-size: 16px;
	}

	.index_panzhuo_about_ft_fr_li_fb{
		font-size: 17px;
	}

	.index_panzhuo_about_fb_li_wz_ft{
		font-size: 17px;
	}

	.index_panzhuo_about_fb_li_wz_fb{
		font-size: 20px;
	}

	.index_panzhuo_customer_fb_li{
		width: 16.66666666666%;
	}
}

@media(max-width:1200px){
	.index_panzhuo_about_ft_fr_li_ft span{
		font-size: 26px;
	}

	.index_panzhuo_about_fb_li_img{
		width: 95px;
	}

	.index_panzhuo_about_fb_li_img_con img{
		width: 36px;
	}

	.index_panzhuo_about_fb_li_wz{
		margin-top: 15px;
	}

	.index_panzhuo_customer_fb_li{
		width: 20%;
	}
}

@media(max-width:991px){
	.index_panzhuo_about{
		padding: 4% 0;
	}

	.index_panzhuo_about_ft_fl{
		width: 100%;
	}

	.index_panzhuo_title h3{
		font-size: 26px;
	}

	.index_panzhuo_title h4{
		line-height: 1.6;
		margin-top: 10px;
	}

	.index_panzhuo_about_ft_fr{
		width: 100%;
		margin-top: 2.5%;
	}

	.index_panzhuo_about_ft_fr_li_ft span{
		font-size: 24px;
	}

	.index_panzhuo_about_fb{
		margin-top: 3%;
	}

	.index_panzhuo_about_fb_li_img{
		width: 90px;
	}

	.index_panzhuo_about_fb_li_img_con img{
		width: 34px;
	}

	.index_panzhuo_about_fb_li_wz{
		margin-top: 12px;
	}

	.index_panzhuo_about_fb_li_wz_fb{
		font-size: 18px;
	}

	.index_panzhuo_customer{
		padding: 0 0 4%;
	}

	.index_panzhuo_customer_fb{
		margin-top: 3%;
	}

	.index_panzhuo_customer_fb_li{
		width: 25%;
	}
}

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

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

	.index_panzhuo_title h4{
		font-size: 15px;
	}

	.index_panzhuo_about_ft_fr{
		margin-top: 15px;
	}

	.index_panzhuo_about_ft_fr_li{
		width: 49%;
		max-width: 100%;
	}

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

	.index_panzhuo_about_ft_fr_li_ft{
		font-size: 15px;
	}

	.index_panzhuo_about_ft_fr_li_ft span{
		font-size: 22px;
	}

	.index_panzhuo_about_ft_fr_li_fb{
		font-size: 16px;
	}

	.index_panzhuo_about_fb{
		margin-top: 22px;
	}

	.index_panzhuo_about_fb_li{
		width: 49%;
		max-width: 100%;
	}

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

	.index_panzhuo_about_fb_li_img{
		width: 85px;
	}

	.index_panzhuo_about_fb_li_img_con img{
		width: 32px;
	}

	.index_panzhuo_about_fb_li_wz{
		margin-top: 10px;
	}

	.index_panzhuo_about_fb_li_wz_ft{
		font-size: 16px;
	}

	.index_panzhuo_about_fb_li_wz_fb{
		font-size: 17px;
		margin-top: 8px;
	}

	.index_panzhuo_customer{
		padding: 0 0 30px;
	}

	.index_panzhuo_customer_fb{
		margin-top: 22px;
	}

	.index_panzhuo_customer_fb_li{
		width: 33.33333333333%;
	}

	.index_panzhuo_customer_fb_li .img{
		margin: 0 4px;
	}
}

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

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

	.index_panzhuo_about_ft_fr{
		margin-top: 12px;
	}

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

	.index_panzhuo_about_fb{
		margin-top: 18px;
	}

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

	.index_panzhuo_about_fb_li_img{
		width: 80px;
	}

	.index_panzhuo_about_fb_li_img_con img{
		width: 30px;
	}

	.index_panzhuo_customer{
		padding: 0 0 25px;
	}

	.index_panzhuo_customer_fb{
		margin-top: 18px;
	}

	.index_panzhuo_customer_fb_li{
		width: 50%;
	}
}

/*Map location*/
.index_panzhuo_location_map{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
	width: 54%;
}

.index_panzhuo_location_map_img img{
	width: 100%;
}

.index_panzhuo_location_map_circle{
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0b4ea2;
}

.index_panzhuo_location_map_circle_middle{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 45px;
	height: 45px;
	border: 1px solid #0b4ea2;
	border-radius: 50%;
	background: #fbe4d5;
	-webkit-animation: map_circle 2s ease-out;
	-moz-animation: map_circle 2s ease-out;
	-ms-animation: map_circle 2s ease-out;
	-o-animation: map_circle 2s ease-out;
	animation: map_circle 2s ease-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-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

@keyframes -webkit-map_circle{
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		-o-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
	}
	5%{
		opacity: 0.05;
		-webkit-transform: translate(-50%,-50%) scale(0.05);
		-moz-transform: translate(-50%,-50%) scale(0.05);
		-ms-transform: translate(-50%,-50%) scale(0.05);
		-o-transform: translate(-50%,-50%) scale(0.05);
		transform: translate(-50%,-50%) scale(0.05);
	}
	10%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.1);
		-moz-transform: translate(-50%,-50%) scale(0.1);
		-ms-transform: translate(-50%,-50%) scale(0.1);
		-o-transform: translate(-50%,-50%) scale(0.1);
		transform: translate(-50%,-50%) scale(0.1);
	}
	15%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.15);
		-moz-transform: translate(-50%,-50%) scale(0.15);
		-ms-transform: translate(-50%,-50%) scale(0.15);
		-o-transform: translate(-50%,-50%) scale(0.15);
		transform: translate(-50%,-50%) scale(0.15);
	}
	20%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.2);
		-moz-transform: translate(-50%,-50%) scale(0.2);
		-ms-transform: translate(-50%,-50%) scale(0.2);
		-o-transform: translate(-50%,-50%) scale(0.2);
		transform: translate(-50%,-50%) scale(0.2);
	}
	25%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.25);
		-moz-transform: translate(-50%,-50%) scale(0.25);
		-ms-transform: translate(-50%,-50%) scale(0.25);
		-o-transform: translate(-50%,-50%) scale(0.25);
		transform: translate(-50%,-50%) scale(0.25);
	}
	30%{
		opacity: 0.3;
		-webkit-transform: translate(-50%,-50%) scale(0.3);
		-moz-transform: translate(-50%,-50%) scale(0.3);
		-ms-transform: translate(-50%,-50%) scale(0.3);
		-o-transform: translate(-50%,-50%) scale(0.3);
		transform: translate(-50%,-50%) scale(0.3);
	}
	35%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.35);
		-moz-transform: translate(-50%,-50%) scale(0.35);
		-ms-transform: translate(-50%,-50%) scale(0.35);
		-o-transform: translate(-50%,-50%) scale(0.35);
		transform: translate(-50%,-50%) scale(0.35);
	}
	40%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.4);
		-moz-transform: translate(-50%,-50%) scale(0.4);
		-ms-transform: translate(-50%,-50%) scale(0.4);
		-o-transform: translate(-50%,-50%) scale(0.4);
		transform: translate(-50%,-50%) scale(0.4);
	}
	45%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.45);
		-moz-transform: translate(-50%,-50%) scale(0.45);
		-ms-transform: translate(-50%,-50%) scale(0.45);
		-o-transform: translate(-50%,-50%) scale(0.45);
		transform: translate(-50%,-50%) scale(0.45);
	}
	50%{
		opacity: 0.5;
		-webkit-transform: translate(-50%,-50%) scale(0.5);
		-moz-transform: translate(-50%,-50%) scale(0.5);
		-ms-transform: translate(-50%,-50%) scale(0.5);
		-o-transform: translate(-50%,-50%) scale(0.5);
		transform: translate(-50%,-50%) scale(0.5);
	}
	60%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.6);
		-moz-transform: translate(-50%,-50%) scale(0.6);
		-ms-transform: translate(-50%,-50%) scale(0.6);
		-o-transform: translate(-50%,-50%) scale(0.6);
		transform: translate(-50%,-50%) scale(0.6);
	}
	65%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.65);
		-moz-transform: translate(-50%,-50%) scale(0.65);
		-ms-transform: translate(-50%,-50%) scale(0.65);
		-o-transform: translate(-50%,-50%) scale(0.65);
		transform: translate(-50%,-50%) scale(0.65);
	}
	70%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.7);
		-moz-transform: translate(-50%,-50%) scale(0.7);
		-ms-transform: translate(-50%,-50%) scale(0.7);
		-o-transform: translate(-50%,-50%) scale(0.7);
		transform: translate(-50%,-50%) scale(0.7);
	}
	75%{
		opacity: 0.30;
		-webkit-transform: translate(-50%,-50%) scale(0.75);
		-moz-transform: translate(-50%,-50%) scale(0.75);
		-ms-transform: translate(-50%,-50%) scale(0.75);
		-o-transform: translate(-50%,-50%) scale(0.75);
		transform: translate(-50%,-50%) scale(0.75);
	}
	80%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.8);
		-moz-transform: translate(-50%,-50%) scale(0.8);
		-ms-transform: translate(-50%,-50%) scale(0.8);
		-o-transform: translate(-50%,-50%) scale(0.8);
		transform: translate(-50%,-50%) scale(0.8);
	}
	85%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.85);
		-moz-transform: translate(-50%,-50%) scale(0.85);
		-ms-transform: translate(-50%,-50%) scale(0.85);
		-o-transform: translate(-50%,-50%) scale(0.85);
		transform: translate(-50%,-50%) scale(0.85);
	}
	90%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.9);
		-moz-transform: translate(-50%,-50%) scale(0.9);
		-ms-transform: translate(-50%,-50%) scale(0.9);
		-o-transform: translate(-50%,-50%) scale(0.9);
		transform: translate(-50%,-50%) scale(0.9);
	}
	95%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.95);
		-moz-transform: translate(-50%,-50%) scale(0.95);
		-ms-transform: translate(-50%,-50%) scale(0.95);
		-o-transform: translate(-50%,-50%) scale(0.95);
		transform: translate(-50%,-50%) scale(0.95);
	}
	100%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(1);
		-moz-transform: translate(-50%,-50%) scale(1);
		-ms-transform: translate(-50%,-50%) scale(1);
		-o-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
	}
}

@keyframes -moz-map_circle{
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		-o-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
	}
	5%{
		opacity: 0.05;
		-webkit-transform: translate(-50%,-50%) scale(0.05);
		-moz-transform: translate(-50%,-50%) scale(0.05);
		-ms-transform: translate(-50%,-50%) scale(0.05);
		-o-transform: translate(-50%,-50%) scale(0.05);
		transform: translate(-50%,-50%) scale(0.05);
	}
	10%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.1);
		-moz-transform: translate(-50%,-50%) scale(0.1);
		-ms-transform: translate(-50%,-50%) scale(0.1);
		-o-transform: translate(-50%,-50%) scale(0.1);
		transform: translate(-50%,-50%) scale(0.1);
	}
	15%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.15);
		-moz-transform: translate(-50%,-50%) scale(0.15);
		-ms-transform: translate(-50%,-50%) scale(0.15);
		-o-transform: translate(-50%,-50%) scale(0.15);
		transform: translate(-50%,-50%) scale(0.15);
	}
	20%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.2);
		-moz-transform: translate(-50%,-50%) scale(0.2);
		-ms-transform: translate(-50%,-50%) scale(0.2);
		-o-transform: translate(-50%,-50%) scale(0.2);
		transform: translate(-50%,-50%) scale(0.2);
	}
	25%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.25);
		-moz-transform: translate(-50%,-50%) scale(0.25);
		-ms-transform: translate(-50%,-50%) scale(0.25);
		-o-transform: translate(-50%,-50%) scale(0.25);
		transform: translate(-50%,-50%) scale(0.25);
	}
	30%{
		opacity: 0.3;
		-webkit-transform: translate(-50%,-50%) scale(0.3);
		-moz-transform: translate(-50%,-50%) scale(0.3);
		-ms-transform: translate(-50%,-50%) scale(0.3);
		-o-transform: translate(-50%,-50%) scale(0.3);
		transform: translate(-50%,-50%) scale(0.3);
	}
	35%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.35);
		-moz-transform: translate(-50%,-50%) scale(0.35);
		-ms-transform: translate(-50%,-50%) scale(0.35);
		-o-transform: translate(-50%,-50%) scale(0.35);
		transform: translate(-50%,-50%) scale(0.35);
	}
	40%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.4);
		-moz-transform: translate(-50%,-50%) scale(0.4);
		-ms-transform: translate(-50%,-50%) scale(0.4);
		-o-transform: translate(-50%,-50%) scale(0.4);
		transform: translate(-50%,-50%) scale(0.4);
	}
	45%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.45);
		-moz-transform: translate(-50%,-50%) scale(0.45);
		-ms-transform: translate(-50%,-50%) scale(0.45);
		-o-transform: translate(-50%,-50%) scale(0.45);
		transform: translate(-50%,-50%) scale(0.45);
	}
	50%{
		opacity: 0.5;
		-webkit-transform: translate(-50%,-50%) scale(0.5);
		-moz-transform: translate(-50%,-50%) scale(0.5);
		-ms-transform: translate(-50%,-50%) scale(0.5);
		-o-transform: translate(-50%,-50%) scale(0.5);
		transform: translate(-50%,-50%) scale(0.5);
	}
	60%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.6);
		-moz-transform: translate(-50%,-50%) scale(0.6);
		-ms-transform: translate(-50%,-50%) scale(0.6);
		-o-transform: translate(-50%,-50%) scale(0.6);
		transform: translate(-50%,-50%) scale(0.6);
	}
	65%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.65);
		-moz-transform: translate(-50%,-50%) scale(0.65);
		-ms-transform: translate(-50%,-50%) scale(0.65);
		-o-transform: translate(-50%,-50%) scale(0.65);
		transform: translate(-50%,-50%) scale(0.65);
	}
	70%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.7);
		-moz-transform: translate(-50%,-50%) scale(0.7);
		-ms-transform: translate(-50%,-50%) scale(0.7);
		-o-transform: translate(-50%,-50%) scale(0.7);
		transform: translate(-50%,-50%) scale(0.7);
	}
	75%{
		opacity: 0.30;
		-webkit-transform: translate(-50%,-50%) scale(0.75);
		-moz-transform: translate(-50%,-50%) scale(0.75);
		-ms-transform: translate(-50%,-50%) scale(0.75);
		-o-transform: translate(-50%,-50%) scale(0.75);
		transform: translate(-50%,-50%) scale(0.75);
	}
	80%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.8);
		-moz-transform: translate(-50%,-50%) scale(0.8);
		-ms-transform: translate(-50%,-50%) scale(0.8);
		-o-transform: translate(-50%,-50%) scale(0.8);
		transform: translate(-50%,-50%) scale(0.8);
	}
	85%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.85);
		-moz-transform: translate(-50%,-50%) scale(0.85);
		-ms-transform: translate(-50%,-50%) scale(0.85);
		-o-transform: translate(-50%,-50%) scale(0.85);
		transform: translate(-50%,-50%) scale(0.85);
	}
	90%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.9);
		-moz-transform: translate(-50%,-50%) scale(0.9);
		-ms-transform: translate(-50%,-50%) scale(0.9);
		-o-transform: translate(-50%,-50%) scale(0.9);
		transform: translate(-50%,-50%) scale(0.9);
	}
	95%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.95);
		-moz-transform: translate(-50%,-50%) scale(0.95);
		-ms-transform: translate(-50%,-50%) scale(0.95);
		-o-transform: translate(-50%,-50%) scale(0.95);
		transform: translate(-50%,-50%) scale(0.95);
	}
	100%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(1);
		-moz-transform: translate(-50%,-50%) scale(1);
		-ms-transform: translate(-50%,-50%) scale(1);
		-o-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
	}
}

@keyframes -ms-map_circle{
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		-o-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
	}
	5%{
		opacity: 0.05;
		-webkit-transform: translate(-50%,-50%) scale(0.05);
		-moz-transform: translate(-50%,-50%) scale(0.05);
		-ms-transform: translate(-50%,-50%) scale(0.05);
		-o-transform: translate(-50%,-50%) scale(0.05);
		transform: translate(-50%,-50%) scale(0.05);
	}
	10%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.1);
		-moz-transform: translate(-50%,-50%) scale(0.1);
		-ms-transform: translate(-50%,-50%) scale(0.1);
		-o-transform: translate(-50%,-50%) scale(0.1);
		transform: translate(-50%,-50%) scale(0.1);
	}
	15%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.15);
		-moz-transform: translate(-50%,-50%) scale(0.15);
		-ms-transform: translate(-50%,-50%) scale(0.15);
		-o-transform: translate(-50%,-50%) scale(0.15);
		transform: translate(-50%,-50%) scale(0.15);
	}
	20%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.2);
		-moz-transform: translate(-50%,-50%) scale(0.2);
		-ms-transform: translate(-50%,-50%) scale(0.2);
		-o-transform: translate(-50%,-50%) scale(0.2);
		transform: translate(-50%,-50%) scale(0.2);
	}
	25%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.25);
		-moz-transform: translate(-50%,-50%) scale(0.25);
		-ms-transform: translate(-50%,-50%) scale(0.25);
		-o-transform: translate(-50%,-50%) scale(0.25);
		transform: translate(-50%,-50%) scale(0.25);
	}
	30%{
		opacity: 0.3;
		-webkit-transform: translate(-50%,-50%) scale(0.3);
		-moz-transform: translate(-50%,-50%) scale(0.3);
		-ms-transform: translate(-50%,-50%) scale(0.3);
		-o-transform: translate(-50%,-50%) scale(0.3);
		transform: translate(-50%,-50%) scale(0.3);
	}
	35%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.35);
		-moz-transform: translate(-50%,-50%) scale(0.35);
		-ms-transform: translate(-50%,-50%) scale(0.35);
		-o-transform: translate(-50%,-50%) scale(0.35);
		transform: translate(-50%,-50%) scale(0.35);
	}
	40%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.4);
		-moz-transform: translate(-50%,-50%) scale(0.4);
		-ms-transform: translate(-50%,-50%) scale(0.4);
		-o-transform: translate(-50%,-50%) scale(0.4);
		transform: translate(-50%,-50%) scale(0.4);
	}
	45%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.45);
		-moz-transform: translate(-50%,-50%) scale(0.45);
		-ms-transform: translate(-50%,-50%) scale(0.45);
		-o-transform: translate(-50%,-50%) scale(0.45);
		transform: translate(-50%,-50%) scale(0.45);
	}
	50%{
		opacity: 0.5;
		-webkit-transform: translate(-50%,-50%) scale(0.5);
		-moz-transform: translate(-50%,-50%) scale(0.5);
		-ms-transform: translate(-50%,-50%) scale(0.5);
		-o-transform: translate(-50%,-50%) scale(0.5);
		transform: translate(-50%,-50%) scale(0.5);
	}
	60%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.6);
		-moz-transform: translate(-50%,-50%) scale(0.6);
		-ms-transform: translate(-50%,-50%) scale(0.6);
		-o-transform: translate(-50%,-50%) scale(0.6);
		transform: translate(-50%,-50%) scale(0.6);
	}
	65%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.65);
		-moz-transform: translate(-50%,-50%) scale(0.65);
		-ms-transform: translate(-50%,-50%) scale(0.65);
		-o-transform: translate(-50%,-50%) scale(0.65);
		transform: translate(-50%,-50%) scale(0.65);
	}
	70%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.7);
		-moz-transform: translate(-50%,-50%) scale(0.7);
		-ms-transform: translate(-50%,-50%) scale(0.7);
		-o-transform: translate(-50%,-50%) scale(0.7);
		transform: translate(-50%,-50%) scale(0.7);
	}
	75%{
		opacity: 0.30;
		-webkit-transform: translate(-50%,-50%) scale(0.75);
		-moz-transform: translate(-50%,-50%) scale(0.75);
		-ms-transform: translate(-50%,-50%) scale(0.75);
		-o-transform: translate(-50%,-50%) scale(0.75);
		transform: translate(-50%,-50%) scale(0.75);
	}
	80%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.8);
		-moz-transform: translate(-50%,-50%) scale(0.8);
		-ms-transform: translate(-50%,-50%) scale(0.8);
		-o-transform: translate(-50%,-50%) scale(0.8);
		transform: translate(-50%,-50%) scale(0.8);
	}
	85%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.85);
		-moz-transform: translate(-50%,-50%) scale(0.85);
		-ms-transform: translate(-50%,-50%) scale(0.85);
		-o-transform: translate(-50%,-50%) scale(0.85);
		transform: translate(-50%,-50%) scale(0.85);
	}
	90%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.9);
		-moz-transform: translate(-50%,-50%) scale(0.9);
		-ms-transform: translate(-50%,-50%) scale(0.9);
		-o-transform: translate(-50%,-50%) scale(0.9);
		transform: translate(-50%,-50%) scale(0.9);
	}
	95%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.95);
		-moz-transform: translate(-50%,-50%) scale(0.95);
		-ms-transform: translate(-50%,-50%) scale(0.95);
		-o-transform: translate(-50%,-50%) scale(0.95);
		transform: translate(-50%,-50%) scale(0.95);
	}
	100%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(1);
		-moz-transform: translate(-50%,-50%) scale(1);
		-ms-transform: translate(-50%,-50%) scale(1);
		-o-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
	}
}

@keyframes -o-map_circle{
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		-o-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
	}
	5%{
		opacity: 0.05;
		-webkit-transform: translate(-50%,-50%) scale(0.05);
		-moz-transform: translate(-50%,-50%) scale(0.05);
		-ms-transform: translate(-50%,-50%) scale(0.05);
		-o-transform: translate(-50%,-50%) scale(0.05);
		transform: translate(-50%,-50%) scale(0.05);
	}
	10%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.1);
		-moz-transform: translate(-50%,-50%) scale(0.1);
		-ms-transform: translate(-50%,-50%) scale(0.1);
		-o-transform: translate(-50%,-50%) scale(0.1);
		transform: translate(-50%,-50%) scale(0.1);
	}
	15%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.15);
		-moz-transform: translate(-50%,-50%) scale(0.15);
		-ms-transform: translate(-50%,-50%) scale(0.15);
		-o-transform: translate(-50%,-50%) scale(0.15);
		transform: translate(-50%,-50%) scale(0.15);
	}
	20%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.2);
		-moz-transform: translate(-50%,-50%) scale(0.2);
		-ms-transform: translate(-50%,-50%) scale(0.2);
		-o-transform: translate(-50%,-50%) scale(0.2);
		transform: translate(-50%,-50%) scale(0.2);
	}
	25%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.25);
		-moz-transform: translate(-50%,-50%) scale(0.25);
		-ms-transform: translate(-50%,-50%) scale(0.25);
		-o-transform: translate(-50%,-50%) scale(0.25);
		transform: translate(-50%,-50%) scale(0.25);
	}
	30%{
		opacity: 0.3;
		-webkit-transform: translate(-50%,-50%) scale(0.3);
		-moz-transform: translate(-50%,-50%) scale(0.3);
		-ms-transform: translate(-50%,-50%) scale(0.3);
		-o-transform: translate(-50%,-50%) scale(0.3);
		transform: translate(-50%,-50%) scale(0.3);
	}
	35%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.35);
		-moz-transform: translate(-50%,-50%) scale(0.35);
		-ms-transform: translate(-50%,-50%) scale(0.35);
		-o-transform: translate(-50%,-50%) scale(0.35);
		transform: translate(-50%,-50%) scale(0.35);
	}
	40%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.4);
		-moz-transform: translate(-50%,-50%) scale(0.4);
		-ms-transform: translate(-50%,-50%) scale(0.4);
		-o-transform: translate(-50%,-50%) scale(0.4);
		transform: translate(-50%,-50%) scale(0.4);
	}
	45%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.45);
		-moz-transform: translate(-50%,-50%) scale(0.45);
		-ms-transform: translate(-50%,-50%) scale(0.45);
		-o-transform: translate(-50%,-50%) scale(0.45);
		transform: translate(-50%,-50%) scale(0.45);
	}
	50%{
		opacity: 0.5;
		-webkit-transform: translate(-50%,-50%) scale(0.5);
		-moz-transform: translate(-50%,-50%) scale(0.5);
		-ms-transform: translate(-50%,-50%) scale(0.5);
		-o-transform: translate(-50%,-50%) scale(0.5);
		transform: translate(-50%,-50%) scale(0.5);
	}
	60%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.6);
		-moz-transform: translate(-50%,-50%) scale(0.6);
		-ms-transform: translate(-50%,-50%) scale(0.6);
		-o-transform: translate(-50%,-50%) scale(0.6);
		transform: translate(-50%,-50%) scale(0.6);
	}
	65%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.65);
		-moz-transform: translate(-50%,-50%) scale(0.65);
		-ms-transform: translate(-50%,-50%) scale(0.65);
		-o-transform: translate(-50%,-50%) scale(0.65);
		transform: translate(-50%,-50%) scale(0.65);
	}
	70%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.7);
		-moz-transform: translate(-50%,-50%) scale(0.7);
		-ms-transform: translate(-50%,-50%) scale(0.7);
		-o-transform: translate(-50%,-50%) scale(0.7);
		transform: translate(-50%,-50%) scale(0.7);
	}
	75%{
		opacity: 0.30;
		-webkit-transform: translate(-50%,-50%) scale(0.75);
		-moz-transform: translate(-50%,-50%) scale(0.75);
		-ms-transform: translate(-50%,-50%) scale(0.75);
		-o-transform: translate(-50%,-50%) scale(0.75);
		transform: translate(-50%,-50%) scale(0.75);
	}
	80%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.8);
		-moz-transform: translate(-50%,-50%) scale(0.8);
		-ms-transform: translate(-50%,-50%) scale(0.8);
		-o-transform: translate(-50%,-50%) scale(0.8);
		transform: translate(-50%,-50%) scale(0.8);
	}
	85%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.85);
		-moz-transform: translate(-50%,-50%) scale(0.85);
		-ms-transform: translate(-50%,-50%) scale(0.85);
		-o-transform: translate(-50%,-50%) scale(0.85);
		transform: translate(-50%,-50%) scale(0.85);
	}
	90%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.9);
		-moz-transform: translate(-50%,-50%) scale(0.9);
		-ms-transform: translate(-50%,-50%) scale(0.9);
		-o-transform: translate(-50%,-50%) scale(0.9);
		transform: translate(-50%,-50%) scale(0.9);
	}
	95%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.95);
		-moz-transform: translate(-50%,-50%) scale(0.95);
		-ms-transform: translate(-50%,-50%) scale(0.95);
		-o-transform: translate(-50%,-50%) scale(0.95);
		transform: translate(-50%,-50%) scale(0.95);
	}
	100%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(1);
		-moz-transform: translate(-50%,-50%) scale(1);
		-ms-transform: translate(-50%,-50%) scale(1);
		-o-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
	}
}

@keyframes map_circle{
	0%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(0);
		-moz-transform: translate(-50%,-50%) scale(0);
		-ms-transform: translate(-50%,-50%) scale(0);
		-o-transform: translate(-50%,-50%) scale(0);
		transform: translate(-50%,-50%) scale(0);
	}
	5%{
		opacity: 0.05;
		-webkit-transform: translate(-50%,-50%) scale(0.05);
		-moz-transform: translate(-50%,-50%) scale(0.05);
		-ms-transform: translate(-50%,-50%) scale(0.05);
		-o-transform: translate(-50%,-50%) scale(0.05);
		transform: translate(-50%,-50%) scale(0.05);
	}
	10%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.1);
		-moz-transform: translate(-50%,-50%) scale(0.1);
		-ms-transform: translate(-50%,-50%) scale(0.1);
		-o-transform: translate(-50%,-50%) scale(0.1);
		transform: translate(-50%,-50%) scale(0.1);
	}
	15%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.15);
		-moz-transform: translate(-50%,-50%) scale(0.15);
		-ms-transform: translate(-50%,-50%) scale(0.15);
		-o-transform: translate(-50%,-50%) scale(0.15);
		transform: translate(-50%,-50%) scale(0.15);
	}
	20%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.2);
		-moz-transform: translate(-50%,-50%) scale(0.2);
		-ms-transform: translate(-50%,-50%) scale(0.2);
		-o-transform: translate(-50%,-50%) scale(0.2);
		transform: translate(-50%,-50%) scale(0.2);
	}
	25%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.25);
		-moz-transform: translate(-50%,-50%) scale(0.25);
		-ms-transform: translate(-50%,-50%) scale(0.25);
		-o-transform: translate(-50%,-50%) scale(0.25);
		transform: translate(-50%,-50%) scale(0.25);
	}
	30%{
		opacity: 0.3;
		-webkit-transform: translate(-50%,-50%) scale(0.3);
		-moz-transform: translate(-50%,-50%) scale(0.3);
		-ms-transform: translate(-50%,-50%) scale(0.3);
		-o-transform: translate(-50%,-50%) scale(0.3);
		transform: translate(-50%,-50%) scale(0.3);
	}
	35%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.35);
		-moz-transform: translate(-50%,-50%) scale(0.35);
		-ms-transform: translate(-50%,-50%) scale(0.35);
		-o-transform: translate(-50%,-50%) scale(0.35);
		transform: translate(-50%,-50%) scale(0.35);
	}
	40%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.4);
		-moz-transform: translate(-50%,-50%) scale(0.4);
		-ms-transform: translate(-50%,-50%) scale(0.4);
		-o-transform: translate(-50%,-50%) scale(0.4);
		transform: translate(-50%,-50%) scale(0.4);
	}
	45%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.45);
		-moz-transform: translate(-50%,-50%) scale(0.45);
		-ms-transform: translate(-50%,-50%) scale(0.45);
		-o-transform: translate(-50%,-50%) scale(0.45);
		transform: translate(-50%,-50%) scale(0.45);
	}
	50%{
		opacity: 0.5;
		-webkit-transform: translate(-50%,-50%) scale(0.5);
		-moz-transform: translate(-50%,-50%) scale(0.5);
		-ms-transform: translate(-50%,-50%) scale(0.5);
		-o-transform: translate(-50%,-50%) scale(0.5);
		transform: translate(-50%,-50%) scale(0.5);
	}
	60%{
		opacity: 0.45;
		-webkit-transform: translate(-50%,-50%) scale(0.6);
		-moz-transform: translate(-50%,-50%) scale(0.6);
		-ms-transform: translate(-50%,-50%) scale(0.6);
		-o-transform: translate(-50%,-50%) scale(0.6);
		transform: translate(-50%,-50%) scale(0.6);
	}
	65%{
		opacity: 0.4;
		-webkit-transform: translate(-50%,-50%) scale(0.65);
		-moz-transform: translate(-50%,-50%) scale(0.65);
		-ms-transform: translate(-50%,-50%) scale(0.65);
		-o-transform: translate(-50%,-50%) scale(0.65);
		transform: translate(-50%,-50%) scale(0.65);
	}
	70%{
		opacity: 0.35;
		-webkit-transform: translate(-50%,-50%) scale(0.7);
		-moz-transform: translate(-50%,-50%) scale(0.7);
		-ms-transform: translate(-50%,-50%) scale(0.7);
		-o-transform: translate(-50%,-50%) scale(0.7);
		transform: translate(-50%,-50%) scale(0.7);
	}
	75%{
		opacity: 0.30;
		-webkit-transform: translate(-50%,-50%) scale(0.75);
		-moz-transform: translate(-50%,-50%) scale(0.75);
		-ms-transform: translate(-50%,-50%) scale(0.75);
		-o-transform: translate(-50%,-50%) scale(0.75);
		transform: translate(-50%,-50%) scale(0.75);
	}
	80%{
		opacity: 0.25;
		-webkit-transform: translate(-50%,-50%) scale(0.8);
		-moz-transform: translate(-50%,-50%) scale(0.8);
		-ms-transform: translate(-50%,-50%) scale(0.8);
		-o-transform: translate(-50%,-50%) scale(0.8);
		transform: translate(-50%,-50%) scale(0.8);
	}
	85%{
		opacity: 0.2;
		-webkit-transform: translate(-50%,-50%) scale(0.85);
		-moz-transform: translate(-50%,-50%) scale(0.85);
		-ms-transform: translate(-50%,-50%) scale(0.85);
		-o-transform: translate(-50%,-50%) scale(0.85);
		transform: translate(-50%,-50%) scale(0.85);
	}
	90%{
		opacity: 0.15;
		-webkit-transform: translate(-50%,-50%) scale(0.9);
		-moz-transform: translate(-50%,-50%) scale(0.9);
		-ms-transform: translate(-50%,-50%) scale(0.9);
		-o-transform: translate(-50%,-50%) scale(0.9);
		transform: translate(-50%,-50%) scale(0.9);
	}
	95%{
		opacity: 0.1;
		-webkit-transform: translate(-50%,-50%) scale(0.95);
		-moz-transform: translate(-50%,-50%) scale(0.95);
		-ms-transform: translate(-50%,-50%) scale(0.95);
		-o-transform: translate(-50%,-50%) scale(0.95);
		transform: translate(-50%,-50%) scale(0.95);
	}
	100%{
		opacity: 0;
		-webkit-transform: translate(-50%,-50%) scale(1);
		-moz-transform: translate(-50%,-50%) scale(1);
		-ms-transform: translate(-50%,-50%) scale(1);
		-o-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
	}
}

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

/*Application domain*/
.index_panzhuo_application{
	padding-top: 5%;
}

.index_panzhuo_application_ft_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_panzhuo_application_ft_fl{
	width: 65%;
}

.index_panzhuo_application_ft_fl .index_panzhuo_title h4{
	line-height: 1.5;
	margin-top: 10px;
}

.index_panzhuo_application_ft_fr{
	width: 32%;
	-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_panzhuo_application_ft_fr_links{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #303841;
	-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_panzhuo_application_ft_fr_links:hover{
	color: #0b4ea2;
}

.index_panzhuo_application_fb{
	margin-top: 3%;
}

.index_panzhuo_application_fb_con{
	overflow: hidden;
}

.index_panzhuo_application_fb_li_links{
	position: relative;
	display: block;
	cursor: pointer;
}

.index_panzhuo_application_fb_li .img{
	overflow: hidden;
}

.index_panzhuo_application_fb_li .img img{
	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;
}

.index_panzhuo_application_fb_li:hover .img img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_panzhuo_application_fb_li .wz{
	position: absolute;
	left: 0;
	bottom: 12.5%;
	width: 100%;
	padding: 0 8.5%;
}

.index_panzhuo_application_fb_li .wz .wz_ft{
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
	color: #ffffff;
	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_panzhuo_application_fb_li:hover .wz .wz_ft{*/
/*	color: #0b4ea2;*/
/*}*/

.index_panzhuo_application_fb_li .wz .wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	margin-top: 0;
	opacity: 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;
}

.index_panzhuo_application_fb_li:hover .wz .wz_fb{
	/*color: #0b4ea2;*/
	margin-top: 15px;
	opacity: 1;
}

.index_panzhuo_application_fb_li .wz .wz_fb .wz_fb_nnn{
	height: 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;
}

.index_panzhuo_application_fb2{
	margin-top: 3%;
	display: none;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

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

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

	.index_panzhuo_application_fb_li:hover .wz .wz_fb{
		margin-top: 12px;
	}
}

@media(max-width:991px){
	.index_panzhuo_application{
		padding-top: 4%;
	}

	.index_panzhuo_application_ft_fl{
		width: 100%;
	}

	.index_panzhuo_application_ft_fl .index_panzhuo_title h4{
		margin-top: 8px;
	}

	.index_panzhuo_application_ft_fr{
		display: none;
	}

	.index_panzhuo_application_ft_fr_links{
		font-size: 18px;
	}

	.index_panzhuo_application_fb_li .wz{
		bottom: 7%;
		padding: 0 5%;
	}

	.index_panzhuo_application_fb_li .wz .wz_ft{
		font-size: 18px;
	}

	.index_panzhuo_application_fb_li .wz .wz_fb{
		opacity: 1;
		margin-top: 12px;
	}

	.index_panzhuo_application_fb_li .wz .wz_fb .wz_fb_nnn{
		height: auto!important;
	}
}

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

	.index_panzhuo_application_ft_fr_links{
		font-size: 17px;
	}

	.index_panzhuo_application_fb{
		margin-top: 22px;
	}

	.index_panzhuo_application_fb_li .wz{
		bottom: 25px;
		padding: 0 18px;
	}

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

	.index_panzhuo_application_fb_li .wz .wz_fb{
		font-size: 15px;
		margin-top: 10px;
	}

	.index_panzhuo_application_fb_li:hover .wz .wz_fb{
		margin-top: 10px;
	}

	.index_panzhuo_application_fb2{
		margin-top: 22px;
	}
}

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

	.index_panzhuo_application_fb{
		margin-top: 18px;
	}

	.index_panzhuo_application_fb_li .wz{
		bottom: 20px;
		padding: 0 15px;
	}

	.index_panzhuo_application_fb2{
		margin-top: 18px;
	}
}

/*Product center*/
.index_panzhuo_product{
	padding: 5% 0;
	background-image: url(../images/img/index_product_bj.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.index_panzhuo_product_fc{
	margin-top: 4%;
}

.index_panzhuo_product_fc_con{
	overflow: hidden;
	padding: 1px;
}

.index_panzhuo_product_fc_li .img{
	border: 1px solid rgba(0,0,0,0.08);
	overflow: hidden;
}

.index_panzhuo_product_fc_li .img img{
	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;
}

.index_panzhuo_product_fc_li:hover .img img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_panzhuo_product_fc_li .wz{
	margin-top: 7%;
}

.index_panzhuo_product_fc_li .wz .wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #303841;
	text-align: center;
	-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_panzhuo_product_fc_li:hover .wz .wz_ft{
	color: #0b4ea2;
}

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

@media(max-width:991px){
	.index_panzhuo_product{
		padding: 4% 0;
	}

	.index_panzhuo_product_fc{
		margin-top: 3%;
	}

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

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

	.index_panzhuo_product_fc{
		margin-top: 22px;
	}

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

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

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

	.index_panzhuo_product_fc{
		margin-top: 18px;
	}
}

/*News center*/
.index_panzhuo_news{
	padding: 5% 0;
}

.index_panzhuo_news_ft{
	-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_panzhuo_news_ft_fl{
	width: 65%;
}

.index_panzhuo_news_ft_fl .index_panzhuo_title h4{
	line-height: 1.5;
	margin-top: 10px;
}

.index_panzhuo_news_ft_fr{
	width: 32%;
	-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_panzhuo_news_ft_fr_li{
	margin-left: 2.2rem;
}

.index_panzhuo_news_ft_fr_li:nth-child(1){
	margin-left: 0;
}

.index_panzhuo_news_ft_fr_li a{
	font-size: 17px;
	line-height: 1.5;
	color: #303841;
	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_panzhuo_news_ft_fr_li:hover a,.index_panzhuo_news_ft_fr_li.on a{
	color: #0b4ea2;
}

.index_panzhuo_news_fb{
	margin-top: 4%;
}

.index_panzhuo_news_fb_con{
	overflow: hidden;
}

.index_panzhuo_news_fb_li_con{
	position: relative;
	padding: 15% 10%;
	border-right: 1px solid #eeeeee;
	background: #ffffff;
	-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_panzhuo_news_fb_li_con::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 4px;
	background: #0b4ea2;
	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_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_con::after{
	width: 100%;
}

.index_panzhuo_news_fb_li_ft{
	font-family: Arial;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
	color: #303841;
	-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_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_ft{
	color: #0b4ea2;
}

.index_panzhuo_news_fb_li_fc{
	margin-top: 8.5%;
}

.index_panzhuo_news_fb_li_fc_ft{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
	color: #303841;
	height: 3.2em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	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_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_fc_ft{
	color: #0b4ea2;
}

.index_panzhuo_news_fb_li_fc_fc{
	font-size: 15px;
	line-height: 2;
	color: #999999;
	height: 4em;
	margin-top: 12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index_panzhuo_news_fb_li_fc_fb{
	margin-top: 15px;
	overflow: hidden;
}

.index_panzhuo_news_fb_li_fc_fb img{
	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;
}

.index_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_fc_fb img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.index_panzhuo_news_fb_li_fb{
	margin-top: 12%;
}

.index_panzhuo_news_fb_li_fb_con{
	position: relative;
	width: 2.9rem;
}

.index_panzhuo_news_fb_li_fb_nnn{
	padding-top: 100%;
	border-radius: 50%;
	background: #f0f2f5;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-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_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_fb_nnn{
	background: #0b4ea2;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}

.index_panzhuo_news_fb_li_fb_nnn span{
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 15px;
	line-height: 1;
	color: #303841;
	-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_panzhuo_news_fb_li:hover .index_panzhuo_news_fb_li_fb_nnn span{
	color: #ffffff;
}

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

	.index_panzhuo_news_fb_li_fc_ft{
		font-size: 17px;
	}

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

	.index_panzhuo_news_fb_li_fb_con{
		width: 46px;
	}
}

@media(max-width:991px){
	.index_panzhuo_news{
		padding: 4% 0;
	}

	.index_panzhuo_news_ft_fl{
		width: 100%;
	}

	.index_panzhuo_news_ft_fl .index_panzhuo_title h4{
		margin-top: 8px;
	}

	.index_panzhuo_news_ft_fr{
		width: 100%;
		margin-top: 2.5%;
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		-o-justify-content: flex-start;
		justify-content: flex-start;
	}

	.index_panzhuo_news_fb{
		margin-top: 3%;
	}

	.index_panzhuo_news_fb_li_con{
		padding: 11% 8%;
	}

	.index_panzhuo_news_fb_li_ft{
		font-size: 20px;
	}

	.index_panzhuo_news_fb_li_fc{
		margin-top: 15px;
	}

	.index_panzhuo_news_fb_li_fc_fc{
		margin-top: 10px;
	}

	.index_panzhuo_news_fb_li_fc_fb{
		margin-top: 12px;
	}

	.index_panzhuo_news_fb_li_fb{
		margin-top: 20px;
	}

	.index_panzhuo_news_fb_li_fb_con{
		width: 42px;
	}

	.index_panzhuo_news_fb_li_fb_nnn span{
		font-size: 14px;
	}
}

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

	.index_panzhuo_news_ft_fr{
		margin-top: 18px;
	}

	.index_panzhuo_news_ft_fr_ul{
		width: 100%;
	}

	.index_panzhuo_news_ft_fr_li{
		width: 32%;
		margin-left: 0!important;
		margin-right: 2%;
		text-align: center;
	}

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

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

	.index_panzhuo_news_fb{
		margin-top: 22px;
	}

	.index_panzhuo_news_fb_li_con{
		padding: 25px 20px;
	}

	.index_panzhuo_news_fb_li_con::after{
		height: 3px;
	}

	.index_panzhuo_news_fb_li_ft{
		font-size: 18px;
	}

	.index_panzhuo_news_fb_li_fc{
		margin-top: 12px;
	}

	.index_panzhuo_news_fb_li_fc_ft{
		font-size: 16px;
	}

	.index_panzhuo_news_fb_li_fc_fc{
		font-size: 14px;
		margin-top: 8px;
	}

	.index_panzhuo_news_fb_li_fc_fb{
		margin-top: 10px;
	}

	.index_panzhuo_news_fb_li_fb{
		margin-top: 18px;
	}

	.index_panzhuo_news_fb_li_fb_con{
		width: 40px;
	}
}

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

	.index_panzhuo_news_ft_fr{
		margin-top: 15px;
	}

	.index_panzhuo_news_fb{
		margin-top: 18px;
	}

	.index_panzhuo_news_fb_li_con{
		padding: 20px 18px;
	}

	.index_panzhuo_news_fb_li_fb{
		margin-top: 15px;
	}

	.index_panzhuo_news_fb_li_fb_con{
		width: 38px;
	}
}

/*Footer*/
.pc_footer{
	padding: 3.8% 0;
	background: #222222;
}

.pc_footer_ft_fl{
	max-width: 35%;
}

.pc_footer_ft_fl_ft img{
	max-width: 100%;
	max-height: 65px;
}

.pc_footer_ft_fl_fb{
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,0.6);
	margin-top: 1.3rem;
}

.pc_footer_ft_fl_fb h3{
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,1);
}

.pc_footer_ft_fl_fb h3 span{
	font-family: Arial;
	font-size: 1.4rem;
	font-style: italic;
	vertical-align: middle;
}

.pc_footer_ft_fr{
	width: 60%;
}

.pc_footer_ft_fr_ft_li{
	max-width: 12.5%;
}

.pc_footer_ft_fr_ft_li a{
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

.pc_footer_ft_fr_fc{
	margin-top: 2.5rem;
}

.pc_footer_ft_fr_fc_ul{
	margin: 0 -0.9rem;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}

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

.pc_footer_ft_fr_fc_li{
	margin: 5px 0.9rem;
}

.pc_footer_ft_fr_fc_li_links{
	position: relative;
	cursor: pointer;
	display: block;
}

.pc_footer_ft_fr_fc_li .media_icon{
	position: relative;
	z-index: 5;
}

.pc_footer_ft_fr_fc_li .media_icon img{
	max-width: 100%;
	max-height: 22px;
	opacity: 0.6;
	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_footer_ft_fr_fc_li:hover .media_icon img{
	opacity: 1;
}

.pc_footer_ft_fr_fc_li .media_icon:after{
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	z-index: 99;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 8px;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #ffffff transparent;
	border-top: none;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: rotate(180deg) translateX(8px);
	-moz-transform: rotate(180deg) translateX(8px);
	-ms-transform: rotate(180deg) translateX(8px);
	-o-transform: rotate(180deg) translateX(8px);
	transform: rotate(180deg) translateX(8px);
}

.pc_footer_ft_fr_fc_li:hover .media_icon:after{
	opacity: 1;
	visibility: visible;
}

.pc_footer_ft_fr_fc_li_links_hasimg .media_icon:after{
	display: none;
}

.pc_footer_ft_fr_fc_li .img{
	position: absolute;
	right: 0;
	bottom: 100%;
	z-index: 15;
	width: 120px;
	margin-bottom: 8px;
	padding: 5px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	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;
}

.pc_footer_ft_fr_fc_li:hover .img{
	opacity: 1;
	visibility: visible;
}

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

.pc_footer_ft_fr_fb{
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,0.6);
	margin-top: 2.5rem;
	text-align: right;
}

.pc_footer_ft_fr_fb a{
	color: rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

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

	.pc_footer_ft_fl_fb h3{
		font-size: 16px;
	}

	.pc_footer_ft_fl_fb h3 span{
		font-size: 22px;
	}

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

	.pc_footer_ft_fr_fb{
		font-size: 16px;
	}
}

@media(max-width:991px){
	.pc_footer{
		padding: 3.5% 0;
	}

	.pc_footer_ft_fl{
		width: 100%;
		max-width: 100%;
	}

	.pc_footer_ft_fl_ft img{
		max-height: 60px;
	}

	.pc_footer_ft_fl_fb{
		line-height: 1.6;
		margin-top: 18px;
	}

	.pc_footer_ft_fl_fb h3{
		line-height: 1.6;
	}

	.pc_footer_ft_fl_fb h3 span{
		font-size: 20px;
	}

	.pc_footer_ft_fr{
		width: 100%;
		margin-top: 2.5%;
	}

	.pc_footer_ft_fr_ft{
		display: none;
	}

	.pc_footer_ft_fr_ft_li a{
		line-height: 1.6;
	}

	.pc_footer_ft_fr_fc{
		margin-top: 0;
	}

	.pc_footer_ft_fr_fc_ul{
		margin: 0 -10px;
		-webkit-justify-content: flex-start;
		-moz-justify-content: flex-start;
		-ms-justify-content: flex-start;
		-o-justify-content: flex-start;
		justify-content: flex-start;
	}

	.pc_footer_ft_fr_fc_li{
		margin: 5px 10px;
	}

	.pc_footer_ft_fr_fc_li .media_icon img{
		max-height: 20px;
	}

	.pc_footer_ft_fr_fb{
		line-height: 1.6;
		margin-top: 1.8rem;
		text-align: left;
	}
}

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

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

	.pc_footer_ft_fl_fb h3{
		font-size: 15px;
	}

	.pc_footer_ft_fl_fb h3 span{
		font-size: 18px;
	}

	.pc_footer_ft_fr{
		margin-top: 18px;
	}

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

	.pc_footer_ft_fr_fc_ul{
		margin: 0 -8px;
	}

	.pc_footer_ft_fr_fc_li{
		margin: 5px 8px;
	}

	.pc_footer_ft_fr_fc_li .img{
		width: 110px;
	}

	.pc_footer_ft_fr_fb{
		font-size: 15px;
		margin-top: 18px;
	}
}

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

	.pc_footer_ft_fr{
		margin-top: 15px;
	}

	.pc_footer_ft_fr_fc_ul{
		margin: 0 -6px;
	}

	.pc_footer_ft_fr_fc_li{
		margin: 4px 6px;
	}

	.pc_footer_ft_fr_fb{
		margin-top: 15px;
	}
}