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

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: #076AAE;
}

input {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

img {
	border: none;
	background: none;
	vertical-align: middle;
}

ul,
ol,
li {
	list-style-type: none;
}

select,
input,
img,
select {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table,
th,
td {
	vertical-align: middle;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.clearfix {
	zoom: 1
}

.clearboth {
	height: 0px;
	line-height: 0px;
	overflow: hidden;
	clear: both;
	font-size: 0px;
}

h1,
h2 {
	font-weight: bold;
}

hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
}

h3,
h4,
h5,
h6 {
	font-weight: normal;
}

p {
	margin: 0;
}

/*----- Common css ------*/
.fl {
	float: left;
}

.fr {
	float: right;
}

/*flex布局*/
.flex_wrap {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*flex布局上下对齐*/
.flex_alise {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: space-between;
	-moz-align-content: space-between;
	-ms-align-content: space-between;
	-o-align-content: space-between;
	align-content: space-between;
}

/*flex布局上下居中*/
.flex_alice {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-content: center;
	-moz-align-content: center;
	-ms-align-content: center;
	-o-align-content: center;
	align-content: center;
}

/*flex布局左右对齐*/
.flex_con {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

/*flex布局左右居中*/
.flex_con_cen {
	display: -webkit-box;
	/* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
	display: -moz-box;
	/* Firefox 17- */
	display: -webkit-flex;
	/* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
	display: -moz-flex;
	/* Firefox 18+ */
	display: -ms-flexbox;
	/* IE 10 */
	display: flex;
	/* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

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

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

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

	.page_con_zhuti {
		padding: 0 30px;
	}
}

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

	.page_con_zhuti {
		padding: 0 20px;
	}

	body {
		padding-top: 61px;
	}
}

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

	.page_con_zhuti {
		padding: 0 15px;
	}
}
/*导航*/
.pc_header_nav{
    background: #076AAE;
}

/*头部*/
#pc_header {
	width: 100%;
	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_con {
	height: 110px;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.pc_header_fl{
	max-width: 45%;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
.pc_logo {
	width: 20%;
	max-width: 70px;
}

.pc_logo img {
	max-width: 100%;
}
.pc_header_fc{
    width: 52%;
    padding-left: 240px;
    margin-left: -240px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}
.pc_header_fl_fr{
    margin-left: 10px;
}
.pc_header_fl_fr h3{
    font-size: 23px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}
.pc_header_fl_fr h4{
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}
.pc_header_fr{
    padding-left: 50px;
    background: url(../images/img/top_dianhuayanse.png) no-repeat left center;
}
.pc_header_fr h3{
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}
.pc_header_fr h4{
    font-size: 24px;
    line-height: 1.5;
    color: #FF0000;
}


.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: 14.285714285%;
	float: left;
	position: relative;
	text-align: center;
}
.pc_nav>ul>li:nth-child(1)>a{
    border-left: 1px solid rgba(255,255,255,.4);
}
.pc_nav>ul>li>a {
	font-size: 16px;
	line-height: 55px;
	color: #fff;
	border-right: 1px solid rgba(255,255,255,.4);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_w {
	position: absolute;
	z-index: 999;
	width: 180px;
	left: 50%;
	top: 55px;
	background: #fff;
	opacity: 0;
	background: #065f9c;
	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 rgba(0, 0, 0, .2);
}

.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: #065f9c;
}

.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: 35px;
	padding: 5px;
	color: #fff;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pc_nav_erji_li a:hover {
	background: #fff;
	color: #065f9c;
}

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

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

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

.pc_sousuo2 {
	position: absolute;
	right: 0;
	top: 100%;
	width: 250px;
	z-index: 999;
	background: #076AAE;
	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);
}

.pc_nav_dianhua {
	width: 180px;
	text-align: center;
	background: #076AAE;
	border-radius: 25px;
	font-size: 0;
	padding: 5px 0;
	line-height: 0;
}

.pc_nav_dianhua i {
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 26px;
	background: #076AAE url(../images/img/top_dianhua.png) no-repeat center;
	background-size: 15px;
	margin-right: 5px;
}

.pc_nav_dianhua span {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	line-height: 26px;
	color: #fff;
}

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


/*首页banner*/
/* banner */
.tp-simpleresponsive .button.green,
.tp-simpleresponsive .button:hover.green,
.tp-simpleresponsive .purchase.green,
.tp-simpleresponsive .purchase:hover.green {
    background-color: #21a117;
    -webkit-box-shadow: 0 3px 0 0 #104d0b;
    -moz-box-shadow: 0 3px 0 0 #104d0b;
    box-shadow: 0 3px 0 0 #104d0b
}

.tp-simpleresponsive .button.blue,
.tp-simpleresponsive .button:hover.blue,
.tp-simpleresponsive .purchase.blue,
.tp-simpleresponsive .purchase:hover.blue {
    background-color: #1d78cb;
    -webkit-box-shadow: 0 3px 0 0 #0f3e68;
    -moz-box-shadow: 0 3px 0 0 #0f3e68;
    box-shadow: 0 3px 0 0 #0f3e68
}

.tp-simpleresponsive .button.red,
.tp-simpleresponsive .button:hover.red,
.tp-simpleresponsive .purchase.red,
.tp-simpleresponsive .purchase:hover.red {
    background-color: #cb1d1d;
    -webkit-box-shadow: 0 3px 0 0 #7c1212;
    -moz-box-shadow: 0 3px 0 0 #7c1212;
    box-shadow: 0 3px 0 0 #7c1212
}

.tp-simpleresponsive .button.orange,
.tp-simpleresponsive .button:hover.orange,
.tp-simpleresponsive .purchase.orange,
.tp-simpleresponsive .purchase:hover.orange {
    background-color: #f70;
    -webkit-box-shadow: 0 3px 0 0 #a34c00;
    -moz-box-shadow: 0 3px 0 0 #a34c00;
    box-shadow: 0 3px 0 0 #a34c00
}

.tp-simpleresponsive .button.darkgrey,
.tp-simpleresponsive .button.grey,
.tp-simpleresponsive .button:hover.darkgrey,
.tp-simpleresponsive .button:hover.grey,
.tp-simpleresponsive .purchase.darkgrey,
.tp-simpleresponsive .purchase:hover.darkgrey {
    background-color: #555;
    -webkit-box-shadow: 0 3px 0 0 #222;
    -moz-box-shadow: 0 3px 0 0 #222;
    box-shadow: 0 3px 0 0 #222
}

.tp-simpleresponsive .button.lightgrey,
.tp-simpleresponsive .button:hover.lightgrey,
.tp-simpleresponsive .purchase.lightgrey,
.tp-simpleresponsive .purchase:hover.lightgrey {
    background-color: #888;
    -webkit-box-shadow: 0 3px 0 0 #555;
    -moz-box-shadow: 0 3px 0 0 #555;
    box-shadow: 0 3px 0 0 #555
}

.fullscreen-container {
    width: 100%;
    position: relative;
    padding: 0
}

.fullwidthbanner-container {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden
}

.fullwidthbanner-container .fullwidthbanner {
    width: 100%;
    position: relative
}

.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
    position: absolute;
    visibility: hidden;
    font-size: 1.4em;
    -webkit-font-smoothing: antialiased !important
}

.tp-simpleresponsive img {
    max-width: none
}

.noFilterClass {
    filter: none !important
}

.tp-bannershadow {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none
}

.caption.fullscreenvideo {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo video {
    width: 100% !important;
    height: 100% !important;
    display: none
}

.tp-caption.fullscreenvideo {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe video {
    width: 100% !important;
    height: 100% !important;
    display: none
}

.fullscreenvideo .vjs-loading-spinner {
    visibility: none;
    display: none !important;
    width: 0;
    height: 0
}

.fullscreenvideo .vjs-control-bar.vjs-fade-out,
.fullscreenvideo .vjs-control-bar.vjs-fade-in,
.fullscreenvideo .vjs-control-bar.vjs-fade-out.vjs-lock-showing,
.fullscreenvideo .vjs-control-bar.vjs-fade-in.vjs-lock-showing {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
    width: 0;
    height: 0;
    overflow: hidden
}

.fullcoveredvideo.video-js,
.fullcoveredvideo video {
    background: transparent !important
}

.fullcoveredvideo .vjs-poster {
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.tp-dottedoverlay {
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.tpclear {
    clear: both
}

.tp-bullets {
    z-index: 1000;
    position: absolute;
    -ms-filter: "alpha(opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    /*-webkit-transition: opacity .2s ease-out;*/
    /*-moz-transition: opacity .2s ease-out;*/
    /*-o-transition: opacity .2s ease-out;*/
    /*-ms-transition: opacity .2s ease-out;*/
    /*-webkit-transform: translateZ(5px);*/
    /*bottom: 5% !important;*/
}

.tp-bullets.hidebullets {
    -ms-filter: "alpha(opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 1;
    bottom: 20px!important;
}

.tp-bullets.simplebullets.round .bullet {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
    float: left;
    margin-top: 0;
    margin-left: 5px;
    width: 15px;
    height: 15px;
    border: solid 2px #367136;
    background:none;
    border-radius:50%;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s
}

.tp-bullets.simplebullets.round .bullet.last {
    margin-right: 3px
}

.tp-bullets.simplebullets.round-old .bullet.last {
    margin-right: 0
}

.tp-bullets.simplebullets.square .bullet.last {
    margin-right: 0
}

.tp-bullets.simplebullets.square-old .bullet.last {
    margin-right: 0
}

.tp-bullets.simplebullets.navbar .bullet.first {
    margin-left: 0 !important
}

.tp-bullets.simplebullets.navbar .bullet.last {
    margin-right: 0 !important
}

.tp-bullets.simplebullets.navbar-old .bullet.first {
    margin-left: 0 !important
}

.tp-bullets.simplebullets.navbar-old .bullet.last {
    margin-right: 0 !important
}

.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected {
    background-position: top left
}

.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet.selected {
    background:#367136;
}

.tparrows {
    -ms-filter: "alpha(opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    -o-transition: opacity .2s ease-out;
    -ms-transition: opacity .2s ease-out;
    -webkit-transform: translateZ(5px)
}

.tparrows.hidearrows {
    -ms-filter: "alpha(opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0
}

.tp-leftarrow.navbar-old.thumbswitharrow {
    margin-right: 10px
}

.tp-rightarrow.navbar-old.thumbswitharrow {
    margin-left: 0
}

.tp-leftarrow.default {
    z-index: 100;
    cursor: pointer;
    position: relative;
    background: rgba(0, 0, 0, .3);
    width: 30px;
    height: 110px;
    left: 0 !important;
    top: 50% !important;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
    display: none;
}

.tp-leftarrow.default:before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    margin: 50px 0 0 10px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #fff
}

.tp-rightarrow.default {
    display: none;
    z-index: 100;
    cursor: pointer;
    position: relative;
    background: rgba(0, 0, 0, .3);
    width: 30px;
    height: 110px;
    right: 0 !important;
    top: 50% !important;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s
}

.tp-rightarrow.default:before {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    margin: 50px 0 0 9px;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #fff
}

.tp-leftarrow:hover,
.tp-rightarrow:hover {
    background: #fb4848
}

.tp-bullets.tp-thumbs {
    z-index: 1000;
    position: absolute;
    padding: 3px;
    background-color: #fff;
    width: 500px;
    height: 50px;
    margin-top: -50px
}

.fullwidthbanner-container .tp-thumbs {
    padding: 3px
}

.tp-bullets.tp-thumbs .tp-mask {
    width: 500px;
    height: 50px;
    overflow: hidden;
    position: relative
}

.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
    width: 5000px;
    position: absolute
}

.tp-bullets.tp-thumbs .bullet {
    width: 100px;
    height: 50px;
    cursor: pointer;
    overflow: hidden;
    background: 0;
    margin: 0;
    float: left;
    -ms-filter: "alpha(opacity=50)";
    -moz-opacity: .5;
    -khtml-opacity: .5;
    opacity: .5;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out
}

.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected {
    -ms-filter: "alpha(opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1
}

.tp-thumbs img {
    width: 100%
}

.tp-bannertimer {
    height: 2px;
    background: #fff;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    z-index: 200;
    top: 0;
    right: 0
}

.tp-bannertimer.tp-bottom {
    bottom: 0;
    height: 5px;
    top: auto
}

@media only screen and (min-width: 0) and (max-width: 479px) {
    .responsive .tp-bullets {
        display: none
    }

    .responsive .tparrows {
        display: none
    }
}

.vjs-tech {
    margin-top: 1px
}

.tp-caption .vjs-default-skin .vjs-big-play-button {
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 0;
    box-shadow: none;
    text-shadow: none;
    line-height: 30px;
    vertical-align: top;
    padding: 0
}

.tp-caption .vjs-default-skin .vjs-big-play-button:before {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    text-shadow: none !important;
    color: #fff;
    font-size: 18px
}

.tp-caption .vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
    box-shadow: none;
    -webkit-box-shadow: none
}

.tp-simpleresponsive img {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none
}

.tp-simpleresponsive a {
    text-decoration: none
}

.tp-simpleresponsive ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.tp-simpleresponsive > ul > li {
    position: absolute;
    visibility: hidden
}

.tp-loader {
    margin: -30px -30px;
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute;
    width: 60px;
    height: 60px
}

.tp-loader:before,
.tp-loader:after {
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    border-radius: 50%;
    background-color: #fb4848;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out
}

.tp-loader:after {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0)
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0)
    }
}
.index_banner li .wz{
    position: absolute;
    left: 0;
    top: 40%;
    width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index_banner li .wz h3{
    font-size: 3vw;
    line-height: 1.2;
    color: #076AAE;
    font-weight: bold;
}

.index_banner li .wz h4{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    padding:5px 20px;
    border-radius: 30px;
    background: #076AAE;
    display: inline-block;
    margin-top: 2%;
}
.index_banner ul{
    position: relative;
}

.index_banner ul .wz1{
    position: absolute;
    left: 0;
    bottom:60px;
    width: 100%;
    z-index: 100;
}
.index_banner ul .wz1 .wz1_con{
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
    justify-content: center;
}
.index_banner ul .wz1 a{
    width: 170px;
    display: block;
    text-align: center;
    border-radius: 30px;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    background: #4CAF50;
    margin:0 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_banner ul .wz1 a:nth-child(2){
    background: #42A4E8;
}
.index_banner ul .wz1 a:nth-child(1):hover{
    background: #367136;
}
.index_banner ul .wz1 a:nth-child(2):hover{
    background: #076AAE;
}

@media(max-width:991px){
    .index_banner li .wz h3{
        font-size: 24px;
    }
    .index_banner ul .wz1{
        display: none;
    }
    .index_banner li .wz h4{
        font-size: 16px;
    }
}
@media(max-width:468px){
    .index_banner li .wz h3{
        font-size: 20px;
    }
    .index_banner li .wz h4{
        background: none;
        padding: 0;
        color: #076AAE;
        font-weight: bold;
    }
    .tp-bullets.hidebullets{
        bottom: 10px!important;
    }
}
/*数据*/
.index_xinquanlai_shuju{
    background: #f6f6f6;
}
.index_xinquanlai_shuju ul{
    overflow: hidden;
}
.index_xinquanlai_shuju li:nth-child(1){
    border-left: 1px solid #eee;
}
.index_xinquanlai_shuju li{
    width: 25%;
    text-align: center;
    float: left;
    padding: 25px 5px;
    cursor: pointer;
    border-right: 1px solid #eee;
	-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_xinquanlai_shuju li:hover{
    background: #fff;
}
.index_xinquanlai_shuju li h3{
    font-size: 1.2rem;
    line-height: 1;
    color: #166e3e;
}
.index_xinquanlai_shuju li h3 span{
    font-size: 1.8rem;
    margin-right: 5px;
    vertical-align: bottom;
}
.index_xinquanlai_shuju li h4{
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-top: 10px;
}
@media(max-width:991px){
    .index_xinquanlai_shuju li h3{
        font-size: 18px;
    }
    .index_xinquanlai_shuju li h3 span{
        font-size: 28px;
    }
    .index_xinquanlai_shuju li{
        width: 50%;
        padding: 20px 5px;
    }
    .index_xinquanlai_shuju li:nth-child(1){
        border-left: 0;
    }
    .index_xinquanlai_shuju li:nth-child(n+3){
        margin-top: 10px; 
    }
    .index_xinquanlai_shuju li:nth-child(2n){
        border-right:0;
    }
}
/*产品*/
.index_xinquanlai_chanpin{
    padding: 3% 0;
    background:#eee url(../images/img/index_chanpin_bj.png) no-repeat top center;
    background-size: 100% auto;
}
.index_xinquanlai_chanpin_ft{
    text-align: center;
}
.index_xinquanlai_chanpin_ft h3{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}
.index_xinquanlai_chanpin_ft h3 span{
    color: #166e3e;
}
.index_xinquanlai_chanpin_ft h3::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0b8bd9;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.index_xinquanlai_chanpin_ft h4{
    font-size: 16px;
    line-height: 1.5;
    color: #999;
    margin-top: 10px;
}
.index_xinquanlai_chanpin_fc{
    margin: 3% 0;
}
.index_xinquanlai_chanpin_fc ul{
    overflow: hidden;
}
.index_xinquanlai_chanpin_fc li{
    width: 33.33333333333%;
    text-align: center;
    padding-right: 3px;
}
.index_xinquanlai_chanpin_fc li:nth-child(3n){
    padding-right: 0;
}
.index_xinquanlai_chanpin_fc li:nth-child(n+4){
    margin-top: 3px;
}
.index_xinquanlai_chanpin_fc li a{
    display: block;
    font-size: 16px;
    line-height: 46px;
    color: #fff;
    background: #93c47d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.index_xinquanlai_chanpin_fc li a:hover{
    background: #3cb371;
}
.index_xinquanlai_chanpin_fb li{
    width: 32%;
    margin-right: 2%;
    text-align: center;
    position: relative;
}
.index_xinquanlai_chanpin_fb ul li:nth-child(3n){
    margin-right: 0;
}
.index_xinquanlai_chanpin_fb ul li:nth-child(n+4){
    margin-top:10px;
}
.index_xinquanlai_chanpin_fb li .img{
    background: #fff;
    overflow: hidden;
}
.index_xinquanlai_chanpin_fb 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;
}
.index_xinquanlai_chanpin_fb 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);
}
.index_xinquanlai_chanpin_fb li .wz{
    font-size: 16px;
    line-height:1.4;
    color: #333;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 10px;
}
.index_xinquanlai_chanpin_fb li:hover .wz{
    color: #166e3e;
}
@media(max-width:991px){
    .index_xinquanlai_chanpin_ft h3{
        font-size: 22px;
    }
    
    .index_xinquanlai_chanpin_fc li{
        width: 50%;
    }
    .index_xinquanlai_chanpin_fc li:nth-child(3n){
        padding-right: 3px;
    }
    .index_xinquanlai_chanpin_fc li:nth-child(2n){
        padding-right: 0;
    }
    .index_xinquanlai_chanpin_fc li:nth-child(n+3){
        margin-top: 3px;
    }
    .index_xinquanlai_chanpin_fb li{
        width: 49%;
        margin-right: 2%;
    }
    .index_xinquanlai_chanpin_fb ul li:nth-child(3n){
        margin-right: 2%;
    }
    .index_xinquanlai_chanpin_fb ul li:nth-child(2n){
        margin-right: 0;
    }
    .index_xinquanlai_chanpin_fb ul li:nth-child(n+3){
        margin-top:10px;
    }
}
@media(max-width:768px){
    .index_xinquanlai_chanpin{
        padding: 25px 0;
    }
    .index_xinquanlai_chanpin_fc{
        margin: 20px 0;
    }
}
@media(max-width:468px){
    .index_xinquanlai_chanpin_fb li{
        width: 100%;
        margin-right: 0!important;
    }
    .index_xinquanlai_chanpin_fb ul li:nth-child(n+2){
        margin-top:10px;
    }
}
/*产品特点*/
.index_xinquanlai_chanpintedian{
    padding: 3% 0;    
}
.index_xinquanlai_chanpintedian_fb{
    margin-top: 3%;
}
.index_xinquanlai_chanpintedian_fb ul{
    overflow: hidden;
}
.index_xinquanlai_chanpintedian_fb li{
    width: 23.5%;
    margin-right: 2%;
    float: left;
    padding:5% 3%;
    cursor: pointer;
    border: 2px solid #d9d9d9;
	-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_xinquanlai_chanpintedian_fb li:hover{
    border-color: #3cb371;
}
.index_xinquanlai_chanpintedian_fb li:nth-child(4n){
    margin-right: 0;
}
.index_xinquanlai_chanpintedian_fb li .img{
    width: 50px;
    margin: 0 auto;
    line-height: 50px;
}
.index_xinquanlai_chanpintedian_fb li .img img{
    width: 100%;
}
.index_xinquanlai_chanpintedian_fb li .wz{
    text-align: center;
    margin-top: 10px;
}
.index_xinquanlai_chanpintedian_fb li .wz h3{
    font-size: 18px;
    line-height:1.5;
    font-weight: bold;
    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;
}
.index_xinquanlai_chanpintedian_fb li:hover .wz h3{
    color: #3cb371;
}
.index_xinquanlai_chanpintedian_fb li .wz h4{
    font-size: 15px;
    line-height: 2;
    color: #666;
    margin-top: 20%;
}
@media(max-width:991px){
    .index_xinquanlai_chanpintedian_fb li{
        width: 49%;
    }
    .index_xinquanlai_chanpintedian_fb li:nth-child(2n){
        margin-right: 0;
    }
    .index_xinquanlai_chanpintedian_fb li:nth-child(n+3){
        margin-top: 2%;
    }
    .index_xinquanlai_chanpintedian_fb li .wz h4{
        margin-top: 10px;
    }
}
@media(max-width:768px){
    .index_xinquanlai_chanpintedian{
        padding: 25px 0;
    }
    .index_xinquanlai_chanpintedian_fb{
        margin-top: 15px;
    }
    .index_xinquanlai_chanpintedian_fb li{
        padding: 15px;
    }
}
@media(max-width:468px){
    .index_xinquanlai_chanpintedian_fb li{
        width:100%;
        margin-right: 0!important;
    }
    .index_xinquanlai_chanpintedian_fb li:nth-child(n+2){
        margin-top: 15px;
    }
}
/*公司简介*/
.index_xinquanlai_gongsijianjie{
    padding: 3% 0;
    background: url(../images/img/about_ibg2.jpg) no-repeat top center;
}
.index_xinquanlai_gongsijianjie_ft{
    text-align: center;
}
.index_xinquanlai_gongsijianjie_ft h3{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
}
.index_xinquanlai_gongsijianjie_ft_fb{
    margin-top: 10px;
}
.index_xinquanlai_gongsijianjie_ft_fb ul{
    overflow: hidden;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    
}
.index_xinquanlai_gongsijianjie_ft_fb li{
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    float: left;
    padding-left: 30px;
    margin-left: 15px;
    background: url(../images/img/index_gongsijianjie_dui.png) no-repeat left center;
    background-size: 18px;
}
.index_xinquanlai_gongsijianjie_ft_fb li:nth-child(1){
    margin-left: 0;
}
.index_xinquanlai_gongsijianjie_fc{
    margin: 3% 0;
}
.index_xinquanlai_gongsijianjie_fc a{
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 140px;
    font-size: 16px;
    line-height: 40px;
    background: #3cb371;
    color: #fff;
    border-radius: 30px;
	-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_xinquanlai_gongsijianjie_fc a:hover{
    color: #333;
    background: #fff;
}
.index_xinquanlai_gongsijianjie_fb{
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.index_xinquanlai_gongsijianjie_fb_fl{
    width: 50%;
    padding:2% 3%;
}
.index_xinquanlai_gongsijianjie_fb_fl_ft{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #076AAE;
    position: relative;
    padding-bottom: 10px;
}
.index_xinquanlai_gongsijianjie_fb_fl_ft::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #166e3e;
}
.index_xinquanlai_gongsijianjie_fb_fl_fc{
    font-size: 16px;
    line-height: 2;
    color: #888;
    margin: 5% 0;
    overflow: hidden;
	max-height: 14em;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
}
.index_xinquanlai_gongsijianjie_fb_fl_fb{
    font-size: 0;
}
.index_xinquanlai_gongsijianjie_fb_fl_fb a{
    display: inline-block;
    font-size: 15px;
    line-height: 39px;
    padding: 0 15px;
    min-width: 150px;
    color: #166e3e;
    border: 1px solid #d9d9d9;
    text-align: center;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.index_xinquanlai_gongsijianjie_fb_fl_fb a:nth-child(1){
    margin-right: 15px;
    color: #076AAE;
}
.index_xinquanlai_gongsijianjie_fb_fl_fb a:hover{
    color: #fff;
    background: #3cb371;
    border-color: #3cb371;
}
.index_xinquanlai_gongsijianjie_fb_fr{
    width: 50%;
}
.index_xinquanlai_gongsijianjie_fb_fr img{
    width: 100%;
    opacity: 0;
}

@media(max-width:991px){
    .index_xinquanlai_gongsijianjie_ft h3{
        font-size: 22px;
    }
    .index_xinquanlai_gongsijianjie_ft_fb li{
        font-size: 16px;
        background-size: 16px;
    }
    .index_xinquanlai_gongsijianjie_fb_fl{
        width:100%;
        padding: 20px;
    }
    .index_xinquanlai_gongsijianjie_fb_fl_fc{
        margin: 15px 0;
    }
    .index_xinquanlai_gongsijianjie_fb_fr{
        width: 100%;
    }
}
@media(max-width:768px){
    .index_xinquanlai_gongsijianjie{
        padding: 25px 0;
    }
    .index_xinquanlai_gongsijianjie_fc{
        margin: 20px 0;
    }
}

@media(max-width:468px){
    .index_xinquanlai_gongsijianjie_fb_fl_fb a:nth-child(1){
        margin-right:20px;
        margin-bottom: 15px;
    }
    .index_xinquanlai_gongsijianjie_ft_fb li{
        margin: 5px!important;
        padding-left: 20px;
    }
}
/*示范工程*/
.index_xinquanlai_shifangongcheng{
    padding: 3% 0;
    background: #eee;
}
.index_xinquanlai_shifangongcheng_fb{
    margin-top: 3%;
}
.index_xinquanlai_shifangongcheng_fb ul{
    overflow: hidden;
}
.index_xinquanlai_shifangongcheng_fb li{
    width: 32%;
    margin-right: 2%;
    float: left;
    position: relative;
    overflow: hidden;
}
.index_xinquanlai_shifangongcheng_fb li:nth-child(n+4){
    margin-top: 2%;
}
.index_xinquanlai_shifangongcheng_fb li:nth-child(3),.index_xinquanlai_shifangongcheng_fb li:nth-child(5){
    margin-right: 0;
}
.index_xinquanlai_shifangongcheng_fb li .img img{
    width: 100%;
}
.index_xinquanlai_shifangongcheng_fb li .wz{
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_shifangongcheng_fb li:hover .wz{
    bottom: 0;
}
.index_xinquanlai_shifangongcheng_fb li .wz h3{
    font-size: 17px;
    width: 100%;
    padding: 5px;
    line-height: 2;
    color: #fff;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media(max-width:991px){
    .index_xinquanlai_shifangongcheng_fb li:nth-child(1){
        display: none;
    }
    .index_xinquanlai_shifangongcheng_fb li{
        width: 49%;
    }
}
@media(max-width:768px){
    .index_xinquanlai_shifangongcheng{
        padding: 25px 0;
    }
    .index_xinquanlai_shifangongcheng_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_xinquanlai_shifangongcheng_fb li{
        width: 100%;
        margin-right: 0;
    }
    .index_xinquanlai_shifangongcheng_fb li:nth-child(n+3){
        margin-top: 15px;
    }
    .index_xinquanlai_shifangongcheng_fb li .wz{
        bottom: 0;
    }
    .index_xinquanlai_shifangongcheng_fb li .wz h3{
        font-size: 16px;
    }
}
/*新闻资讯*/
.index_xinquanlai_xinwendongtai{
    padding: 3% 0;
}
.index_xinquanlai_xinwendongtai_fb{
    overflow: hidden;
    margin-top: 3%;
}
.index_xinquanlai_xinwendongtai_fb_fl{
    width: 48%;
}

.index_xinquanlai_xinwendongtai_fb_fr{
    width: 48%;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft{
    overflow: hidden;
    padding-bottom: 5px;
    border-bottom: 1px solid #d9d9d9;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft_fl ul{
    overflow: hidden;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft_fl li{
    float: left;
    margin-right: 5px;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft_fl li a{
    width:120px;
    display: block;
    font-size: 16px;
    line-height: 40px;
    color: #333;
    background: #e6f0f6;
    text-align: center;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft_fl li.on a{
    background: #3cb371;
    color: #fff;
}
.index_xinquanlai_xinwendongtai_fb_fl_ft_fr a{
    font-size: 14px;
    line-height: 26px;
    color: #666;
    background: #eee;
    text-align: center;
    width: 65px;
    display: block;
    border-radius: 3px;
    -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_xinquanlai_xinwendongtai_fb_fl_ft_fr a:hover{
    color: #fff;
    background: #3cb371;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb{
    margin-top: 4%;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft{
    overflow: hidden;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft a{
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fl{
    width:45%;
    overflow: hidden;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fl 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;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft:hover .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fl img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr{
    width:51%;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr h3{
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft:hover .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr h3{
    color: #166e3e;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr h4{
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-top: 5px;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr h5{
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
    color: #cf0202;
    -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_xinquanlai_xinwendongtai_fb_fl_fb_ft:hover .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr h5{
    color: #ff0000;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_riqi{
    font-size: 15px;
    line-height: 1.5;
    color: #999;
    text-align: right;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb{
    margin-top: 4%;
    padding-top: 4%;
    border-top: 1px solid #d9d9d9;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb li{
    position: relative;
    border-bottom: 1px dashed #c6c6c6;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb li a{
    display: block;
    font-size: 15px;
    line-height: 40px;
    color: #666;
    padding-right: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb li a span{
    position: absolute;
    right: 0;
    font-size: 14px;
    top: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb li a:hover{
    color: #166e3e;
    font-weight: bold;
}
.index_xinquanlai_xinwendongtai_fb_fl_fb_fb li a:hover span{
    color: #166e3e;
    font-weight: normal;
}
.index_xinquanlai_xinwendongtai_fb_fr_ft{
    overflow: hidden;
    padding-bottom: 5px;
    border-bottom: 1px solid #d9d9d9;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.index_xinquanlai_xinwendongtai_fb_fr_ft_fl{
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    padding-left: 45px;
    background: url(../images/img/faqx.png) no-repeat left center;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb{
    margin-top: 4%;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_ft img{
    width: 100%;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_fb{
    margin-top: 4% ;
    padding-top: 4%;
    border-top: 1px solid #d9d9d9;
}

.index_xinquanlai_xinwendongtai_fb_fr_fb_fb li{
    position: relative;
    border-bottom: 1px dashed #c6c6c6;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_fb li a{
    display: block;
    font-size: 15px;
    line-height: 40px;
    color: #666;
    padding-right: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_fb li a span{
    position: absolute;
    right: 0;
    font-size: 14px;
    top: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_fb li a:hover{
    color: #166e3e;
    font-weight: bold;
}
.index_xinquanlai_xinwendongtai_fb_fr_fb_fb li a:hover span{
    color: #166e3e;
    font-weight: normal;
}
@media(max-width:991px){
    .index_xinquanlai_xinwendongtai_fb_fl{
        width: 100%;
    }
    .index_xinquanlai_xinwendongtai_fb_fr{
        width: 100%;
        margin-top: 15px;
    }
    .index_xinquanlai_xinwendongtai_fb_fl_fb{
        margin-top: 15px;
    }
    .index_xinquanlai_xinwendongtai_fb_fr_fb{
        margin-top: 15px;
    }
    .index_xinquanlai_xinwendongtai_fb_fl_fb_fb{
        margin-top: 15px;
        padding-top: 10px;
    }
    .index_xinquanlai_xinwendongtai_fb_fr_fb_fb{
        margin-top: 15px;
        padding-top: 10px;
    }
}
@media(max-width:768px){
    .index_xinquanlai_xinwendongtai{
        padding: 25px 0;
    }
    .index_xinquanlai_xinwendongtai_fb{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .index_xinquanlai_xinwendongtai_fb_fl_ft_fl li a{
        width:95px;
    }
    .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fl{
        width:100%;
    }
    .index_xinquanlai_xinwendongtai_fb_fl_fb_ft_fr{
        width:100%;
        margin-top: 10px;
    }
}

/*底部*/
.pc_footer{
    background: url(../images/img/footer_bj.jpg) no-repeat center;
    background-size: cover;
    padding: 40px 0 15px;
}
.pc_footer_con{
    overflow: hidden;
}
.pc_footer_fl{
    width:40%;
}
.pc_footer_fl li{
    max-width: 33.333%;
}
.pc_footer_fl li h3{
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.foot_nav_erji{
    margin-top: 10px;
}
.foot_nav_erji a{
    font-size: 15px;
    line-height: 2;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pc_footer_fc{
    width:15%;
    max-width: 130px;
    text-align: center;
}
.pc_footer_fc img{
    width: 100%;
}
.pc_footer_fc .wz{
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-top: 5px;
}
.pc_footer_fr{
    max-width:35%;
}
.pc_footer_fr_ft{
    font-size: 25px;
    line-height: 1.5;
    color: #fff;
    padding-left: 35px;
    background: url(../images/img/top_dianhua.png) no-repeat left center;
    background-size: 25px;
}
.pc_footer_fr_fc{
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin: 15px 0;
}
.pc_footer_fr_fb a{
    display: block;
    width: 130px;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    margin-left: 50px;
    background: #6aa84f;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.pc_footer_fr_fb a:hover{
    background: #076AAE;
}
.pc_footer_2{
    font-size: 15px;
    line-height: 2;
    color: #fff;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.5);
}
.pc_footer_2 a{
    font-size: 15px;
    line-height: 2;
    color: #fff;
}
@media(max-width:991px){
    .pc_footer{
        padding: 25px 0 15px;
    }
    .pc_footer_fl{
        display: none;
    }
    .pc_footer_fc{
        width: 30%;
    }
    .pc_footer_fr{
        max-width: 60%;
    }
}
@media(max-width:768px){
    .pc_footer_2{
        margin-top: 15px;
    }
}
@media(max-width:468px){
    .pc_footer_fc{
        width: 100%;
    }
    .pc_footer_fr{
        max-width: 100%;
        margin-top: 15px;
    }
    .pc_footer_fr_fc{
        margin-top: 5px;
    }
    .pc_footer_fr_fb a{
        margin-left: 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: 2rem;
	line-height: 1.2;
	color: #333;
	position: absolute;
	left: 0;
	top: 50%;
	padding-bottom: 2%;
	border-bottom: 2px solid #076AAE;
	-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: 4.6rem;
	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: 58px;
		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: 5.5rem;
		text-indent: 0;
		text-align: right;
	}
}

/*资质证书*/
.ny_zizhizhengshu ul {
	font-size: 0;
}

.ny_zizhizhengshu li {
	width: 23.875%;
	margin-right: 1.5%;
	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;
}

.ny_zizhizhengshu li .img .img_nn {
	border: 1px solid #eee;
	height: 100%;
	width: 100%;
	overflow: hidden;
	-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;
	-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_zizhizhengshu li:hover .img .img_nn {
	border-color: #076AAE;
}

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


.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) {
	.ny_zizhizhengshu li .wz {
		font-size: 15px;
	}
}

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

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

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

/*企业文化*/
.ny_page_qiyewenhua li {
	background: #f6f6f6;
}

.ny_page_qiyewenhua li:nth-child(n+2) {
	margin-top: 15px;
}

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

.ny_page_qiyewenhua li .img {
	width: 50%;
}

.ny_page_qiyewenhua li .img img {
	width: 100% !important;
}

.ny_page_qiyewenhua li .wz {
	width: 50%;
	padding: 3%;
}

.ny_page_qiyewenhua li .wz h3 {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #333;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
}

.ny_page_qiyewenhua li .wz h3::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 3rem;
	height: 3px;
	background: #076AAE;
}

.ny_page_qiyewenhua li .wz h4 {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-top: 3%;
}

@media(max-width:991px) {
	.ny_page_qiyewenhua li .wz {
		padding: 2%;
	}

	.ny_page_qiyewenhua li .wz h3 {
		font-size: 20px;
	}

	.ny_page_qiyewenhua li .wz h3::before {
		width: 40px;
	}
}

@media(max-width:768px) {
	.ny_page_qiyewenhua li .img {
		width: 100%;
	}

	.ny_page_qiyewenhua li .wz {
		width: 100%;
		padding: 15px;
	}

	.ny_page_qiyewenhua li .wz h4 {
		margin-top: 10px;
	}
}

/*核心业务*/
.ny_page_hexinyewu li{
    width: 32%;
    background: #f5f5f5;
    margin-right: 2%;
    cursor: pointer;
    -webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.ny_page_hexinyewu li:nth-child(3n){
    margin-right: 0;
}
.ny_page_hexinyewu li:nth-child(n+4){
    margin-top: 2%;
}
.ny_page_hexinyewu li:hover{
    background: #076AAE;
}
.ny_page_hexinyewu li .img{
    overflow: hidden;
}
.ny_page_hexinyewu li .img img{
    width: 100%!important;
    -webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.ny_page_hexinyewu 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_hexinyewu li .wz{
    padding: 8%;
    text-align: center;
}
.ny_page_hexinyewu li .wz h3{
    font-size: 18px;
    line-height: 2;
    color: #333;
    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;
}
.ny_page_hexinyewu li .wz h3::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: #076AAE;
}
.ny_page_hexinyewu li .wz h4{
    font-size: 15px;
    line-height: 2;
    color: #666;
    -webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.ny_page_hexinyewu li:hover .wz h3{
    color: #fff;
}
.ny_page_hexinyewu li:hover .wz h4{
    color: #fff;
}
@media(max-width:768px){
    .ny_page_hexinyewu li{
        width: 49%;
    }
    .ny_page_hexinyewu li:nth-child(3n){
        margin-right: 2%;
    }
    .ny_page_hexinyewu li:nth-child(2n){
        margin-right: 0;
    }
    .ny_page_hexinyewu li:nth-child(n+3){
        margin-top: 2%;
    }
}
@media(max-width:468px){
    .ny_page_hexinyewu li{
        width: 100%;
        margin-right: 0!important;
    }
    .ny_page_hexinyewu li .wz{
        padding: 15px;
    }
    .ny_page_hexinyewu li:nth-child(n+2){
        margin-top: 15px;
    }
}

/*产品中心*/
.ny_page_product_pic_li:nth-child(n+2){
    margin-top:3%;
    padding-top: 3%;
    border-top: 1px solid #030303;
}
.ny_page_product_pic_li_fl{
    width: 20%;
}
.ny_page_product_pic_li_fl h3{
    font-size: 1.3rem;
    line-height: 1.5;
    color: #076AAE;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ny_page_product_pic_li_fl h4{
    font-size:15px;
    line-height: 1.5;
    color: #666;
    margin-top: 6%;
    max-height: 10.5em;
    overflow: hidden;
}
.ny_page_product_pic_li_fr{
    overflow: hidden;
    width: 77%;
    position: relative;
}
.ny_page_product_pic_li_fr li{
    position: relative;
    border: 1px solid #dfdfdf;
}
.ny_page_product_pic_li_fr li .img{
    background: #eee;
}
.ny_page_product_pic_li_fr li .img img{
    width: 100%;
}
.ny_page_product_pic_li_fr li .wz{
    position: absolute;
    height: 52px;
    z-index: 5;
    bottom: 5%;
    left: 8%;
    width: 84%;
    padding:10px;
    overflow: hidden;
    background: rgba(7,106,174,.8);
	-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-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.ny_page_product_pic_li_fr li .wz .wz_con{
    width: 100%;
}
.ny_page_product_pic_li_fr li .wz h3{
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ny_page_product_pic_li_fr li .wz h4{
    height: 0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
    background: url(../images/img/page_product_jiantou.png) no-repeat center;
    background-size: 25px;
    margin-top: 10px;
}
.ny_page_product_pic_li_fr li:hover .wz{
    height:80%;
}
.ny_page_product_pic_li_fr li:hover .wz h4{
    height: 25px;
}
.ny_page_product_pic_li_fr_bntl,.ny_page_product_pic_li_fr_bntr{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 0;
    width:40px;
    height: 40px;
    cursor: pointer;
    background:#f6f6f6 url(../images/img/index_jiantou_btnr.png) no-repeat center;
    background-size: 10px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ny_page_product_pic_li_fr_bntr{
    right: 0;
    left: auto;
    background:#f6f6f6 url(../images/img/index_jiantou_btnl.png) no-repeat center;
    background-size: 10px;
}

@media(max-width:991px){
    .ny_page_product_pic_li_fl h3{
        font-size: 20px;
    }
}
@media(max-width:768px){
    .ny_page_product_pic_li_fl{
        width: 100%;
    }
    .ny_page_product_pic_li_fl h4{
        margin-top: 5px;
    }
    .ny_page_product_pic_li_fr{
        width: 100%;
        margin-top: 10px;
    }
    .ny_page_product_pic_li:nth-child(n+2){
        margin-top: 20px;
        padding-top: 15px;
    }
}
@media(max-width:468px){
    .ny_page_product_pic_li_fr li .wz h3{
        font-size: 15px;
    }
    .ny_page_product_pic_li_fr li:hover .wz h4{
        margin-top: 5px;
    }
}








