/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
navs,
section {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	background: #fff;
	color: #333;
	position: relative;
	font: 14px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
	vertical-align: baseline;
	width: 100%;
	overflow-x: hidden;
}

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

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

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

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

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

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

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

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

.clearfix {
	zoom: 1
}

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

h1,
h2 {
	font-weight: bold;
}

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

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

p {
	margin: 0;
}

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

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/**/
.max1560 {
	max-width: 1660px;
	margin: 0 auto;
	padding: 0 50px;
}

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#pc_header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;

}

.pc_header_con {
	height: 100px;
	line-height: 100px;
	padding: 0 35px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 13%;
	max-width: 180px;
	position: relative;
}

.pc_logo a{
	font-size: 0;
	display: block;
}

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

.pc_logo .img1{
	opacity: 1;
}

.pc_logo .img2 {
	position: absolute;
	left: 0;
	top: 50%;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav {
	max-width: 84%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav>ul {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

.pc_nav>ul>.pc_nav_li_www:nth-child(1)>li{
	margin-left: 0;
}

.pc_nav>ul>.pc_nav_li_www>li {
	float: left;
	margin: 0 1rem;
	position: relative;
	text-align: center;
}

.pc_nav>ul>.pc_nav_li_www>li>a {
	font-size: 17px;
	line-height: 100px;
	color: rgba(51,51,51,.6);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 150px;
	left: 50%;
	top: 100%;
	background: #fff;
	/*border-radius: 5px;*/
	/*padding: 5px 0;*/
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%,20px);
	-moz-transform: translate(-50%,20px);
	-ms-transform: translate(-50%,20px);
	-o-transform: translate(-50%,20px);
	transform: translate(-50%,20px);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.5s ease;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.pc_nav>ul>.pc_nav_li_www>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	transform: translate(-50%,0);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a,.pc_nav>ul>.pc_nav_li_www>li.active>a{
	color: #333;
}

.pc_nav_erji_w:after {
	content: '';
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 10px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #fff transparent;
	border-top: none;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
	z-index: 99;
	display: none;
}

.pc_nav_erji_li a {
	font-size: 16px;
	line-height: 2;
	padding: 4px 5px;
	color: rgba(51,51,51,.8);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_nav_erji_li a:hover {
	background: #105fb5;
	color: #fff;
}

.pc_nav>ul>.pc_nav_li_www>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 10px;
	opacity: 0;
	top: 100%;
	display: none;
}

.pc_sousuo {
	position: relative;
	width: 30px;
	z-index: 999;
}

.pc_sousuo1 {
	width: 30px;
	height: 30px;
	background: url(../images/sh_ico.png) no-repeat center;
	background-size: 25px;
	margin-top: 25px;
	cursor: pointer;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 250px;
	z-index: 999;
	background: #105fb5;
	display: none;
}

.pc_sousuo2 input {
	outline: none;
	line-height: 45px;
	width: 36px;
	background: none;
	border: 0;
	background: #0662af;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_tijiao {
	background: url(../images/nav_sousuo.png) no-repeat center;
	background-size: 20px;
	cursor: pointer;
}

.pc_sousuo2 .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 45px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: rgba(255, 255, 255, 1);
	float: left;
}

.pc_sousuo2 .pc_sousuo_con_shuru::-webkit-autofill {
	-webkit-text-fill-color: rgba(255, 255, 255, 1) !important;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-ms-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder {
	color: rgba(255, 255, 255, 1);
}

.pc_nav_dianhua {
	margin-left: 1.8rem;
	line-height: 1;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_nav_dianhua_fl{
	position: relative;
}

.pc_nav_dianhua_fl_fl a{
	font-size: 17px;
	line-height: 20px;
	color: #000000;
}

.pc_nav_dianhua_fl_fr{
	margin-left: 1.2rem;
	padding-left: 1.2rem;
	position: relative;
	cursor: pointer;
}

.pc_nav_dianhua_fl_fr::before{
	content: '';
	position: absolute;
	left: 0;
	width: 1px;
	height: 16px;
	background-color: #333333;
	opacity: 0.3;
	margin-top: 2px;
}

.pc_nav_dianhua_fl_fr a{
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../images/img/top_phone_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 17px;
}

.pc_nav_dianhua_fl_fr_phone{
	position: absolute;
	right: 0;
	top: 50%;
	padding: .7rem 0;
	border-radius: 30px;
	width: 0;
	overflow: hidden;
	background-color: #f4a103;
	-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;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav_dianhua_fl_fr:hover .pc_nav_dianhua_fl_fr_phone{
	width: 160px;
}

.pc_nav_dianhua_fl_fr_phone i{
	height: 24px;
	display: block;
}

.pc_nav_dianhua_fl_fr_phone span{
	position: absolute;
	right: 0;
	top: 50%;
	width: 160px;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_nav_dianhua_fr{
	margin-left: 1.3rem;
}

.pc_nav_dianhua_fr_fl a,.pc_nav_dianhua_fr_fr a{
	font-size: 17px;
	line-height: 24px;
	color: rgba(51,51,51,.6);
	padding: .7rem 1.5rem;
	border-radius: 30px;
	display: block;
	border: 2px solid rgba(0,0,0,0);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_nav_dianhua_fr_fl a:hover,.pc_nav_dianhua_fr_fr a:hover{
	background-color: #f4a103;
	color: #fff;
}

#pc_header.on{
	background: rgba(255,255,255,0);
}

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

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

#pc_header.on .pc_nav>ul>.pc_nav_li_www>li>a{
	color: rgba(255,255,255,0.6);
}

#pc_header.on .pc_nav>ul>.pc_nav_li_www>li.active>a{
	color: rgba(255,255,255,1);
}

#pc_header.on .pc_nav_dianhua_fl_fl a{
	color: #fff;
}

#pc_header.on .pc_nav_dianhua_fl_fr::before{
	background-color: rgba(255,255,255,0.9);
}

#pc_header.on .pc_nav_dianhua_fl_fr a{
	background-image: url(../images/img/top_phone_ico_bai.png);
}

#pc_header.on .pc_nav_dianhua_fr_fl a{
	color: rgba(255,255,255,1);
	border-color: #f4a103;
}

#pc_header.on .pc_nav_dianhua_fr_fr a{
	color: rgba(255,255,255,1);
}

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

	.pc_nav>ul>.pc_nav_li_www>li{
		margin: 0 .8rem;
	}

	.pc_nav_dianhua{
		margin-left: 1rem;
	}

	.pc_nav_dianhua_fl_fr{
		margin-left: .9rem;
		padding-left: .9rem;
	}

	.pc_nav_dianhua_fr{
		margin-left: .9rem;
	}
}

@media(max-width:1280px){
	.pc_nav>ul>.pc_nav_li_www>li{
		margin: 0 .7rem;
	}

	.pc_nav_dianhua{
		margin-left: .7rem;
	}

	.pc_nav_dianhua_fl_fr{
		margin-left: .6rem;
		padding-left: .6rem;
	}

	.pc_nav_dianhua_fr{
		margin-left: .7rem;
	}

	.pc_nav_dianhua_fr_fl a,.pc_nav_dianhua_fr_fr a{
		font-size: 16px;
		padding: 10px 18px;
	}

	.pc_nav_dianhua_fl_fr_phone{
		padding: 10px 0;
	}

	.pc_nav_dianhua_fl_fl a,.pc_nav>ul>.pc_nav_li_www>li>a,.pc_nav_dianhua_fr_fl a,.pc_nav_dianhua_fr_fr a,.pc_nav>ul>.pc_nav_li_www>li>a,.pc_nav_dianhua_fl_fr_phone span{
		font-size: 16px;
	}
}

@media(max-width:1100px){
	.pc_nav>ul>.pc_nav_li_www>li{
		margin: 0 .3rem;
	}

	.pc_nav_dianhua{
		margin-left: .3rem;
	}

	.pc_nav_dianhua_fr{
		margin-left: .3rem;
	}

	.pc_nav_dianhua_fr_fl a,.pc_nav_dianhua_fr_fr a{
		padding: 10px 15px;
	}

}

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}

.index_banner_li img {
	width: 100%;
	opacity: 0;
	height: 100vh;
}

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

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

.index_banner_li .wz .wz_ft{
	font-size: 2.8rem;
	line-height: 1.2;
	color: rgba(255,255,255,.3);
}

.index_banner_li .wz .wz_fb{
	font-size: 3.1rem;
	line-height: 1.2;
	color: #ffffff;
}

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

.index_banner_yuandian_btn span {
	width: 2.8rem;
	height: 2.8rem;
	background: none!important;
	border-radius: 50%;
	opacity: 1;
	margin: 0 .6rem!important;
	position: relative;
	border: solid 3px rgba(0,0,0,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_banner_yuandian_btn span::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 6px;
	border-radius: 0;
	background-color: #ffffff;
	-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_banner_yuandian_btn span::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/img/index_banner_yuandian_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.index_banner_yuandian_btn span.swiper-pagination-bullet-active {
	border-color: #f4a103;
}

.index_banner_yuandian_btn span.swiper-pagination-bullet-active::before{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #f29f01;
}

.index_banner_yuandian_btn span.swiper-pagination-bullet-active::after{
	opacity: 0;
}

.index_banner_yuandian_con{
	position: relative;
}

.index_banner_jiantou_xia{
	width: 20px;
	height: 25px;
	background-image: url(../images/img/index_banner_jiantou_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation: banner_btn_top_down 2s infinite;
	-moz-animation: banner_btn_top_down 2s infinite;
	-ms-animation: banner_btn_top_down 2s infinite;
	-o-animation: banner_btn_top_down 2s infinite;
	animation: banner_btn_top_down 2s infinite;
}

.index_banner_li.swiper-slide-active .wz .wz_ft{
	-webkit-animation: banner_wz_top .5s linear;
	-moz-animation: banner_wz_top .5s linear;
	-ms-animation: banner_wz_top .5s linear;
	-o-animation: banner_wz_top .5s linear;
	animation: banner_wz_top .5s linear;
}

.index_banner_li.swiper-slide-active .wz .wz_fb{
	-webkit-animation: banner_wz_top .6s linear;
	-moz-animation: banner_wz_top .6s linear;
	-ms-animation: banner_wz_top .6s linear;
	-o-animation: banner_wz_top .6s linear;
	animation: banner_wz_top .6s linear;
}

/*文字向上渐入*/
@-webkit-keyframes banner_wz_top {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes banner_wz_top {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes banner_wz_top {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

/*文字向上渐入*/
@keyframes banner_btn_top_down {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: -10px;
	}

	50% {
		margin-top: 0;
	}

	75% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

@-webkit-keyframes banner_btn_top_down {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: -10px;
	}

	50% {
		margin-top: 0;
	}

	75% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

@-moz-keyframes banner_btn_top_down {
	0% {
		margin-top: 0;
	}

	25% {
		margin-top: -10px;
	}

	50% {
		margin-top: 0;
	}

	75% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

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

	.index_banner_yuandian_btn span{
		border-width: 2px;
	}
}

@media(max-width:991px) {
	.index_banner_li img{
		height: auto;
	}

	.index_banner_yuandian_btn span{
		width: 30px;
		height: 30px;
	}

	.index_banner_jiantou_xia{
		background-size: 14px;
	}
}

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

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

	.index_banner_yuandian_btn span{
		width: 24px;
		height: 24px;
		margin: 0 3px!important;
	}

	.index_banner_yuandian_btn span::before{
		width: 3px;
		height: 4px;
	}

	.index_banner_yuandian_btn span.swiper-pagination-bullet-active::before{
		width: 4px;
		height: 4px;
	}

	.index_banner_jiantou_xia{
		background-size: 12px;
	}
}

@media(max-width:468px) {
	.index_banner_li .wz .wz_ft{
		font-size: 20px;
		line-height: 1.5;
	}

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

	.index_banner_li img{
		min-height: 260px;
	}
}

/*关于炯城*/
.index_jiongcheng_about{
	padding: 5% 0;
}

.index_jiongcheng_about_ft{
	position: relative;
}

.index_jiongcheng_about_ft_yingwen{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
	font-size: 7.7rem;
	line-height: .8;
	width: 50%;
	height: 100%;
	color: #ffffff;
	font-weight: bold;
	color: transparent;
	-webkit-text-stroke: 1px rgba(0,0,0,0.1);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.index_jiongcheng_about_ft_fl{
	width: 50%;
	overflow: hidden;
	border-radius: 20px;
	cursor: pointer;
}

.index_jiongcheng_about_ft_fl img{
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

.index_jiongcheng_about_ft_fr{
	width: 45%;
	max-width: 690px;
	padding-bottom: 12%;
	position: relative;
	z-index: 10;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_jiongcheng_about_ft_fr_con{
	width: 100%;
}

.index_jiongcheng_about_ft_fr_ft{
	font-size: 2.5rem;
	line-height: 1.5;
	color: #000000;
}

.index_jiongcheng_about_ft_fr_ft span{
	color: #105fb5;
}

.index_jiongcheng_about_ft_fr_fc{
	font-size: 16px;
	line-height: 1.75;
	color: #666666;
	margin: 3.5% 0 7.5%;
}

.index_jiongcheng_about_ft_fr_fb{
	overflow: hidden;
}

.index_jiongcheng_about_ft_fr_fb a{
	float: left;
	display: block;
	border: solid 2px rgba(204,204,204,0.4);
	border-radius: 35px;
	padding: 3px;
	position: relative;
	overflow: hidden;
}

.index_jiongcheng_about_ft_fr_fb_con{
	position: relative;
	width: 100%;
	padding-left: 1.5rem;
	padding-right: 4rem;
}

.index_jiongcheng_about_ft_fr_fb a i{
	font-size: 16px;
	line-height: 2.6rem;
	color: #f4a103;
	position: relative;
	z-index: 10;
	font-style: normal;
	-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_jiongcheng_about_ft_fr_fb a span{
	position: absolute;
	display: block;
	right: 0;
	top: 50%;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background-color: #f4a103;
	-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_jiongcheng_about_ft_fr_fb a span::after{
	content: '';
	position: absolute;
	right: 1.3rem;
	top: 0;
	width: 10px;
	height: 100%;
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
	background-image: url(../images/img/index_about_jiantou.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 7px;
}

.index_jiongcheng_about_ft_fr_fb a:hover i{
	color: #fff;
}

.index_jiongcheng_about_ft_fr_fb a:hover span{
	width: 100%;
	border-radius: 35px;
}

.index_jiongcheng_about_ft_shuzi{
	width: 66%;
	max-width: 1020px;
	position: absolute;
	z-index: 7;
	right: 0;
	bottom: 0;
	background-image: url(../images/img/index_about_shuzi_bj.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
	background-color: #105fb5;
}

.index_jiongcheng_about_ft_shuzi_li{
	width: 33.33333333333333333%;
	padding: 0 4.5%;
	position: relative;
	margin: 3.5% 0;
}

.index_jiongcheng_about_ft_shuzi_li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,.2);
}

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

.index_jiongcheng_about_ft_shuzi_li_ft{
	font-size: 2.1rem;
	line-height: 1.2;
	color: #ffffff;
}

.index_jiongcheng_about_ft_shuzi_li_fb{
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255,255,255,.6);
	margin-top: 4%;
}

.index_jiongcheng_about_ft_shuzi_logo_ico{
	width: 50px;
	height: 50px;
	background-image: url(../images/img/index_about_logo_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: -25px;
	top: -25px;
}

.index_jiongcheng_about_fb{
	margin-top: 5%;
}

.index_jiongcheng_about_fb_li{
	width: 20%;
	text-align: center;
	position: relative;
}

.index_jiongcheng_about_fb_li_con{
	cursor: pointer;
	margin-top: 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_jiongcheng_about_fb_li:nth-child(n+6){
	margin-top: 15px;
}

.index_jiongcheng_about_fb_li::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #f6f7fb;
}

.index_jiongcheng_about_fb_li:nth-child(5n)::before{
	display: none;
}

.index_jiongcheng_about_fb_li .img{
	width: 55px;
	height: 55px;
	line-height: 55px;
	background-color: #f6f7fb;
	border-radius: 6px;
	margin: 0 auto;
}

.index_jiongcheng_about_fb_li .img img{
	width: 26px;
}

.index_jiongcheng_about_fb_li .wz{
	font-size: 17px;
	line-height: 1.5;
	color: #333333;
	margin-top: 13px;
}

.index_jiongcheng_about_fb_li_con:hover{
	margin-top: -10px;
}

@media(max-width:1280px){
	.index_jiongcheng_about_ft_fr_fc,.index_jiongcheng_about_ft_shuzi_li_fb,.index_jiongcheng_about_ft_fr_fb a i{
		font-size: 15px;
	}

	.index_jiongcheng_about_ft_shuzi_li{
		padding: 0 3%;
	}
}

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

	.index_jiongcheng_about_ft_fr{
		width: 100%;
		max-width: 100%;
		margin-top: 3%;
		padding-bottom: 0;
	}

	.index_jiongcheng_about_ft_fr_fc{
		margin: 2% 0 3%;
	}

	.index_jiongcheng_about_ft_shuzi{
		position: relative;
		width: 100%;
		margin-top: 3.5%;
	}

	.index_jiongcheng_about_ft_shuzi_logo_ico{
		right: 0;
		top: -18px;
		width: 36px;
		height: 36px;
	}

	.index_jiongcheng_about_fb{
		margin-top: 3.5%;
	}

	.index_jiongcheng_about_ft_fr_ft{
		font-size: 28px;
	}

	.index_jiongcheng_about_ft_fr_fb_con{
		padding-left: 15px;
		padding-right: 45px;
	}

	.index_jiongcheng_about_ft_fr_fb a i{
		line-height: 34px;
	}

	.index_jiongcheng_about_ft_fr_fb a span{
		width: 34px;
		height: 34px;
	}

	.index_jiongcheng_about_ft_fr_fb a span::after{
		right: 17px;
		background-size: 6px;
	}

	.index_jiongcheng_about_ft_shuzi_li_ft{
		font-size: 23px;
	}

	.index_jiongcheng_about_fb_li .img{
		width: 50px;
		height: 50px;
		line-height: 50px;
	}

	.index_jiongcheng_about_fb_li .img img{
		width: 22px;
	}
}

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

	.index_jiongcheng_about_ft_fr{
		margin-top: 18px;
	}

	.index_jiongcheng_about_ft_fr_ft{
		font-size: 26px;
	}

	.index_jiongcheng_about_ft_fr_fc{
		margin: 10px 0 15px;
	}

	.index_jiongcheng_about_ft_shuzi{
		margin-top: 20px;
	}

	.index_jiongcheng_about_ft_shuzi_li{
		padding: 0 20px;
		margin: 20px 0;
		width: 50%;
	}

	.index_jiongcheng_about_ft_shuzi_li:nth-child(2n)::before{
		display: none;
	}

	.index_jiongcheng_about_ft_shuzi_li:nth-child(n+3){
		margin-top: 0;
	}

	.index_jiongcheng_about_ft_shuzi_li_ft{
		font-size: 20px;
	}

	.index_jiongcheng_about_ft_shuzi_li_fb{
		margin-top: 5px;
	}

	.index_jiongcheng_about_fb_li .img{
		width: 45px;
		height: 45px;
		line-height: 45px;
	}

	.index_jiongcheng_about_fb_li .img img{
		width: 20px;
	}

	.index_jiongcheng_about_fb{
		margin-top: 20px;
	}

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

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

	.index_jiongcheng_about_ft_fr{
		margin-top: 15px;
	}

	.index_jiongcheng_about_ft_fr_ft{
		font-size: 24px;
	}

	.index_jiongcheng_about_ft_fr_fc{
		margin: 5px 0 12px;
	}

	.index_jiongcheng_about_ft_shuzi{
		margin-top: 15px;
	}

	.index_jiongcheng_about_ft_shuzi_li{
		margin: 15px 0;
		padding: 0 15px;
	}

	.index_jiongcheng_about_ft_shuzi_li_ft{
		font-size: 18px;
	}

	.index_jiongcheng_about_fb{
		margin-top: 15px;
	}

	.index_jiongcheng_about_fb_li{
		width: 50%;
	}

	.index_jiongcheng_about_fb_li:nth-child(5n)::before{
		display: block;
	}

	.index_jiongcheng_about_fb_li:nth-child(3n+2)::before{
		display: none;
	}

	.index_jiongcheng_about_fb_li:nth-child(n+3){
		width: 33.333333333333%;
		margin-top: 10px;
	}
}

/*产品展示*/
.index_jiongcheng_product{
	background: #f6f7fb;
	padding: 5% 0;
}

.index_jiongcheng_product_ft h4{
	font-size: 17px;
	line-height: 1.5;
	color: #666666;
	margin-top: 8px;
}

.index_jiongcheng_product_nnn2{
	position: relative;
}

.index_jiongcheng_product_fc{
	margin-top: 8px;
}

.index_jiongcheng_product_fc_con{
	width: 86%;
	margin: 0 auto;
	overflow: hidden;
}

.index_jiongcheng_product_fc_li{
	text-align: center;
}

.index_jiongcheng_product_fc_li .wz{
	font-size: 7.9rem;
	line-height: 1.1;
	color: #e6e7ea;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_jiongcheng_product_fc_li .img{
	max-width: 730px;
	width: 100%;
	margin: 0 auto;
	margin-top: -13.5%;
}

.index_jiongcheng_product_fc_li .img img{
	width: 100%;
	display: block;
}

.index_jiongcheng_product_fc1{
	margin-top: 15px;
}

.index_jiongcheng_product_fc1_con{
	width: 86%;
	max-width: 690px;
	margin: 0 auto;
	overflow: hidden;
	padding-bottom: 10px;
	border-bottom: 1px solid #cbcbce;
}

.index_jiongcheng_product_fc1_li {
	text-align: center;
	font-size: 0;
	line-height: 1;
}

.index_jiongcheng_product_fc1_li .wz{
	display: inline-block;
	max-width: 100%;
	font-size: 18px;
	line-height: 30px;
	color: #999999;
	text-align: center;
	padding: 0 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
}

.index_jiongcheng_product_fc1_li .wz::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 22px;
	height: 22px;
	opacity: 0;
	background-image: url(../images/img/index_about_logo_ico.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_jiongcheng_product_fc1_li.swiper-slide-active .wz{
	color: #333333;
}

.index_jiongcheng_product_fc1_li.swiper-slide-active .wz::before{
	opacity: 1;
}

.index_jiongcheng_product_fb_con{
	width: 86%;
	max-width: 610px;
	margin: 0 auto;
	overflow: hidden;
}

.index_jiongcheng_product_fb_li{
	text-align: center;
}

.index_jiongcheng_product_fb_li .wz_ft{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #333333;
	margin-top: 4%;
}

.index_jiongcheng_product_fb_li .wz_fb{
	font-size: 16px;
	line-height: 1.75;
	color: #666666;
	margin-top: 2.5%;
}

.index_jiongcheng_product_nnn2_btnl,.index_jiongcheng_product_nnn2_btnr{
	width: 28px;
	height: 28px;
	background-image: url(../images/img/index_product_btnl.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.index_jiongcheng_product_nnn2_btnl.swiper-button-disabled,.index_jiongcheng_product_nnn2_btnr.swiper-button-disabled{
	opacity: 0; 
}

.index_jiongcheng_product_nnn2_btnl{
	left: 4%;
}

.index_jiongcheng_product_nnn2_btnr{
	background-image: url(../images/img/index_product_btnr.png);
	right: 4%;
}

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

	.index_jiongcheng_product_fb_li .wz_ft{
		font-size: 22px;
	}

	.index_jiongcheng_product_fb_li .wz_fb{
		font-size: 15px;
	}

	.index_jiongcheng_product_nnn2_btnl,.index_jiongcheng_product_nnn2_btnr{
		background-size: 26px;
	}
}

@media(max-width:991px){
	.index_jiongcheng_product_nnn2_btnl,.index_jiongcheng_product_nnn2_btnr{
		background-size: 24px;
	}

	.index_jiongcheng_product_nnn2_btnl{
		left: 0;
	}

	.index_jiongcheng_product_nnn2_btnl{
		right: 0;
	}
}

@media(max-width:768px){
	.index_jiongcheng_product{
		padding: 30px 0;
	}
	
	.index_jiongcheng_product_ft h4{
		font-size: 16px;
		margin-top: 3px;
	}

	.index_jiongcheng_product_fc_li .wz{
		font-size: 36px;
	}

	.index_jiongcheng_product_fc_li .img{
		margin-top: -18%;
	}

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

	.index_jiongcheng_product_fb_li .wz_ft{
		margin-top: 15px;
		font-size: 20px;
	}

	.index_jiongcheng_product_fb_li .wz_fb{
		margin-top: 10px;
	}

	.index_jiongcheng_product_nnn2_btnl,.index_jiongcheng_product_nnn2_btnr{
		background-size: 20px;
	}
}

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

	.index_jiongcheng_product_fc_con,.index_jiongcheng_product_fc1_con,.index_jiongcheng_product_fb_con{
		width: 100%;
	}

	.index_jiongcheng_product_fc_li .wz{
		font-size: 26px;
	}

	.index_jiongcheng_product_fc_li .img{
		margin-top: -6%;
	}

	.index_jiongcheng_product_fb_li .wz_ft{
		font-size: 19px;
	}
}

/*应用范围*/
.index_jiongcheng_application{
	padding: 5% 0;
}

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

.index_jiongcheng_application_ft_fr{
	margin: 5px 0;
}

.index_jiongcheng_application_fb{
	margin-top: 2.5%;
}

.index_jiongcheng_application_fb_li{
	width: 24.025%;
	margin-right: 1.3%;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.index_jiongcheng_application_fb_li:nth-child(4n){
	margin-right: 0;
}

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

.index_jiongcheng_application_fb_li a{
	display: block;
}

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

.index_jiongcheng_application_fb_li .wz{
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 7%;
}

.index_jiongcheng_application_fb_li .wz .wz_con{
	overflow: hidden;
}

.index_jiongcheng_application_fb_li .wz_ft{
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255,255,255,.6);
}

.index_jiongcheng_application_fb_li .wz_fc{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #ffffff;
	margin-top: 3px;
	-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_jiongcheng_application_fb_li .wz_fb{
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
	margin-top: 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_jiongcheng_application_fb_li:hover .wz_fb{
	margin-top: 5.5%;
}

.index_jiongcheng_application_fb_li:hover .wz_fc{
	font-size: 1.2rem;
}

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

	.index_jiongcheng_application_fb_li:hover .wz_fc{
		font-size: 18px;
	}

	.index_jiongcheng_application_fb_li .wz_ft,.index_jiongcheng_application_fb_li .wz_fb{
		font-size: 15px;
	}
}

@media(max-width:991px){
	.index_jiongcheng_application_fb_li{
		width: 49%;
		margin-right: 2%;
	}

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

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

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

	.index_jiongcheng_application_fb_li .wz{
		padding: 20px;
	}
}

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

	.index_jiongcheng_application_fb{
		margin-top: 15px;
	}

	.index_jiongcheng_application_fb_li .wz{
		padding: 15px;
	}

	.index_jiongcheng_application_fb_li .wz_fc{
		font-size: 20px;
	}

	.index_jiongcheng_application_fb_li:hover .wz_fb{
		margin-top: 5px;
	}
}

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

	.index_jiongcheng_application_fb_li{
		width: 100%;
		margin-right: 0!important;
	}

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

	.index_jiongcheng_application_fb_li .wz_fc{
		font-size: 19px;
	}

	.index_jiongcheng_application_fb_li:hover .wz_fc{
		font-size: 17px;
	}
}

/*新闻动态*/
.index_jiongcheng_news{
	padding: 5% 0;
}

.index_jiongcheng_news_fb{
	margin-top: 3.5%;
	overflow: hidden;
}

.index_jiongcheng_news_fb_li{
	height: auto!important;
}

.index_jiongcheng_news_fb_li.swiper-slide-active{
	width: 65.4%!important;
}

.index_jiongcheng_news_fb_li_box1{
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	display: none;
}

.index_jiongcheng_news_fb_li.swiper-slide-active .index_jiongcheng_news_fb_li_box1{
	display: block;
}

.index_jiongcheng_news_fb_li.swiper-slide-active .index_jiongcheng_news_fb_li_box2{
	display: none;
}

.index_jiongcheng_news_fb_li_box1::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
}

.index_jiongcheng_news_fb_li_box1 .img{
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.index_jiongcheng_news_fb_li_box1 .img_con{
	padding: 27.5% 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_jiongcheng_news_fb_li:hover .index_jiongcheng_news_fb_li_box1 .img_con{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

.index_jiongcheng_news_fb_li_box1 .wz{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 11%;
	z-index: 15;
	padding: 0 3.5%;
}

.index_jiongcheng_news_fb_li_box1 .wz_ft,.index_jiongcheng_news_fb_li_box2 .wz_ft{
	font-size: 17px;
	line-height: 1.5;
	color: #f4a103;
}

.index_jiongcheng_news_fb_li_box1 .wz_fb,.index_jiongcheng_news_fb_li_box2 .wz_fc{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #ffffff;
}

.index_jiongcheng_news_fb_li_box1 .wz_fb{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 8px;
}

.index_jiongcheng_news_fb_li_box2{
	display: block;
	background-color: #f6f7fb;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}

.index_jiongcheng_news_fb_li_box2 .img{
	overflow: hidden;
}

.index_jiongcheng_news_fb_li_box2 .img_con{
	padding: 27.5% 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_jiongcheng_news_fb_li:hover .index_jiongcheng_news_fb_li_box2 .img_con{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.index_jiongcheng_news_fb_li_box2 .wz{
	padding: 8% 9% 2%;
	overflow: hidden;
}

.index_jiongcheng_news_fb_li_box2 .wz_fc{
	color: #000000;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 3%;
	margin-bottom: 14%;
	-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_jiongcheng_news_fb_li_box2 .wz_fb{
	font-size: 18px;
	line-height: 1.5;
	color: #000000;
	padding-right: 1.5rem;
	background-image: url(../images/img/index_news_btnr.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 8px;
	float: left;
}

.index_jiongcheng_news_fb_li:hover .index_jiongcheng_news_fb_li_box2 .wz_fc{
	color: #105fb5;
}

.index_jiongcheng_news_yuandian_btn{
	margin-top: 4%;
	font-size: 0;
	text-align: center;
}

.index_jiongcheng_news_yuandian_btn span{
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #f7b73d;
	opacity: 0.22;
	margin: 0 10px;
}

.index_jiongcheng_news_yuandian_btn span.swiper-pagination-bullet-active{
	background-color: #f7b73d;
	opacity: 1;
}

@media(max-width:1366px){
	.index_jiongcheng_news_fb_li_box1 .wz_fb, .index_jiongcheng_news_fb_li_box2 .wz_fc{
		font-size: 20px;
	}
}

@media(max-width:1280px){
	.index_jiongcheng_news_fb_li_box1 .wz_ft,.index_jiongcheng_news_fb_li_box2 .wz_ft{
		font-size: 16px;
	}

	.index_jiongcheng_news_fb_li_box2 .wz_fb{
		font-size: 17px;
		background-size: 7px;
	}

	.index_jiongcheng_news_fb_li_box1 .wz_fb, .index_jiongcheng_news_fb_li_box2 .wz_fc{
		font-size: 18px;
	}

	.index_jiongcheng_news_fb_li_box2 .wz_fc{
		margin-bottom: 8%;
	}
}

@media(max-width:1100px){
	.index_jiongcheng_news_fb_li_box2 .wz_fc{
		margin-bottom: 6%;
	}
}

@media(max-width:991px){
	.index_jiongcheng_news_fb_li.swiper-slide-active{
		width: 100%!important;
	}

	.index_jiongcheng_news_fb_li_box1{
		display: block;
	}

	.index_jiongcheng_news_fb_li_box1 .wz{
		padding: 0 20px;
		bottom: 20px;
	}

	.index_jiongcheng_news_fb_li_box2{
		display: none;
	}

	.index_jiongcheng_news_yuandian_btn{
		margin-top: 3.5%;
	}

	.index_jiongcheng_news_yuandian_btn span{
		margin: 0 5px;
		width: 12px;
		height: 12px;
	}
}

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

	.index_jiongcheng_news_fb{
		margin-top: 16px;
	}
	
	.index_jiongcheng_news_yuandian_btn{
		margin-top: 20px;
	}

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

	.index_jiongcheng_news_fb_li_box1 .wz{
		padding: 0 15px;
		bottom: 15px;
	}
}

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

	.index_jiongcheng_news_fb_li_box1 .wz_fb{
		margin-top: 5px;
		font-size: 17px;
	}

	.index_jiongcheng_news_yuandian_btn span{
		width: 8px;
		height: 8px;
		margin: 0 3px;
	}
}

/*footer*/
.pc_footer1{
	background: #f6f7fb;
	padding: 3.7% 0 1.85%;
}

.pc_footer1_ft_fl{
	width: 13%;
	max-width: 180px;
}

.pc_footer1_ft_fl img{
	width: 100%;
}

.pc_footer1_fc{
	margin-top: 4%;
}

.pc_footer1_fc_fl{
	width: 23%;
}

.pc_footer1_fc_fl_ft{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #333333;
}

.pc_footer1_fc_fl_fb{
	margin-top: 6%;
}

.pc_footer1_fc_fl_fb_li{
	margin-right: 2rem;
	cursor: pointer;
	position: relative;
}

.pc_footer1_fc_fl_fb_li .img1{
	width: 56px;
	height: 56px;
	background-color: #20d11c;
	position: relative;
	border-radius: 50%;
}

.pc_footer1_fc_fl_fb_li .img1::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 30px;
	background-image: url(../images/img/footer_weixin_ico.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.pc_footer1_fc_fl_fb_li:nth-child(2) .img1{
	background: #160b19;
}

.pc_footer1_fc_fl_fb_li:nth-child(2) .img1::before{
	background-image: url(../images/img/footer_douyin_ico.png);
}

.pc_footer1_fc_fl_fb_li .img2{
	width: 120px;
	position: absolute;
	z-index: -10;
	top: 100%;
	left: 0;
	padding: 6px;
	background: #105fb5;
	opacity: 0;
	margin-top: 7px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pc_footer1_fc_fl_fb_li .img2:after {
	content: '';
	position: absolute;
	left: 20px;
	top: -5px;
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 7px;
	cursor: pointer;
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #105fb5 transparent;
	border-top: none;
}

.pc_footer1_fc_fl_fb_li .img2 img{
	width: 100%;
}

.pc_footer1_fc_fl_fb_li:hover .img2{
	opacity: 1;
	z-index: 20;
}

.pc_footer1_fc_fr{
	width: 73%;
	max-width: 1100px;
}

.pc_footer1_fc_fr_li{
	float: left;
	max-width: 14.285714285714%;
}

.pc_footer1_fc_fr_li_ft{
	font-size: 1.3rem;
	line-height: 1.5;
	color: #333333;
}

.pc_footer1_fc_fr_li_ft a{
	color: #333333;
	-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_footer1_fc_fr_li_fb{
	margin-top: 1.2rem;
}

.pc_footer1_fc_fr_li_fb_li a{
	font-size: 16px;
	line-height: 1.5;
	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_footer1_fc_fr_li_fb_li a:hover,.pc_footer1_fc_fr_li_ft a:hover{
	color: #105fb5;
}

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

.pc_footer1_fc1{
	font-size: 15px;
	line-height: 1.5;
	color: rgba(51,51,51,.5);
	margin: 5% 0 18px;
}

.pc_footer1_fc1 a{
	color: rgba(51,51,51,.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_footer1_fc1 a:hover{
	color: #105fb5;
}

.pc_footer1_fb_con{
	background-color: #105fb5;
	border-radius: 50px;
	padding: 18px 25px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

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

.pc_footer1_fb_fl_li{
	float: left;
	font-size: 17px;
	line-height: 1.5;
	color: #ffffff;
	position: relative;
}

.pc_footer1_fb_fl_li:nth-child(1){
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
}

.pc_footer1_fb_fl_li:nth-child(n+2){
	padding-left: 20px;
	margin-left: 20px;
}

.pc_footer1_fb_fl_li:nth-child(n+2)::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 16px;
	background-color: rgba(255,255,255,.2);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

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

.pc_footer1_fb_fr_li{
	font-size: 17px;
	line-height: 1.5;
	color: rgba(255,255,255,.3);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

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

.pc_footer1_fb_fr_backtop{
	padding-left: 20px;
	margin-left: 20px;
	position: relative;
}

.pc_footer1_fb_fr_backtop::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 16px;
	background-color: rgba(255,255,255,.2);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_footer1_fb_fr_backtop_con{
	width: 24px;
	height: 24px;
	background-image: url(../images/img/footer_backtop_ico.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	cursor: pointer;
}

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

	.pc_footer1_fc_fr_li_fb_li a,.pc_footer1_fc1{
		font-size: 15px;
	}

	.pc_footer1_fb_fl_li:nth-child(n+2){
		margin-left: 15px;
		padding-left: 15px;
	}

	.pc_footer1_fb_fr_backtop{
		margin-left: 15px;
		padding-left: 15px;
	}

	.pc_footer1_fb_fl_li,.pc_footer1_fb_fr_li{
		font-size: 16px;
	}

	.pc_footer1_fb_fl_li:nth-child(1){
		font-size: 17px;
	}
}

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

	.pc_footer1_fc{
		margin-top: 20px;
	}

	.pc_footer1_fc_fl{
		width: 100%;
	}

	.pc_footer1_ft_fl{
		width: 100%;
		max-width: 130px;
	}

	.pc_footer1_fc_fr{
		width: 55%;
		display: none;
	}

	.pc_footer1_fc_fl_ft{
		font-size: 22px;
	}

	.pc_footer1_fc_fl_fb_li{
		margin-right: 20px;
	}

	.pc_footer1_fc_fl_fb_li .img1{
		width: 50px;
		height: 50px;
	}

	.pc_footer1_fc_fl_fb_li .img1::before{
		width: 25px;
		height: 25px;
	}

	.pc_footer1_fc_fl_fb_li .img2{
		width: 110px;
		padding: 5px;
	}

	.pc_footer1_fc_fl_fb_li .img2:after{
		left: 18px;
	}

	.pc_footer1_fc_fl_fb{
		margin-top: 20px;
	}

	.pc_footer1_fc1{
		margin: 15px 0 15px;
	}

	.pc_footer1_fb_con{
		padding: 0;
		background: none;
	}

	.pc_footer1_fb_fl_li:nth-child(1),.pc_footer1_fb_fl_li:nth-child(n+2),.pc_footer1_fb_fr_li a,.pc_footer1_fb_fr_li{
		color: rgba(51,51,51,.5);
	}

	.pc_footer1_fb_fr_li a:hover, .pc_footer1_fb_fr_li:hover{
		color: #105fb5;
	}

	.pc_footer1_fb_fl_li:nth-child(1){
		width: 100%;
	}

	.pc_footer1_fb_fl_li:nth-child(1),.pc_footer1_fb_fl_li:nth-child(n+2){
		padding-left: 0;
		margin-left: 0;
		width: 100%;
	}

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

	.pc_footer1_fb_fl_li:nth-child(n+2)::before{
		display: none;
	}

	.pc_footer1_fb_fl{
		width: 100%;
	}

	.pc_footer1_fb_fr{
		width: 100%;
		margin-top: 7px;
	}

	.pc_footer1_fb_fr_backtop::before{
		background-color: rgba(51,51,51,.5);
	}

	.pc_footer1_fb_fr_backtop_con{
		background-image: url(../images/img/footer_backtop_ico1.png);
	}
}

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

	.pc_footer1_fc_fl_ft{
		font-size: 20px;
	}

	.pc_footer1_fc,.pc_footer1_fc_fl_fb{
		margin-top: 15px;
	}

	.pc_footer1_fc_fl_fb_li .img1{
		width: 45px;
		height: 45px;
	}

	.pc_footer1_fc_fl_fb_li .img1::before{
		width: 22px;
		height: 22px;
	}

	.pc_footer1_fc_fl_fb_li .img2:after{
		left: 16px;
	}
}

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

	.pc_footer1_fc_fl_ft{
		font-size: 18px;
	}
}



/*功能建设中*/
.ny_pagecon_gongnengjianshe{
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #333;
	text-align: center;
}





















