/*初始化样式*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	border: 0;
	overflow-x: hidden;
}
img{
	-webkit-user-drag: none;
}
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: #0170a8;
}

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style-type: none;
}

select,
input,
img,
select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td {
	vertical-align: middle;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.clearboth {
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2 {
	font-weight: bold;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

p {
	margin: 0;
}

/*----- Common css ------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

/**/
.max1300 {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.page_con_zhuti {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

@media(max-width:1280px) {
	.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_header0{
    background: #0170a8;
    font-size: 15px;
    line-height: 40px;
    color: #fff;
    overflow: hidden;
}
.pc_header0 a{
    color: #fff;
}
.pc_header0 a:hover{
    color: #f38605;
}
.pc_header0_fr{
    overflow: hidden;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.pc_header0_fr_fl{
    width: 200px;
    height: 28px;
    background: #fff;
}
.pc_header0_fr_fr{
    margin-left: 1.5rem;
}
.pc_header0_fr_fr ul{
    overflow: hidden;
}
.pc_header0_fr_fr li{
    float: left;
}
.pc_header0_fr_fr li:nth-child(n+2){
    margin-left: 1.5rem;
}
#pc_header {
	width: 100%;
	z-index: 999;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#pc_header.on{
	box-shadow: 0 3px 3px rgba(0,0,0,.1);
	background: #eeeeee;
	position: fixed;
	top: 0;
	left: 0;
}

.pc_header_con {
	height: 75px;
	line-height: 75px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.pc_logo {
	width: 15%;
	max-width: 170px;
}

.pc_logo img {
	max-width: 100%;
}

.pc_nav {
	width: 81%;
	max-width: 980px;
	padding-right: 205px;
	margin-right: -205px;
}

.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: 75px;
	color: #333;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 180px;
	/*left: 50%;*/
	left: 0;
	top: 100%;
	background: rgba(1,112,168,.8);
	opacity: 0;
	padding: 5px 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-transform: translate(0, 20px);
	-moz-transform: translate(0, 20px);
	-ms-transform: translate(0, 20px);
	-o-transform: translate(0, 20px);
	transform: translate(0, 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 rgba(0, 0, 0, .05);
}

.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);*/
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
}

.pc_nav>ul>li:hover>a,.pc_nav>ul>li.active>a{
	color: #0170a8;
	font-weight: bold;
}

.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;
	display: none;
}

.pc_nav_erji_li a {
	font-size: 15px;
	line-height: 2;
	padding: 5px;
	color: #fff;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
}

.pc_nav_erji_li a:hover {
	color: #f38605;
}

.pc_nav>ul>li:after {
	content: '';
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	height: 10px;
	opacity: 0;
	top: 100%;
	display: none;
}

.pc_header0_fr_fl input {
	outline: none;
	line-height: 28px;
	width: 36px;
	background: none;
	border: 0;
	font-size: 13px;
	color: #666;
	float: left;
}

.pc_header0_fr_fl .pc_sousuo_con_tijiao {
	background: url(../images/img/hearder_sousuo_hui.png) no-repeat center;
	background-size: 16px;
	cursor: pointer;
	border-left: 1px solid #ddd;
}

.pc_header0_fr_fl .pc_sousuo_con_shuru {
	padding-left: 13px;
	line-height: 28px;
	width: calc(100% - 36px);
	background: none;
	border: 0;
	outline: none;
	font-size: 13px;
	color: #666;
	float: left;
}

.pc_header0_fr_fl .pc_sousuo_con_shuru::-webkit-autofill {
	-webkit-text-fill-color: #666 !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_header0_fr_fl .pc_sousuo_con_shuru::placeholder {
	color: #666;
}

.pc_nav_dianhua{
    font-size: 21px;
    line-height: 23px;
    color: #0170a8;
    font-weight: bold;
    padding-left: 36px;
    background: url(../images/img/top_header_phone.png) no-repeat left center;
    background-size: 26px;
    font-family: Arial;
}
@media(max-width:1280px){
    .pc_nav>ul>li>a{
        font-size: 16px;
    }
    .pc_nav_dianhua{
        font-size: 20px;
    }
}
@media(max-width:991px){
    .pc_header0{
        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: 5% !important;
	z-index: 99;
}

.index_banner_yuandian span {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	opacity: 1;
	margin: 0 6px !important;
	border: 3px solid #fff;
	background: none;
}

.index_banner_yuandian span.swiper-pagination-bullet-active {
	border-color: #0170a8;
}

@media(max-width:991px) {
	.index_banner {
		margin-top: 0;
	}
}

@media(max-width:768px) {
	.index_banner_yuandian {
		bottom: 15px !important;
	}

	.index_banner_yuandian span {
		width: 12px;
		height: 12px;
		margin: 0 3px !important;
		border: 2px solid #fff;;
	}
}

@media(max-width:468px) {
	.index_banner_yuandian {
		bottom: 10px !important;
	}

	.index_banner_yuandian span {
		width: 10px;
		height: 10px;
	}
}
/*搜索*/
.index_search{
    background: #fafafa;
}
.index_search_con{
    padding: 5% 0;
}
.index_search_ft{
    border: 1px solid #d9d9d9;
    border-radius: 100px;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
}
.index_search_ft_shuru_www{
    width:100%;
    padding-right: 70px;
    margin-right: -70px;
}
.index_search_ft_shuru{
    font-size:16px;
    line-height: 56px;
    color: #414446;
    border: 0;
    padding: 0 20px;
    background: none;
    outline: none;
    width: 100%;
}
.index_search_ft_shuru::-webkit-autofill {
	-webkit-text-fill-color: #aaa !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;
}
.index_search_ft_shuru::placeholder {
	color: #aaa;
}
.index_search_ft_tijiao{
    width: 70px;
    height: 56px;
    border: 0;
    background: url(../images/img/index_search_ico.png) no-repeat center;
    background-size: 25px;
    outline: none;
    position: relative;
    z-index: 10;
}
.index_search_fb{
    font-size: 16px;
    line-height: 1.5;
    color: #15719f;
    margin-top: 3.5%;
    text-align: center;
}
.index_search_fb_con{
    max-width: 520px;
    margin: 0 auto;
}
.index_search_fb a{
    color: #15719f;
    margin: 0 5px;
}
.index_search_fb a:hover{
    color: #f38605;
}
@media(max-width:768px){
    .index_search_con{
        padding: 30px 0;
    }
    .index_search_ft_shuru{
        font-size: 15px;
        line-height: 50px;
    }
    .index_search_ft_tijiao{
        height: 50px;
        background-size: 22px;
    }
    .index_search_fb{
        font-size: 15px;
        display: none;
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_search_con{
        padding: 25px 0;
    }
    .index_search_ft{
        border-radius: 30px;
    }
    .index_search_ft_shuru_www{
        padding-right: 60px;
        margin-right: -60px;
    }
    .index_search_ft_shuru{
        line-height: 45px;
    }
    .index_search_ft_tijiao{
        height: 45px;
        width: 60px;
        background-size: 20px;
    }
}
/*产品中心*/
.index_product{
    background: #fafafa;
}
.index_product_con{
    padding-bottom: 5%;
}
.index_product_fb{
    margin-top: 4%;
}
.index_product_fb_con{
    position: relative;
}
.index_product_fb_ul_www{
    overflow: hidden;
}
.index_product_fb_li{
    text-align: center;
}
.index_product_fb_li .img{
    position: relative;
    max-width: 114px;
    margin:0 auto;
    font-size: 0;
    line-height: 0;
}
.index_product_fb_li .img img{
    width: 100%;
    opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_product_fb_li .img .img2{
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
	-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_product_fb_li .wz{
    font-size: 16px;
    line-height: 1.5;
    color: #0170a8;
    margin-top:20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_product_fb_li:hover .img .img1{
    opacity: 0;
}
.index_product_fb_li:hover .img .img2{
    opacity: 1;
}
.index_product_fb_li:hover .wz{
    color: #666;
}
.index_product_fb_btnl,.index_product_fb_btnr{
    width: 30px;
    height: 30px;
    background-image: url(../images/img/index_product_btnl.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 950;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_product_fb_btnl.swiper-button-disabled,.index_product_fb_btnr.swiper-button-disabled{
    opacity: .5;
}
.index_product_fb_btnl{
    left: -40px;
}
.index_product_fb_btnl:hover{
    background-image: url(../images/img/index_product_btnl_h.png);
}
.index_product_fb_btnr{
    right: -40px;
    background-image: url(../images/img/index_product_btnr.png);
}
.index_product_fb_btnr:hover{
    background-image: url(../images/img/index_product_btnr_h.png);
}
@media(max-width:1500px){
    .index_product_fb_btnl,.index_product_fb_btnr{
        width: 28px;
        height: 28px;
    }
    .index_product_fb_btnl{
        left: -50px;
    }
    .index_product_fb_btnr{
        right: -50px;
    }
}
@media(max-width:1400px){
    .index_product_fb_con{
        margin: 0 10px;
    }
}
@media(max-width:1280px) {
    .index_product_fb_btnl{
        left: -45px;
    }
    .index_product_fb_btnr{
        right: -45px;
    }
    .index_product_fb_con{
        margin: 0 20px;
    }
    .index_product_fb_li .img{
        max-width: 100px;
    }
}
@media(max-width:991px){
    .index_product_fb_btnl,.index_product_fb_btnr{
		width: 23px;
		height: 23px;
	}

	.index_product_fb_btnl{
		left: -30px;
	}

	.index_product_fb_btnr{
		right: -30px;
	}
	
	.index_product_fb_con{
        margin: 0 15px;
    }
    .index_product_fb_li .wz{
        margin-top: 15px;
    }
}
@media(max-width:768px){
    .index_product_con{
        padding-bottom: 30px;
    }
    .index_product_fb{
        margin-top: 20px;
    }
    .index_product_fb_li .wz{
        margin-top: 10px;
    }
}
@media(max-width:468px){
    .index_product_con{
        padding-bottom: 25px;
    }
    .index_product_fb{
        margin-top: 15px;
    }
}

/*关于皓越*/
.index_about{
    background: #f1f1f1;
}
.index_about_con{
    padding: 5% 0;
}
.index_about_ft{
    text-align: center;
}
.index_about_ft h3{
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.index_about_ft h3 span {
	color: #0170a8;
}
.index_about_ft h4 {
	font-size: 18px;
	line-height: 1.5;
	color: #666;
	margin-top: 3px;
}
.index_about_fb{
    margin-top: 3.5%;
}
.index_about_fb_fl{
    width: 48%;
    border: 1px solid #dfdfdf;
    padding: 15px;
    position: relative;
}
.index_about_fb_fl_img{
    padding: 35% 0;
    height: 100%;
}
.index_about_fb_fr{
    width: 48%;
}
.index_about_fb_fr_ft{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-indent: 2em;
}

.index_about_fb_fr_fb{
    margin-top: 5%;
    overflow: hidden;
}
.index_about_fb_fr_fb a{
    font-size: 15px;
    line-height: 1.5;
    color: #999;
    float: left;
    padding: 8px 30px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_about_fb_fr_fb a:hover{
    background: #0170a8;
    border-color: #0170a8;
    color: #fff;
}

@media(max-width:991px){
    .index_about_ft h3{
        font-size: 24px;
    }
    .index_about_ft h4{
        font-size: 17px;
    }
    .index_about_fb_fl{
        width: 100%;
    }
    .index_about_fb_fr{
        width: 100%;
        margin-top: 3%;
    }
}
@media(max-width:768px){
    .index_about_con{
        padding: 30px 0;
    }
    .index_about_ft h3{
        font-size: 22px;
    }
    .index_about_ft h4{
        font-size: 16px;
    }
    .index_about_fb{
        margin-top: 15px;
    }
    .index_about_fb_fr{
        margin-top: 15px;
    }
    .index_about_fb_fr_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_about_con{
        padding: 25px 0;
    }
    .index_about_fb_fl{
        padding: 10px;
    }
    
}
/*应用案例*/
.index_case_con{
    padding: 5% 0;
}
.index_case_fb{
    margin-top: 3.5%;
}
.index_case_fb_con{
    overflow: hidden;
}
.index_case_fb li{
    border: 1px solid #dfdfdf;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
}
.index_case_fb li a{
    display: block;
    padding: 15px;
}
.index_case_fb li .img img{
    width: 100%;
}
.index_case_fb li .wz h3{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 15px;
}
@media(max-width:768px){
    .index_case_con{
        padding: 30px 0;
    }
    .index_case_fb{
        margin-top: 20px;
    }
}
@media(max-width:468px){
    .index_case_con{
        padding: 25px 0;
    }
    .index_case_fb{
        margin-top: 15px;
    }
    .index_case_fb li a{
        padding: 10px;
    }
    .index_case_fb li .wz h3{
        margin-top: 10px;
    }
}
/*新闻动态*/
.index_news{
    background: #f1f1f1;
}
.index_news_con{
    padding: 5% 0;
}
.index_news_fb{
    margin-top: 3.5%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.index_news_fb_fl,.index_news_fb_fr{
    width: 48%;
}
.index_news_fb_fl li .img{
    border-radius: 5px;
    overflow: hidden;
}
.index_news_fb_fl li .img .img_con{
    padding: 30.8% 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_news_fb_fl li .img img{
    width: 100%;
}
.index_news_fb_fr li:nth-child(n+2){
    margin-top: 10%;
}
.index_news_fb_fr li a{
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.index_news_fb_fr_riqi{
    width: 76px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #d0d0d0;
    overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_news_fb_fr_riqi h3{
    font-size: 22px;
    line-height: 2;
    color: #333;
    background: #f9f9f9;
}
.index_news_fb_fr_riqi h4{
    font-size: 15px;
    line-height: 34px;
    color: #919191;
    background: #f2f2f2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_news_fb_fr_wz{
    padding-left: 76px;
    margin-left: -76px;
    width: 94%;
}
.index_news_fb_fr_wz h3{
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_news_fb_fr_wz h4{
    font-size: 15px;
    line-height: 1.5;
    color: #999;
    max-height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-top: 8px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.index_news_fb_fl li:hover .img .img_con{
	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_news_fb_fr li.on .index_news_fb_fr_riqi{
    border-color: #0170a8;
}
.index_news_fb_fr li.on .index_news_fb_fr_riqi h4{
    background: #0170a8;
    color: #fff;
}
.index_news_fb_fr li.on .index_news_fb_fr_wz h3{
    color: #0170a8;
}
.index_news_fb_fr li.on .index_news_fb_fr_wz h4{
    color: #0170a8;
}
@media(max-width:991px){
    .index_news_fb_fl li .img .img_con{
        min-height: auto!important;
    }
    .index_news_fb_fl,.index_news_fb_fr{
        width: 100%;
    }
    .index_news_fb_fr{
        margin-top: 4%;
    }
    .index_news_fb_fr li:nth-child(n+2){
        margin-top: 4%;
    }
}
@media(max-width:768px){
    .index_news_con{
        padding: 30px 0;
    }
    .index_news_fb{
        margin-top: 20px;
    }
    .index_news_fb_fr{
        margin-top: 25px;
    }
    .index_news_fb_fr li:nth-child(n+2){
        margin-top: 25px;
    }
}
@media(max-width:468px){
    .index_news_con{
        padding: 25px 0;
    }
    .index_news_fb{
        margin-top: 15px;
    }
    .index_news_fb_fr{
        margin-top: 20px;
    }
    .index_news_fb_fr li:nth-child(n+2){
        margin-top: 20px;
    }
    .index_news_fb_fr_riqi{
        width: 65px;
    }
    .index_news_fb_fr_riqi h4{
        font-size: 14px;
    }
    .index_news_fb_fr_wz h3{
        font-size: 17px;
    }
    .index_news_fb_fr_wz h4{
        margin-top: 5px;
    }
    .index_news_fb_fr_wz{
        padding-left: 65px;
        margin-left: -65px;
    }
}

/*合作客户*/
.index_cooperation_con{
    padding: 5% 0;
}
.index_cooperation_fb{
    margin-top: 3.5%;
}
.index_cooperation_fb_ul_nnn{
    overflow: hidden;
}
.index_cooperation_fb_ul_nnn .index_cooperation_fb_li_con{
    padding-top: 20px;
}
.index_cooperation_fb_ul_nnn .index_cooperation_fb_li{
    float: left;
    width: 15%;
    margin-right: 2%;
    cursor: pointer;
}
.index_cooperation_fb_ul_nnn .index_cooperation_fb_li:nth-child(6n){
    margin-right: 0;
}
.index_cooperation_fb_ul_nnn .index_cooperation_fb_li .img{
    border: 1px solid #dfdfdf;
    overflow: hidden;
    min-height: 7rem;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.index_cooperation_fb_ul_nnn .index_cooperation_fb_li .img img{
    width: 100%;
}
@media(max-width:991px){
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li{
        width: 32%;
    }
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li:nth-child(3n){
        margin-right: 0;
    }
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li_con{
        padding-top: 15px;
    }
    
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li .img{
        min-height: 13rem;
    }
}
@media(max-width:768px){
    .index_cooperation_con{
        padding: 30px 0;
    }
    .index_cooperation_fb{
        margin-top: 20px;
    }
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li .img{
        min-height: 8rem;
    }
}
@media(max-width:468px){
    .index_cooperation_con{
        padding: 25px 0;
    }
    .index_cooperation_fb{
        margin-top: 15px;
    }
    .index_cooperation_fb_ul_nnn .index_cooperation_fb_li_con{
        padding-top: 10px;
    }
}

/*footer*/
.pc_footer {
	background: rgba(1,112,168,.9);
}

.pc_footer_con {
	position: relative;
	background: url(../images/img/footer_bj.png) no-repeat center;
	background-size: 100% auto;
	padding: 4% 0;
}
.pc_footer_fl{
    width: 80%;
    padding-right: 3%;
    border-right: 1px solid #fff;
}
.pc_footer_fl li{
    width: 19%;
}
.pc_footer_fl_erji_li{
    font-size: 0;
}
.pc_footer_fl_erji_li:nth-child(n+2){
    margin-top: 10px;
}
.pc_footer_fl_erji_li a{
    font-size: 15px;
    line-height: 1.5;
    color: #f8f6f6;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pc_footer_fr{
    width: 20%;
    padding-left: 3%;
    max-width: 170px;
}
.pc_footer_fr_ft,.pc_footer_fl li h3{
    font-size: 18px;
    line-height: 26px;
    color: #f8f6f6;
    font-weight: bold;
    text-align: left;
    margin-bottom: 25px;
    padding-left: 15px;
    position: relative;
}
.pc_footer_fr_ft::before,.pc_footer_fl li h3::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 20px;
    background: #f8f6f6;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pc_footer_fr_xinxi{
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    display: none;
    margin-bottom: 15px;
}
.pc_footer_fr li{
    text-align: center;
}
.pc_footer_fr li .img img{
    width: 100%;
}
.pc_footer_fr li .wz{
    font-size: 15px;
    line-height: 1.5;
    color: #f8f6f6;
    margin-top: 10px;
}
.pc_footer2 {
	font-size: 15px;
	line-height: 1.8;
	color: #f8f6f6;
	background: #0170a8;
}
.pc_footer2_ft{
    text-align: center;
}
.pc_footer2_ft a{
    margin: 0 5px;
}
.pc_footer2_fb{
    text-align: center;
}
.pc_footer2 a {
	color: #f8f6f6;
}
.pc_footer2 a:hover{
    color: #f38605;
}
.pc_footer2_con {
	padding: 15px 0;
}
@media(max-width:1366px){
    .pc_footer_fr{
        max-width: 150px;
    }
}
@media(max-width:991px) {
	.pc_footer_con{
	    padding: 30px 0;
	}
	
	.pc_footer_fl {
		display: none;
	}
	
	.pc_footer_fr_xinxi{
	    display: block;
	}
	.pc_footer_fr{
	    max-width: 100%;
	    width: 100%;
	    padding-left: 0;
	}
	.pc_footer_fr li{
	    max-width: 130px;
	}
	.pc_footer_fr_ft, .pc_footer_fl li h3{
	    margin-bottom: 10px;
	}
}
@media(max-width:768px){
    .pc_footer_con{
        padding: 25px 0;
    }
}






/*公司简介*/
.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 #224989;
	-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: 6.5rem;
	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: 2rem;
	line-height: 1.5;
	color: #333;
}

.ny_about_2_ft h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #666;
	margin-top: .5%;
}

.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;
	border: 1px solid #dfdfdf;
}

.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:1280px){
	.ny_about_2_ft h4 {
		font-size: 18px;
	}
}

@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: 24px;
		padding-bottom: 10px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 65px;
		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: 24px;
	}

	.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%;
	}
}

@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: 17px;
	}

	.ny_about_2_fb{
		margin-top: 15px;
	}
}

@media(max-width:468px) {
	.ny_about_1_fb_fr_ft h3 {
		padding-bottom: 5px;
	}

	.ny_about_1_fb_fr_ft h4 {
		font-size: 8.4rem;
		text-indent: 0;
		text-align: right;
	}
}

/*公司理念*/
.page_philosophy{
    padding-bottom: 4%;
}
.page_philosophy_li{
    background: #f7f7f7;
}
.page_philosophy_li:nth-child(2n){
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.page_philosophy_li_fl,.page_philosophy_li_fr{
    width: 50%;
}
.page_philosophy_li_fl img{
    width: 100%;
}
.page_philosophy_li_fl .img_con{
    padding: 25% 0;
}
.page_philosophy_li_fr{
    padding: 2.5%;
}
.page_philosophy_li_fr h3{
    font-size: 26px;
    line-height: 1.2;
    color: #333;
    position: relative;
    padding-bottom: 13px;
}
.page_philosophy_li_fr h3::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #0170a8;
}
.page_philosophy_li_fr h4{
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

@media(max-width:1280px){
    .page_philosophy_li_fr h3{
        font-size: 24px;
    }
}
@media(max-width:991px){
    .page_philosophy{
        padding: 4% 0;
    }
    .page_philosophy_li_fr h4{
        font-size: 16px;
    }
}
@media(max-width:768px){
    .page_philosophy{
        padding: 30px 0;
    }
    .page_philosophy_li:nth-child(n+2){
        margin-top: 15px;
    }
    .page_philosophy_li_fl{
        width: 100%;
    }
    .page_philosophy_li_fl .img_con{
        min-height: auto!important;
    }
    .page_philosophy_li_fr{
        width: 100%;
        padding: 20px;
    }
    .page_philosophy_li_fr h3{
        font-size: 22px;
    }
    .page_philosophy_li_fr h3::before{
        width: 40px;
    }
}
@media(max-width:468px){
    .page_philosophy{
        padding: 25px 0;
    }
    .page_philosophy_li_fr h3{
        font-size: 20px;
    }
    .page_philosophy_li_fr{
        padding: 15px;
    }
}

/*图集*/
.page_tuji_www{
    padding-bottom: 4%;
}
.ny_zizhizhengshu ul{
	font-size: 0;
}
.ny_zizhizhengshu li{
	width: 23.5%;
    margin-right: 2%;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
}
.ny_zizhizhengshu li a{
    height: 100%;
    width: 100%;
}
.ny_zizhizhengshu li .img{
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: -30px;
    padding-top: 30px;
}
.ny_zizhizhengshu li .img .img_nn{
    border: 1px solid #eee;
    height: 100%;
    width: 100%;
    -webkit-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	-ms-align-items: center;
    align-items: center;
}
.ny_zizhizhengshu li .img img{
    width: 100%;
    height: auto!important;
}
.ny_zizhizhengshu li .wz{
    font-size: 16px;
    line-height: 20px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.ny_zizhizhengshu li:nth-child(4n){
    margin-right: 0;
}
.ny_zizhizhengshu li:nth-child(n+5){
    margin-top: 10px;
}
@media(max-width:991px){
    .page_tuji_www{
        padding: 4% 0;
    }
    .ny_zizhizhengshu li .wz{
        font-size: 15px;
    }
}
@media(max-width:768px){
    .page_tuji_www{
        padding: 30px 0;
    }
    .ny_zizhizhengshu li{
        width: 49%;
    }
    .ny_zizhizhengshu li:nth-child(2n){
        margin-right: 0;
    }
    .ny_zizhizhengshu li:nth-child(n+3){
        margin-top: 10px;
    }
}
@media(max-width:468px){
    .page_tuji_www{
        padding: 25px 0;
    }
}

/*发展历程*/
.page_fazhanlicheng{
    padding-bottom: 3%;
}
.page_fazhanlicheng_con{
    max-width: 900px;
    margin: 0 auto;
}
.page_fazhanlicheng_con ul{
    position: relative;
}
.page_fazhanlicheng_con ul::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    margin-left: -1px;
    background: #eee;
}
.page_fazhanlicheng_con li:nth-child(n+2){
    margin-top: 5%;
}
.page_fazhanlicheng_con li:nth-child(2n){
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.page_fazhanlicheng_con li .img{
    width: 46%;
    overflow: hidden;
    cursor: pointer;
}
.page_fazhanlicheng_con li .img img{
    width: 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;
}
.page_fazhanlicheng_con li .wz{
    width: 46%;
}
.page_fazhanlicheng_con li .wz h3{
    font-size: 1.6rem;
    line-height: 1.3;
    color: #333;
    font-weight: bold;
    position: relative;
}
.page_fazhanlicheng_con li .wz h4{
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}
.page_fazhanlicheng_con li:hover .img 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);
}
@media(max-width:1280px){
    .page_fazhanlicheng_con li .wz h3{
        font-size: 26px;
    }
}
@media(max-width:991px){
    .page_fazhanlicheng{
        padding: 4% 0;
    }
    .page_fazhanlicheng_con li .wz h3{
        font-size: 24px;
    }
}
@media(max-width:768px){
    .page_fazhanlicheng{
        padding: 30px 0;
    }
    .page_fazhanlicheng_con li:nth-child(n+2){
        margin-top: 20px;
    }
    .page_fazhanlicheng_con li .wz h3{
        font-size: 22px;
    }
    .page_fazhanlicheng_con li .wz h4{
        margin-top: 5px;
        font-size: 15px;
    }
}
@media(max-width:468px){
    .page_fazhanlicheng{
        padding: 25px 0;
    }
    .page_fazhanlicheng_con ul::before{
        left: 7px;
    }
    .page_fazhanlicheng_con li{
        padding-left: 25px;
    }
    .page_fazhanlicheng_con li:nth-child(n+2){
        margin-top: 15px;
    }
    .page_fazhanlicheng_con li .wz h3::before{
        content: '';
        position: absolute;
        left: -25px;
        top: 50%;
        width: 10px;
        height: 10px;
        z-index: 10;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #0170a8;
    	-webkit-transform: translateY(-50%);
    	-moz-transform: translateY(-50%);
    	-ms-transform: translateY(-50%);
    	-o-transform: translateY(-50%);
    	transform: translateY(-50%);
    }
    .page_fazhanlicheng_con li .img{
        width: 100%;
        margin-top: 10px;
    }
    .page_fazhanlicheng_con li .wz{
        width: 100%;
    }
    .page_fazhanlicheng_con li .wz h4{
        font-size: 16px;
        margin-top: 0;
    }
}

/*下载*/
.ny_xiazailiebiao table{
    width: 100%;
    font-size: 16px;
    line-height: 2;
    text-align: center;
}
.ny_xiazailiebiao table tr:nth-child(1){
    background: #e2e2e2;
    border-bottom: 0 dashed #eee;
}
.ny_xiazailiebiao table tr{
    border-bottom: 1px dashed #dfdfdf;
    border-left: 1px dashed #dfdfdf;
    border-right: 1px dashed #dfdfdf;
}
.ny_xiazailiebiao table tr td{
    padding:10px 5px;
    border-right: 1px dashed #dfdfdf;
}
.ny_xiazailiebiao table tr td:last-child{
    border-right: 0;
}
.ny_xiazailiebiao table tr td a{
    color: #666;
}
.ny_xiazailiebiao table tr td a:hover{
    color: #0170a8;
}
@media(max-width:768px){
    .ny_xiazailiebiao table{
        font-size: 14px;
    }
    .ny_xiazailiebiao table tr td{
      width: 33.333333333%;
    }
    .ny_xiazailiebiao table tr td:nth-child(3){
        display: none;
    }
    .aspg-detail-title{
        font-size: 18px;
    }
}
/*体验中心*/
.page_tiyanzhongxin{
    padding-bottom: 4%;
}
.page_tiyanzhongxin_con{
    max-width: 1000px;
    margin: 0 auto;
}
.page_tiyanzhongxin_ft_ft{
    font-size: 24px;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
}
.page_tiyanzhongxin_ft_ft::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 24px;
    background: #0170a8;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.page_tiyanzhongxin_ft_fb{
    margin-top: 2.5%;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}
.page_tiyanzhongxin_fc{
    margin: 3% 0;
}
.page_tiyanzhongxin_fc li:nth-child(n+2){
    margin-top: 3%;
}
.page_tiyanzhongxin_fc_li_ft{
    font-size: 20px;
    line-height: 1.5;
    color: #0170a8;
    font-weight: bold;
    position: relative;
}
.page_tiyanzhongxin_fc_li_fb{
    border: 1px solid #eee;
    margin-top: 3%;
    padding: 20px;
}
.page_tiyanzhongxin_fc_li_fb_con{
    position: relative;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.page_tiyanzhongxin_fc_li_fb_con::before{
    content: '';
    position: absolute;
    left: 210px;
    top: 0;
    height: 100%;
    border: 1px dashed #eee;
}
.page_tiyanzhongxin_fc_li_fb_fl{
    width:180px;
}
.page_tiyanzhongxin_fc_li_fb_fl img{
    width: 100%;
}
.page_tiyanzhongxin_fc_li_fb_fr{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    width:100%;
    padding-left: 240px;
    margin-left: -240px;
}
.page_tiyanzhongxin_fc1 li:nth-child(n+2){
    margin-top: 2.5%;
}
.page_tiyanzhongxin_fc1_ft{
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.page_tiyanzhongxin_fc1_fb{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 2.5%;
}
.page_tiyanzhongxin_fb_title{
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    margin-top: 2.5%;
}
.page_tiyanzhongxin_fb ul{
    margin-top: 2.5%;
}
.page_tiyanzhongxin_fb li:nth-child(n+2){
    margin-top: 2.5%;
}
.page_tiyanzhongxin_fb_ft{
    font-size: 16px;
    line-height: 1.8;
    color: #0170a8;
}
.page_tiyanzhongxin_fb_fb{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}
@media(max-width:1280px){
    .page_tiyanzhongxin_ft_ft{
        font-size: 22px;
    }
}
@media(max-width:991px){
    .page_tiyanzhongxin{
        padding: 4% 0;
    }
}
@media(max-width:768px){
    .page_tiyanzhongxin{
        padding: 30px 0;
    }
    .page_tiyanzhongxin_ft_ft{
        font-size: 20px;
    }
    .page_tiyanzhongxin_ft_ft::before{
        height: 20px;
    }
    .page_tiyanzhongxin_ft_fb{
        margin-top: 10px;
    }
    .page_tiyanzhongxin_fc{
        margin: 15px 0;
    }
    .page_tiyanzhongxin_fc_li_ft{
        font-size: 18px;
    }
    .page_tiyanzhongxin_fc_li_fb{
        margin-top: 12px;
        padding: 15px;
    }
    .page_tiyanzhongxin_fc_li_fb_con::before{
        left: 160px;
    }
    .page_tiyanzhongxin_fc_li_fb_fl{
        width: 140px;
    }
    .page_tiyanzhongxin_fc_li_fb_fr{
        padding-left: 180px;
        margin-left: -180px;
    }
    .page_tiyanzhongxin_fc li:nth-child(n+2){
        margin-top: 12px;
    }
    .page_tiyanzhongxin_fc1_ft{
        font-size: 18px;
    }
    .page_tiyanzhongxin_fc1_fb{
        margin-top: 8px;
    }
    .page_tiyanzhongxin_fc1 li:nth-child(n+2){
        margin-top: 10px;
    }
    .page_tiyanzhongxin_fb_title{
        margin-top: 10px;
        font-size: 18px;
    }
    .page_tiyanzhongxin_fb ul{
        margin-top: 10px;
    }
    .page_tiyanzhongxin_fb li:nth-child(n+2){
        margin-top: 10px;
    }
}
@media(max-width:468px){
    .page_tiyanzhongxin{
        padding: 25px 0;
    }
    .page_tiyanzhongxin_fc_li_fb_con::before{
        display: none;
    }
    .page_tiyanzhongxin_fc_li_fb_fl{
        width: 200px;
        margin: 0 auto;
    }
    .page_tiyanzhongxin_fc_li_fb_fr{
        padding-left: 0;
        margin-left: 0;
        margin-top: 10px;
    }
}