/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-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: #051435;
}

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


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

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

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

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

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



/*.section .fp-tableCell {*/
/*	padding-top: 90px;*/
/*}*/

.section0 .fp-tableCell {
	padding-top: 0;
}

.fp-auto-height .fp-tableCell {
	padding-top: 0;
}

@media (max-width: 991px) {
	.section {
		height: auto !important;
	}

	.fp-tableCell {
		height: auto !important;
	}

	#fp-nav {
		display: none;
	}

	.section .fp-tableCell {
		padding-top: 0;
	}
}






/**/
.max1800 {
	max-width: 1850px;
	margin: 0 auto;
	padding: 0 50px;
}
.max1500 {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 50px;
}
.page_con_zhuti {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 50px;
}

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

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

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

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

/*头部*/
.gongyongtoubu {
	height: 90px;
	line-height: 90px;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 999;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	/*background-color: rgba(255,255,255,.1);*/
}
.gongyongtoubu:hover{
    background: #fff;
}

.header_logo {
	width: 15%;
}

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

.header_nav {
	max-width: 75%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
}

.header_nav_ft {
	margin-top: 15px;
	width: auto;
}

.header_nav_ft_sjh {
	background-color: #f6f6f6;
	border-radius: 13px;
	font-size: 16px;
	line-height: 1.6;
	color: #051435;
	padding: 0 10px;
}

.header_nav_ft_sousuo {
	width: 21px;
	height: 21px;
	background: url(../images/img/sousuo_ico.png) no-repeat center;
	margin-left: 20px;
}

.header_nav_fb>ul {
	margin-right: -1rem;
}

.header_nav_fb>ul>li {
	padding: 0 1rem;
	position: relative;
}

.header_nav_fb>ul>li>a {
	position: relative;
}

.header_nav_fb>ul>li.active>a {
	color: #051435;
}

.header_nav_fb>ul>li:hover>a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #051435;
}

.header_nav_fb>ul>li:last-child {
	margin-right: 0;
}

.header_nav_fb>ul>li>a {
	display: block;
	font-size: 18px;
	line-height: 2.6;
	color: #051435;
}

.header_sub {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 999;
	background: #fff;
	border-radius: 8px;
	margin-top: 0px;
	padding: 10px 2px;
	display: none;
}

.header_nav_fb>ul>li:hover .header_sub {
	display: block;
}

.header_sub_li {
	position: relative;
}

.header_sub>li>a {
	font-size: 16px;
	color: #051435;
	line-height: 2;
	display: block;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header_sub>li>a:hover {
	background: #051435;
	color: #fff;
	border-radius: 8px;
}

.header_sanji {
	position: absolute;
	left: 100%;
	width: 150%;
	top: 0;
	background: #fff;
	border-radius: 8px;
	margin-top: 1px;
	padding: 10px 2px;
	display: none;
}

.header_sanji a {
	font-size: 16px;
	line-height: 2;
	color: #051435;
	display: block;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header_sanji a:hover {
	background: #051435;
	color: #fff;
	border-radius: 8px;
}

.header_sub_li:hover .header_sanji {
	display: block;
}

/*搜索下拉*/
.header_sousuoxiala {
	padding: 8vw 0 3.2vw;
	background-color: #f6f6f6;
	display: none;
}

.header_sousuoxiala_ft {
	max-width: 990px;
	width: 60%;
	margin: 0 auto;
}

.header_sousuoxiala_ft form {
	background-color: #ffffff;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	border-radius: 24px;
}

.header_sousuoxiala_ft form #keyword {
	font-size: 1.7vw;
	line-height: 2.7;
	color: #000000;
	width: 100%;
	outline: none;
	border: 0;
	background: none;
	border-radius: 24px 0 0 24px;
	padding: 0 2.1vw;
}

.header_sousuoxiala_ft form #s_btn {
	width: 6vw;
	background: url(../images/img/sousuo_ico1.png) no-repeat center;
	background-size: 1.85vw 1.85vw;
	border: 0;
}

.header_sousuoxiala_fb {
	font-size: 0;
	line-height: 1;
	margin-top: 7vw;
	text-align: center;
}

.header_sousuoxiala_fb .header_sousuoxiala_fbn {
	display: inline-block;
	font-size: 18px;
	line-height: 1.5;
	color: #838f8f;
	padding-right: 32px;
	cursor: pointer;
	background: url(../images/img/shouqi_ico.png) no-repeat right center;
}

.header_sousuoxiala_ft form #keyword::-webkit-autofill {
	-webkit-text-fill-color: rgba(0, 0, 0, .8) !important;
	transition: background-color 5000s ease-in-out 0s;
}

.header_sousuoxiala_ft form #keyword::placeholder {
	color: rgba(0, 0, 0, .8);
}

@media(max-width:1400px) {
	.header_nav_fb>ul>li>a {
		font-size: 16px;
	}

	.header_sub>li>a {
		font-size: 14px;
	}

	.header_sousuoxiala_fb .header_sousuoxiala_fbn {
		font-size: 16px;
	}
}

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

/*首页banner*/
.index_banner {
	position: relative;
	overflow: hidden;
}
.index_banner img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	opacity: 0;
}

.index_banner_btnl,.index_banner_btnr{
    width: 50px;
    height: 50px;
    background-color:rgba(0,0,0,.5);
    background-image: url(../images/img/index_banner_btnl.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    position: absolute;
    left: 3%;
    top: 50%;
    z-index: 100;
    cursor: pointer;
    transform: translateY(-50%);
}
.index_banner_btnr{
    right: 3%;
    left: auto;
    background-image: url(../images/img/index_banner_btnr.png);
}


.index_banner .wz {
	position: absolute;
	bottom: 3%;
	left: 0;
	width: 100%;
	font-size: 24px;
	color: #fff;
	text-align: center;
}

.index_banner_shuzi_w {
	font-size: 24px;
	line-height: 2;
	color: #fff;
	position: absolute;
	right: 2%;
	bottom: 3%;
	z-index: 900;
	display: none;
}

.index_banner_shuzi_w_mc {
	display: none;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #000;
	padding: 0 20px;
	overflow: hidden;
}

.index_banner_shuzi_w_mc_fl {
	float: left;
	font-size: 16px;
}

.index_banner_shuzi2 {
	float: right;
	width: auto;
	font-size: 16px;
}

@media(max-width:991px) {
    .index_banner{
        margin-top: 0;
    }
	.index_banner img {
		height: auto;
	}
	.index_banner_btnl,.index_banner_btnr{
	    width: 40px;
	    height: 40px;
	}
}

@media(max-width:768px) {
	.index_banner .wz {
		display: none;
	}
	.index_banner_btnl,.index_banner_btnr{
	    width: 30px;
	    height: 30px;
	}
	.index_banner_shuzi_w {
		display: none;
	}

	.index_banner_shuzi_w_mc {
		display: none;
	}
}

/*底部*/
#footer_db{
    padding: 50px 0 0;
    background: #ebebeb;
}
.footer_db_fl{
    width: 44%;
}
.footer_db_fl_nav{
    max-width: 33.3333%;
}
.footer_db_fl_nav h3{
    font-size: 17px;
    line-height: 2;
    font-weight: bold;
    color: #333;
}
.footer_db_fl_nav ul{
    margin-top: 15px;
}
.footer_db_fl_nav li a{
    font-size: 15px;
    line-height: 2;
    color: #333;
}
.footer_db_fr{
    max-width: 35%;
}
.db_ewm{
    max-width: 150px;
    text-align: center;
}
.db_ewm img{
    width: 100%;
}
.db_ewm h3{
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin-top: 10px;
}


.dbxinxi h3{
    font-size: 17px;
    line-height: 2;
    font-weight: bold;
    color: #333;
}
.dbxinxi h4{
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-top: 10px;
}
.footer_db2{
    background: #dbdbdb;
    font-size: 15px;
    line-height: 2;
    color: #333;
    padding: 10px 0;
    text-align: center;
    margin-top: 25px;
}
.footer_db2 a:hover{
    color: #333;
}
@media(max-width:991px){
    .footer_db_fl{
        display: none;
    }
    .footer_db_fr{
        max-width: 60%;
    }
}
@media(max-width:768px){
    #footer_db{
        padding-top: 25px;
    }
}
@media(max-width:468px){
    .db_ewm{
        margin: 0 auto;
        margin-top: 15px;
    }
    .footer_db_fr{
        max-width: 100%;
        width: 100%;
    }
    .footer_con{
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}


/*悬浮*/
.xuanfuweikuang_w {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

.index_fonnt_cuowu {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 25px;
	top: 25px;
	background: url(../images/img/cuowu.png) no-repeat center;
	cursor: pointer;
}

.xuanfuweikuang {
	max-width: 600px;
	padding: 25px 0;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.xuanfuweikuang_ft {
	padding: 20px;
	text-align: center;
}

.xuanfuweikuang_ft h3 {
	font-size: 18px;
	line-height: 2;
	color: #333;
	margin-bottom: 20px;
}

.xuanfuweikuang_ft img {
	max-width: 110px;
	width: 100%;
}

.xuanfuweikuang_fb {
	padding: 20px;
	text-align: center;
	border-top: 1px solid #e8e8e7;
}

.xuanfuweikuang_fb h3 {
	font-size: 18px;
	line-height: 2;
	color: #333;
}

.xuanfuweikuang_fb h4 {
	font-size: 16px;
	line-height: 2;
	color: #333;
}



/*内页导航*/
.nei_cate {
	position: relative;
	margin-top: -30px;
	text-align: center;
	margin-bottom: -30px;
}

.nei_cate .aspg-left-nav {
	font-size: 0;
	margin: 0;
}

.nei_cate .aspg-left-nav>li {
	display: inline-block;
	font-size: 16px;
	color: #4f4f52;
	position: relative;
	margin-right: -1px;
	border-bottom: none;
}

.nei_cate .aspg-left-nav>li>a {
	font-size: 16px;
	color: #4f4f52;
	display: inline-block;
	padding-bottom: 14px;
	position: relative;
	width: 171px;
	height: 55px;
	line-height: 53px;
	border: #dcdcdc 1px solid;
	text-align: center;
	background: #fff;
	padding: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 5px;
}

.nei_cate .aspg-left-nav>li>a::before {
	content: "";
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 0;
	height: 3px;
	/* margin-left: 0; */
	background: #051435;
	-moz-transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.nei_cate .aspg-left-nav>li .first-nav-btn {
	display: none;
}

.nei_cate .aspg-left-nav>li.clicked>a:before,
.nei_cate .aspg-left-nav>li:hover>a:before {
	left: 0;
	width: 100%
}

.nei_cate .aspg-left-nav>li>a:hover {
	color: #051435;
}

.nei_cate .aspg-left-nav>li .aspg-left-subnav {
	position: absolute;
	width: 100%;
	left: 0;
	top: 55px;
	background: #fff;
	border: 1px solid #eee;
	display: none !important;
	z-index: 99;
}

.nei_cate .aspg-left-nav>li:hover .aspg-left-subnav {
	display: block !important;
}

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


/**/
.neiye_zhengshulb {
	font-size: 0;
}

.neiye_zhengshulb li {
	display: inline-block;
	vertical-align: bottom;
	width: 23.875%;
	margin-right: 1.5%;
	margin-bottom: 1.5%;
	text-align: center;
	border: 1px solid #eee;
}

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

@media(max-width:768px) {
	.neiye_zhengshulb li {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2%;
	}

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

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

/*联系我们留言*/
.lxwm_c1 .lxwm_c1nn {
	background-color: #051435;
	border-radius: 24px;
	overflow: hidden;
	padding: 4%;
	align-items: flex-end;
}

.lxwm_c1_fl {
	width: 52%;
}

.lxwm_c1_fl_ft {
	font-size: 24px;
	line-height: 1.5;
	color: #ffffff;
}

.lxwm_c1_fl_fb {
	margin-top: 12%;
}

.lxwm_c1_fl_fb form {}

.lxwm_c1_fl_fb_ft li {
	width: 48%;
	margin-bottom: 5%;
	position: relative;
}

.lxwm_c1_fl_fb_ft li span {
	position: absolute;
	z-index: 9;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	line-height: 1.5;
	color: #595757;
}

.lxwm_c1_fl_fb_ft li input {
	background: none;
	outline: none;
	width: 100%;
	background-color: #ffffff;
	border-radius: 23px;
	border: solid 2px #3154e4;
	font-size: 16px;
	line-height: 2.7;
	color: #061734;
	padding-left: 65px;
	padding-right: 10px;
}

.lxwm_c1_fl_fb_fc {
	position: relative;
	margin-bottom: 5%;
}

.lxwm_c1_fl_fb_fc textarea {
	background: none;
	outline: none;
	width: 100%;
	background-color: #ffffff;
	border-radius: 23px;
	border: solid 2px #3154e4;
	font-size: 16px;
	line-height: 2.7;
	color: #061734;
	resize: none;
	padding: 40px 20px 20px;
}

.lxwm_c1_fl_fb_fc span {
	position: absolute;
	z-index: 9;
	left: 20px;
	top: 20px;
	font-size: 16px;
	line-height: 1.5;
	color: #595757;
}

.lxwm_c1_fl_fb_fb_fl {
	align-items: center;
	/*margin-bottom: 10px;*/
}

.lxwm_c1_fl_fb_fb_fl input {
	width: 186px;
	background: none;
	outline: none;
	background-color: #ffffff;
	border-radius: 23px;
	border: solid 2px #3154e4;
	font-size: 16px;
	line-height: 2.7;
	color: #061734;
	padding-left: 70px;
	padding-right: 15px;
}

.lxwm_c1_fl_fb_fb_fl_fl {
	position: relative;
	margin-right: 10px;
}

.lxwm_c1_fl_fb_fb_fl_fl span {
	position: absolute;
	z-index: 9;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	line-height: 1.5;
	color: #595757;
}

.lxwm_c1_fl_fb_fb_fl img {
	width: 100px;
	height: 38px;
	background-color: #ffffff;
}

.lxwm_c1_fl_fb_fb_fr input {
	background: none;
	outline: none;
	border: 0;
	background-color: #0346f2;
	border-radius: 23px;
	font-size: 18px;
	line-height: 1.5;
	padding: 7px 3.5rem;
	color: #ffffff;
}

.lxwm_c1_fr {
	width: 45%;
	max-width: 465px;
}

.lxwm_c1_fr_ft li {
	margin-top: 4.5%;
	overflow: hidden;
}

.lxwm_c1_fr_ft li:nth-child(1) {
	margin-top: 0;
}

.lxwm_c1_fr_ft li h3 {
	font-size: 18px;
	font-weight: normal;
	line-height: 1.5;
	color: #ffffff;
}

.lxwm_c1_fr_ft li h4 {
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	color: #ffffff;
}

.lxwm_c1_fr_ft li .img {
	width: 100%;
	max-width: 160px;
	padding: 13px;
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 10px;
}

.lxwm_c1_fr_ft li .img img {
	width: 100%;
}

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

	.lxwm_c1_fl_fb_fb_fr input {
		padding: 7px 40px;
	}

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

	.lxwm_c1_fr_ft li h4 {
		font-size: 20px;
	}
}

@media(max-width:991px) {
	.lxwm_c1_fr_ft li .img {
		max-width: 150px;
		padding: 8px;
	}

	.lxwm_c1_fl {
		width: 100%;
	}

	.lxwm_c1_fl_fb {
		margin-top: 25px;
	}

	.lxwm_c1_fl_fb_ft li {
		margin-bottom: 15px;
	}

	.lxwm_c1_fl_fb_fc {
		margin-bottom: 15px;
	}

	.lxwm_c1_fr {
		width: 100%;
		margin-top: 20px;
	}

	.lxwm_c1_fr_ft li {
		margin-top: 15px;
	}
}

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

	.lxwm_c1_fl_ft {
		font-size: 18px;
	}

	.lxwm_c1_fr_ft li h4 {
		font-size: 18px;
	}

	.lxwm_c1_fl_fb_fb_fl input {
		width: 150px;
	}
}

@media(max-width:468px) {
	.lxwm_c1_fl_fb_ft li {
		width: 100%;
	}

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

/*大事件*/
.neiye_dashijian_ft_ww {
	position: relative;
}

.neiye_dashijian_ft_btnl {
	width: 35px;
	height: 100%;
	border: 1px solid #dadada;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}

.neiye_dashijian_ft_btnr {
	width: 35px;
	height: 100%;
	border: 1px solid #dadada;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
}

.neiye_dashijian_ft_btnr.swiper-button-disabled:before,
.neiye_dashijian_ft_btnl.swiper-button-disabled:before {
	opacity: .5;
}

.neiye_dashijian_ft_btnr:before,
.neiye_dashijian_ft_btnl:before {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-left: 3px solid #BDBDBD;
	border-top: 3px solid #BDBDBD;
	position: absolute;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	top: 50%;
	left: 50%;
	margin: -4px 0 0 -4px;
}

.neiye_dashijian_ft_btnr:before {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	margin: -4px 0 0 -6px;
}

.neiye_dashijian_ft {
	margin: 0 50px;
	overflow: hidden;
}

.neiye_dashijian_ft li {
	height: 0;
	width: 9.5%;
	padding-bottom: 9.5%;
	background: #0a2c77;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}

.neiye_dashijian_ft li.on {
	background: #051435;
}

.neiye_dashijian_ft li span {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 24px;
	line-height: 2;
	font-weight: bold;
	color: #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%);
}

.neiye_dashijian_fc {
	margin: 4% 50px;
	font-size: 0;
}

.neiye_dashijian_fc_fl {
	font-size: 3.5rem;
	line-height: 2;
	color: #051435;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
}

.neiye_dashijian_fc_fr {
	font-size: 16px;
	line-height: 1.5;
	color: #1a1a1a;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5%;
}

.neiye_dashijian_fc_fr p {
	padding-left: 25px;
	position: relative;
	margin: 20px 0;
}

.neiye_dashijian_fc_fr p:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: #ccc;
}

.neiye_dashijian_fb {
	position: relative;
}

.neiye_dashijian_fb_nnw {
	overflow: hidden;
	margin: 0 50px;
}

.neiye_dashijian_fb_btnl {
	width: 35px;
	height: 35px;
	position: absolute;
	left: 0;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.neiye_dashijian_fb_btnr {
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.neiye_dashijian_fb_btnr.swiper-button-disabled,
.neiye_dashijian_fb_btnl.swiper-button-disabled {
	opacity: .5;
}

.neiye_dashijian_fb_btnr:before,
.neiye_dashijian_fb_btnl:before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-left: 4px solid #BDBDBD;
	border-top: 4px solid #BDBDBD;
	position: absolute;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -8px;
}

.neiye_dashijian_fb_btnr:before {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	margin: -8px 0 0 -8px;
}

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

@media(max-width:991px) {
	.neiye_dashijian_ft li {
		height: 0;
		width: 18.55%;
		padding-bottom: 18.55%;
	}
}

@media(max-width:768px) {
	.neiye_dashijian_ft li {
		width: 23.640625%;
		padding-bottom: 23.640625%;
	}

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

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

	.neiye_dashijian_ft li {
		width: 32.125%;
		padding-bottom: 32.125%;
	}

	.neiye_dashijian_ft_btnr,
	.neiye_dashijian_ft_btnl {
		width: 15px;
		height: 20px;
		top: 50%;
		border: 0;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.neiye_dashijian_fc {
		margin: 20px 15px;
	}

	.neiye_dashijian_fc_fr p {
		padding-left: 15px;
	}

	.neiye_dashijian_fb_nnw {
		margin: 0 20px;
	}

	.neiye_dashijian_fb_btnr,
	.neiye_dashijian_fb_btnl {
		width: 15px;
		height: 20px;
		top: 50%;
		border: 0;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.neiye_dashijian_fb_btnr:before,
	.neiye_dashijian_fb_btnl:before {
		width: 8px;
		height: 8px;
		border-left: 3px solid #BDBDBD;
		border-top: 3px solid #BDBDBD;
		margin: -4px 0 0 -4px;
	}

	.neiye_dashijian_fb_btnr:before {
		margin: -4px 0 0 -6px;
	}
}






/**/
.index_cpfenlei{
    overflow: hidden;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.index_cpfenlei li{
    width: 25%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_cpfenlei li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
}
.index_cpfenlei li .img{
    display: none;
}
.index_cpfenlei li .img img{
    width:100%;
}
.index_cpfenlei li.active{
    width: 34%;
}
.index_cpfenlei li.noactive{
    width: 24%;
}
.index_cpfenlei li a{
    display: block;
    width: 100%;
    height: 100%;
}
.index_cpfenlei li .wz{
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    width: 100%;
    margin-top: -35px;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.index_cpfenlei li.active .wz{
    margin-top: 0;
    opacity: 1;
}
.index_cpfenlei li .wz h3{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.index_cpfenlei li .wz h4{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.index_cpfenlei li .wz1{
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 14px;
    line-height: 2;
    padding: 3px 15px;
    display: block;
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
}
.index_cpfenlei li .wz1 span{
    position: relative;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_cpfenlei li .wz1:hover{
    background: #e70014;
    border: 1px solid #e70014;
}
.index_cpfenlei li .wz1:hover span{
    left: 5px;
}
.index_cpfenlei li.active .wz1{
    opacity: 1;
}
@media(max-width:991px){
    .index_cpfenlei{
        height: auto;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index_cpfenlei li{
        height: auto;
        width: 50%!important;
    }
    .index_cpfenlei li .img{
        display: block;
    }
    .index_cpfenlei li .wz{
        opacity: 1;
    }
    .index_cpfenlei li .wz1{
        opacity: 1;
    }
}
@media(max-width:468px){
    .index_cpfenlei li{
        width: 100%!important;
    }
}

/*新闻中心*/
.index_xwzx_ft{
    text-align: center;
}
.index_xwzx_ft h3{
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
    font-weight: bold;
}
.index_xwzx_ft h4{
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
}
.index_xwzx_fc{
    font-size: 26px;
    line-height: 2;
    color: #fff;
    text-align: center;
    margin: 3% 0 10px;
}
.index_xwzx_fb{
    font-size: 0;
    text-align: center;
}
.index_xwzx_fb a{
    font-size: 14px;
    line-height: 2;
    padding: 3px 15px;
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xwzx_fb a span{
    position: relative;
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xwzx_fb a:hover{
    background: #e70014;
    border: 1px solid #e70014;
}
.index_xwzx_fb a:hover span{
    left: 5px;
}
@media(max-width:991px){
    .index_xwzx{
        padding: 20% 0;
    }
}
@media(max-width:768px){
    .index_xwzx_fc{
        font-size: 22px;
    }
}
@media(max-width:468px){
    .index_xwzx_fc{
        font-size: 18px;
        margin: 15px 0 10px;
    }
}































