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

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: 1300px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1300px;
	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_1{
    font-size: 14px;
    line-height: 40px;
    color: #777;
    background-color: #f3f3f3;
}
.pc_header_1_fr a{
    color: #777;
}
.pc_header_1_fr a:hover{
    color: #0d207a;
}
.pc_header_3{
    background: #0d207a;
}
#pc_header {
	height: 100px;
	
	background: #fff;
}

.pc_header_2_con{
    overflow: hidden;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.pc_header_2_fl{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    width: 65%;
}
.pc_logo {
    max-width: 30%;
	line-height: 100px;
}

.pc_logo img {
	max-width: 100%;
}
.pc_logo_you_wenzi{
    width: 70%;
    padding-left:20px;
    margin-top: 20px;
    letter-spacing: 1px;
}
.pc_logo_you_wenzi h3{
    font-size: 21px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.pc_logo_you_wenzi h4{
    font-size: 19px;
    line-height: 1.5;
    color: #333;
}
.pc_header_2_fr{
    max-width: 32%;
    padding-left: 45px;
    position: relative;
}
.pc_header_2_fr::before{
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    background:#0d207a url(../images/img/top_dianhua.png) no-repeat center;
    background-size: 18px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pc_header_2_fr h3{
    font-size: 17px;
    line-height: 1.4;
    color: #333;
    letter-spacing: 1px;
    display: none;
}
.pc_header_2_fr h4{
    font-size: 24px;
    line-height:1.3;
    color: #333;
    font-weight: bold;
}


.pc_nav {
	width: 100%;
}

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

.pc_nav>ul>li>a {
	font-size: 16px;
	line-height: 60px;
	color: #fff;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 180px;
	left: 50%;
	top: 70px;
	background: #fff;
	border-radius: 5px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%,20px);
	-moz-transform: translate(-50%,20px);
	-ms-transform: translate(-50%,20px);
	-o-transform: translate(-50%,20px);
	transform: translate(-50%,20px);
	-webkit-transition: all .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: 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>li:hover>a,.pc_nav>ul>li.active>a{
	background: #f50005;
}

.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: #0d207a;
	color: #fff;
}

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

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

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

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

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

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

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

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

.pc_sousuo2 .pc_sousuo_con_shuru::placeholder {
	color: rgba(255, 255, 255, 1);
}
@media(max-width:1200px){
    .pc_logo_you_wenzi h3{
        font-size: 20px;
    }
    .pc_logo_you_wenzi h4{
        font-size: 18px;
    }
    .pc_header_2_fr h4{
        font-size: 22px;
    }
}
/*首页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: 5% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 12px;
	height: 12px;
	background: #0d207a;
	border-radius: 50%;
	opacity: 1;
	margin: 0 5px !important;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	background: #0d207a;
	width: 35px;
	border-radius: 25px;
}

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

	.index_banner_yuandian span {
		width: 10px;
		height: 10px;
		margin: 0 3px !important;
	}
	.index_banner_yuandian span.swiper-pagination-bullet-active{
		width: 25px;
	}
}
/*首页热搜词*/
.index_zuoyan_resouci{
    border-bottom: 1px solid #eee;
}
.index_zuoyan_resouci_fl{
    font-size: 16px;
    line-height: 70px;
    color: #666;
    width: 100%;
    padding-right: 260px;
    margin-right: -260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_zuoyan_resouci_fl a{
    color: #666;
    margin: 0 6px;
}
.index_zuoyan_resouci_fl a:hover{
    color: #0d207a;
}

.index_zuoyan_resouci_fr{
    width: 220px;
    border-radius: 25px;
    overflow: hidden;
    margin-top: 15px;
    background: #0d207a;
    position: relative;
}
.index_remensousuo_fr_shuru{
    outline: none;
    line-height: 40px;
    width: 36px;
    background: none;
    border:0;
    background: #0662af;
    font-size: 13px;
    color: #fff;
    float: left;
}
.index_remensousuo_fr_tijiao{
    width: 50px;
    height: 40px;
    background: url(../images/nav_sousuo.png) no-repeat center;
    background-size: 18px;
    border: 0;
    outline: none;
    position: relative;
}
.index_remensousuo_fr_tijiao:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: #fff;
}
.index_remensousuo_fr_shuru{
    padding-left:25px;
    line-height: 40px;
    width:calc(100% - 50px);
    background: none;
    border:0;
    outline: none;
    font-size: 14px;
    color: #fff;
    float: left;
}

.index_remensousuo_fr_shuru:-webkit-autofill {
    -webkit-text-fill-color:#fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.index_remensousuo_fr_shuru::placeholder {
    color: #fff;
}
@media(max-width:991px){
    .index_zuoyan_resouci{
        display: none;
    }
}

/*产品中心*/
.index_zuoyan_product{
    padding: 4% 0;
}
.index_zuoyan_product_ft{
    text-align: center;
    font-size: 0;
    overflow: hidden;
}
.index_zuoyan_product_ft h3{
    position: relative;
}
.index_zuoyan_product_ft h3 span{
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #0d207a;
    font-weight: bold;
    padding:0 2rem;
    position: relative;
    z-index: 5;
    /*background: #fff;*/
    position: relative;
}
.index_zuoyan_product_ft h3 .zuoyuan,.index_zuoyan_product_ft h3 .youyuan{
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #0d207a;
    margin-top: -4px;
}
.index_zuoyan_product_ft h3 .zuoyuan{
    left: 0;
}
.index_zuoyan_product_ft h3 .youyuan{
    right: 0;
}
.index_zuoyan_product_ft h3 .zuoyuan .xiantiao,.index_zuoyan_product_ft h3 .youyuan .xiantiao{
    position: absolute;
    top:50%;
    width: 1500px;
    height: 1px;
    background: #ddd;
    margin-top: -1px;
    z-index: 2;
}
.index_zuoyan_product_ft h3 .zuoyuan .xiantiao{
    right: 8px;
}
.index_zuoyan_product_ft h3 .youyuan .xiantiao{
    left: 8px;
}

.index_zuoyan_product_ft h4{
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}
.index_zuoyan_product_fb{
    margin-top: 3%;
    overflow: hidden;
}
.index_zuoyan_product_fb_fl{
    width: 270px;
    background: #0d207a;
    position: relative;
    z-index: 5;
    padding: 15px;
}
.index_zuoyan_product_fb_fl_con{
    background: #fff;
    height: 100%;
}
.index_zuoyan_product_fb_fl_ft{
    text-align: center;
    background: #0d207a;
    padding-bottom: 9%;
}
.index_zuoyan_product_fb_fl_ft h3{
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
}
.index_zuoyan_product_fb_fl_ft h4{
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,.8);
}
.index_zuoyan_product_fb_fl_fb{
    background: #fff;
    padding:11% 15px;
}
.index_zuoyan_product_fb_fl_fb li{
    background: #0d207a;
    border-radius: 20px;
    margin-top: 11%;
    -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_zuoyan_product_fb_fl_fb li:nth-child(1){
    margin-top: 0;
}
.index_zuoyan_product_fb_fl_fb li a{
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    display: block;
    padding-left: 35px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.index_zuoyan_product_fb_fl_fb li a::before{
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 6px;
    height: 2px;
    background: #fff;
    
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.index_zuoyan_product_fb_fl_fb li:hover{
    background: #f50005;
}


.index_zuoyan_product_fb_fr{
    width: 97%;
    padding-left: 270px;
    margin-left: -270px;
}
.index_zuoyan_product_fb_fr ul{
    overflow: hidden;
}
.index_zuoyan_product_fb_fr li{
    width: 32%;
    margin-right: 2%;
    float: left;
    text-align: center;
}
.index_zuoyan_product_fb_fr li:nth-child(3n){
    margin-right: 0;
}
.index_zuoyan_product_fb_fr li:nth-child(n+4){
    margin-top: 2%;
}
.index_zuoyan_product_fb_fr li .img {
    border: 1px solid #ddd;
    overflow: hidden;
}
.index_zuoyan_product_fb_fr li .img img{
    width: 100%;
    -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_zuoyan_product_fb_fr li .wz{
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    margin-top: 5%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -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_zuoyan_product_fb_fr li:hover .img img{
    transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}
.index_zuoyan_product_fb_fr li:hover .wz{
    color: #0d207a;
}

@media(max-width:991px){
    .index_zuoyan_product_ft h3 span{
        font-size: 26px;
    }
    
    .index_zuoyan_product_fb_fl{
        width: 100%;
        padding: 15px;
    }
    .index_zuoyan_product_fb_fl_ft{
        padding-bottom: 15px;
    }
    .index_zuoyan_product_fb_fl_ft h3{
        font-size: 20px;
    }
    .index_zuoyan_product_fb_fl_fb{
        padding: 15px;
    }
    .index_zuoyan_product_fb_fl_fb li{
        margin-top: 15px;
    }
    
    .index_zuoyan_product_fb_fr{
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .index_zuoyan_product{
        padding: 25px 0;
    }
    .index_zuoyan_product_ft h3 span{
        padding: 0 20px;
        font-size: 24px;
    }
    .index_zuoyan_product_ft h4{
        font-size: 16px;
        margin-top: 5px;
    }
    .index_zuoyan_product_fb{
        margin-top: 15px;
    }
    
    .index_zuoyan_product_fb_fr li{
        width: 49%;
    }
    .index_zuoyan_product_fb_fr li:nth-child(3n){
        margin-right: 2%;
    }
    .index_zuoyan_product_fb_fr li:nth-child(2n){
        margin-right: 0;
    }
    .index_zuoyan_product_fb_fr li:nth-child(n+3){
        margin-top: 15px;
    }
    .index_zuoyan_product_fb_fr li:nth-child(n+9){
        display: none;
    }
}
@media(max-width:468px){
    .index_zuoyan_product_fb_fr li .wz{
        font-size: 15px;
        margin-top: 10px;
    }
    .index_zuoyan_product_fb_fr li:nth-child(n+3){
        margin-top: 10px;
    }
}
/*横图*/
.index_zuoyan_hengtu{
    /*background: #0d207a;*/
    background: url(../images/img/index_hengtu_bj.jpg) no-repeat center;
    background-size: cover;
    padding: 4% 0;
    position: relative;
}
.index_zuoyan_hengtu::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0d207a;
    opacity: .8;
    z-index: 2;
}
.index_zuoyan_hengtu .index_zuoyan_hengtu_con{
    position: relative;
    z-index: 5;
}
.index_zuoyan_hengtu_con{
    overflow: hidden;
}
.index_zuoyan_hengtu_fl{
    width: 58%;
}
.index_zuoyan_hengtu_fl_ft{
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
}

.index_zuoyan_hengtu_fl_fb{
    margin-top: 6%;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid #fff;
}
.index_zuoyan_hengtu_fl_fb_fl{
    margin-left: 7%;
    width: 70%;
    font-size: 0;
    line-height: 0;
}
.index_zuoyan_hengtu_fl_fb_fl span.wz1{
    display: inline-block;
    font-size: 1.2rem;
    line-height: 50px;
    color: #fff;
    vertical-align: middle;
    padding-left: 40px;
    background: url(../images/img/index_hengtudianhua.png) no-repeat left center;
    background-size: 28px;
}
.index_zuoyan_hengtu_fl_fb_fl span.wz2{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    vertical-align: middle;
}
.index_zuoyan_hengtu_fl_fb_fr{
    width: 23%;
    display: block;
    background: #fff;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #0d207a;
    border-radius: 25px 0 0 25px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
@media(max-width:991px){
    .index_zuoyan_hengtu_fl{
        width: 100%;
    }
    .index_zuoyan_hengtu_fl_ft{
        font-size: 18px;
    }
    .index_zuoyan_hengtu_fl_fb{
        margin-top: 25px;
    }
    .index_zuoyan_hengtu_fl_fb_fl span.wz1{
        font-size: 17px;
        background-size: 22px;
        padding-left: 30px;
    }
    .index_zuoyan_hengtu_fl_fb_fl span.wz2{
        font-size: 22px;
    }
    .index_zuoyan_hengtu_fl_fb_fr{
        font-size: 17px;
    }
}
@media(max-width:768px){
    .index_zuoyan_hengtu{
        padding: 25px 0;
    }
    .index_zuoyan_hengtu_fl_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_zuoyan_hengtu_fl_fb_fl{
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .index_zuoyan_hengtu_fl_fb_fr{
        display: none;
    }
    .index_zuoyan_hengtu_fl_fb_fl span.wz1{
        font-size: 16px;
        background-size: 18px;
        padding-left: 25px;
    }
    .index_zuoyan_hengtu_fl_fb_fl span.wz2{
        font-size: 18px;
    }
}
/*关于我们*/
.index_zuoyan_about{
    padding: 4% 0;
}
.index_zuoyan_about_fb{
    margin-top: 4%;
    overflow: hidden;
}
.index_zuoyan_about_fb_fl{
    width: 48%;
}
.index_zuoyan_about_fb_fl_ft{
    font-size: 1.4rem;
    line-height: 1.2;
    color: #333;
    padding-bottom: 5%;
    position: relative;
}
.index_zuoyan_about_fb_fl_ft::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width:3rem;
    height: 4px;
    background: #0d207a;
}
.index_zuoyan_about_fb_fl_fc{
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin: 7% 0;
    /*text-indent: 2em;*/
}
.index_zuoyan_about_fb_fl_fb{
    width: 140px;
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 40px;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 25px;
    -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_zuoyan_about_fb_fl_fb:hover{
    background: #0d207a;
    color: #fff;
    border-color: #0d207a;
}
.index_zuoyan_about_fb_fr{
    width: 46%;
    position: relative;
}
.index_zuoyan_about_fb_fr::before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: #0d207a;
}
.index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr{
    position: absolute;
    z-index: 5;
    left: 0;
    width: 100%;
    top:50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
   
}
.index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr .wz{
    font-size: 1.4rem;
    line-height: 2;
    color: #fff;
    padding-left: 40%;
    text-align: center;
    margin-bottom: 3%;
}
.index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr .img{
    margin-top: 0;
    overflow: hidden;
    cursor: pointer;
}
.index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr .img img{
    width: 100%;
    -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_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr .img:hover img{
    transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}
@media(max-width:991px){
    .index_zuoyan_about_fb{
        -webkit-flex-direction: column-reverse;
        -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -o-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .index_zuoyan_about_fb_fl{
        width: 100%;
        margin-top: 25px;
    }
    .index_zuoyan_about_fb_fl_ft{
        font-size: 20px;
        padding-bottom: 15px;
    }
    .index_zuoyan_about_fb_fl_ft::before{
        width:45px;
    }
    .index_zuoyan_about_fb_fl_fc{
        margin: 15px 0;
    }
    .index_zuoyan_about_fb_fr{
        width: 100%;
    }
    .index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr{
        position: static;
        /*padding: 5% 0;*/
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .index_zuoyan_about_fb_fr .index_zuoyan_about_fb_fr_nr .wz{
        font-size: 20px;
        display: none;
    }
}
@media(max-width:768px){
    .index_zuoyan_about{
        padding: 25px 0;
    }
    .index_zuoyan_about_fb{
        margin-top: 15px;
    }
}
/*优势*/
.index_zuoyan_advantage{
    margin-top: 4%;
}
.index_zuoyan_advantage_fb{
    margin-top: 4%;
}
.index_zuoyan_advantage_fb li{
    overflow: hidden;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_zuoyan_advantage_fb li:nth-child(2n+1){
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.index_zuoyan_advantage_fb li:nth-child(n+2){
    margin-top: 4%;
}
.index_zuoyan_advantage_fb_fr{
    width: 48%;
    overflow: hidden;
    cursor: pointer;
}
.index_zuoyan_advantage_fb_fr img{
    width: 100%;
	-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_zuoyan_advantage_fb_fr:hover img{
	transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}
.index_zuoyan_advantage_fb_fl{
    width: 48%;
}
.index_zuoyan_advantage_fb_fl_li:nth-child(n+2){
    margin-top: 5%;
}
.index_zuoyan_advantage_fb_fl_li_ft{
    font-size: 1.3rem;
    line-height: 1.2;
    color: #0d207a;
    /*font-weight: bold;*/
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
.index_zuoyan_advantage_fb_fl_li_fb{
    font-size: 17px;
    line-height: 30px;
    color: #333;
    margin-top: 5%;
}
.index_zuoyan_advantage_fb_fl_li_fb p{
    padding-left:20px;
    position: relative;
}
.index_zuoyan_advantage_fb_fl_li_fb p::before{
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d207a;
}
@media(max-width:991px){
    .index_zuoyan_advantage_fb_fl_li_ft{
        font-size: 20px;
        padding-bottom: 10px;
    }
    .index_zuoyan_advantage_fb_fl_li_fb{
        font-size: 16px;
    }
}
@media(max-width:768px){
    .index_zuoyan_advantage{
        margin-top: 25px;
    }
    .index_zuoyan_advantage_fb{
        margin-top: 15px;
    }
    .index_zuoyan_advantage_fb_fl{
        width: 100%;
        margin-top: 15px;
    }
    .index_zuoyan_advantage_fb_fr{
        width: 100%;
    }
    .index_zuoyan_advantage_fb li:nth-child(n+2) {
        margin-top: 15px;
    }
    .index_zuoyan_advantage_fb_fl_li_fb{
        margin-top: 10px;
    }
    .index_zuoyan_advantage_fb_fl_li:nth-child(n+2){
        margin-top: 10px;
    }
}

/*6大优势*/
.index_zuoyan_liudayoushi{
    margin-top: 3%;
}
.index_zuoyan_liudayoushi_fb{
    margin-top: 4%;
    position: relative;
}
.index_zuoyan_liudayoushi_fb_nn{
    position: relative;
    padding: 2% 0;
}
.index_zuoyan_liudayoushi_fb_fl li,.index_zuoyan_liudayoushi_fb_fr li{
    position: relative;
    position: absolute;
    width: 28.3075%;
}
.index_zuoyan_liudayoushi_fb_fl li{
    left: 0;
}
.index_zuoyan_liudayoushi_fb_fr li{
    right: 0;
}
.index_zuoyan_liudayoushi_fb_fl li:nth-child(1),.index_zuoyan_liudayoushi_fb_fr li:nth-child(1){
    top: 0;
}
.index_zuoyan_liudayoushi_fb_fl li:nth-child(2),.index_zuoyan_liudayoushi_fb_fr li:nth-child(2){
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-top: 4%;
    top: 30.5%;
    height: 39%;
}
.index_zuoyan_liudayoushi_fb_fl li:nth-child(3),.index_zuoyan_liudayoushi_fb_fr li:nth-child(3){
    top: 77%;
}
.index_zuoyan_liudayoushi_fb_fl li .img,.index_zuoyan_liudayoushi_fb_fr li .img{
    width: 3.8rem;
    height: 3.8rem;
    font-size: 0;
    line-height: 3.8rem;
    text-align: center;
    background: #0d207a;
    border-radius: 50%;
    border: .4rem solid #e7e7e7;
    position: absolute;
    z-index: 10;
    top: 25%;
    -webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.index_zuoyan_liudayoushi_fb_fl li .img{
    right: -50%;
}
.index_zuoyan_liudayoushi_fb_fr li .img{
    left: -50%;
}
.index_zuoyan_liudayoushi_fb_fl li:nth-child(2) .img{
    right: -6%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.index_zuoyan_liudayoushi_fb_fr li:nth-child(2) .img{
    left: -6%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.index_zuoyan_liudayoushi_fb_fl li .img img,.index_zuoyan_liudayoushi_fb_fr li .img img{
    width: 40%;
}
.index_zuoyan_liudayoushi_fb_fl li .wz,.index_zuoyan_liudayoushi_fb_fr li .wz{
    width: 100%;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_ft,.index_zuoyan_liudayoushi_fb_fr li .wz_ft{
    position: relative;
    overflow: hidden;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_ft h3,.index_zuoyan_liudayoushi_fb_fr li .wz_ft h3{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_ft h3 span{
    margin-left: 3.1rem;
    background: #fff;
    display: block;
}
.index_zuoyan_liudayoushi_fb_fr li .wz_ft h3 span{
    margin-right: 3.1rem;
    text-align: right;
    background: #fff;
    display: block;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_ft h4,.index_zuoyan_liudayoushi_fb_fr li .wz_ft h4{
    width: 3.5rem;
    height: 3.5rem;
    border: 3px solid #0d207a;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #0d207a;
    font-weight: bold;
    text-align: center;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_ft h4 span,.index_zuoyan_liudayoushi_fb_fr li .wz_ft h4 span{
    display: block;
    content: '';
    width: 1.5rem;
    height: 3px;
    margin: 0 auto;
    background: #0d207a;
}
.index_zuoyan_liudayoushi_fb_fr li .wz_ft h4{
    float: right;
}
.index_zuoyan_liudayoushi_fb_fl li .wz_fb,.index_zuoyan_liudayoushi_fb_fr li .wz_fb{
    font-size:16px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
    padding-right: 10px;
    min-height: 3.2em;
}
.index_zuoyan_liudayoushi_fb_fr li .wz_fb{
    text-align: right;
    padding-left: 10px;
    padding-right: 0;
}
.index_zuoyan_liudayoushi_fb_fl li:nth-child(2) .wz_fb,.index_zuoyan_liudayoushi_fb_fr li:nth-child(2) .wz_fb{
    width: 70%;
}
.index_zuoyan_liudayoushi_fb_fr li:nth-child(2) .wz_fb{
    margin-left: 30%;
}
.index_zuoyan_liudayoushi_fc{
    position: relative;
    width: 43.385%;
    background: url(../images/img/index_liubianxing_bj.png) no-repeat center;
    background-size: 100% 100%;
    padding:3.423% 3%;
    margin: 0 auto;
}
.index_zuoyan_liudayoushi_fc img{
    width: 100%;
}
@media(max-width:991px){
    .index_zuoyan_liudayoushi_fc{
        display: none;
    }
    .index_zuoyan_liudayoushi_fb_nn{
        overflow: hidden;
        padding: 0;
    }
    .index_zuoyan_liudayoushi_fb_fl,.index_zuoyan_liudayoushi_fb_fr{
        width: 100%;
    }
    .index_zuoyan_liudayoushi_fb_fl li,.index_zuoyan_liudayoushi_fb_fr li{
        position: static;
        width: 100%;
    }
    .index_zuoyan_liudayoushi_fb_fl li:nth-child(2), .index_zuoyan_liudayoushi_fb_fr li:nth-child(2){
        height: auto;
        padding: 0;
        border: 0;
    }
    .index_zuoyan_liudayoushi_fb_fl li:nth-child(n+2),.index_zuoyan_liudayoushi_fb_fr li:nth-child(n+1){
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #ddd;
    }
    .index_zuoyan_liudayoushi_fb_fl li .img, .index_zuoyan_liudayoushi_fb_fr li .img{
        display: none;
    }
    .index_zuoyan_liudayoushi_fb_fl li:nth-child(2) .wz_fb, .index_zuoyan_liudayoushi_fb_fr li:nth-child(2) .wz_fb{
        width: 100%;
        margin-left: 0;
    }
    .index_zuoyan_liudayoushi_fb_fl li .wz_ft h3, .index_zuoyan_liudayoushi_fb_fr li .wz_ft h3{
        font-size: 18px;
    }
    .index_zuoyan_liudayoushi_fb_fl li .wz_ft h3 span{
        margin-left: 40px;
    }
    .index_zuoyan_liudayoushi_fb_fr li .wz_ft h3 span{
        margin-right: 0;
        margin-left: 40px;
        text-align: left;
    }
    .index_zuoyan_liudayoushi_fb_fl li .wz_ft h4, .index_zuoyan_liudayoushi_fb_fr li .wz_ft h4{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .index_zuoyan_liudayoushi_fb_fl li .wz_ft h4 span, .index_zuoyan_liudayoushi_fb_fr li .wz_ft h4 span{
        width: 20px;
    }
    .index_zuoyan_liudayoushi_fb_fr li .wz_ft h4{
        float: left;
    }
    .index_zuoyan_liudayoushi_fb_fr li .wz_fb,.index_zuoyan_liudayoushi_fb_fl li .wz_fb{
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        padding: 0 10px;
    }
}
@media(max-width:768px){
    .index_zuoyan_liudayoushi{
        margin-top: 25px;
    }
    .index_zuoyan_liudayoushi_fb{
        margin-top: 15px;
    }
}

















/*服务流程*/
.index_zuoyan_procedure{
    padding: 4% 0;
    margin-top: 4%;
    /*background: #0d207a;*/
    background: url(../images/img/index_procedure_bj.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.index_zuoyan_procedure::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0d207a;
    opacity: .8;
    z-index: 2;
}
.index_zuoyan_procedure .index_zuoyan_procedure_con{
    position: relative;
    z-index: 5;
}
.index_zuoyan_procedure_ft h3 span{
    color: #fff;
}
.index_zuoyan_procedure_ft h3 .zuoyuan, .index_zuoyan_procedure_ft h3 .youyuan{
    border-color: #fff;
}
.index_zuoyan_procedure_ft h3 .zuoyuan .xiantiao, .index_zuoyan_procedure_ft h3 .youyuan .xiantiao{
    background: #fff;
    opacity: .5;
}
.index_zuoyan_procedure_ft h4{
    color: #fff;
}
.index_zuoyan_procedure_fb{
    margin-top: 4%;
}
.index_zuoyan_procedure_fb ul{
    overflow: hidden;
}
.index_zuoyan_procedure_fb li{
    width: 15.41666666%;
    float: left;
    margin-right: 1.5%;
    text-align: center;
    background: url(../images/img/index_liuchengkuang.png) no-repeat center;
    background-size: 100% 100%;
    padding: 3% 2.5% 3% 1%;
    cursor: pointer;
}
.index_zuoyan_procedure_fb li:nth-child(6n){
    margin-right: 0;
}
.index_zuoyan_procedure_fb li .img{
    max-width: 60px;
    margin: 0 auto;
    line-height: 60px;
}
.index_zuoyan_procedure_fb li .img img{
    width: 100%;
	-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_zuoyan_procedure_fb li .wz{
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin-top: 15px;
}
.index_zuoyan_procedure_fb li:hover .img img{
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
@media(max-width:991px){
    .index_zuoyan_procedure_fb li{
        width: 32%;
        margin-right: 2%;
        padding: 3% 4.5% 3% 1%;
    }
    .index_zuoyan_procedure_fb li:nth-child(3n){
        margin-right: 0;
    }
    .index_zuoyan_procedure_fb li:nth-child(n+4){
        margin-top: 2%;
    }
}
@media(max-width:768px){
    .index_zuoyan_procedure{
        padding: 25px 0;
        margin-top: 25px;
    }
    .index_zuoyan_procedure_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_zuoyan_procedure_fb li{
        width: 49%;
        margin-right: 2%;
        padding: 5% 5.5% 5% 1%;
    }
    .index_zuoyan_procedure_fb li:nth-child(3n){
        margin-right: 2%!important;
    }
    .index_zuoyan_procedure_fb li:nth-child(2n){
        margin-right: 0!important;
    }
    .index_zuoyan_procedure_fb li:nth-child(n+3){
        margin-top: 2%;
    }
    
    .index_zuoyan_procedure_fb li .img{
        max-width: 40px;
        line-height: 50px;
    }
}
/*新闻动态*/
.index_zuoyan_news{
    padding: 4% 0;
}
.index_zuoyan_news_fb{
    margin-top: 4%;
}
.index_zuoyan_news_fb_fl{
    width: 48%;
    box-shadow: 0 3px 10px 3px #ddd;
}
.index_zuoyan_news_fb_fr{
    width: 48%;
    box-shadow: 0 3px 10px 3px #ddd;
    position: relative;
}
.index_zuoyan_news_fb_fl_ft{
    border-bottom: 1px solid #e6e6e6;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_zuoyan_news_fb_fl_ft::before{
    content: '';
    display: block;
    width: 15%;
    height: 60px;
    background:#0d207a url(../images/img/index_xinwentb1.png) no-repeat center;
    background-size: 30px;
}
.index_zuoyan_news_fb_fr .index_zuoyan_news_fb_fl_ft::before{
    background:#0d207a url(../images/img/index_xinwentb2.png) no-repeat center;
    background-size: 30px;
}
.index_zuoyan_news_fb_fl_ft_fl{
    font-size: 1.2rem;
    line-height: 60px;
    color: #333;
    padding-left: 25px;
    width:85%;
    padding-right: 120px;
    margin-right: -120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index_zuoyan_news_fb_fl_ft_fr{
    width: 120px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    padding: 0 20px;
    border-left: 1px solid #e6e6e6;
    position: relative;
}
.index_zuoyan_news_fb_fl_fc{
    margin: 15px 15px 0;
}
.index_zuoyan_news_fb_fl_fc a{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_zuoyan_news_fb_fl_fc .img{
    width: 45%;
    overflow: hidden;
}
.index_zuoyan_news_fb_fl_fc .img img{
    width: 100%;
	-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_zuoyan_news_fb_fl_fc .img:hover img{
    -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.index_zuoyan_news_fb_fl_fc .wz{
    width:50%;
}
.index_zuoyan_news_fb_fl_fc .wz h3{
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-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_zuoyan_news_fb_fl_fc .wz h3:hover{
    color: #0d207a;
}
.index_zuoyan_news_fb_fl_fc .wz h4{
    font-size: 15px;
    line-height: 2;
    color: #666;
}
.index_zuoyan_news_fb_fl_fc .wz h5{
    font-size: 15px;
    line-height: 23px;
    color: #666;
    margin: 0;
    max-height: 69px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.index_zuoyan_news_fb_fl_fb{
    margin: 0 15px;
    padding: 15px 0;
}
.index_zuoyan_news_fb_fl_fb li{
    border-bottom: 1px dashed #ccc;
}
.index_zuoyan_news_fb_fl_fb li:last-child{
    border-bottom: 0;
}
.index_zuoyan_news_fb_fl_fb li h3{
    font-size: 16px;
    line-height: 50px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 90px;
    position: relative;
}
.index_zuoyan_news_fb_fl_fb li h3 span{
    display: block;
    width: 90px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 15px;
    line-height: 2;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.index_zuoyan_news_fb_fl_fb li:hover h3{
    color: #0d207a;
}
@media(max-width:991px){
    .index_zuoyan_news_fb_fl_ft_fl{
        font-size: 20px;
    }
    .index_zuoyan_news_fb_fl{
        width: 100%;
    }
    .index_zuoyan_news_fb_fr{
        width: 100%;
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .index_zuoyan_news{
        padding: 25px 0;
    }
    .index_zuoyan_news_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_zuoyan_news_fb_fl_ft_fr{
        padding: 0;
        width: 100px;
        font-size: 15px;
    }
    .index_zuoyan_news_fb_fl_ft_fl{
        font-size: 19px;
        padding-right: 100px;
        margin-right: -100px;
    }
    .index_zuoyan_news_fb_fr .index_zuoyan_news_fb_fl_ft::before,.index_zuoyan_news_fb_fl_ft::before{
        background-size: 25px;
    }
    .index_zuoyan_news_fb_fl_fc .img{
        width: 100%;
    }
    .index_zuoyan_news_fb_fl_fc .wz{
        width: 100%;
        margin-top: 10px;
    }
}
/*联系我们*/
.index_zuoyan_lianxiwomen{
    padding: 4% 0;
    /*background: #0d207a;*/
    background: url(../images/img/index_lianxiwomen_bj.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.index_zuoyan_lianxiwomen::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0d207a;
    opacity: .8;
    z-index: 2;
}
.index_zuoyan_lianxiwomen .index_zuoyan_lianxiwomen_con{
    position: relative;
    z-index: 5;
}

.index_zuoyan_lianxiwomen_fb{
    margin-top: 3%;
}
.index_zuoyan_lianxiwomen_fb ul{
    overflow: hidden;
}
.index_zuoyan_lianxiwomen_fb li{
    width: 32%;
    margin-right: 2%;
    text-align: center;
    float: left;
    background: #fff;
    padding:4% 2%;
    position: relative;
    cursor: pointer;
}
.index_zuoyan_lianxiwomen_fb li:nth-child(3n){
    margin-right: 0;
}
.index_zuoyan_lianxiwomen_fb li .img{
    max-width: 28px;
    margin: 0 auto;
    line-height: 50px;
    position: relative;
    z-index: 5;
}
.index_zuoyan_lianxiwomen_fb li .img img{
    width: 100%;
}
.index_zuoyan_lianxiwomen_fb li .img .img1{
    opacity: 1;
}
.index_zuoyan_lianxiwomen_fb li .img .img2{
    opacity: 0;
    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%);
}

.index_zuoyan_lianxiwomen_fb li .wz{
    margin-top: 10px;
    position: relative;
    z-index: 5;
}
.index_zuoyan_lianxiwomen_fb li .wz h3{
    font-size: 20px;
    line-height:1.3;
    color: #0d207a;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    -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_zuoyan_lianxiwomen_fb li .wz h3::before{
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #333;
    -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%);
}
.index_zuoyan_lianxiwomen_fb li .wz h4{
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    word-break: break-all;
}
.index_zuoyan_lianxiwomen_fb li::before{
    content: '';
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: #0d207a;
    -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: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.index_zuoyan_lianxiwomen_fb li:hover::before{
    width: 100%;
    height: 100%;
}
.index_zuoyan_lianxiwomen_fb li:hover .img .img2{
    opacity: 1;
}
.index_zuoyan_lianxiwomen_fb li:hover .img .img1{
    opacity: 0;
}
.index_zuoyan_lianxiwomen_fb li:hover .wz h3{
    color: #fff;
}
.index_zuoyan_lianxiwomen_fb li:hover .wz h3::before{
    background: #fff;
}
.index_zuoyan_lianxiwomen_fb li:hover .wz h4{
    color: #fff;
}
@media(max-width:768px){
    .index_zuoyan_lianxiwomen{
        padding: 25px 0;
    }
    .index_zuoyan_lianxiwomen_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_zuoyan_lianxiwomen_fb li{
        width: 100%;
        margin-right: 0;
        padding: 25px 10px;
    }
    .index_zuoyan_lianxiwomen_fb li:nth-child(n+2){
        margin-top: 15px;
    }
    .index_zuoyan_lianxiwomen_fb li .wz h3{
        font-size: 18px;
    }
}
/*友情链接*/
.index_zuoyan_links{
    background: #0d207a;
    font-size: 15px;
    line-height: 2;
    color: #fff;
    padding: 10px 0;
}
.index_zuoyan_links a{
    color: #fff;
    margin: 0 5px;
}
@media(max-width:991px){
    .index_zuoyan_links{
        display: none;
    }
}
/*底部*/
.footer_tongyong {
	padding:35px 0 15px;
	background: #222;
}
.footer_tongyong_con{
    overflow: hidden;
}
.footer_tongyong_fl{
    width: 68%;
}
.footer_tongyong_fl_ft ul{
    overflow: hidden;
}
.footer_tongyong_fl_ft li{
    float: left;
}
.footer_tongyong_fl_ft li a{
    font-size: 16px;
    display: block;
    line-height: 1.2;
    padding: 0 15px;
    margin: 5px 0;
    color: rgba(255,255,255,.7);
    border-left: 1px solid rgba(255,255,255,.7);
}
.footer_tongyong_fl_ft li a:hover{
    color: #fff;
}
.footer_tongyong_fl_ft li:nth-child(1) a{
    border-left:0;
    padding-left: 0;
}
.footer_tongyong_fl_fc{
    margin: 20px 0 15px;
    font-size: 16px;
    line-height: 2;
    color: rgba(255,255,255,.7);
}
.footer_tongyong_fl_fb{
    font-size: 16px;
    line-height: 2;
    color: rgba(255,255,255,.7);
}
.footer_tongyong_fl_fb a{
    color: rgba(255,255,255,.7);
}
.footer_tongyong_fr{
    width: 30%;
    /*max-width: 300px;*/
    max-width: 130px; 
}
.footer_tongyong_fr ul{
    overflow: hidden;
}
.footer_tongyong_fr li{
    background: #fff;
    text-align: center;
    padding: 10px;
    /*width: 46%;*/
    width: 100%;
    float: left;
    /*margin-right: 8%;*/
    margin-right: 0;
}
.footer_tongyong_fr li:nth-child(2n){
    margin-right: 0;
}
.footer_tongyong_fr li .img{
    width: 100%;
}
.footer_tongyong_fr li .img img{
    width: 100%;
}
.footer_tongyong_fr li .wz{
    font-size: 15px;
    line-height: 1.2;
    color: #666;
    margin-top: 10px;
}

@media(max-width:991px){
    .footer_tongyong{
        padding-top: 25px;
    }
    .footer_tongyong_fl_ft{
        display: none;
    }
    .footer_tongyong_fl_fc{
        margin-top: 0;
    }
    .footer_tongyong_fl{
        width: 100%;
        float: none;
        margin-top: 15px;
    }
    .footer_tongyong_fl_fc{
        margin-bottom: 0;
    }
    .footer_tongyong_fr{
        width: 100%;
        float: none;
    }
}
@media(max-width:468px){
    .footer_tongyong_fr{
        max-width: 100%;
    }
    .footer_tongyong_fr li{
        max-width: 150px;
    }
}







/*内页导航*/
.asny_nav {
	margin: 3% 0;
}

.asny_nav ul {
	font-size: 0;
	text-align: center;
}

.asny_nav ul>li {
	display: inline-block;
	/*min-width: 150px;*/
	width: 16.666666%;
	margin: 5px 0;
	position: relative;
}

.asny_nav ul>li>a {
	font-size: 17px;
	line-height: 60px;
	color: #4f4f52;
	display: block;
	padding: 0 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #f7f7f7;
	border-right: 1px solid #dedede;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
}

.asny_nav ul>li:nth-child(6n)>a {
	border-right: 1px solid rgba(0, 0, 0, 0);
}

.asny_nav ul>li:last-child>a {
	border-right: 1px solid rgba(0, 0, 0, 0);
}

.asny_nav ul>li>a.active {
	background: #0d207a;
	color: #fff;
	border-color: #0d207a;
}

.asny_nav ul>li:hover>a {
	background: #0d207a;
	color: #fff;
	border-color: #0d207a;
}

.asny_nav_erji {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	width: 100%;
	background: #f7f7f7;
	display: none;
}

.asny_nav_erji_li a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	line-height: 45px;
	color: #818181;
	border-top: 1px dashed #ccc;
}

.asny_nav_erji_li a:hover {
	color: #0d207a;
}

.asny_nav_erji_li:nth-child(1) a {
	border-top: 0;
}

.asny_nav ul>li:hover .asny_nav_erji {
	display: block;
}

@media(max-width:1366px) {
	.asny_nav ul>li>a {
		line-height: 50px;
	}
}

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

/*联系我们*/
.lianxiwomen_a1_ft{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.lianxiwomen_a1_fb{
    margin-top: 3%;
}
.lianxiwomen_a1_fb ul{
    overflow: hidden;
}
.lianxiwomen_a1_fb li{
    width: 32%;
    margin-right: 2%;
    float: left;
    padding: 2%;
    border: 1px solid #E0E0E0;
}
.lianxiwomen_a1_fb li:nth-child(3n){
    margin-right: 0;
}
.lianxiwomen_a1_fb li h3{
    font-size: 1.2rem;
    line-height: 2;
    color: #0d207a;
    /*font-weight: bold;*/
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.lianxiwomen_a1_fb li h4{
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-top: 5%;
}
.lianxiwomen_a2{
    margin: 3% 0;
}

@media(max-width:991px){
    .lianxiwomen_a1_ft{
        font-size: 20px;
    }
    .lianxiwomen_a1{
        margin-top: 3%;
    }
    .lianxiwomen_a1_fb li h3{
        font-size: 18px;
    }
}
@media(max-width:768px){
    .lianxiwomen_a1{
        margin-top: 25px;
    }
    .lianxiwomen_a1_fb{
        margin-top: 15px;
    }
    .lianxiwomen_a1_fb li{
        width: 100%;
        padding: 15px;
        margin-bottom: 15px;
    }
    .lianxiwomen_a1_fb li:last-child{
        margin-bottom: 0;
    }
    .lianxiwomen_a1_fb li h4{
        margin-top: 15px;
    }
    .lianxiwomen_a2{
        margin: 25px 0;
    }
}
@media(max-width:468px){
    .lianxiwomen_a1_ft{
        font-size: 18px;
    }
}


.map-box{
    height:20rem;
}
.contact-map{
    height: 100%;
}

.amap-logo img{
    display: none;
}
.amap-copyright {
    opacity:0;
}

@media(max-width:768px){
    .map-box{
        height: 240px;
    }
}



/*公司简介*/
.ny_about_1_fb {
	overflow: hidden;
	-webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.ny_about_1_fb_fl {
	width: 48%;
	overflow: hidden;
}
.ny_about_1_fb_fl .img{
    overflow: hidden;
    cursor: pointer;
}
.ny_about_1_fb_fl img {
	width: 100%;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ny_about_1_fb_fl .img:hover img{
    -webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.ny_about_1_fb_fr {
	width: 48%;
}

.ny_about_1_fb_fr_ft {
	position: relative;
}

.ny_about_1_fb_fr_ft h3 {
	font-size: 2.2rem;
	line-height: 1.2;
	color: #333;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #0d207a;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.ny_about_1_fb_fr_ft h4 {
	font-size: 7rem;
	line-height: 1;
	font-family: 'Arial';
	font-weight: bold;
	color: transparent;
	text-align: right;
	-webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
}

.ny_about_1_fb_fr_fc {
	font-size: 16px;
	line-height: 1.8;
	color: #4c4c4c;
	margin-top: 4%;
}

.ny_about_2 {
	padding: 3% 0;
	background: #f7f8fa;
	margin-top: 3%;
}

.ny_about_2_ft h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #333;
}

.ny_about_2_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #666;
	margin-top: 1%;
}

.ny_about_2_fb {
	margin-top: 3%;
}

.ny_about_2_fb ul {
	overflow: hidden;
}

.ny_about_2_fb li {
	width: 23.5%;
	margin-right: 2%;
	float: left;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
}

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

.ny_about_2_fb li:nth-child(n+5) {
	margin-top: 2%;
}
.ny_about_2_fb li .img{
    overflow: hidden;
}
.ny_about_2_fb li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.ny_about_2_fb li:hover .img img{
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

@media(max-width:991px) {
	.ny_about_1 {
		margin-top: 3%;
	}

	.ny_about_1_fb_fr {
		width: 100%;
	}

	.ny_about_1_fb_fr_ft h3 {
		font-size: 22px;
		padding-bottom: 10px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 75px;
		text-align: left;
		text-indent: .8em;
	}

	.ny_about_1_fb_fr_fc {
		margin-top: 5px;
	}

	.ny_about_1_fb_fl {
		width: 100%;
		margin-top: 10px;
	}

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

	.ny_about_2_fb li {
		width: 49%;
	}

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

	.ny_about_2_fb li:nth-child(n+3) {
		margin-top: 2%;
	}
	.ny_about_2_ft h4{
	    font-size: 18px;
	}
}

@media(max-width:768px) {
	.ny_about_1 {
		margin-top: 25px;
	}

	.ny_about_2 {
		margin-top: 25px;
		padding: 25px 0;
	}

	.ny_about_2_ft h4 {
		font-size: 16px;
	}
}

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 7.6rem;
		text-indent: 0;
		text-align: right;
	}
}




/*合作客户*/
.index_zuoyan_cooperate {
	padding: 4% 0;
	/*background: #0d207a;*/
	background: url(../images/img/index_lianxiwomen_bj.jpg) no-repeat center;
	background-size: cover;
	position: relative;
}

.index_zuoyan_cooperate::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #0d207a;
	opacity: .8;
	z-index: 2;
}

.index_zuoyan_cooperate .index_zuoyan_cooperate_con {
	position: relative;
	z-index: 5;
}

.index_zuoyan_cooperate_fb {
	margin-top: 3%;
	position: relative;
}

.index_zuoyan_cooperate_fb_con {
	overflow: hidden;
	margin: 0 25px;
}

.index_zuoyan_cooperate_fb li{
	cursor: pointer;
	overflow: hidden;
	width: 20%;
}

.index_zuoyan_cooperate_fb li .img{
	overflow: hidden;
	margin:0 5%;
}

.index_zuoyan_cooperate_fb li .img img {
	width: 100%;
	-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_zuoyan_cooperate_fb li:hover .img img {
	transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
}
.index_zuoyan_cooperate_fb_btnl.swiper-button-disabled,
.index_zuoyan_cooperate_fb_btnr.swiper-button-disabled {
	opacity: .7;
}

.index_zuoyan_cooperate_fb_btnl,
.index_zuoyan_cooperate_fb_btnr {
	position: absolute;
	width: 16px;
	height: 16px;
	border-left: 3px solid #fff;
	border-top: 3px solid #fff;
	position: absolute;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	top: 50%;
	left: 0;
	margin: -8px 0;
	cursor: pointer;
}

.index_zuoyan_cooperate_fb_btnr {
	right: 0;
	left: auto;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	margin: -8px 0;
}
@media(max-width:991px) {
	.index_zuoyan_cooperate_fb li{
		width: 25%;
	}
}
@media(max-width:768px) {
	.index_zuoyan_cooperate {
		padding: 25px 0;
	}

	.index_zuoyan_cooperate_fb {
		margin-top: 15px;
	}

	.index_zuoyan_cooperate_fb li{
		width: 33.3333%;
	}
}
@media(max-width:468px) {
	.index_zuoyan_cooperate_fb li{
		width: 50%;
	}
}


/*合作客户*/
.ny_page_hezuokehu ul {
	overflow: hidden;
}

.ny_page_hezuokehu li {
	width: 23.5%;
	margin-right: 2%;
	float: left;
	text-align: center;
}

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

.ny_page_hezuokehu li:nth-child(n+5) {
	margin-top: 10px;
}

.ny_page_hezuokehu li .img {
	overflow: hidden;
	border: 1px solid #ddd;
}

.ny_page_hezuokehu li .img img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.ny_page_hezuokehu li .wz {
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 10px;
}

.ny_page_hezuokehu li:hover .img {
	border-color: #0d207a;
}

.ny_page_hezuokehu li:hover .img 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);
}

.ny_page_hezuokehu li:hover .wz {
	color: #0d207a;
}

@media(max-width:768px) {
	.ny_page_hezuokehu li {
		width: 49%;
	}

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

	.ny_page_hezuokehu li:nth-child(n+3) {
		margin-top: 10px;
	}
}








