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

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

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

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

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

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

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

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

.clearfix{
	zoom: 1
}

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

h1,
h2{
	font-weight: bold;
}

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

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

p{
	margin: 0;
}

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

.fr{
	float: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*scrollbar*/
body::-webkit-scrollbar{
	width: 4px;
	-webkit-appearance: none;
	-webkit-border-radius: 0
}

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

body::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb:vertical{
	background: #104491;
	border: none;
	-webkit-border-radius: 0
}

body::-webkit-scrollbar-thumb:vertical:active{
	background: #104491;
	border: none;
	-webkit-border-radius: 0
}

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

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

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

	.page_con_zhuti{
		padding: 0 30px;
	}
}

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

	.page_con_zhuti{
		padding: 0 20px;
	}

	body{
		padding-top: 61px;
	}
}

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

	.page_con_zhuti{
		padding: 0 15px;
	}
}

/*头部*/
.pc_header_1{
	background: #000000;
	line-height: 40px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 10005;
}

.pc_header_1_fl{
	overflow: hidden;
}

.pc_header_1_fl_li{
	padding-left: 25px;
}

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

.pc_header_1_fl_li a{
	font-size: 14px;
	color: #999;
	display: block;
}

.pc_header_1_fl_li:hover a{
	color: #fff;
}

.pc_header_1_fr_fl{
	position: relative;
}

.pc_header_1_fr_fl_ft{
	font-size: 14px;
	color: #999;
	position: relative;
	padding-left: 30px;
	padding-right: 15px;
	cursor: pointer;
}

.pc_header_1_fr_fl_ft span{
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	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%);
}

.pc_header_1_fr_fl_ft_jiantou{
	position: absolute;
	right: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	background-image: url(../images/img/pc_header_lang_ico.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.pc_header_1_fr_fl:hover .pc_header_1_fr_fl_ft{
	color: #fff;
}

.pc_header_1_fr_fl_fb{
	position: absolute;
	left: 50%;
	top: 100%;
	background: #fff;
	padding: 6px 0;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	width: 140px;
	border: 1px solid #ebeef5;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: translate(-50%,20px);
	-moz-transform: translate(-50%,20px);
	-ms-transform: translate(-50%,20px);
	-o-transform: translate(-50%,20px);
	transform: translate(-50%,20px);
}


.pc_header_1_fr_fl.active .pc_header_1_fr_fl_fb{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%,8px);
	-moz-transform: translate(-50%,8px);
	-ms-transform: translate(-50%,8px);
	-o-transform: translate(-50%,8px);
	transform: translate(-50%,8px);
}

.pc_header_1_fr_fl_fb_li a{
	display: block;
	text-align: center;
}

.pc_header_1_fr_fl_fb_li_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_header_1_fr_fl_fb_li_img{
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	width: 30px;
	height: 30px;
}

.pc_header_1_fr_fl_fb_li_wz{
	font-size: 14px;
	line-height: 35px;
	color: #000;
}

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

.pc_header_1_fr_fl_fb_li:hover a{
	background: #eee;
}

.pc_header_1_fr_fl_fb_li:hover .pc_header_1_fr_fl_fb_li_wz{
	color: #104491;
}

.pc_header_1_fr_fr{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	margin-left: 15px;
}

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

.pc_header_1_fr_fr_li a span{
	width: 18px;
	height: 18px;
	display: block;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

.pc_header_1_fr_fr_li:hover a span{
	background-position: center bottom;
}

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

#pc_header{
	width: 100%;
	left: 0;
	top: 40px;
	z-index: 999;
	position: fixed;
	background: #fff;
	box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}

#pc_header.on{
	top: 0;
	z-index: 10010;
}

.pc_header_con{
	height: 90px;
	line-height: 90px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo{
	width: 19%;
	max-width: 200px;
}

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

.pc_nav{
	max-width: 78%;
}

.pc_nav>ul{
	width: 100%;
	padding-right: 30px;
	margin-right: -30px;
}

.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{
	float: left;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	padding: 0 1px;
}

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

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

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_con{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	position: relative;
	height: 90px;
	width: 100%;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_wenzi{
	font-size: 18px;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #104491;
	padding: 0 1rem;
	-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>ul>.pc_nav_li_www>li>a .pc_nav_yiji_title{
	padding-right: 15px;
}

.pc_nav>ul>.pc_nav_li_www>li>a .pc_nav_yiji_jiantou{
	width: 10px;
	height: 100%;
	background-image: url(../images/img/top_header_nav_downbtn.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	position: absolute;
	right: 0;
	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;
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_jiantou{
	background-image: url(../images/img/top_header_nav_downbtn1.png);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

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

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

.pc_nav>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_wenzi{
	color: #fff;
	background: rgba(16,68,145,1);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_wenzi{
	color: #fff;
	background: rgba(16,68,145,0.7);
}

.pc_nav>ul>.pc_nav_li_www>li:hover>a .pc_nav_yiji_jiantou,
.pc_nav>ul>.pc_nav_li_www>li.active>a .pc_nav_yiji_jiantou{
	background-image: url(../images/img/top_header_nav_downbtn1.png);
}

.pc_nav_erji_li{
	border-top: 1px solid #dfdfdf;
	-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:nth-child(1){
	border-color: rgba(0,0,0,0);
}

.pc_nav_erji_li:hover{
	border-top-color: #104491;
}

.pc_nav_erji_li:hover+.pc_nav_erji_li{
	border-top-color: #104491;
}

.pc_nav_erji_li a{
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #666;
	display: block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

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

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

.pc_sousuo2{
	position: absolute;
	right: 0;
	top: 100%;
	width: 200px;
	z-index: 999;
	background: #104491;
	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/img/nav_sousuo_baise.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);
}

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

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

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

.index_banner img{
	width: 100%;
}

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

.index_banner_yuandian span{
	width: 36px;
	height: 4px;
	background: #e2e2e2;
	border-radius: 999px;
	opacity: 1;
	margin: 0 5px!important;
	position: relative;
	overflow: hidden;
}

.index_banner_yuandian span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	border-radius: 999px;
	background: #104491;
	z-index: 10;
}

.index_banner_yuandian span.swiper-pagination-bullet-active::before{
	width: 100%;
	-webkit-animation: width1 5s linear;
	-moz-animation: width1 5s linear;
	-ms-animation: width1 5s linear;
	-o-animation: width1 5s linear;
	animation: width1 5s linear;
}

@-webkit-keyframes width1{
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

@keyframes width1 {
	0%{
		width: 0;
	}

	100%{
		width: 100%;
	}
}

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

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

	.index_banner_yuandian span{
		width: 25px;
	}
}

/*home category navigation*/
.index_category_navigation{
	padding: 4% 0;
}

.index_category_navigation_ft h3{
	font-size: 2rem;
	line-height: 1.5;
	color: #333;
	text-align: center;
}

.index_category_navigation_fb{
	/*margin-top: 3%;*/
	margin-top: 0!important;
}

.index_category_navigation_fb_li{
	width: 49%;
	margin-right: 2%;
	position: relative;
	overflow: hidden;
}

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

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

.index_category_navigation_fb_li .wz2{
	font-size: 17px;
	line-height: 1.5;
	color: #fff;
	background: #2e3643;
	padding: 8px 5px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 8;
	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;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.index_category_navigation_fb_li:hover .wz2{
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
}

.index_category_navigation_fb_li .wz{
	text-align: center;
	padding: 5%;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: rgba(16,68,145,0.9);
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_category_navigation_fb_li:hover .wz{
	top: 0;
}

.index_category_navigation_fb_li_wz_nnn{
	width: 100%;
}

.index_category_navigation_fb_li .wz .wz_ft{
	font-size: 18px;
	line-height: 1.45;
	color: #fff;
	font-weight: bold;
}

.index_category_navigation_fb_li .wz .wz_fb{
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	margin: 4% 0 5%;
	max-height: 4.5em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.index_category_navigation_fb_li .wz .wz_jiahao{
	width: 34px;
	height: 34px;
	margin: 0 auto;
	border-radius: 50%;
	border: 2px solid #fff;
	position: relative;
}

.index_category_navigation_fb_li .wz .wz_jiahao::before,
.index_category_navigation_fb_li .wz .wz_jiahao::after{
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background: #fff;
	-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_category_navigation_fb_li .wz .wz_jiahao::before{
	width: 10px;
	height: 2px;
}

.index_category_navigation_fb_li .wz .wz_jiahao::after{
	width: 2px;
	height: 10px;
}

.index_category_navigation_fb_li .img{
	position: relative;
	z-index: 5;
	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_category_navigation_fb_li .img .img_con{
	padding: 25% 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

@media(max-width:1200px){
	.index_category_navigation_fb_li .wz2{
		font-size: 16px;
	}

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

	.index_category_navigation_fb_li .wz .wz_jiahao{
		width: 30px;
		height: 30px;
	}

	.index_category_navigation_fb_li .wz .wz_jiahao::before{
		width: 8px;
	}

	.index_category_navigation_fb_li .wz .wz_jiahao::after{
		height: 8px;
	}
}

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

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

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

	.index_category_navigation_fb{
		margin-top: 20px;
	}

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

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

	.index_category_navigation_fb_li .wz{
		padding: 20px;
	}

	.index_category_navigation_fb_li .wz .wz_fb{
		margin: 10px 0 15px;
	}
}

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

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

	.index_category_navigation_fb{
		margin-top: 18px;
	}

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

	.index_category_navigation_fb_li .wz{
		padding: 18px;
	}
}

/*Applications*/
.index_rongxuan_applications{
	padding: 4% 0;
	background: #eee;
}

.index_rongxuan_applications_fb{
	margin-top: 3%;
}

.index_rongxuan_applications_fb_con{
	overflow: hidden;
}

.index_rongxuan_applications_fb_li{
	width: 32%;
	margin-right: 2%;
}

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

.index_rongxuan_applications_fb_li:nth-child(n+4){
	display: none;
	margin-top: 15px;
}

.index_rongxuan_applications_fb_li .img{
	overflow: hidden;
}

.index_rongxuan_applications_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_rongxuan_applications_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);
}

.index_rongxuan_applications_fb_li .wz{
	font-size: 17px;
	line-height: 1.5;
	color: #333;
	max-height: 3em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-align: center;
	margin-top: 15px;
	-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_rongxuan_applications_fb_li:hover .wz{
	color: #104491;
}

@media(max-width:1366px){
	.index_rongxuan_applications_fb_li .wz{
		font-size: 16px;
	}
}

@media(max-width:991px){
	.index_rongxuan_applications_fb_li{
		width: 49%;
	}

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

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

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

	.index_rongxuan_applications_fb_li:nth-child(n+4){
		display: block;
	}
}

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

	.index_rongxuan_applications_fb{
		margin-top: 20px;
	}

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

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

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

	.index_rongxuan_applications_fb{
		margin-top: 18px;
	}

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

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

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

.index_rongxuan_news_fb{
	margin-top: 3%;
}

.index_rongxuan_news_fb_li{
	width: 23.5%;
	margin-right: 2%;
	background: #fff;
	position: relative;
	box-shadow: 0 3px 29px 0 rgba(188,188,188,0.35);
}

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

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

.index_rongxuan_news_fb_li::before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 65%;
	height: 3px;
	background: #d8d8d8;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.index_rongxuan_news_fb_li:hover::before{
	background: #104491;
	width: 100%;
}

.index_rongxuan_news_fb_li .img{
	overflow: hidden;
	position: relative;
}

.index_rongxuan_news_fb_li .img img{
	width: 100%;
	position: relative;
	z-index: 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;
}

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

.index_rongxuan_news_fb_li .img .riqi{
	font-size: 14px;
	line-height: 1.3;
	color: #000;
	text-align: center;
	width: 60px;
	position: absolute;
	left: 5.5%;
	top: 0;
	background: #fff;
	z-index: 10;
	padding: 10px 0;
	border-radius: 0 0 3px 3px;
}

.index_rongxuan_news_fb_li .img .riqi::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 2px;
	background: #104491;
}

.index_rongxuan_news_fb_li .img .riqi span{
	font-size: 1.3rem;
	display: block;
}

.index_rongxuan_news_fb_li .wz{
	padding: 8% 5.5%;
}

.index_rongxuan_news_fb_li .wz .wz_ft{
	font-size: 18px;
	line-height: 1.5;
	color: #000;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.index_rongxuan_news_fb_li:hover .wz .wz_ft{
	color: #104491;
}

.index_rongxuan_news_fb_li .wz .wz_fc{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin: 2% 0 3%;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.index_rongxuan_news_fb_li .wz .wz_fb{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fl{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
}

.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fr{
	width: 14px;
	height: 14px;
	background: url(../images/img/index_news_btnr.png) no-repeat center;
	background-size: cover;
	margin-left: 5px;
}

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

	.index_rongxuan_news_fb_li .wz .wz_fc{
		font-size: 15px;
	}

	.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fl{
		font-size: 15px;
	}

	.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fr{
		width: 13px;
		height: 13px;
	}
}

@media(max-width:1200px){
	.index_rongxuan_news_fb_li .img .riqi span{
		font-size: 18px;
	}
}

@media(max-width:991px){
	.index_rongxuan_news_fb_li{
		width: 49%;
	}

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

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

	.index_rongxuan_news_fb_li::before{
		height: 3px;
	}

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

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

	.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fl{
		font-size: 14px;
	}

	.index_rongxuan_news_fb_li .wz .wz_fb .wz_fb_fr{
		width: 12px;
		height: 12px;
	}
}

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

	.index_rongxuan_news_fb{
		margin-top: 20px;
	}

	.index_rongxuan_news_fb_li::before{
		height: 2px;
	}

	.index_rongxuan_news_fb_li .img .riqi{
		font-size: 13px;
	}

	.index_rongxuan_news_fb_li .img .riqi span{
		font-size: 17px;
	}

	.index_rongxuan_news_fb_li .wz{
		padding: 25px 20px;
	}

	.index_rongxuan_news_fb_li .wz .wz_fc{
		margin: 5px 0 10px;
	}
}

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

	.index_rongxuan_news_fb{
		margin-top: 18px;
	}

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

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

	.index_rongxuan_news_fb_li .wz{
		padding: 20px 16px;
	}
}

/*footer*/
.pc_footer{
	background: #104491;
}

.pc_footer_ft_con{
	padding: 3% 0;
}

.pc_footer_ft_fl{
	max-width: 20%;
}

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

.pc_footer_ft_fl_fc{
	margin: 1rem 0 1.5rem;
}

.pc_footer_ft_fl_fc img{
	max-width: 110px;
}

.pc_footer_ft_fl_fb_li{
	background: #333;
	position: relative;
	border-radius: 3px;
	width: 32px;
	height: 32px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

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

.pc_footer_ft_fl_fb_li a{
	width: 32px;
	height: 32px;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_footer_ft_fl_fb_li a span{
	width: 16px;
	height: 16px;
	display: block;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}

.pc_footer_ft_fl_fb_li:hover{
	background: #f7793e;
}

.pc_footer_ft_fc{
	width: 30%;
}

.pc_footer_ft_fc_fb{
	margin-top: 1rem;
}

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

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

.pc_footer_ft_fc_fb_li:nth-child(n+3){
	margin-top: 0.9rem;
}

.pc_footer_ft_fc_fb_li a{
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	padding-left: 18px;
	background: url(../images/img/pc_footer_nav_ico.png) no-repeat left 7px;
	background-size: 10px;
	max-width: 100%;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fc_fb_li a:hover{
	color: #f7793e;
	background: url(../images/img/pc_footer_nav_ico1.png) no-repeat left 7px;
	background-size: 10px;
}

.pc_footer_ft_fc1{
	max-width: 20%;
}

.pc_footer_ft_fc1_fb{
	margin-top: 1rem;
}

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

.pc_footer_ft_fc1_fb_li a{
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	padding-left: 22px;
	background: url(../images/img/pc_footer_nav_ico.png) no-repeat left 7px;
	background-size: 10px;
	max-width: 100%;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_ft_fc1_fb_li a:hover{
	color: #f7793e;
	background: url(../images/img/pc_footer_nav_ico1.png) no-repeat left 7px;
	background-size: 10px;
}

.pc_footer_ft_fb{
	width: 25%;
}

.pc_footer_ft_fb_fc{
	margin: 1rem 0;
}

.pc_footer_ft_fb_fc_con{
	padding-left: 60px;
	background: url(../images/img/pc_footer_phone_ico.png) no-repeat left center;
	background-size: 45px;
}

.pc_footer_ft_fb_fc_ft{
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}

.pc_footer_ft_fb_fc_fb{
	font-size: 1.2rem;
	line-height: 1.5;
	color: #fff;
}

.pc_footer_ft_fb_fb{
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
}

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

.pc_footer_ft_fb_fb span{
	color: #f7793e;
}

.pc_footer_fb_con{
	border-top: 1px solid rgba(255,255,255,0.3);
	font-size: 15px;
	line-height: 1.7;
	color: #fff;
	text-align: center;
	padding: 18px 0;
}

.pc_footer_fb_con a{
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pc_footer_fb_con a:hover{
	color: #f7793e;
}

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

	.pc_footer_ft_fc_fb_li a,.pc_footer_ft_fc1_fb_li a{
		font-size: 15px;
	}

	.pc_footer_ft_fb_fc_con{
		padding-left: 55px;
		background-size: 42px;
	}

	.pc_footer_ft_fb_fc_ft{
		font-size: 15px;
	}

	.pc_footer_ft_fb_fc_fb{
		font-size: 19px;
	}

	.pc_footer_ft_fb_fb{
		font-size: 15px;
	}
}

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

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

	.pc_footer_ft_fb_fc_con{
		padding-left: 52px;
		background-size: 40px;
	}
}

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

	.pc_footer_ft_fl{
		max-width: 45%;
	}

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

	.pc_footer_ft_fc{
		display: none;
	}

	.pc_footer_ft_fc_fb_li a,.pc_footer_ft_fc1_fb_li a{
		font-size: 14px;
	}

	.pc_footer_ft_fc1{
		display: none;
	}

	.pc_footer_ft_fb{
		width: 50%;
	}

	.pc_footer_ft_fb_fc{
		margin: 12px 0;
	}

	.pc_footer_ft_fb_fc_ft{
		font-size: 14px;
	}

	.pc_footer_ft_fb_fc_fb{
		font-size: 17px;
	}

	.pc_footer_ft_fb_fb{
		font-size: 14px;
	}

	.pc_footer_fb_con{
		font-size: 14px;
		padding: 15px 0;
	}
}

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

	.pc_footer_ft_fl{
		max-width: 100%;
	}

	.pc_footer_ft_fl_ft{
		font-size: 16px;
		font-weight: bold;
	}

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

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

	.pc_footer_ft_fb_fc_con{
		padding-left: 48px;
		background-size: 35px;
	}

	.pc_footer_fb_con{
		padding: 13px 0;
	}
}

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

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

	.pc_footer_ft_fb_fc{
		margin: 12px 0;
	}
}

/*backtop*/
.pc_backtop_box{
	cursor: pointer;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	position: fixed;
	bottom: 130px;
	right: 20px;
	z-index: 950;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	background-image: url(../images/img/pc_footer_backtop_bnt.png);
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	background-size: 10px;
}

.pc_backtop_box:hover{
	background-color: #f7793e;
	background-image: url(../images/img/pc_footer_backtop_bnt_h.png);
}

.pc_backtop_box.active{
	opacity: 1;
	visibility: inherit;
	bottom: 150px;
}

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