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

html {
	margin: 0;
	padding: 0;
	border: 0;
}

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: #1f386d;
}

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

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
#pc_header {
	height: 100px;
	line-height: 100px;
	background: #fff;
}

.pc_logo {
	width: 20%;
}

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

.pc_nav {
	width: 55%;
}

.pc_nav>ul {
	width: 100%;
}

.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>li {
	width: 16.66666666%;
	float: left;
	position: relative;
	text-align: center;
}

.pc_nav>ul>li>a {
	font-size: 16px;
	line-height: 100px;
	color: #333;
	font-weight: bold;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 130%;
	left: -15%;
	top: 110px;
	background: #fff;
	border-radius: 5px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.pc_nav>ul>li:hover .pc_nav_erji_w {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.pc_nav>ul>li:hover>a {
	color: #1f386d;
}

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

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

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

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

.pc_top_fr {
	width: 20%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_top_lx a {
	display: block;
	padding-left: 28px;
	font-size: 14px;
	line-height: 100px;
	color: #1f386d;
	font-weight: bold;
	background: url(../images/img/tel1.png) no-repeat left center;
}

.pc_top_yuyan {
	height: 100px;
}

.pc_top_yuyan a {
	display: block;
	width: 25px;
	line-height: 75px;
	text-align: center;
	background: url(../images/img/diqiu.png) no-repeat bottom center;
	margin-top: 5px;
	transform: scaleX(1);
	transition: all linear .2s;
}

.pc_top_yuyan a:hover {
	color: #1f386d;
}

.pc_sousuo {
	position: relative;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	font-size: 0;
	background: #1f386d;
	text-align: center;
}

.pc_sousuo1 {
	display: inline-block;
	vertical-align: middle;
	width: 3rem;
	height: 3rem;
	margin: 0 auto;
	background: url(../images/pc_sousuo_b.png) no-repeat center;
	cursor: pointer;
}

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 80px;
	width: 250px;
	z-index: 999;
	background: #1f386d;
	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/pc_sousuo_b.png) no-repeat center;
	background-size: 20px;
}

.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;
	transition: background-color 5000s ease-in-out 0s;
}

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

@media(max-width:1080px) {
	.pc_sousuo1 {
		background-size: 20px 20px;
	}
}

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

.index_banner img {
	width: 100%;
	transition: all 3s;
	-webkit-transition: all 3s;
	-moz-transition: all 3s;
	-o-transition: all 3s;
}

.index_banner .swiper-slide-active img {
	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_banner_yuandian {
	font-size: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 3% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	opacity: 1;
	margin: 0 10px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #1f386d;
}

.index_banner .wz {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 7%;
	font-size: 0;
	text-align: center;
}

.index_banner .wz h3 {
	width: 90%;
	margin: 0 auto;
	font-size: 2rem;
	line-height: 1.2;
	color: #fff;
}

.index_banner .wz .index_banner_a {
	font-size: 1.1rem;
	line-height: 2;
	color: #fff;
	display: inline-block;
	padding: 5px 0;
	width: 20%;
	margin-top: 3%;
	border: 1px solid #fff;
}

.index_banner .wz .index_banner_a:hover {
	border: 1px solid #1f386d;
	color: #1f386d;
}

@media(max-width:991px) {
	.index_banner .wz .index_banner_a {
		font-size: 18px;
	}
}

@media(max-width:768px) {
	.index_banner .wz h3 {
		font-size: 24px;
	}

	.index_banner .wz .index_banner_a {
		font-size: 16px;
		width: 150px;
	}
}

@media(max-width:468px) {
	.index_banner .wz h3 {
		font-size: 18px;
	}

	.index_banner .wz .index_banner_a {
		font-size: 14px;
		padding: 2px 0;
		width: 150px;
	}
}

/*业务板块*/
.index_ywbk {
	padding: 3% 0;
}

.index_ywbk_ft {
	font-size: 2.3rem;
	line-height: 2;
	color: #666;
}

.index_ywbk_fb {
	margin-top: 3%;
	/*position: relative;*/
	/*border-radius: 30px;*/
	overflow: hidden;
}

.index_ywbk_fb li .img {
	overflow: hidden;
}

.index_ywbk_fb li .img img {
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.index_ywbk_fb li .wz {
	font-size: 16px;
	line-height: 2;
	color: #333;
	padding: 5px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_ywbk_fb li:hover .img img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}

/*.index_ywbk_fb:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,.2);*/
/*    z-index: 5;*/
/*}*/
/*.index_ywbk_fb .img_li img{*/
/*    width: 100%;*/
/*}*/
/*.index_ywbk_fb .wz_li{*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    z-index: 8;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.index_ywbk_fb_li{*/
/*    width: 33.333333%;*/
/*    cursor: pointer;*/
/*    height: 100%;*/
/*    float: left;*/
/*    position: relative;*/
/*    border-right: 1px solid rgba(255,255,255,.5);*/
/*}*/
/*.index_ywbk_fb_li .index_ywbk_fb_li_nn{*/
/*    position: absolute;*/
/*    bottom: 10%;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    -webkit-transition: all 0.3s ease-out;*/
/*    transition: all 0.3s ease-out;*/
/*}*/
/*.index_ywbk_fb_li.on .index_ywbk_fb_li_nn{*/
/*    bottom: 40%;*/
/*}*/
/*.index_ywbk_fb_li_ft{*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    text-align: center;*/
/*    padding-bottom: 3%;*/
/*    border-bottom: 2px solid #fff;*/
/*}*/
/*.index_ywbk_fb_li_ft img{*/
/*    width: 3.8rem;*/
/*}*/
/*.index_ywbk_fb_li_ft h3{*/
/*    font-size: 1.5rem;*/
/*    line-height: 2;*/
/*    color: #fff;*/
/*    margin: 3% 0 0;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/
/*}*/
/*.index_ywbk_fb_li_fb{*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    margin-top: 5%;*/
/*}*/
/*.index_ywbk_fb_li_fb ul{*/
/*    overflow: hidden;*/
/*}*/
/*.index_ywbk_fb_li_fb li{*/
/*    width: 48%;*/
/*    margin-right: 4%;*/
/*    float: left;*/
/*}*/
/*.index_ywbk_fb_li_fb li:nth-child(2n){*/
/*    margin-right: 0;*/
/*}*/
/*.index_ywbk_fb_li_fb li a{*/
/*    padding: 5px 0;*/
/*    font-size: 16px;*/
/*    line-height: 2;*/
/*    color: rgba(255,255,255,.8);*/
/*}*/
/*.index_ywbk_fb_li_fb li a:hover{*/
/*    color: #fff;*/
/*    text-decoration: underline;*/
/*}*/
@media(max-width:991px) {
	.index_ywbk {
		padding: 25px 0;
	}
}

@media(max-width:768px) {
	.index_ywbk_ft {
		font-size: 24px;
	}

	.index_ywbk_fb {
		margin-top: 10px;
	}

	.index_ywbk_fb_li_ft img {
		width: 40px;
	}

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

	.index_ywbk_fb_li_fb {
		display: none;
	}

	.index_ywbk_fb_li .index_ywbk_fb_li_nn {
		bottom: auto !important;
		top: 50% !important;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media(max-width:768px) {
	.index_ywbk_fb_li_ft {
		width: 90%;
	}

	.index_ywbk_fb_li_ft h3 {
		font-size: 14px;
	}
}

/*首页分类*/
.index_fenlei {
	padding: 3% 0;
}

.index_fenlei ul {
	font-size: 0;
}

.index_fenlei li {
	display: inline-block;
	width: 32%;
	margin-right: 2%;
	vertical-align: bottom;
	position: relative;
	border-radius: 25px;
	overflow: hidden;
}

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

.index_fenlei li .img {
	overflow: hidden;
}

.index_fenlei li .img img {
	width: 100%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.index_fenlei li:hover .img img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
}

.index_fenlei li .wz {
	position: absolute;
	bottom: 20px;
	left: 35px;
	font-size: 1.1rem;
	line-height: 2;
	color: #fff;
	font-weight: normal;
}

@media(max-width:991px) {
	.index_fenlei li .wz {
		font-size: 16px;
	}

	.index_fenlei {
		padding: 0px 0 20px;
	}
}

@media(max-width:640px) {
	.index_fenlei li {
		width: 100%;
		margin-right: 0 !important;
		margin-bottom: 15px;
	}
}

/*新闻动态*/
.index_xwzx_fl {
	width: 32%;
	border-radius: 25px;
	overflow: hidden;
}

.index_xwzx_fl img {
	width: 100%;
}

.index_xwzx_fr {
	width: 62%;
}

.index_xwzx_fr_ft {
	font-size: 0;
	padding-top: 3%;
}

.index_xwzx_fr_ft_fl {
	width: 50%;
	font-size: 1.5rem;
	color: #333333;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	line-height: 2;
	padding-bottom: 5px;
}

.index_xwzx_fr_ft_fl:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 5px;
	background: #1f386d;
}

.index_xwzx_fr_ft_fr_w {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}

.index_xwzx_fr_ft_fr {
	display: inline-block;
	text-align: center;
	width: 100%;
	max-width: 200px;
	font-size: 1rem;
	line-height: 2;
	color: #1f386d;
	padding: 5px 0;
	border: 1px solid #1f386d;
	border-radius: 25px;
}

.index_xwzx_fr_ft_fr:hover {
	color: #fff;
	background: #1f386d;
}

.index_xwzx_fr_fb {
	margin-top: 3%;
}

.index_xwzx_fr_fb li {
	padding: 15px 0;
	border-bottom: 1px solid #e0e0e0;
}

.index_xwzx_fr_fb li h3 {
	font-size: 20px;
	line-height: 2;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index_xwzx_fr_fb li h4 {
	font-size: 14px;
	line-height: 2;
	color: #999;
}

.index_xwzx_fr_fb li:hover h3 {
	color: #1f386d;
}

.index_xwzx_fr_fb li:hover h4 {
	color: #1f386d;
}

.index_xwzx_fr_fb li:hover {
	border-bottom: 1px solid #1f386d;
}

@media(max-width:1080px) {
	.index_xwzx_fr_ft {
		padding-top: 0;
	}

	.index_xwzx_fr_ft_fl {
		font-size: 22px;
	}

	.index_xwzx_fr_ft_fr {
		font-size: 16px;
		max-width: 150px;
	}

	.index_xwzx_fr_fb li h3 {
		font-size: 18px;
	}

	.index_xwzx_fr_fb li {
		padding: 10px 0;
	}
}

@media(max-width:768px) {
	.index_xwzx_fl {
		display: none;
	}

	.index_xwzx_fr {
		width: 100%;
	}

	.index_xwzx_fr_fb li h3 {
		font-size: 16px;
	}
}

@media(max-width:468px) {
	.index_xwzx_fr_ft_fr {
		width: 120px;
		font-size: 14px;
	}
}

/*加入我们*/
.index_jrwm {
	padding: 4% 0;
}

.index_jrwm_nn {
	border-radius: 25px;
	overflow: hidden;
	position: relative;
}

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

.index_jrwm .wz {
	position: absolute;
	left: 8%;
	top: 50%;
	transform: translateY(-50%);
}

.index_jrwm .wz .wz_ft {
	line-height: 1.2;
	font-size: 2rem;
	color: #fff;
}

.index_jrwm .wz .wz_fb {
	display: block;
	width: 10rem;
	line-height: 2;
	font-size: 1rem;
	color: #1f386d;
	padding: 5px 0;
	text-align: center;
	border-radius: 25px;
	background: #fff;
	margin-top: 8%;
}

.index_jrwm .wz .wz_fb:hover {
	color: #fff;
	background: #1f386d;
}

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

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

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

	.index_jrwm .wz .wz_fb {
		width: 120px;
	}
}

@media(max-width:468px) {
	.index_jrwm .wz .wz_fb {
		margin-top: 10px;
	}

	.index_jrwm .img img {
		height: 200px;
		object-fit: cover;
	}
}















/*底部*/
.footer_tongyong {
	padding: 3% 0 0;
	background: #f7f7f7;
}

.footer_tongyong_ft {
	overflow: hidden;
}

.footer_tongyong_ft_fl {
	width: 65%;
}

.footer_tongyong_ft_fl ul {
	overflow: hidden;
}

.footer_tongyong_ft_fl li {
	width: 25%;
	padding-right: 10px;
}

.footer_tongyong_ft_fl li h3 {
	font-size: 18px;
	color: #1f386d;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.footer_tongyong_ft_fl li h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #1f386d;
}

.foot_nav_erji {
	margin-top: 15px;
}

.footer_tongyong_ft_fl li a {
	display: block;
	font-size: 16px;
	line-height: 2;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.footer_tongyong_ft_fr {
	overflow: hidden;
	max-width: 30%;
}

.footer_tongyong_ft_fr h3 {
	font-size: 18px;
	color: #1f386d;
	line-height: 2;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.footer_tongyong_ft_fr h3:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 3px;
	background: #1f386d;
}

.footer_tongyong_ft_fr_fc {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin: 10px 0;
}

.footer_tongyong_ft_fr_fc p {
	word-break: break-all;
}

.footer_tongyong_ft_fr_fb {
	float: left;
}

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

.footer_tongyong_ft_fr_fb h4 {
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin-top: 10px;
	text-align: center;
}

.footer_tongyong_fb {
	border-top: 1px solid rgba(0, 0, 0, .1);
	margin-top: 20px;
	padding: 15px 0;
	font-size: 16px;
	line-height: 2;
	color: #666;
}

.footer_tongyong_fb a {
	color: #666;
}

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

	.footer_tongyong_ft_fl {
		display: none;
	}

	.footer_tongyong_ft_fr {
		max-width: 100%;
		float: none;
	}
}
