@charset "utf-8";
/*内页大图*/
.n-banner{
	width: 100%;
	height: 480px;
	z-index: 1;
}
.n-banner .wrap{
	height: 100%;
	position: relative;
}
.n-banner .n-typename{
	background: rgba(255, 255, 255, .9);
	padding: 40px;
	position: absolute;
	right: 4%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}
.n-banner .n-typename p{
	display: block;
    text-transform: uppercase;
    font-weight: bolder;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 10px;
}
.n-banner .n-typename p:after{
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background: #ccc;
}
.n-banner .n-typename .n-path{
	word-wrap: normal;
}
@media (max-width: 992px) {
	.n-banner{
		height: 360px;
	}
	.n-banner .n-typename{
		padding: 30px;
	}
	.n-banner .n-typename p{
	    padding-bottom: 8px;
	    margin-bottom: 6px;
	}
}
@media (max-width: 750px) {
	.n-banner{
		height: 240px;
	}
	.n-banner .n-typename{
		width: 80%;
		padding: 4% 2%;
		right: auto;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

/* 导航 */
.n-type{
  width: 100%;
  background: #fff;
  border-bottom: 2px #eee solid;
  overflow: hidden;
}
.n-type .swiper-button-prev, .n-type .swiper-button-next{
	width: 20px;
	position: static;
	line-height: 40px;
	background: none;
	margin:10px 0;
	color: #343434;
	outline: none;
	height: auto;
}
.n-type .swiper-button-next:after, .n-type .swiper-button-prev:after {
    display: none;
}
.n-type .swiper-button-prev i, .n-type .swiper-button-next i{
	font-size: 24px;
}
.n-type .swiper-button-prev.swiper-button-disabled, 
.n-type .swiper-button-next.swiper-button-disabled{
	display: none;
}
.n-type .swiper-button-prev{
	float: left;
	text-align: left;
}
.n-type .swiper-button-next{
	float: right;
	text-align: right;
}
.n-type .swiper-container{
	margin:0 20px;
}
.n-type .swiper-container .swiper-wrapper{
	text-align: center;
}
.n-type .swiper-container .swiper-wrapper .swiper-slide{
	position: relative;
    display: inline-block;
}
.n-type .swiper-container .swiper-wrapper .swiper-slide a{
	display: block;
    margin: 0 10px;
    padding: 10px 0;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    position: relative;
}
.n-type .swiper-container .swiper-wrapper .swiper-slide.on a{
	color: #0348b2;
}
.n-type .swiper-container .swiper-wrapper .swiper-slide a:after{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	background: #0348b2;
	bottom: 0;
	left:0;
	transform-origin: center;
    transform: scale(0, 1);
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.n-type .swiper-container .swiper-wrapper .swiper-slide:hover a:after,
.n-type .swiper-container .swiper-wrapper .swiper-slide.on a:after{
	transform-origin: center;
    transform: scale(1);
}
@media (max-width: 1280px) {
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
}

/* 内页公共 */
.n-y{
	width: 100%;
	overflow: hidden;
}
.n-tit{
	width: 100%;
	padding-bottom: 14px;
	text-align: center;
	position: relative;
}
.n-tit:after{
	content:"";
	background: #0348b2;
	width: 30px;
	height: 4px;
	position: absolute;
	bottom: 0;
	left:50%;
	transform: translateX(-50%);
}
@media (max-width: 1280px) {
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
}

/* 关于 */
.n-about{
	width: 100%;
	overflow: hidden;
}
.n-about .about-left{
	width: 60%;
	float: left;
	line-height: 30px;
}
.n-about .about-right{
	width: 34%;
	float: right;
}
.n-about .about-right img{
	width: 100%;
	height: auto;
	display: block;
}
@media (max-width: 1280px) {
}
@media (max-width: 992px) {
	.n-about .about-left,
	.n-about .about-right{
		width: 100%;
	}
	.n-about .about-right{
		margin-top: 4%;
	}
}
@media (max-width: 750px) {
}

/* 图片*/
.n-pic{
	width: 100%;
	overflow: hidden;
}
.n-pic .pic-list{
	overflow: hidden;
}
.n-pic .pic-list li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 4%;
	float: left;
}
.n-pic .pic-list li:nth-child(3n){
	margin-right: 0;
}
.n-pic .pic-list a{
	border: 1px #eee solid;
	display: block;
	position: relative;
}
.n-pic .pic-list .pic img{
	width: 100%;
	display: block;
}
.n-pic .pic-list .title{
	text-align: center;
	height: 50px;
	line-height: 50px;
	border-top: 1px #eee solid;
	display: block;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-pic .pic-list .mask{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(3, 72, 178, .6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-pic .pic-list .mask i{
	font-size: 28px;
}
.n-pic .pic-list a:hover .mask{
	opacity: 1;
}
@media (max-width: 1280px) {
	.n-pic .pic-list li{
		width: 48%;
		margin-right: 0;
	}
	.n-pic .pic-list li:nth-child(2n){
		float: right;
	}
}

/* 产品 */
.n-products{
	width: 100%;
	overflow: hidden;
}
.n-products .products-list li{
	width: 32%;
	float: left;
	margin-bottom: 4%;
	margin-right: 2%;
	background: #fff;
	overflow: hidden;
}
.n-products .products-list li:nth-child(3n){
	margin-right: 0;
}
.n-products .products-list a{
	display: block;
	border: 1px #eee solid;
}
.n-products .products-list .pic{
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}
.n-products .products-list .pic .box{
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}
.n-products .products-list .pic .box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	-webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
.n-products .products-list li:hover .pic img{
	transform: scale(1.1);
}
.n-products .products-list .title{
	width: 92%;
	height: 60px;
	margin: 0 auto;
	border-top: 2px #eee solid;
	position: relative;
}
.n-products .products-list .title:before{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	background: #0348b2;
	left:0;
	top: -2px;
	transform-origin: left;
    transform: scale(0, 1);
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.n-products .products-list li:hover .title:before{
	transform-origin: left;
    transform: scale(1);
}
.n-products .products-list .title .right{
	width: 16px;
	line-height: 60px;
	text-align: right;
}
.n-products .products-list .title .left{
	float: none;
	margin-right: 16px;
	display: block;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    line-height: 60px;
}
@media (max-width: 750px) {
	.n-products .products-list li{
		width: 49%;
	}
	.n-products .products-list li:nth-child(4n){
		margin-right: 2%;
	}
	.n-products .products-list li:nth-child(3n){
		margin-right: 2%;
	}
	.n-products .products-list li:nth-child(2n){
		margin-right: 0;
	}
	.n-products .products-list .title{
		height: 40px;
	}
	.n-products .products-list .title .right{
		line-height: 40px;
	}
	.n-products .products-list .title .left{
	    line-height: 40px;
	}
}

/* 产品详情 */
.n-productsdetail{
	width: 100%;
	overflow: hidden;
}
.n-productsdetail .products-picbox, .n-productsdetail .products-content, .n-productsdetail .products-relate, .n-productsdetail .products-message{
	width: 100%;
	overflow: hidden;
}
.n-productsdetail .tit{
	border-bottom: 1px #ccc solid;
	padding-bottom: 20px;
}
.n-productsdetail .products-picbox .lt{
	width: 40%;
}
.n-productsdetail .products-picbox .rt{
    width: 56%;
}
.n-productsdetail .products-picbox .lt{
	position: relative;
	overflow: hidden;
}
.n-productsdetail .products-picbox .lt i{
	position: absolute;
	top:20px;
	right:20px;
	z-index: 1;
	font-size: 20px;
}
.n-productsdetail .products-picbox .lt .sp-wrap{
	width: 100%;
	border:1px #eee solid;
	box-sizing: border-box;
}
.n-productsdetail .products-picbox .lt .sp-wrap > a{
	display: block;
}
.n-productsdetail .products-picbox .lt .sp-wrap a > img{
	display: block;
	margin:0 auto;
}
.n-productsdetail .products-picbox .rt h1{
	font-weight: bolder;
}
.n-productsdetail .products-picbox .rt h2{
	margin-top: 10px;
	margin-bottom: 20px;
}
.n-productsdetail .products-picbox .rt h3, .n-productsdetail .products-picbox .rt h4{
	margin:10px 0 0 0;
}
.n-productsdetail .products-content > ul{
	width: 100%;
	border-bottom: 1px #ccc solid;
	overflow: hidden;
}
.n-productsdetail .products-content > ul > li{
	float: left;
	margin-right: 4px;
}
.n-productsdetail .products-content > ul > li > a{
	line-height: 48px;
	background: #5d5b5d;
	display: block;
	min-width: 100px;
	text-align: center;
	color: #fff;
	padding: 0 20px;
}
.n-productsdetail .products-content > ul > li > a > i{
	display: none;
}
.n-productsdetail .products-content > ul > li.on > a{
	background: #0348b2;
}
.n-productsdetail .products-content > ul > li > ul{
	display: none;
}
.n-productsdetail .products-content img{
	max-width: 100%;
	height: auto;
}
.n-productsdetail .products-content table{
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
}
.n-productsdetail .products-content table, .n-productsdetail .products-content table th, .n-productsdetail .products-content table td{
    border:1px #ccc solid;
}
.n-productsdetail .products-content table th, .n-productsdetail .products-content table td{
	padding:10px 20px;
	word-break:break-all;
}
.n-productsdetail .products-content table tr:first-child td{
	background: #eee;
	font-weight: bolder;
}
.n-productsdetail .products-nav{
	width: 100%;
	border:1px #ccc solid;
	background: #eee;
	overflow: hidden;
}
.n-productsdetail .products-nav, .n-productsdetail .products-nav a{
	color: #666;
}
.n-productsdetail .products-nav a:hover{
	color: #0348b2;
}
.n-productsdetail .products-nav .nav-right{
	float: right;
	width: 120px;
	height: 90px;
	line-height: 90px;
	text-align: center;
}
.n-productsdetail .products-nav .nav-right a{
	display: block;
	background: #0348b2;
	color: #fff;
}
.n-productsdetail .products-nav .nav-right a:hover{
	background: #141114;
}
.n-productsdetail .products-nav .nav-left{
	margin-right: 120px;
	height: 90px;
	padding:0 2%;
	line-height: 26px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.n-productsdetail .products-nav .nav-left a{
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-productsdetail .products-relate li{
	width: 32%;
	float: left;
	margin-top: 2%;
	margin-right: 2%;
	background: #fff;
	overflow: hidden;
}
.n-productsdetail .products-relate li:nth-child(3n){
	margin-right: 0;
}
.n-productsdetail .products-relate a{
	display: block;
	border: 1px #eee solid;
}
.n-productsdetail .products-relate .pic{
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}
.n-productsdetail .products-relate .pic .box{
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}
.n-productsdetail .products-relate .pic .box img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	-webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
.n-productsdetail .products-relate li:hover .pic img{
	transform: scale(1.1);
}
.n-productsdetail .products-relate .title{
	width: 92%;
	height: 60px;
	margin: 0 auto;
	border-top: 2px #eee solid;
	position: relative;
}
.n-productsdetail .products-relate .title:before{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	background: #0348b2;
	left:0;
	top: -2px;
	transform-origin: left;
    transform: scale(0, 1);
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.n-productsdetail .products-relate li:hover .title:before{
	transform-origin: left;
    transform: scale(1);
}
.n-productsdetail .products-relate .title .right{
	width: 16px;
	line-height: 60px;
	text-align: right;
}
.n-productsdetail .products-relate .title .left{
	float: none;
	margin-right: 16px;
	display: block;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    line-height: 60px;
}
@media (max-width: 1280px){
	.n-productsdetail .tit{
		padding-bottom: 10px;
	}
	.n-productsdetail .products-content-box{
		display: none;
	}
	.n-productsdetail .products-content > ul{
		border-bottom: none;
	}
	.n-productsdetail .products-content > ul > li{
		width: 100%;
		margin: 2px 0;
	}
	.n-productsdetail .products-content > ul > li > a{
		text-align: left;
		margin: 0;
	}
	.n-productsdetail .products-content > ul > li > a > i{
		display: block;
	}
	.n-productsdetail .products-content > ul > li.on > ul{
		display: block;
		padding-bottom: 3%;
	}
	.n-productsdetail .products-content > ul > li.on:last-child > ul{
		padding-bottom: 0;
	}
	.n-productsdetail .products-content table th, .n-productsdetail .products-content table td{
		padding:2%;
	}
	.n-productsdetail .products-nav .nav-right{
		width: 100px;
		height: 70px;
		line-height: 70px;
	}
	.n-productsdetail .products-nav .nav-left{
		margin-right: 100px;
		height: 70px;
	}
}
@media (max-width: 992px) {
	.n-productsdetail .products-picbox .lt, .n-productsdetail .products-picbox .rt{
	    width: 100%;
	}
	.n-productsdetail .products-picbox .rt{
		margin-top: 4%;
	}
}
@media (max-width: 750px) {
	.n-productsdetail .products-content > ul > li > a{
		line-height: 42px;
	}
	.n-productsdetail .products-nav{
		display: flex;
		flex-direction: column-reverse;
	}
	.n-productsdetail .products-nav .nav-right{
		width: 100%;
		height: 40px;
		line-height: 40px;
	}
	.n-productsdetail .products-nav .nav-left{
		width: 100%;
		float: left;
		margin-right: 0;
		padding:4%;
		height: auto;
	}
	.n-productsdetail .products-relate li{
		width: 49%;
	}
	.n-productsdetail .products-relate li:nth-child(3n){
		margin-right: 2%;
	}
	.n-productsdetail .products-relate li:nth-child(2n){
		margin-right: 0;
	}
}

/* 新闻 */
.n-news{
	width: 100%;
	overflow: hidden;
}
.n-news .news-list{
	width: 100%;
	overflow: hidden;
}
.n-news .news-list li{
	width: 30.66666666%;
	margin-right: 4%;
	float: left;
	margin-bottom: 4%;
	position: relative;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-news .news-list li:nth-child(3n){
	margin-right: 0;
}
.n-news .news-list a{
	display: block;
	margin: 3px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}
.n-news .news-list .pic{
	width: 100%;
	height: 278px;
	overflow: hidden;
}
.n-news .news-list .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
.n-news .news-list li:hover .pic img{
	transform: scale(1.1);
}
.n-news .news-list .word{
	padding: 15px;
}
.n-news .news-list .typename, .n-news .news-list .time{
	color: #999;
	font-size: 12px;
	margin: 0 0 10px 0;
}
.n-news .news-list .time{
	margin: 0;
}
.n-news .news-list .typename i, .n-news .news-list .time i{
	font-size: 12px;
}
.n-news .news-list .title{
	display: block;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-news .news-list .summary{
	height: 48px;
	margin-top: 2%;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #555;
}
@media (max-width: 1280px) {
	.n-news .news-list li{
		width: 48%;
		margin-right: 0;
	}
	.n-news .news-list li:nth-child(2n){
		float: right;
	}
}

/* 新闻详情 */
.n-newsdetail{
	overflow: hidden;
}
.n-newsdetail .news-title{
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.n-newsdetail .news-tools{
	width: 100%;
	text-align: center;
	color: #999;
	padding:10px 0;
	border-bottom: 1px #eee solid;
	overflow: hidden;
}
.n-newsdetail .news-content{
	width: 100%;
	overflow: hidden;
}
.n-newsdetail .news-content img{
	max-width: 100%;
	height: auto;
}
.n-newsdetail .news-nav{
	width: 100%;
	border:1px #eee solid;
	background: #eeeeee;
	overflow: hidden;
}
.n-newsdetail .news-nav, .n-newsdetail .news-nav a{
	color: #666;
}
.n-newsdetail .news-nav a:hover{
	color:#43880b;
}
.n-newsdetail .news-nav .nav-right{
	float: right;
	width: 120px;
	height: 90px;
	line-height: 90px;
	text-align: center;
}
.n-newsdetail .news-nav .nav-right a{
	display: block;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
	background:#43880b;
	color: #fff;
}
.n-newsdetail .news-nav .nav-right a:hover{
	background: #141114;
	color: #fff;
}
.n-newsdetail .news-nav .nav-left{
	margin-right: 120px;
	height: 90px;
	padding:0 2%;
	line-height: 26px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.n-newsdetail .news-nav .nav-left a{
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-newsdetail .news-relate, .n-newsdetail .news-message{
	width: 100%;
	overflow: hidden;
}
.n-newsdetail .news-relate .tit, .n-newsdetail .news-message .tit{
	border-bottom: 1px #eeeccc solid;
	padding-bottom: 20px;
}
.n-newsdetail .news-relate .con ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-newsdetail .news-relate .con li{
	width: 32%;
	margin-right:2%;
	margin-top: 2%;
	float: left;
	border:1px #eeeccc solid;
	background: #eeeeee;
	padding:2%;
	box-sizing: border-box;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-newsdetail .news-relate .con li:nth-child(3n){
	margin-right: 0;
}
.n-newsdetail .news-relate .con li:hover{
	background: #0348b2;
}
.n-newsdetail .news-relate .con li a{
	display: block;
}
.n-newsdetail .news-relate .con li .rt{
	width: 16px;
}
.n-newsdetail .news-relate .con li .box{
	display: block;
	margin-right: 32px;
}
.n-newsdetail .news-relate .con li .box .t{
	text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-newsdetail .news-relate .con li .box .s{
	margin-top: 10px;
	color: #666;
	text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-newsdetail .news-relate .con li:hover a, .n-newsdetail .news-relate .con li:hover .box .s{
	color: #fff;
}
@media (max-width: 1480px) {
	.n-newsdetail .news-nav .nav-right{
		width: 100px;
		height: 70px;
		line-height: 70px;
	}
	.n-newsdetail .news-nav .nav-left{
		margin-right: 100px;
		height: 70px;
	}
	.n-newsdetail .news-relate .tit, .n-newsdetail .news-message .tit{
		padding-bottom: 10px;
	}
	.n-newsdetail .news-relate .con li{
		width: 32%;
	}
	.n-newsdetail .news-relate .con li:nth-child(4n){
		margin-right: 2%;
	}
	.n-newsdetail .news-relate .con li:nth-child(3n){
		margin-right: 0;
	}
}
@media (max-width: 992px) {
	.n-newsdetail .news-relate .con li{
		width: 49%;
	}
	.n-newsdetail .news-relate .con li:nth-child(4n){
		margin-right: 2%;
	}
	.n-newsdetail .news-relate .con li:nth-child(3n){
		margin-right: 2%;
	}
	.n-newsdetail .news-relate .con li:nth-child(2n){
		margin-right: 0;
	}
}
@media (max-width: 750px) {
	.n-newsdetail .news-nav{
		display: flex;
		flex-direction: column-reverse;
	}
	.n-newsdetail .news-nav .nav-right{
		width: 100%;
		height: 40px;
		line-height: 40px;
	}
	.n-newsdetail .news-nav .nav-left{
		width: 100%;
		float: left;
		margin-right: 0;
		padding:4%;
		height: auto;
		box-sizing: border-box;
	}
	.n-newsdetail .news-relate .con li{
		width: 100%;
		margin-top: 4%;
		padding:4%;
		margin-right: 0;
	}
	.n-newsdetail .news-relate .con li:nth-child(4n){
		margin-right: 0;
	}
	.n-newsdetail .news-relate .con li:nth-child(3n){
		margin-right: 0;
	}
}

/* 品质 */
.n-quality{
	width: 100%;
	overflow: hidden;
}
.n-quality li{
	width: 100%;
	float: left;
	margin-bottom: 6%;
}
.n-quality li:last-child{
	margin-bottom: 0;
}
.n-quality .image{
	width: 44%;
    overflow: hidden;
}
.n-quality li:nth-child(2n+1) .image{
	float: left;
	padding: 2% 2% 0 0;
	background: url(../images/bg1.png) no-repeat top right;
}
.n-quality li:nth-child(2n) .image{
	float: right;
	padding: 2% 0 0 2%;
	background: url(../images/bg1.png) no-repeat top left;
}
.n-quality .image img{
	max-width: 100%;
	display: block;
}
.n-quality li:nth-child(2n+1) .image img{
	border-bottom-left-radius: 999px;
    border-top-left-radius: 999px;
}
.n-quality li:nth-child(2n) .image img{
	border-bottom-right-radius: 999px;
    border-top-right-radius: 999px;
}
.n-quality .word{
	width: 50%;
}
.n-quality li:nth-child(2n+1)  .word{
	float: right;
}
.n-quality li:nth-child(2n)  .word{
	float: left;
}
.n-quality .word .title{
	font-weight: bolder;
	border-bottom: 1px #eee solid;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
@media (max-width: 1280px){}
@media (max-width: 992px){
	.n-quality .image{
		width: 98%;
	}
	.n-quality .word{
		width: 100%;
	}
	.n-quality .word{
		margin-top: 4%;
	}
}
@media (max-width: 750px){}

/* 联系 */
.n-contact{
	width: 100%;
	overflow: hidden;
}
.n-contact .contact-box{
	width: 100%;
	overflow: hidden;
}
.n-contact .contact-box .con{
	width: 100%;
	overflow: hidden;
}
.n-contact .contact-box .con .box1,
.n-contact .contact-box .con .box2{
	width: 100%;
	overflow: hidden;
}
.n-contact .contact-box .con .box1 li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 4%;
	float: left;
	display: flex;
	align-items: stretch;
}
.n-contact .contact-box .con .box1 li:nth-child(3){
	margin-right: 0;
}
.n-contact .contact-box .con .box1 li > em,
.n-contact .contact-box .con .box1 li > div{
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-contact .contact-box .con .box1 li > em{
	border: 1px #eee solid;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
	margin: 3px;
	margin-right: 14px;
	font-size: 24px;
}
.n-contact .contact-box .con .box1 li > div{
	width: auto;
	width: calc(100% - 69px);
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}
.n-contact .contact-box .con .box2 dl{
	margin-bottom: 4%;
}
.n-contact .contact-box .con .box2 dl:last-child{
	margin-bottom: 0;
}
.n-contact .contact-box .con .box2 dt{
	margin-bottom: 2%;
}
.n-contact .contact-box .right img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.n-contact .map-box{
	width: 100%;
	height: 560px;
	position: relative;
	overflow: hidden;
}
.n-contact .map-box .my-map{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.n-contact .feedback-box{
	width: 100%;
	overflow: hidden;
}
.n-contact .feedback-box input, .n-contact .feedback-box textarea, .n-contact .feedback-box button{
	border: none;
	outline: none;
	background: none;
}
.n-contact .feedback-box li{
	float: left;
	margin-bottom: 20px;
	overflow: hidden;
}
.n-contact .feedback-box li:last-child{
	margin-bottom: 0;
}
.n-contact .feedback-box label i{
	width: 36px;
	height: 46px;
	color: #999;
	font-size: 24px;
	float: left;
}
.n-contact .feedback-box .half{
	width: 49%;
}
.n-contact .feedback-box .half:nth-child(2n){
	float: right;
}
.n-contact .feedback-box .half label{
	width: 100%;
	height: 48px;
	line-height: 46px;
	padding: 0 15px;
	background: #eeeeee;
	border-radius: 12px;
	border: 1px #ccc solid;
	display: block;
	box-sizing: border-box;
}
.n-contact .feedback-box .half label input{
    width: 90%;
    width: calc(100% - 36px);
    float: left;
    height: 46px;
}
.n-contact .feedback-box .textarea, .n-contact .feedback-box .code, .n-contact .feedback-box .submit{
	width: 100%;
}
.n-contact .feedback-box .textarea label{
	width: 100%;
	height: 180px;
	padding: 15px;
	background: #eeeeee;
	border-radius: 12px;
	border: 1px #ccc solid;
	display: block;
	box-sizing: border-box;
}
.n-contact .feedback-box .textarea label textarea{
	width: 90%;
    width: calc(100% - 36px);
    float: left;
    height: 100%;
    resize: none;
}
.n-contact .feedback-box .code label{
	width: 40%;
	height: 48px;
	line-height: 46px;
	padding: 0 15px;
	background: #eeeeee;
	border-radius: 12px;
	border: 1px #ccc solid;
	display: block;
	box-sizing: border-box;
	float: left;
}
.n-contact .feedback-box .code label input{
    width: 90%;
    width: calc(100% - 36px);
    float: left;
    height: 46px;
    text-transform: uppercase;
}
.n-contact .feedback-box .code label input::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}
.n-contact .feedback-box .code label input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}
.n-contact .feedback-box .code label input::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: none;
}
.n-contact .feedback-box .code label input:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: none;
}
.n-contact .feedback-box .code img{
	cursor: pointer;
	margin-top: 11px;
	margin-left: 10px;
	float: left;
}
.n-contact .feedback-box button{
	width: 100%;
	height: 48px;
	background: #0348b2;
	border-radius: 12px;
	text-align: center;
	line-height: 48px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-contact .feedback-box button:hover{
	background:#141114;
}
@media (max-width: 1280px) {
	.n-contact .map-box{
		height: 480px;
	}
	.n-contact .feedback-box li{
		margin-bottom: 2%;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
	.n-contact .contact-box .con .box1 li{
		width: 100%;
		margin-right: 0;
	}
	.n-contact .map-box{
		height: 400px;
	}
	.n-contact .feedback-box li{
		margin-bottom: 3%;
	}
	.n-contact .feedback-box .half{
		width: 100%;
	}
	.n-contact .feedback-box .code label{
		width: 60%;
	}
}

/* 表格 */
.table{
  width: 100%;
  border: none;
  margin-bottom: 0 !important;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.table th, .table td{
  border-top: none !important;
  border-bottom: 1px #eee solid;
  font-size: 14px;
  padding: 10px 20px !important;
}
.table th p, .table td p{
  text-align: center;
}
.table th{
  background: #0348b2;
  color: #fff;

}

/*内容留言*/
.message-form .h{
	width: 49%;
	float: left;
	margin-top: 20px;
}
.message-form .h:nth-child(2n){
	float: right;
}
.message-form .h input{
	width: 100%;
	height: 60px;
	background: #eeeeee;
	border-radius: 16px;
	border:none;
	outline: none;
	padding: 0 20px;
	box-sizing: border-box;
}
.message-form .f{
	width: 100%;
	margin-top: 20px;
	float: left;
}
.message-form .f textarea{
	width: 100%;
	height: 232px;
	background: #eeeeee;
	border-radius: 16px;
	border:none;
	outline: none;
	padding: 20px;
	resize:none;
	box-sizing: border-box;
}
.message-form .f button{
	width: 280px;
    height: 50px;
    background: #0348b2;
    cursor: pointer;
    border-radius: 40px;
    margin: 40px auto 0;
    color: #fff;
    display: block;
    border:none;
    outline: none;
    -webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.message-form .f button:focus, .message-form .f button:hover{
	background: #141114;
}
@media (max-width: 1280px) {
	.message-form .h{
		margin-top: 2%;
	}
	.message-form .h input{
		height: 54px;
	}
	.message-form .f{
		margin-top: 2%;
	}
	.message-form .f textarea{
		height: 212px;
	}
	.message-form .f button{
	    margin: 4% auto 0;
	    width: 240px;
        height: 42px;
	}
}
@media (max-width: 992px) {
	.message-form .h{
		width: 100%;
		margin-right: 0;
	}
	.message-form .h input{
		height: 48px;
		padding:0 10px;
	}
	.message-form .f textarea{
		height: 192px;
		padding:10px;
	}
}
@media (max-width: 750px) {
	.message-form .f textarea{
		height: 162px;
	}
}

/* 分页 */
.page{
	width: 100%;
	overflow: hidden;
}
.page ul{
	text-align: center;
}
.page li{
	display: inline-block;
}
.page a{
    padding: 4px 10px;
	background: #fff;
	border: 1px #eee solid;
	display: block;
	margin: 0 2px;
}
.page li.active a, .page li:hover a{
	color: #fff;
	background: #0348b2;
}
.page li.page-first a, .page li.disabled a{
	background: #eee;
	color: #555;
	pointer-events: none;
}
@media (max-width: 750px) {
	.page li.page-first{
		display: none;
	}
	.page a{
        padding: 2px 6px;
	}
}

/* 无数据 */
.no-data{
	width: 100%;
	text-align: center;
	color: #999;
	overflow: hidden;
}
.no-data i{
	font-size: 92px;
	line-height: 92px;
}
.no-data h2{
	margin-top: 10px;
}
@media (max-width: 750px) {
	.no-data h2{
		margin-top: 2%;
	}
}
