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

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

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}

/*头部*/
.pc_header1{
    background: #333;
}
.pc_header1_fl{
    font-size: 14px;
    line-height: 40px;
    color: #b0b0b0;
}
.pc_header2{
    height: 100px;
    line-height: 100px;
}
.pc_header2_fl{
    line-height: 100px;
    width: 28%;
}
.pc_header2_fl img{
    max-width: 100%;
}
.pc_nav {
	width: 70%;
}

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

.pc_nav>ul>li>a {
	font-size: 17px;
	line-height: 100px;
	color: #333;
	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);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-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);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.pc_nav>ul>li:hover>a {
	color: #0247a6;
}

.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: #0247a6;
	color: #fff;
}

.pc_nav>ul>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 40px;
	opacity: 0;
	top: 100%;
}
@media(max-width:991px){
    .pc_header1{
        display: none;
    }
    .pc_header2{
        display: none;
    }
}


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

.index_banner img {
	width: 100%;
}

.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: #0247a6;
}

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

	.index_banner_yuandian span {
		width: 14px;
		height: 14px;
		margin: 0 5px !important;
	}
}
/*近期资讯*/
.index_jiren_jinqizixun{
    border-bottom: 1px solid #f0f4f7;
    height: 65px;
    overflow: hidden;
}
.index_jiren_jinqizixun_fl{
    width: 120px;
    font-size: 16px;
    font-weight: bold;
    line-height: 64px;
    color: #666;
    padding-left: 40px;
    background: url(../images/img/index_jinqizixun.png) no-repeat left center;
    position: relative;
    z-index: 5;
}
.index_jiren_jinqizixun_fr{
    width:100%;
    padding-left: 120px;
    margin-left: -120px;
    margin-top: 10px;
    overflow: hidden;
}
.index_jiren_jinqizixun_fr li{
    width: 100%;
    font-size: 0;
}
.index_jiren_jinqizixun_fr li a{
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    line-height: 44px;
    color: #666;
}
.index_jiren_jinqizixun_fr li a:hover{
    color: #0247a6;
}
@media(max-width:468px){
    .index_jiren_jinqizixun{
        height: 50px;
    }
    .index_jiren_jinqizixun_fl{
        font-size: 15px;
        line-height: 50px;
        background-size: 20px;
        padding-left: 30px;
        width: 100px;
    }
    .index_jiren_jinqizixun_fr{
        padding-left: 100px;
        margin-left: -100px;
        margin-top: 0;
    }
    .index_jiren_jinqizixun_fr li a{
        font-size: 15px;
        line-height: 50px;
    }
}
/*首页板块1*/
.index_jiren_bankuai1{
    padding: 4% 0;
}
.index_jiren_bankuai1_ft{
    text-align: center;
}
.index_jiren_bankuai1_ft h3{
    font-size: 1.9rem;
    line-height: 1.5;
    color: #333;
}
.index_jiren_bankuai1_fc{
    margin: 3% 0;
}
.index_jiren_bankuai1_fc ul{
    text-align: center;
    font-size: 0;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.index_jiren_bankuai1_fc li{
    display: inline-block;
    vertical-align: middle;
    min-width: 146px;
    margin: 3px 10px;
}
.index_jiren_bankuai1_fc li a{
    font-size: 17px;
    line-height: 45px;
    background: #f0f4f7;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_jiren_bankuai1_fc li.on a{
    background: #0247a6;
    color: #fff;
}
.index_jiren_bankuai1_fb_fl{
    width: 47.5%;
}
.index_jiren_bankuai1_fb_fl img{
    width: 100%;
}
.index_jiren_bankuai1_fb_fr{
    width: 48%;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li{
    border-bottom: 1px solid #eaeef0;
    position: relative;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li:nth-child(n+2){
    margin-top: 4.1%;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li h3{
    font-size: 18px;
    line-height:1.5;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-left: 30px;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li h3:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 0;
    height: 0;
    border-right: 10px solid #0247a6;
    border-top: 8px solid rgba(0,0,0,0);
    border-bottom: 8px solid rgba(0,0,0,0);
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li .index_jiren_bankuai1_fb_fr_li_rqdeng{
    padding:4.1% 0;
    padding-left: 30px;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li .index_jiren_bankuai1_fb_fr_li_rqdeng_fl{
    font-size: 16px;
    line-height: 2;
    color: #999;
}
.index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li:hover h3{
    color: #0247a6;
}
@media(max-width:991px){
    .index_jiren_bankuai1_fc li a{
        font-size: 16px;
    }
    .index_jiren_bankuai1_fc li{
        margin: 3px 5px;
    }
    .index_jiren_bankuai1_fb_fl{
        width: 100%;
    }
    .index_jiren_bankuai1_fb_fr{
        width: 100%;
        margin-top: 15px;
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li .index_jiren_bankuai1_fb_fr_li_rqdeng{
        padding: 10px 0;
        padding-left: 30px;
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li:nth-child(n+2){
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .index_jiren_bankuai1{
        padding: 25px 0;
    }
    .index_jiren_bankuai1_ft h3{
        font-size: 22px;
    }
    .index_jiren_bankuai1_fc{
        margin: 15px 0;
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li h3{
        font-size: 16px;
        height: 48px;
        padding-left: 15px;
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li h3:before{
        border-right: 8px solid #0247a6;
        border-top: 6px solid rgba(0,0,0,0);
        border-bottom: 6px solid rgba(0,0,0,0);
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li .index_jiren_bankuai1_fb_fr_li_rqdeng{
        padding-left: 15px;
    }
    .index_jiren_bankuai1_fb_fr .index_jiren_bankuai1_fb_fr_li .index_jiren_bankuai1_fb_fr_li_rqdeng_fl{
        font-size: 15px;
    }
}
@media(max-width:468px){
    .index_jiren_bankuai1_fc li{
        width: 49%;
        margin: 0;
        min-width: auto;
        margin-right: 2%;
    }
    .index_jiren_bankuai1_fc li:nth-child(2n){
        margin-right: 0;
    }
    .index_jiren_bankuai1_fc li:nth-child(n+3){
        margin-top: 2%;
    }
}
/*横图*/
.index_jiren_hengtu{
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 4% 0;
    position: relative;
}
.index_jiren_hengtu::before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    left: 0;
    top: 0;
    position: absolute;
    z-index: 5;
}
.index_jiren_hengtu_ft{
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5;
    color: #fff;
    position: relative;
    z-index: 9;
}
.index_jiren_hengtu_fb{
    font-size:1.4rem;
    line-height: 1.5;
    color: #fff;
    font-family: Arial;
    text-align: center;
    margin-top: 4%;
    position: relative;
    z-index: 9;
}
@media(max-width:768px){
    .index_jiren_hengtu{
        padding: 30px 0;
    }
    .index_jiren_hengtu_ft{
        font-size: 24px;
    }
    .index_jiren_hengtu_fb{
        margin-top: 15px;
        font-size: 16px;
    }
}
@media(max-width:468px){
    .index_jiren_hengtu_ft{
        font-size: 22px;
    }
}
/*资讯动态*/
.index_jirenhuanbao_news{
    padding: 4% 0;
    background: #f0f4f7;
}
.index_jirenhuanbao_news_fc{
    margin: 3% 0;
}
.index_jirenhuanbao_news_fc ul{
    overflow: hidden;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.index_jirenhuanbao_news_fc ul li{
    float: left;
    width: 150px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 3px 8px;
    text-align: center;
    -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_jirenhuanbao_news_fc ul li.on{
    border-color: #0247a6;
    background: #0247a6;
}
.index_jirenhuanbao_news_fc ul li a{
    display: block;
    font-size: 18px;
    line-height: 45px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -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_jirenhuanbao_news_fc ul li.on a{
    color: #fff;
}
.index_jirenhuanbao_news_fb_nnn{
    overflow: hidden;
}
.index_jirenhuanbao_news_fb_nnn li{
    width: 23.5%;
    margin-right: 2%;
    background: #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;
    float: left;
}
.index_jirenhuanbao_news_fb_nnn li a{
    padding: 9%;
    display: block;
}
.index_jirenhuanbao_news_fb_li_ft{
    font-size: 17px;
    line-height: 2;
    color: #999;
    padding-left: 25px;
    background: url(../images/tongyongshijian_hui.png) no-repeat left center;
    background-size: 18px;
	-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_jirenhuanbao_news_fb_li_fc {
    margin: 5px 0 15px;
}
.index_jirenhuanbao_news_fb_li_fc h3{
    font-size: 18px;
    line-height: 2;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-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_jirenhuanbao_news_fb_li_fc h4{
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	-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_jirenhuanbao_news_fb_li_fb{
    overflow: hidden;
    font-size: 15px;
    line-height: 2;
    color: #999;
	-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_jirenhuanbao_news_fb_nnn li:hover .index_jirenhuanbao_news_fb_li_fb{
    color: #fff;
}

.index_jirenhuanbao_news_fb_nnn li:hover{
    background: #0247a6;
}
.index_jirenhuanbao_news_fb_nnn li:hover .index_jirenhuanbao_news_fb_li_ft{
    color: #fff;
    background: url(../images/tongyongshijian_bai.png) no-repeat left center;
    background-size: 18px;
}
.index_jirenhuanbao_news_fb_nnn li:hover .index_jirenhuanbao_news_fb_li_fc h3{
    color: #fff;
}
.index_jirenhuanbao_news_fb_nnn li:hover .index_jirenhuanbao_news_fb_li_fc h4{
    color: #fff;
}
.index_jirenhuanbao_news_fb_nnn li:hover .index_jirenhuanbao_news_fb_li_fc h3{
    text-decoration: underline;
}
.index_jirenhuanbao_news_fb1{
    margin-top: 3%;
}
.index_jirenhuanbao_news_fb_li2{
    font-size: 0;
    text-align: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.index_jirenhuanbao_news_fb_li2_bntl,.index_jirenhuanbao_news_fb_li2_bntr{
    display: inline-block;
    width: 46px;
    height: 46px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background:#fff url(../images/img/index_news_btnl.png) no-repeat center;
    background-size: 20px;
}
.index_jirenhuanbao_news_fb_li2_bntl.swiper-button-disabled,.index_jirenhuanbao_news_fb_li2_bntr.swiper-button-disabled{
    opacity: .8;
}
.index_jirenhuanbao_news_fb_li2_bntr{
    background:#fff url(../images/img/index_news_btnr.png) no-repeat center;
    background-size: 20px;
}
.index_jirenhuanbao_news_fb_li2_url{
    width: 80px;
    height: 46px;
    border-radius: 3px;
    background: #fff;
    margin: 0 10px;
    position: relative;
}
.index_jirenhuanbao_news_fb_li2_bntl:hover,.index_jirenhuanbao_news_fb_li2_bntr:hover{
    background:#0247a6 url(../images/img/index_news_btnl_b.png) no-repeat center;
    background-size: 20px;
}
.index_jirenhuanbao_news_fb_li2_bntr:hover{
    background:#0247a6 url(../images/img/index_news_btnr_b.png) no-repeat center;
    background-size: 20px;
}
.index_jirenhuanbao_news_fb_li2_url{
    -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_jirenhuanbao_news_fb_li2_url a{
    display: block;
    width: 100%;
    height: 100%;
}
.index_jirenhuanbao_news_fb_li2_url_1::before,.index_jirenhuanbao_news_fb_li2_url_1::after,.index_jirenhuanbao_news_fb_li2_url_2::before,.index_jirenhuanbao_news_fb_li2_url_2::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #666;
    -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%,-50%);
    -moz-transform: translateX(-50%,-50%);
    -ms-transform: translateX(-50%,-50%);
    -o-transform: translateX(-50%,-50%);
    transform: translate(-50%,-50%);
}
.index_jirenhuanbao_news_fb_li2_url_1::before{
    margin-left: -4px;
    margin-top: -4px;
}
.index_jirenhuanbao_news_fb_li2_url_1::after{
    margin-left: 4px;
    margin-top: -4px;
}
.index_jirenhuanbao_news_fb_li2_url_2::before{
    margin-left: -4px;
    margin-top: 4px;
}
.index_jirenhuanbao_news_fb_li2_url_2::after{
    margin-left: 4px;
    margin-top: 4px;
}
.index_jirenhuanbao_news_fb_li2_url:hover{
    background: #0247a6;
}
.index_jirenhuanbao_news_fb_li2_url:hover .index_jirenhuanbao_news_fb_li2_url_1::before,.index_jirenhuanbao_news_fb_li2_url:hover .index_jirenhuanbao_news_fb_li2_url_1::after,.index_jirenhuanbao_news_fb_li2_url:hover .index_jirenhuanbao_news_fb_li2_url_2::before,.index_jirenhuanbao_news_fb_li2_url:hover .index_jirenhuanbao_news_fb_li2_url_2::after{
    background: #fff;
}
@media(max-width:768px){
    .index_jirenhuanbao_news{
        padding: 30px 0;
    }
    .index_jirenhuanbao_news_fc{
        margin: 15px 0;
    }
    .index_jirenhuanbao_news_fb1{
        margin-top: 20px;
    }
}
@media(max-width:468px){
    .index_jirenhuanbao_news_fc ul li{
        margin:3px;
        width: 95px;
    }
    .index_jirenhuanbao_news_fc ul li a{
        font-size: 16px;
    }
    .index_jirenhuanbao_news_fb_li_fc{
        margin: 0 0 10px;
    }
    .index_jirenhuanbao_news_fb_nnn li a{
        padding: 15px;
    }
    .index_jirenhuanbao_news_fb_li_fc h3{
        font-size: 17px;
    }
}



/*公司简介*/
.index_jiren_jianjie{
    padding: 4% 0;
}
.index_jiren_jianjie_con{
    overflow: hidden;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_jiren_jianjie_fl{
    width: 45%;
}
.index_jiren_jianjie_fl_ft_www{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_jiren_jianjie_fl_ft_www .img{
    margin-right: 5%;
}
.index_jiren_jianjie_fl_ft{
    font-size: 2rem;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
}
.index_jiren_jianjie_fl_fc{
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin: 7% 0 8%;
    text-align: justify;
}
.index_jiren_jianjie_fl_fb{
    font-size: 0;
    display: inline-block;
}
.index_jiren_jianjie_fl_fb span.wenzi{
    font-size: 16px;
    line-height: 2;
    color: #666;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fl_fb span.fnagkuai{
    width: 18px;
    height: 18px;
    background: #0247a6;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fl_fb span.fnagkuai::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -5px;
    -webkit-transform: rotate(-135deg) translate(-50%,-50%);
    -moz-transform: rotate(-135deg) translate(-50%,-50%);
    -ms-transform: rotate(-135deg) translate(-50%,-50%);
    -o-transform: rotate(-135deg) translate(-50%,-50%);
    transform: rotate(-135deg) translate(-50%,-50%);
}
.index_jiren_jianjie_fl_fb:hover span.wenzi{
    color: #0247a6;
}
.index_jiren_jianjie_fl_fb:hover span.fnagkuai{
    margin-left: 20px;
}
.index_jiren_jianjie_fr{
    width: 50%;
}
.index_jiren_jianjie_fr ul{
    font-size: 0;
}
.index_jiren_jianjie_fr li{
    width: 48%;
    margin-right: 4%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    border: 1px solid #eee;
    padding: 4%;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fr li:nth-child(2n){
    margin-right: 0;
}
.index_jiren_jianjie_fr li:nth-child(n+3){
    margin-top: 4%;
}
.index_jiren_jianjie_fr li .img{
    width: 60px;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
}
.index_jiren_jianjie_fr li .img img{
    max-width: 100%;
    position: relative;
    top: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fr li h3{
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin: 10px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fr li h4{
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.index_jiren_jianjie_fr li:hover{
    background: #0247a6;
}
.index_jiren_jianjie_fr li:hover .img img{
    top: -60px;
}
.index_jiren_jianjie_fr li:hover h3{
    color: #fff;
}
.index_jiren_jianjie_fr li:hover h4{
    color: #fff;
}
@media(max-width:1080px){
    .index_jiren_jianjie_fr li h3{
        font-size: 18px;
    }
}
@media(max-width:991px){
    .index_jiren_jianjie_fl{
        width: 100%;
    }
    .index_jiren_jianjie_fl_fc{
        margin: 10px 0;
    }
    .index_jiren_jianjie_fr{
        width: 100%;
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .index_jiren_jianjie{
        padding: 25px 0;
    }
    .index_jiren_jianjie_fl_ft{
        font-size: 22px;
    }
    .index_jiren_jianjie_fl_ft_www .img{
        margin-right: 15px;
    }
    .index_jiren_jianjie_fl_ft_www .img img{
        width: 60px;
    }
}
@media(max-width:468px){
    .index_jiren_jianjie_fl_fc{
        font-size: 15px;
    }
    .index_jiren_jianjie_fl_fb span.wenzi{
        font-size: 15px;
    }
    .index_jiren_jianjie_fr li h3{
        font-size: 17px;
    }
    .index_jiren_jianjie_fr li h4{
        font-size: 15px;
    }
    .index_jiren_jianjie_fr li{
        width: 100%;
        margin: 0;
        padding: 15px;
    }
    .index_jiren_jianjie_fr li:nth-child(n+2){
        margin-top: 15px;
    }
}
/*友情链接*/
.index_jiren_links{
    background: #fff;
    padding: 15px 0;
}
.index_jiren_links_fl{
    font-size: 16px;
    line-height: 35px;
    color: #333;
    width: 90px;
    position: relative;
    z-index: 5;
}
.index_jiren_links_fr{
    width: 100%;
    padding-left: 90px;
    margin-left: -90px;
}
.index_jiren_links_fr a{
    font-size: 16px;
    line-height: 35px;
    color: #333;
    margin:0 3px;
}
/*底部*/
.pc_footer1{
    padding: 30px 0;
    background: #161616;
}
.pc_footer1_fl{
    width: 65%;
}
.pc_footer1_fl_ft ul{
    font-size: 0;
}
.pc_footer1_fl_ft li{
    display: inline-block;
    margin:2px 8px;
}
.pc_footer1_fl_ft li:nth-child(1){
    margin-left: 0;
}
.pc_footer1_fl_ft li a{
    display: block;
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,.8);
}
.pc_footer1_fl_ft li a:hover{
    color: rgba(255,255,255,1);
}
.pc_footer1_fl_fb{
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,.8);
    margin-top: 10px;
}
.pc_footer1_fl_fb a{
    color: rgba(255,255,255,.8);
}
.pc_footer1_fl_fb a:hover{
    color: rgba(255,255,255,1);
}
.pc_footer1_fl_fb img{
    max-height: 50px;
}
.pc_footer1_fr{
    max-width: 30%;
    text-align: right;
}
.pc_footer1_fr_ft{
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
}
.pc_footer1_fr_fb {
    margin-top: 10px;
}
.pc_footer1_fr_fb a{
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,.8);
    margin: 0 5px;
}
.pc_footer1_fr_fb a:hover{
    color: rgba(255,255,255,1);
}
.pc_footer1_fr2{
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,.8);
    display: none;
}
.pc_footer1_fr2 a{
    color: rgba(255,255,255,.8);
}
.pc_footer1_fr2 img{
    max-height: 55px;
}
.pc_footer1_fr2 a:hover{
    color: rgba(255,255,255,1);
}
@media(max-width:768px){
    .pc_footer1{
        padding: 20px 0;
    }
    .pc_footer1_fl{
        display: none;
    }
    .pc_footer1_fr{
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    .pc_footer1_fr_ft{
        font-size: 28px;
    }
    .pc_footer1_fr2{
        display: block;
    }
}






/*内页图集*/
.ny_danyerongyuzizhi ul{
    font-size: 0;
}
.ny_danyerongyuzizhi li{
    width: 32%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: middle;
}
.ny_danyerongyuzizhi_nn{
    align-items: center;
    width: 100%;
    height: 100%;
}
.ny_danyerongyuzizhi li:nth-child(3n){
    margin-right: 0;
}
.ny_danyerongyuzizhi li:nth-child(n+4){
    margin-top: 2%;
}
.ny_danyerongyuzizhi li .img{
    border: 1px solid #eee;
}
.ny_danyerongyuzizhi li .img img{
    width: 100%;
}
@media(max-width:768px){
    .ny_danyerongyuzizhi li{
        width: 49%;
    }
    .ny_danyerongyuzizhi li:nth-child(3n){
        margin-right: 2%;
    }
    .ny_danyerongyuzizhi li:nth-child(2n){
        margin-right: 0;
    }
    .ny_danyerongyuzizhi li:nth-child(n+3){
        margin-top: 2%;
    }
}













