@charset "utf-8";
@font-face {
    font-family: 'FuturaStd-Bold';
    src: url('../fonts/FuturaStd-Bold.eot');
    src: url('../fonts/FuturaStd-Bold.eot') format('embedded-opentype'),
         url('../fonts/FuturaStd-Bold.woff') format('woff'),
         url('../fonts/FuturaStd-Bold.ttf') format('truetype'),
         url('../fonts/FuturaStd-Bold.svg#FuturaStd-Bold') format('svg');
}
header.black{
	background: #fff;
	position: relative;
}
/*内页大图*/
.n-banner{
	width: 100%;
	height: 600px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}
.n-banner > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.n-banner .banner-info{
	width: 94%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-top: 80px;
	padding-bottom: 62px;
}
.n-banner .banner-info h2{
	margin-top: 10px;
}
.n-banner .banner-info h2 a{
	color: #fff;
}
.n-banner .banner-info h3{
    width: 48px;
    height: 48px;
    border: 1px #fff solid;
    border-radius: 50%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.n-banner .banner-info h3 i{
	position: absolute;
	left: 11px;
	top: 6px;
	transform: translate(0, 0);
	font-size: 24px;
	animation: scroll 1.2s ease infinite;
    -webkit-animation: scroll 1.2s ease infinite;
    -moz-animation: scroll 1.2s ease infinite;
    -ms-animation: scroll 1.2s ease infinite;
    -o-animation: scroll 1.2s ease infinite;
}
@keyframes scroll{
    0% {
	    transform: translate(0,-10px);
        opacity: 0;
	}
	100% {
	    transform: translate(0,5px);
        opacity: 1;
	}
}
@media (max-width: 1280px) {
	.n-banner{
		height: 540px;
	}
	.n-banner > img{
		height: 100%;
		object-fit: cover;
	}
	.n-banner .banner-info{
		padding-bottom: 50px;
	}
}
@media (max-width: 992px) {
	.n-banner{
		height: 480px;
	}
	.n-banner > img{
		height: 100%;
		object-fit: cover;
	}
	.n-banner .banner-info{
		padding-top: 64px;
	}
	.n-banner .banner-info h3{
	    width: 40px;
	    height: 40px;
	}
	.n-banner .banner-info h3 i{
		left: 9px;
		top: 4px;
		font-size: 20px;
	}
}
@media (max-width: 750px) {
	.n-banner{
		height: 360px;
	}
	.n-banner .banner-info{
		padding-top: 50px;
		padding-bottom: 44px;
	}
}

/* 导航 */
.n-type{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.n-type .swiper-container > ul > li{
	background: #fff;
	padding: 16px 0;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
    border-left: 1px #ddd solid;
}
.n-type .swiper-container > ul > li:first-child{
	border-left: none;
}
.n-type .swiper-container > ul > li.current, .n-type .swiper-container > ul > li:hover{
	background: #9f743d;
}
.n-type .swiper-container > ul > li > a{
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-type .swiper-container > ul > li > a:hover, .n-type .swiper-container > ul > li.current > a{
	color: #fff;
}
.n-type .swiper-container > ul > li > a > .icon{
	width: 30px;
	height: 30px;
	border: 1px #ccc solid;
	border-radius: 50%;
	margin-right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-type .swiper-container > ul > li > a:hover > .icon, 
.n-type .swiper-container > ul > li.current > a > .icon{
    border: 1px #fff solid;
    background: #fff;
    color: #2b2b2b;
}
@media (max-width: 1280px) {
	.n-type .swiper-container > ul > li{
		padding: 10px 0;
	}
	.n-type .swiper-container > ul > li > a > .icon{
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}
}
@media (max-width: 992px) {
	.n-type .swiper-container > ul > li > a > .icon{
		width: 30px;
		height: 30px;
	}
}
@media (max-width: 750px) {
	.n-type .swiper-container > ul > li > a > .icon{
		width: 20px;
		height: 20px;
	}
	.n-type .swiper-container > ul > li > a > .icon i{
		font-size: 12px;
	}
}

/* 内页公共 */
.n-y{
	width: 100%;
	overflow: hidden;
}
.n-tit{
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-weight: bolder;
	overflow: hidden;
}
.n-tit .line-box{
	width: 21px;
	margin: 0 auto;
	margin-top: 16px;
}
.n-tit .line{
    height: 2px;
	background: #9f743d;
	margin-top: 3px;
}
.n-tit.white .line{
	background: #fff;
}
.n-tit .line-01{
	width: 21px;
}
.n-tit .line-02{
	width: 14px;
}
.n-tit .line-03{
	width: 16px;
}
@media (max-width: 1280px) {
	.n-tit .line-box{
		margin-top: 10px;
	}
}

/* 关于 */
.n-about{
	width: 100%;
	overflow: hidden;
}
.n-about .about-box,
.n-about .culture-box,
.n-about .history-box,
.n-about .honor-box,
.n-about .media-box{
	overflow: hidden;
}
.n-about .about-box .div1{
	font-size: 15px;
	overflow: hidden;
}
.n-about .about-box .div1 img{
	display: block;
	float: left;
	margin-right: 50px;
	margin-bottom: 50px;
}
.n-about .about-box .div2 ul{
	margin: 3px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .1);
	padding: 30px 10px;
	text-align: center;
}
.n-about .about-box .div2 ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-about .about-box .div2 li{
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
	display: inline-block;
	border-right: 1px #e1e1e1 solid;
}
.n-about .about-box .div2 li:last-child{
	border-right: none;
}
.n-about .about-box .div2 li h1{
	color: #9f743d;
	font-weight: bolder;
}
.n-about .about-box .div2 li h1 em{
	border: 1px #9f743d solid;
	width: 56px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	font-size: 30px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
}
.n-about .about-box .div2 li h3{
	color: #999;
}
.n-about .culture-box{
	width: 100%;
	background: url('../images/about-bg1.jpg') no-repeat center top;
	background-size: cover;
}
.n-about .culture-box ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-about .culture-box li{
	float: left;
	margin-right: 2%;
	margin-top: 20px;
	padding: 30px;
	text-align: center;
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
    background:#fff;
    cursor: pointer;
    overflow: hidden;
}
.n-about .culture-box li:nth-child(3n){
	margin-right: 0;
}
.n-about .culture-box li h1{
	position: relative;
	padding-bottom: 22px;
	margin-bottom: 20px;
}
.n-about .culture-box li h1:after{
	content: "";
	width: 60px;
	height: 2px;
	position: absolute;
	background: #eee;
	bottom: 0;
	left:50%;
	transform: translateX(-50%);
}
.n-about .culture-box li h2{
	color: #888;
}
.n-about .history-box .div1{
	text-align: center;
	color: #555;
}
.n-about .history-box .div2  .main-box{
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.n-about .history-box .div2  .main-box:after{
	content: "";
	width: auto;
	width: calc(100% - 80px);
	height: 1px;
	background: #9f743d;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.n-about .history-box .div2  .main-box .swiper-button-prev:after,
.n-about .history-box .div2  .main-box .swiper-button-next:after{
    display: none;
}
.n-about .history-box .div2  .main-box .swiper-button-prev,
.n-about .history-box .div2  .main-box .swiper-button-next{
	width: 27px;
	height: 27px;
	top: 50%;
	margin-top: -14px;
	outline: none;
}
.n-about .history-box .div2  .main-box .swiper-button-prev{
	left: 0;
	background: url('../images/left.png') no-repeat;
}
.n-about .history-box .div2  .main-box .swiper-button-next{
	right: 0;
	background: url('../images/right.png') no-repeat;
}
.n-about .history-box .div2  .date-box{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.n-about .history-box .div2  .date-box .text2{
	font-family: 'FuturaStd-Bold';
}
.n-about .history-box .div2  .main-box li{
	cursor: pointer;
}
.n-about .history-box .div2  .main-box li .date{
    font-family: 'FuturaStd-Bold';
    height: 30px;
}
.n-about .history-box .div2  .main-box li .icon{
	width: 40px;
	height: 40px;
	position: relative;
	overflow: hidden;
}
.n-about .history-box .div2  .main-box li .icon:before{
	content: "";
    width: 22px;
    height: 22px;
    background: rgba(159, 116, 61, .3);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.n-about .history-box .div2  .main-box li.swiper-slide-active .icon:before{
	width: 40px;
	height: 40px;
}
.n-about .history-box .div2  .main-box li .icon:after{
	content: "";
    width: 16px;
    height: 16px;
    background: rgba(159, 116, 61, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.n-about .history-box .div2  .main-box li.swiper-slide-active .icon:after{
	width: 26px;
	height: 26px;
}
.n-about .history-box .div2  .main-box li .word{
	height: 32px;
	opacity: 0;
	visibility: hidden;
    overflow: hidden;
}
.n-about .history-box .div2  .text-box{
	text-align: center;
}
.n-about .history-box .div2  .text-box h1{
	font-size: 24px;
}
.n-about .history-box .div2  .text-box h2{
	margin-top: 10px;
}
.n-about .honor-box .con,
.n-about .media-box .con{
	overflow: hidden;
}
.n-about .honor-box{
	width: 100%;
	background: url('../images/about-bg2.jpg') no-repeat center top;
	background-size: cover;
}
.n-about .honor-box .con li a{
	height: 240px;
	position: relative;
	display: block;
	background: #fff;
}
.n-about .honor-box .con li a .box{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-about .honor-box .con li a:hover .box{
	opacity: 1;
	visibility: visible;
}
.n-about .honor-box .con li a .box i{
	font-size: 36px;
}
.n-about .honor-box .con img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.n-about .honor-box .swiper-control{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-about .honor-box .swiper-button-prev,
.n-about .honor-box .swiper-button-next{
	width: 60px;
	height: 40px;
	background: #9f743d;
	line-height: 40px;
	text-align: center;
	position: static;
	opacity: 1;
	margin: 0 10px;
	outline: none;
}
.n-about .honor-box .swiper-button-prev:after,
.n-about .honor-box .swiper-button-next:after{
	font-size: 20px;
}
.n-about .media-box .con li a{
	margin: 3px;
	height: 254px;
	display: block;
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}
.n-about .media-box .con li a .image{
	height: 204px;
	position: relative;
}
.n-about .media-box .con li a .image .box{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
}
.n-about .media-box .con li a .image .box i{
	font-size: 48px;
}
.n-about .media-box .con li a .image img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	display: block;
}
.n-about .media-box .con li a .text{
	padding: 0 15px;
	line-height: 50px;
	display:block;
	white-space:nowrap; 
	overflow:hidden; 
	text-overflow:ellipsis;
}
.n-about .media-box .swiper-control{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-about .media-box .swiper-button-prev,
.n-about .media-box .swiper-button-next{
	width: 60px;
	height: 40px;
	background: #9f743d;
	line-height: 40px;
	text-align: center;
	position: static;
	opacity: 1;
	margin: 0 10px;
	outline: none;
}
.n-about .media-box .swiper-button-prev:after,
.n-about .media-box .swiper-button-next:after{
	font-size: 20px;
}
@media (max-width: 1280px) {
	.n-about .about-box .div1 img{
		width: 50%;
		margin-right: 3%;
		margin-bottom: 3%;
	}
	.n-about .about-box .div2 li{
	    -ms-flex: 1 0 50%;
	    flex: 1 0 50%;
	    padding: 4%;
	}
	.n-about .about-box .div2 li:nth-child(1), 
	.n-about .about-box .div2 li:nth-child(2){
		border-bottom: 1px #e1e1e1 solid;
	}
	.n-about .about-box .div2 li:nth-child(2){
		border-right: none;
	}
	.n-about .about-box .div2 li .mt20 {
	    margin-top: 10px;
	}
	.n-about .culture-box li{
		padding: 4%;
		margin-top: 2%;
	}
	.n-about .history-box .div2 .text-box h1{
		font-size: 18px;
	}
}
@media (max-width: 992px) {
	.n-about .about-box .div1 img{
		width: 100%;
		height: auto;
		margin-right: 0;
		margin-bottom: 4%;
	}
	.n-about .about-box .div2 li h1 em{
		width: 50px;
		height: 50px;
		line-height: 48px;
		font-size: 24px;
	}
	.n-about .culture-box li{
	    -ms-flex: 1 0 48%;
	    flex: 1 0 48%;
	}
	.n-about .culture-box li:nth-child(3n){
		margin-right: 2%;
	}
	.n-about .culture-box li:nth-child(2n){
		margin-right: 0;
	}
}
@media (max-width: 750px) {
	.n-about .culture-box li{
	    -ms-flex: 1 0 100%;
	    flex: 1 0 100%;
	    margin-right: 0;
	}
	.n-about .culture-box li h1{
		padding-bottom: 12px;
		margin-bottom: 10px;
	}
	.n-about .culture-box li:nth-child(3n){
		margin-right: 0;
	}
	.n-about .history-box .div2 .main-box li .icon{
		width: 30px;
		height: 30px;
	}
	.n-about .history-box .div2 .main-box li .icon:before{
	    width: 20px;
	    height: 20px;
	}
	.n-about .history-box .div2 .main-box li.swiper-slide-active .icon:before{
		width: 30px;
		height: 30px;
	}
	.n-about .history-box .div2 .main-box li .icon:after{
	    width: 14px;
	    height: 14px;
	}
	.n-about .history-box .div2 .main-box li.swiper-slide-active .icon:after{
		width: 18px;
		height: 18px;
	}
}

/* 产品 */
.n-products{
	overflow: hidden;
}
.n-products .products-content{
	border: 1px #eee solid;
	padding: 3%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.n-products .products-content .left{
	white-space:nowrap;
	border-right: 1px #eee solid;
	padding-right:24px;
	margin-right: 24px;
	font-weight: bolder;
}
.n-products .products-list li{
	width: 23.5%;
	margin-right: 2%;
	float: left;
	margin-bottom: 4%;
}
.n-products .products-list li:nth-child(4n){
	margin-right: 0;
}
.n-products .products-list a{
	border: 1px #eee solid;
	display: block;
	position: relative;
}
.n-products .products-list a:hover{
	transform: translateY(-10px);
}
.n-products .products-list a:after{
	content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background-color: #ddd;
    transition: all .3s;
}
.n-products .products-list a:hover:after {
    width: 100%;
}
.n-products .products-list .img{
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}
.n-products .products-list .img .box{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.n-products .products-list .img .box img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
.n-products .products-list .text{
	padding: 0 20px;
	overflow: hidden;
}
.n-products .products-list .text .tit-box {
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-products .products-list .text .area-box{
	line-height: 50px;
}
.n-products .products-list .text .area{
    float: left;
    color: #9f743d;
    font-weight: bolder;
    line-height: 50px;
}
.n-products .products-list .text .more {
    color: #666;
    float: right;
}
@media (max-width: 1280px) {
	.n-products .products-list li{
		width: 32%;
	}
	.n-products .products-list li:nth-child(4n){
		margin-right: 2%;
	}
	.n-products .products-list li:nth-child(3n){
		margin-right: 0;
	}
}
@media (max-width: 992px) {
	.n-products .products-list li{
		width: 48%;
		margin-right: 0;
	}
	.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){
		float: right;
	}
}
@media (max-width: 750px) {
	.n-products .products-content{
		display: block;
		text-align: center;
		padding: 4%;
	}
	.n-products .products-content .left{
		width: 100%;
		border-right: none;
		padding-right:0;
		margin-right: 0;
	}
	.n-products .products-content .right{
		width: 100%;
		margin-top: 10px;
	}
	.n-products .products-list li{
		width: 100%;
	}
}

/* 产品详情 */
.n-productsdetail{
	width: 100%;
	overflow: hidden;
}
.n-productsdetail .productsdetail-path{
	width: 100%;
	background: #fff;
	padding: 15px 0;
	overflow: hidden;
}
.n-productsdetail .productsdetail-info{
	width: 100%;
    overflow: hidden;
}
.n-productsdetail .productsdetail-info .lt{
	width: 42%;
}
.n-productsdetail .productsdetail-info .rt{
    width: 54%;
}
.n-productsdetail .productsdetail-info .lt{
	position: relative;
	overflow: hidden;
}
.n-productsdetail .productsdetail-info .lt i{
	position: absolute;
	top:20px;
	right:20px;
	z-index: 1;
	font-size: 20px;
}
.n-productsdetail .productsdetail-info .lt .sp-wrap{
	width: 100%;
	border:1px #eee solid;
	box-sizing: border-box;
}
.n-productsdetail .productsdetail-info .lt .sp-wrap > a{
	display: block;
}
.n-productsdetail .productsdetail-info .lt .sp-wrap a > img{
	display: block;
	margin:0 auto;
}
.n-productsdetail .productsdetail-info .rt li{
	border-bottom: 1px #eee solid;
	padding: 20px 0;
}
.n-productsdetail .productsdetail-info .rt li:last-child{
	border-bottom: none;
}
.n-productsdetail .productsdetail-info .rt dl{
	margin-top: 10px;
}
.n-productsdetail .productsdetail-info .rt dd{
	width: 20%;
	float: left;
	text-align: center;
}
.n-productsdetail .productsdetail-info .rt dd .line{
	width: 100%;
	height: 20px;
	background: #9f743d;
	margin-bottom: 4px;
}
.n-productsdetail .productsdetail-info .rt dd:nth-child(1) .line{
	border-radius: 10px 0 0 10px;
	background: #e9e9e9;
}
.n-productsdetail .productsdetail-info .rt dd:nth-child(2) .line{
	background: #d5d5d5;
}
.n-productsdetail .productsdetail-info .rt dd:nth-child(3) .line{
	background: #c1c1c1;
}
.n-productsdetail .productsdetail-info .rt dd:nth-child(4) .line{
	background: #a5a5a6;
}
.n-productsdetail .productsdetail-info .rt dd:nth-child(5) .line{
	border-radius: 0 10px 10px 0;
	background: #8e8e8e;
}
.n-productsdetail .productsdetail-info .rt dd.current .line{
	background: #cf092c;
}
.n-productsdetail .productsdetail-info .rt dd.current .text{
	color: #cf092c;
}
.n-productsdetail .productsdetail-info .rt p{
    font: 14px/1.8 Raleway-Regular, Arial, "Microsoft YaHei", sans-serif !important;
}
.n-productsdetail .productsdetail-list{
	overflow: hidden;
}
.n-productsdetail .productsdetail-list .tit{
	border-bottom: 1px #eee solid;
	padding-bottom: 14px;
	position: relative;
}
.n-productsdetail .productsdetail-list .tit:after{
	content: "";
    width: 70px;
    height: 2px;
    background: #9f743d;
    position: absolute;
    left: 0;
    bottom: 0;
}
.n-productsdetail .productsdetail-list li{
	padding-top: 10px;
}
.n-productsdetail .productsdetail-list a{
	border: 1px #eee solid;
	display: block;
	position: relative;
}
.n-productsdetail .productsdetail-list a:hover{
	transform: translateY(-10px);
}
.n-productsdetail .productsdetail-list a:after{
	content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    background-color: #ddd;
    transition: all .3s;
}
.n-productsdetail .productsdetail-list a:hover:after {
    width: 100%;
}
.n-productsdetail .productsdetail-list .img{
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}
.n-productsdetail .productsdetail-list .img .box{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.n-productsdetail .productsdetail-list .img .box img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}
.n-productsdetail .productsdetail-list .text{
	padding: 0 20px;
	overflow: hidden;
}
.n-productsdetail .productsdetail-list .text .tit-box {
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-productsdetail .productsdetail-list .text .area-box{
	line-height: 50px;
}
.n-productsdetail .productsdetail-list .text .area{
    float: left;
    color: #9f743d;
    font-weight: bolder;
    line-height: 50px;
}
.n-productsdetail .productsdetail-list .text .more {
    color: #666;
    float: right;
}
.n-productsdetail .productsdetail-list .swiper-control{
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-productsdetail .productsdetail-list .swiper-button-prev,
.n-productsdetail .productsdetail-list .swiper-button-next{
	width: 42px;
	height: 42px;
	margin: 0 10px;
	border: 1px #eee solid;
	display: flex;
	align-items: center;
	justify-content: center;
	position: static;
	border-radius: 50%;
	outline: none;
}
.n-productsdetail .productsdetail-list .swiper-button-prev:after,
.n-productsdetail .productsdetail-list .swiper-button-next:after{
	color: #2b2b2b;
	font-size: 16px;
}
.n-productsdetail .productsdetail-list .swiper-button-prev:hover,
.n-productsdetail .productsdetail-list .swiper-button-next:hover{
	border-color: #9f743d;
	background: #9f743d;
}
.n-productsdetail .productsdetail-list .swiper-button-prev:hover:after,
.n-productsdetail .productsdetail-list .swiper-button-next:hover:after{
	color: #fff;
}
.n-productsdetail .productsdetail-banner{
	width: 100%;
	overflow: hidden;
}
.n-productsdetail .productsdetail-banner li{
	position: relative;
}
.n-productsdetail .productsdetail-banner li > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.n-productsdetail .productsdetail-banner li .wordbox{
	width: 50%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: flex;
	text-align: center;
	color: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.n-productsdetail .productsdetail-banner li .wordbox img{
	display: block;
	margin: 0 auto;
}
.n-productsdetail .productsdetail-banner li .wordbox h2{
	padding: 20px 0;
	margin-bottom: 20px;
    position: relative;
}
.n-productsdetail .productsdetail-banner li .wordbox h2:after{
	content: "";
	width: 40px;
	height: 3px;
	background: #fff;
	opacity: .8;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.n-productsdetail .productsdetail-banner .swiper-pagination{
	bottom: 30px;
}
.n-productsdetail .productsdetail-banner .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: #fff;
}
.n-productsdetail .productsdetail-content{
	overflow: hidden;
}
.n-productsdetail .productsdetail-content p,
.n-productsdetail .productsdetail-content span{
	font: 14px/1.8 Raleway-Regular, Arial, "Microsoft YaHei", sans-serif !important;
}
.n-productsdetail .productsdetail-content img{
	max-width: 100%;
	height: auto;
}
.n-productsdetail .productsdetail-content table{
    width:100% !important;
    padding:0 !important;
    margin: 0 !important;
}
.n-productsdetail .productsdetail-content table td{
    padding:0 !important;
    margin: 0 !important;
}
.n-productsdetail .productsdetail-content .center{
	width: 100%;
	text-align: center;
	margin-top: 80px;
	overflow: hidden;
}
.n-productsdetail .productsdetail-content .center:first-child{
	margin-top: 0;
}
.n-productsdetail .productsdetail-content .g_heilan {
    font-size: 50px;
    line-height: 50px;
}
.n-productsdetail .productsdetail-content .g_heilan .g_lan {
    color: #9f743d;
}
.n-productsdetail .productsdetail-content .g_xiaolan {
    font-size: 14px;
    margin-top: 30px;
    color: #9f743d;
}
.n-productsdetail .productsdetail-content .g_contenta,
.n-productsdetail .productsdetail-content .g_contentb{
	margin-top: 80px;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item {
    width: 32%;
    float: left;
    margin-right: 2%;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item .g_cx{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item .g_chuangxin{
	font-size: 40px;
	line-height: 40px;
	margin-top: 40px;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item .g_zhuanli {
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item .g_duogongneng {
    text-align: center;
    font-size: 17px;
    color: #888;
}
.n-productsdetail .productsdetail-content .g_contenta .g_item:nth-child(3n){
	margin-right: 0;
}
@media (max-width: 1280px){
	.n-productsdetail .productsdetail-banner li{
		height: 480px;
	}
	.n-productsdetail .productsdetail-banner li .wordbox{
		width: 64%;
	}
	.n-productsdetail .productsdetail-content .center{
		margin-top: 8%;
	}
	.n-productsdetail .productsdetail-content .g_heilan {
	    font-size: 40px;
	    line-height: 40px;
	}
	.n-productsdetail .productsdetail-content .g_xiaolan {
	    margin-top: 4%;
	}
	.n-productsdetail .productsdetail-content .g_contenta,
	.n-productsdetail .productsdetail-content .g_contentb{
		margin-top: 8%;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item .g_chuangxin{
		font-size: 30px;
		line-height: 30px;
		margin-top: 4%;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item .g_zhuanli {
	    margin-top: 4%;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item .g_duogongneng {
	    font-size: 16px;
	}
}
@media (max-width: 992px) {
	.n-productsdetail .productsdetail-info .lt,
	.n-productsdetail .productsdetail-info .rt{
	    width: 48%;
	}
	.n-productsdetail .productsdetail-banner .swiper-pagination{
		bottom: 20px;
	}
	.n-productsdetail .productsdetail-content .g_heilan {
	    font-size: 30px;
	    line-height: 30px;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item .g_chuangxin{
		font-size: 20px;
		line-height: 20px;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item .g_duogongneng {
	    font-size: 14px;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item {
	    width: 100%;
	    margin-right: 0;
	    margin-top: 4%;
	}
	.n-productsdetail .productsdetail-content .g_contenta .g_item:first-child{
		margin-top: 0;
	}
}
@media (max-width: 750px) {
	.n-productsdetail .productsdetail-info .lt,
	.n-productsdetail .productsdetail-info .rt{
	    width: 100%;
	}
	.n-productsdetail .productsdetail-info .rt li{
		padding: 12px 0;
	}
	.n-productsdetail .productsdetail-list .tit{
		padding-bottom: 10px;
	}
	.n-productsdetail .productsdetail-list .tit:after{
		width: 60px;
	}
	.n-productsdetail .productsdetail-list .text {
	    padding: 0 10px;
	}
	.n-productsdetail .productsdetail-list .text .tit-box,
	.n-productsdetail .productsdetail-list .text .area-box,
	.n-productsdetail .productsdetail-list .text .area{
	    line-height: 40px;
	}
	.n-productsdetail .productsdetail-list .swiper-button-prev,
	.n-productsdetail .productsdetail-list .swiper-button-next{
		width: 36px;
		height: 36px;
		margin: 0 5px;
	}
	.n-productsdetail .productsdetail-banner li{
		height: 450px;
	}
	.n-productsdetail .productsdetail-banner li .wordbox{
		width: 94%;
	}
	.n-productsdetail .productsdetail-banner li .wordbox h1 img{
		width: 60px;
		height: auto;
	}
	.n-productsdetail .productsdetail-banner .swiper-pagination{
		bottom: 10px;
	}
	.n-productsdetail .productsdetail-content .g_heilan {
	    font-size: 24px;
	    line-height: 24px;
	}
}

/* 加盟 */
.n-join{
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.n-join .box1,
.n-join .box2,
.n-join .box3,
.n-join .box4,
.n-join .box5{
	overflow: hidden;
}
.n-join .box1{
	margin-top: 10px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	padding: 4%;
}
.n-join .box1 .txt1, 
.n-join .box1 .txt2{
	text-align: center;
}
.n-join .box1 .txt1 h1{
	color: #9f743d;
}
.n-join .box1 .txt1 h2{
	padding: 2% 0;
	color: #9f743d;
	font-weight: bolder;
}
.n-join .box1 .txt1 h3{
	color: #999;
}
.n-join .box1 .txt2{
	padding-top: 4%;
}
.n-join .box1 .txt2 ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-join .box1 .txt2 li{
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
	display: inline-block;
	border-right: 1px #e1e1e1 solid;
}
.n-join .box1 .txt2 li:last-child{
	border-right: none;
}
.n-join .box1 .txt2 li h1{
	color: #9f743d;
	font-weight: bolder;
}
.n-join .box1 .txt2 li h1 em{
	border: 1px #9f743d solid;
	width: 56px;
	height: 56px;
	line-height: 54px;
	text-align: center;
	font-size: 30px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
}
.n-join .box1 .txt2 li h3{
	color: #999;
}
.n-join .box2 .con{
	background: #f9f9f9;
}
.n-join .box2 li{
	display: flex;
	align-items: stretch;
}
.n-join .box2 li .imgbox{
	width: 60%;
}
.n-join .box2 li .imgbox img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.n-join .box2 li .wordbox{
	width: 40%;
	padding: 50px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.n-join .box2 li .wordbox h1{
	font-weight: bolder;
	padding-bottom: 23px;
	position: relative;
}
.n-join .box2 li .wordbox h1:after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	background: #9f743d;
}
.n-join .box2 li .wordbox h2{
	color: #666;
}
.n-join .box2 .swiper-pagination{
	width: auto;
	left: auto;
	right: 0;
	padding: 0 3%;
	bottom: 20px;
}
.n-join .box2 .swiper-pagination-bullet{
	background: #999;
	opacity: 1;
	outline: none;
}
.n-join .box2 .swiper-pagination-bullet-active{
	background: #9f743d;
}
.n-join .box3 .div1{
	width: 100%;
    background: url('../images/join-bg1.jpg') no-repeat center top;
    background-size: cover;
}
.n-join .box3 .div1 .con{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.n-join .box3 .div1 .left{
	width: 40%;
}
.n-join .box3 .div1 .left img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.n-join .box3 .div1 .right{
	width: 58%;
}
.n-join .box3 .div1 .right ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-join .box3 .div1 .right li{
	float: left;
	margin-right: 2%;
	margin-top: 2%;
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 48%;
    flex: 1 0 48%;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: stretch;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.n-join .box3 .div1 .right li:nth-child(2n){
	margin-right: 0;
}
.n-join .box3 .div1 .right li:nth-child(1),
.n-join .box3 .div1 .right li:nth-child(2){
	margin-top: 0;
}
.n-join .box3 .div1 .right li .number{
	width: 60px;
	display: flex;
	align-items: center;
}
.n-join .box3 .div1 .right li .number span{
	width: 48px;
	height: 48px;
	background: #9f743d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.n-join .box3 .div1 .right li .word{
	width: auto;
	width: calc(100% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-join .box3 .div2 ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-join .box3 .div2 li{
	float: left;
	margin-right: 1%;
	margin-top: 1%;
	padding: 20px;
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 15.8333333%;
    flex: 1 0 15.8333333%;
    cursor: pointer;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    background: #fff;
    border: 1px #9f743d dashed;
    position: relative;
    overflow: hidden;
}
.n-join .box3 .div2 li:nth-child(6n){
	margin-right: 0;
}
.n-join .box3 .div2 li .number{
	width: 40px;
	height: 40px;
	background: #9f743d;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 50%;
}
.n-join .box3 .div2 li .arrow{
	text-align: right;
	color: #666;
}
.n-join .box4{
	background: url('../images/join-bg4.jpg') no-repeat center top;
	background-size: cover;
}
.n-join .box4 .con{
	overflow: hidden;
}
.n-join .box4 .con li a{
	height: 260px;
	position: relative;
	display: block;
}
.n-join .box4 .con li a .box{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-join .box4 .con li a:hover .box{
	opacity: 1;
	visibility: visible;
}
.n-join .box4 .con li a .box i{
	font-size: 36px;
}
.n-join .box4 .con img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.n-join .box4 .swiper-control{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-join .box4 .swiper-button-prev,
.n-join .box4 .swiper-button-next{
	width: 60px;
	height: 40px;
	background: #9f743d;
	line-height: 40px;
	text-align: center;
	position: static;
	opacity: 1;
	margin: 0 10px;
	outline: none;
}
.n-join .box4 .swiper-button-prev:after,
.n-join .box4 .swiper-button-next:after{
	font-size: 20px;
}
.n-join .box5 .con{
	border: 1px #e1e1e1 solid;
	padding: 4%;
	overflow: hidden;
}
.n-join .box5 .con ul{
	align-items: stretch;
}
.n-join .box5 .con li{
	float: left;
}
.n-join .box5 .con li.inputLi{
	width: 48%;
	margin-bottom: 20px;
}
.n-join .box5 .con li.inputLi:nth-child(2n){
	float: right;
}
.n-join .box5 .con li.selectLi, .n-join .box5 .con li.textareaLi{
	width: 100%;
	margin-bottom: 20px;
}
.n-join .box5 .con li.buttonLi{
	width: 100%;
}
.n-join .box5 .con li label{
	width: 80px;
	float: left;
	font-weight: lighter;
	line-height: 46px;
}
.n-join .box5 .con li input, 
.n-join .box5 .con li select, .n-join .box5 .con li textarea{
	border: 1px #e1e1e1 solid;
	padding: 0 10px;
	outline: none;
}
.n-join .box5 .con li input, 
.n-join .box5 .con li .selectBox, .n-join .box5 .con li textarea{
    width: 80%;
    width: calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    float: right;
}
.n-join .box5 .con li input, 
.n-join .box5 .con li select{
	height: 46px;
}
.n-join .box5 .con li .selectBox select{
	width: 20%;
}
.n-join .box5 .con li textarea{
    height: 122px;
    padding: 10px;
}
.n-join .box5 .con li button{
	width: 228px;
	background: #9f743d;
	height: 46px;
	line-height: 46px;
	color: #fff;
	text-align: center;
	border: none;
	outline: none;
	cursor: pointer;
	display:block;
}
@media (max-width: 1280px) {
	.n-join .box1 .txt2 li{
	    -ms-flex: 1 0 50%;
	    flex: 1 0 50%;
	    padding: 4%;
	}
	.n-join .box1 .txt2 li:nth-child(1), .n-join .box1 .txt2 li:nth-child(2){
		border-bottom: 1px #e1e1e1 solid;
	}
	.n-join .box1 .txt2 li:nth-child(2){
		border-right: none;
	}
	.n-join .box1 .txt2 li .mt20 {
	    margin-top: 10px;
	}
	.n-join .box2 li{
		flex-direction: column;
	}
	.n-join .box2 li .imgbox,
	.n-join .box2 li .wordbox{
		width: 100%;
	}
	.n-join .box2 li .wordbox{
		padding: 30px 30px 50px 30px;
	}
	.n-join .box2 .swiper-pagination{
		right: auto;
		width: 100%;
	}
	.n-join .box3 .div1 .con{
		flex-direction: column;
	}
	.n-join .box3 .div1 .left,
	.n-join .box3 .div1 .right{
		width: 100%;
	}
	.n-join .box3 .div1 .right li:nth-child(1),
	.n-join .box3 .div1 .right li:nth-child(2){
		margin-top: 2%;
	}
	.n-join .box3 .div2 li{
	    -ms-flex: 1 0 32.3333333%;
	    flex: 1 0 32.3333333%;
	}
	.n-join .box3 .div2 li:nth-child(6n){
		margin-right: 1%;
	}
	.n-join .box3 .div2 li:nth-child(3n){
		margin-right: 0;
	}
	.n-join .box4 .con li a{
		height: 240px;
	}
	.n-join .box5 .con li.inputLi{
		margin-bottom: 2%;
	}
	.n-join .box5 .con li.selectLi, .n-join .box5 .con li.textareaLi{
		margin-bottom: 2%;
	}
	.n-join .box5 .con li .selectBox select{
		width: 30%;
	}
}
@media (max-width: 992px) {
	.n-join .box1 .txt2 li h1 em{
		width: 50px;
		height: 50px;
		line-height: 48px;
		font-size: 24px;
	}
	.n-join .box2 li .wordbox h1{
		padding-bottom: 13px;
	}
	.n-join .box4 .con li a{
		height: 200px;
	}
}
@media (max-width: 750px) {
	.n-join .box3 .div1 .right li .number{
		width: 50px;
	}
	.n-join .box3 .div1 .right li .number span{
		width: 38px;
		height: 38px;
	}
	.n-join .box3 .div1 .right li .word{
		width: calc(100% - 50px);
	}
	.n-join .box3 .div1 .right li{
		margin-right: 0;
	    -ms-flex: 1 0 100%;
	    flex: 1 0 100%;
		padding: 14px;
	}
	.n-join .box3 .div2 li{
		padding: 14px;
	    -ms-flex: 1 0 49.5%;
	    flex: 1 0 49.5%;
	}
	.n-join .box3 .div2 li:nth-child(6n),
	.n-join .box3 .div2 li:nth-child(3n){
		margin-right: 1%;
	}
	.n-join .box3 .div2 li:nth-child(2n){
		margin-right: 0;
	}
	.n-join .box3 .div2 li .number{
		width: 38px;
		height: 38px;
	}
	.n-join .box5 .con{
		padding: 6%;
	}
	.n-join .box5 .con li.inputLi{
		width: 100%;
	}
	.n-join .box5 .con li.inputLi{
		margin-bottom: 4%;
	}
	.n-join .box5 .con li.selectLi, .n-join .box5 .con li.textareaLi{
		margin-bottom: 4%;
	}
	.n-join .box5 .con li .selectBox select{
		width: 100%;
		margin-bottom: 4%;
	}
	.n-join .box5 .con li .selectBox select:last-child{
		margin-bottom: 0;
	}
	.n-join .box5 .con li button{
		width: 90%;
		width: calc(100% - 80px);
		margin: 0 auto;
	}
}

/* 服务 */
.n-service{
	width: 100%;
	overflow: hidden;
}
.n-service .box1,
.n-service .box2,
.n-service .box3{
	overflow: hidden;
}
.n-service .box1 .div1,
.n-service .box1 .div2{
	overflow: hidden;
}
.n-service .box1 .div1 ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-service .box1 .div1 li{
	float: left;
	margin-right: 2%;
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 23.5%;
    flex: 1 0 23.5%;
    padding: 20px;
    height: 460px;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.n-service .box1 .div1 li:nth-child(1){
	background: url('../images/service-img3.jpg') no-repeat center;
	background-size: cover;
}
.n-service .box1 .div1 li:nth-child(2){
	background: url('../images/service-img4.jpg') no-repeat center;
	background-size: cover;
}
.n-service .box1 .div1 li:nth-child(3){
	background: url('../images/service-img5.jpg') no-repeat center;
	background-size: cover;
}
.n-service .box1 .div1 li:nth-child(4){
	background: url('../images/service-img6.jpg') no-repeat center;
	background-size: cover;
	margin-right: 0;
}
.n-service .box1 .div1 li .word1{
	width: 100%;
	border: 1px #fff solid;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-service .box1 .div1 li:hover .word1{
	opacity: 0;
}
.n-service .box1 .div1 li .word1 > div{
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.n-service .box1 .div1 li .word1 h1{
	padding: 4px 0;
}
.n-service .box1 .div1 li .word1 em{
	font-size: 36px;
}
.n-service .box1 .div1 li .word2{
	width: 0;
	height: 0;
	padding: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	-webkit-transition:all 400ms linear;
    -moz-transition:all 400ms linear;
    -o-transition:all 400ms linear;
    transition:all 400ms linear;
}
.n-service .box1 .div1 li:hover .word2{
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
}
.n-service .box1 .div1 li .word2 .box{
	width: 100%;
	height: 100%;
	padding: 20px;
	background: rgba(159, 116, 61, .9);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	-webkit-transition:all 800ms linear;
    -moz-transition:all 800ms linear;
    -o-transition:all 800ms linear;
    transition:all 800ms linear;
}
.n-service .box1 .div1 li:hover .word2 .box{
	opacity: 1;
}
.n-service .box1 .div1 li .word2 .box em{
	font-size: 48px;
}
.n-service .box1 .div2{
	background: #f8f7f6;
}
.n-service .box1 .div2 .tit{
	text-align: center;
	padding-bottom: 23px;
	font-weight: bolder;
	position: relative;
}
.n-service .box1 .div2 .tit:after{
	content: "";
	width: 40px;
	height: 3px;
	background: #9f743d;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.n-service .box1 .div2 ul{
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	align-items: stretch;
}
.n-service .box1 .div2 li{
	margin-right: 2%;
	background: #fff;
	border: 1px #eee solid;
	padding: 20px;
	margin-top: 20px;
	float: left;
	flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 32%;
    flex: 1 0 32%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.n-service .box1 .div2 li:nth-child(3n){
	margin-right: 0;
}
.n-service .box1 .div2 li .number{
	width: 60px;
	height: 60px;
	background: url('../images/numberBg.jpg') no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9f743d;
}
.n-service .box1 .div2 li em{
	font-size: 30px;
	color: #999;
}
.n-service .box2{
	width: 100%;
	background: url('../images/service-bg.jpg') no-repeat center;
	background-size: cover;
}
.n-service .box2 .div1,
.n-service .box1 .div2{
	width: 100%;
	overflow: hidden;
}
.n-service .box2 .div1{
	text-align: center;
}
.n-service .box2 .div2 li{
	width: 100%;
	float: left;
	margin-top: 30px;
	text-align: center;
}
.n-service .box2 .div2 li:nth-child(2n){
	float: right;
}
.n-service .box2 .div2 li.h{
	width: 49%;
}
.n-service .box2 .div2 li input{
	width: 100%;
	height: 42px;
	border: 1px #fff solid;
	background: none;
	padding: 0 10px;
	color: #fff;
	outline: none;
	text-align: left;
}
.n-service .box2 .div2 li ::-webkit-input-placeholder { /* Chrome/Opera/Safari */ 
	color: #fff;
}
.n-service .box2 .div2 li ::-moz-placeholder { /* Firefox 19+ */  
	color: #fff;
}
.n-service .box2 .div2 li ::-ms-input-placeholder { /* IE 10+ */ 
    color: #fff;
}
.n-service .box2 .div2 li ::-moz-placeholder { /* Firefox 18- */ 
    color: #fff;
}
.n-service .box2 .div2 li button{
	width: 200px;
	height: 42px;
	outline: none;
	border: none;
	margin: 0 auto;
	display: block;
	background: #9f743d;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
}
.n-service .box3 .left{
	width: 56%;
}
.n-service .box3 .left .store-map{
    height: 400px;
}
.n-service .box3 .right{
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.n-service .box3 .right > ul{
	width: 100%;
}
.n-service .box3 .right > ul > li{
	width: 100%;
	height: 60px;
	border-bottom: 1px #eee solid;
	float: left;
	position: relative;
}
.n-service .box3 .right input,
.n-service .box3 .right select,
.n-service .box3 .right button{
	height: 59px;
	outline: none;
	border: none;
	background: none;
}
.n-service .box3 .right input,
.n-service .box3 .right select{
	width: 100%;
	padding: 0 14px;
}
.n-service .box3 .right > ul > li.button,
.n-service .box3 .right li.address{
	border-bottom: none;
}
.n-service .box3 .right > ul > li.button{
	height: 40px;
	margin: 30px 0;
}
.n-service .box3 .right > ul > li.button button{
	height: 40px;
	line-height: 40px;
	width: 120px;
	background: #9f743d;
	cursor: pointer;
	color: #fff;
	border-radius: 6px;
}
.n-service .box3 .right > ul > li.address{
	background: #eee;
	padding: 0 10px;
	height: 60px;
	line-height: 60px;
}
.n-service .box3 .right > ul > li:last-child{
	margin-bottom: 0;
}
.n-service .box3 .right > ul > li .title{
    width: 100%;
    height: 59px;
    line-height: 59px;
    padding: 0 14px;
}
.n-service .box3 .right > ul > li .title .rt{
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.n-service .box3 .right > ul > li .title.rotate .rt{
	transform: rotate(180deg);
}
.n-service .box3 .right > ul > li .content{
	width: 100%;
	position: absolute;
	top: 59px;
	padding: 7px 0;
	display: none;
	background: #fff;
	border: 1px #eee solid;
}
.n-service .box3 .right > ul > li .content li{
	padding: 7px 14px;
}
.n-service .box3 .right > ul > li .content li:hover{
	background: #eee;
}
.n-service .box3 .right > ul > li.store-sheng,
.n-service .box3 .right > ul > li.store-shi{
	cursor: pointer;
}
.n-service .box3 .right > ul > li.store-sheng{
	z-index: 2;
}
.n-service .box3 .right > ul > li.store-shi{
	z-index: 1;
}
.store-sheng-list,
.store-shi-list{
	display: none;
}
@media (max-width: 1280px) {
	.n-service .box1 .div1 li{
	    -ms-flex: 1 0 49%;
	    flex: 1 0 49%;
	    height: 400px;
	}
	.n-service .box1 .div1 li .mt40{
		margin-top: 40px;
	}
	.n-service .box1 .div1 li:nth-child(2n){
		margin-right: 0;
	}
	.n-service .box1 .div1 li:nth-child(3),
	.n-service .box1 .div1 li:nth-child(4){
		margin-top: 2%;
	}
	.n-service .box1 .div2 li{
		margin-top: 2%;
	    -ms-flex: 1 0 32%;
	    flex: 1 0 32%;
	}
	.n-service .box1 .div2 li .mtb20{
		margin: 20px 0;
	}
	.n-service .box1 .div2 li:nth-child(4n){
		margin-right: 2%;
	}
	.n-service .box1 .div2 li:nth-child(3n){
		margin-right: 0;
	}
	.n-service .box1 .div2 li .number{
		width: 50px;
		height: 50px;
	}
	.n-service .box1 .div2 li em{
		font-size: 24px;
	}
	.n-service .box2 .div2 li{
		margin-top: 10px;
	}
}
@media (max-width: 992px) {
	.n-service .box1 .div2 li{
	    -ms-flex: 1 0 48%;
	    flex: 1 0 48%;
	}
	.n-service .box1 .div2 li:nth-child(4n){
		margin-right: 2%;
	}
	.n-service .box1 .div2 li:nth-child(3n){
		margin-right: 2%;
	}
	.n-service .box1 .div2 li:nth-child(2n){
		margin-right: 0;
	}
	.n-service .box1 .div2 li .number{
		width: 40px;
		height: 40px;
	}
	.n-service .box1 .div2 li .mt20{
		margin: 10px 0;
	}
	.n-service .box3 .left,
	.n-service .box3 .right{
		width: 100%;
	}
	.n-service .box3 .right > ul > li.button{
		margin: 20px 0;
	}
}
@media (max-width: 750px) {
    .n-service .box1 .div1 li{
	    -ms-flex: 1 0 100%;
	    flex: 1 0 100%;
	    height: 320px;
	}
	.n-service .box1 .div1 li:nth-child(2n){
		margin-right: 0;
	}
	.n-service .box1 .div1 li:nth-child(2){
		margin-top: 2%;
	}
	.n-service .box1 .div2 .tit{
		padding-bottom: 13px;
	}
	.n-service .box1 .div2 li{
	    -ms-flex: 1 0 100%;
	    flex: 1 0 100%;
	}
	.n-service .box1 .div2 li:nth-child(4n){
		margin-right: 0;
	}
	.n-service .box1 .div2 li:nth-child(3n){
		margin-right: 0;
	}
	.n-service .box1 .div2 li .number{
		width: 40px;
		height: 40px;
	}
	.n-service .box1 .div2 li em{
		font-size: 20px;
	}
	.n-service .box2 .div2 li.h{
		width: 100%;
	}
}

/* 新闻 */
.n-newslist{
	overflow: hidden;
}
.n-newslist li{
	width: 100%;
	float: left;
	margin-bottom: 60px;
	position: relative;
}
.n-newslist li .pic{
	width: 60%;
	float: right;
	overflow: hidden;
}
.n-newslist li a{
	width: 60%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
}
.n-newslist li:nth-child(2n) .pic{
	float: left;
}
.n-newslist li .pic img{
	transition: all .6s ease-out;
    -webkit-transition: all .6s ease-out;
}
.n-newslist li:hover .pic img{
	transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.n-newslist li:nth-child(2n) a{
	right: 0;
	left: auto;
}
.n-newslist a .word{
	margin: 5px;
	padding: 6%;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
.n-newslist a:hover .word{
	color: #9f743d;
}
.n-newslist a .word .date{
	color: #999;
	font-size: 12px;
}
.n-newslist a .word .title{
	padding: 2% 0;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.n-newslist a .word .summary{
	color: #777;
	display:block;
	text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 1280px) {
	.n-newslist li {
	    margin-bottom: 6%;
	}
	.n-newslist a .word .title{
		margin: 10px 0;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
	.n-newslist li .pic{
		width: 70%;
	}
	.n-newslist li a {
	    width: 70%;
	}
	.n-newslist a .word .title{
		line-height: 20px;
		margin: 0;
	}
	.n-newslist a .word .summary{
		-webkit-line-clamp: 1;
        line-clamp: 1;
	}
}

/* 新闻详情 */
.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: #f8f7f6;
	overflow: hidden;
}
.n-newsdetail .news-nav, 
.n-newsdetail .news-nav a{
	color: #666;
}
.n-newsdetail .news-nav a:hover{
	color: #e62129;
}
.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: #9f743d;
	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 #cccccc solid;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
}
.n-newsdetail .news-relate .tit i,
.n-newsdetail .news-message .tit i{
	font-size: 24px;
}
.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: 23.5%;
	margin-right:2%;
	margin-top: 2%;
	float: left;
	border:1px #cccccc solid;
	background: #f8f7f6;
	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(4n){
	margin-right: 0;
}
.n-newsdetail .news-relate .con li:hover{
	background: #9f743d;
}
.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: 49%;
	}
	.n-newsdetail .news-relate .con li:nth-child(4n){
		margin-right: 2%;
	}
	.n-newsdetail .news-relate .con li:nth-child(2n){
		margin-right: 0;
	}
}
@media (max-width: 992px) {
}
@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;
	}
	.n-newsdetail .news-relate .con li{
		width: 100%;
		margin-top: 4%;
		padding:4%;
		margin-right: 0;
	}
}

/* 人才 */
.n-hr{
	width: 100%;
	overflow: hidden;
}
.n-hr .box1,
.n-hr .box2,
.n-hr .box3{
	overflow: hidden;
}
.n-hr .box1 .con{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.n-hr .box1 .left{
	width: 50%;
}
.n-hr .box1 .right{
	width: 50%;
}
.n-hr .box1 .left li{
	display: flex;
	margin-top: 6px;
	align-items: stretch;
}
.n-hr .box1 .left li:first-child{
	margin-top: 0;
}
.n-hr .box1 .left li:nth-child(2n){
	flex-direction: row-reverse;
}
.n-hr .box1 .left .text{
	width: 70%;
	background: #f8f7f6;
	padding: 20px;
}
.n-hr .box1 .left li:nth-child(2n) .text{
	background: #9f743d;
	color: #fff;
}
.n-hr .box1 .left .text h1{
	font-weight: bolder;
}
.n-hr .box1 .left .text h2{
	color: #777;
	margin-top: 6px;
}
.n-hr .box1 .left li:nth-child(2n) .text h2{
	color: #fff;
}
.n-hr .box1 .left .image{
	width: 30%;
	padding-left: 6px;
}
.n-hr .box1 .left li:nth-child(2n) .image{
	padding-left: 0;
	padding-right: 6px;
}
.n-hr .box1 .left .image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.n-hr .box1 .right{
	padding-left: 6px;
}
.n-hr .box1 .right img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: left center;
}
.n-hr .box2{
	width: 100%;
	background: url('../images/bgbott.jpg') no-repeat center top;
	background-size: cover;
}
.n-hr .box2 .con{
	overflow: hidden;
}
.n-hr .box2 .con li{
	height: 260px;
    padding:2%;
    border:1px #e5e5e5 solid;
    border-radius: 8px;
    background: #fff;
    -webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
    box-sizing: border-box;
    overflow: hidden;
}
.n-hr .box2 .con li:hover{
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.n-hr .box2 .con li a {
    display: block;
}
.n-hr .box2 .con li a .stit{
    line-height: 48px;
}
.n-hr .box2 .con li a .lab {
    line-height: 35px;
    color: #999;
}
.n-hr .box2 .con li a .lab span {
    display: inline-block;
    padding-left: 22px;
    background: url(../images/ico_20.png) no-repeat left center;
    margin-right: 10px;
}
.n-hr .box2 .con li a .word {
    display: block;
    line-height: 24px;
    height: 48px;
    color: #999;
    overflow: hidden;
}
.n-hr .box2 .con li a .more {
    display: inline-block;
    width: 52px;
    height: 31px;
    background: url(../images/btn_01.png) no-repeat center;
    margin-top: 24px;
}
.n-hr .box2 .swiper-control{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.n-hr .box2 .swiper-button-prev,
.n-hr .box2 .swiper-button-next{
	width: 60px;
	height: 40px;
	background: #9f743d;
	line-height: 40px;
	text-align: center;
	position: static;
	opacity: 1;
	margin: 0 10px;
	outline: none;
}
.n-hr .box2 .swiper-button-prev:after,
.n-hr .box2 .swiper-button-next:after{
	font-size: 20px;
}
.n-hr .box3 li{
	padding: 50px 0;
	border-bottom: 1px #eee solid;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	overflow: hidden;
}
.n-hr .box3 li:first-child{
	border-top: 1px #eee solid;
}
.n-hr .box3 li .image{
    width: 40%;
}
.n-hr .box3 li .image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.n-hr .box3 li .text{
	width: 56%;
}
.n-hr .box3 li .text .font24{
	font-weight: bolder;
}
.n-hr .box3 li .text .txt-1{
	width: 60%;
}
.n-hr .box3 li .text .txt-2{
	width: 36%;
}
@media (max-width: 1280px) {
	.n-hr .box1 .left .text{
		padding: 3%;
	}
	.n-hr .box3 li{
		padding: 5% 0;
	}
	.n-hr .box3 li .text .txt-1,
	.n-hr .box3 li .text .txt-2{
		width: 100%;
	}
	.n-hr .box3 li .text .txt-2{
		margin-top: 4%;
	}
}
@media (max-width: 992px) {
	.n-hr .box1 .con{
		flex-direction: column-reverse;
	}
	.n-hr .box1 .left,
	.n-hr .box1 .right{
		width: 100%;
	}
	.n-hr .box1 .left{
		margin-top: 10px;
	}
	.n-hr .box1 .left .image{
		width: 40%;
	}
	.n-hr .box1 .left .text{
		width: 60%;
	}
	.n-hr .box1 .right{
		padding: 0;
	}
	.n-hr .box3 li{
		display: block;
	}
	.n-hr .box3 li .image,
	.n-hr .box3 li .text{
		width: 100%;
	}
	.n-hr .box3 li .text{
		margin-top: 4%;
	}
}
@media (max-width: 750px) {
	.n-hr .box1 .left .text h1{
		display: none;
	}
	.n-hr .box1 .left .text h2{
		margin-top: 0;
	}
}

/*招聘弹窗*/
.m-navbg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 1000;
    display: none;
}
.l-c-wrap {
  max-width: 800px;
  width: 80%;
  height: 80%;
  background-color: #fff;
  border-radius: 6px;
  left: 50%;
  padding: 20px;
  position: fixed;
  top: 50%;
  transform: translate(-54%, -50%);
  z-index: 1001;
  display: none;
}
.l-c-hd {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}
.l-c-hd h2 {
    font-weight: bolder;
    float: left;
}
.l-c-hd .l-c-hdr {
    line-height: 39px;
}
.l-c-hdr span {
    background: url(../images/ico_20.png) no-repeat 0 center;
    display: block;
    float: left;
    margin-left: 18px;
    padding-left: 23px;
}
.l-c-cnt {
	padding: 20px 0;
	height: calc(100% - 146px);
    border-bottom: 1px solid #e5e5e5;  
    overflow: hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}
.l-c-cnt h3 {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 9px;
}
.l-c-cnt p {
    color: #666;
    font-size: 12px;
    line-height: 24px;
}
.l-c-ft {
	margin-top: 20px;
    overflow: hidden;
}
.l-c-ft .l-c-apl {
    background-color: #9f743d;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    float: right;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 200px;
}
.l-c-ft p {
    color: #666;
    float: right;
    font-size: 12px;
    height: 45px;
    line-height: 45px;
}
.l-c-ft p span {
    color: #333;
}
.l-c-cls {
    background: url(../images/ico_21.png) no-repeat top center;
    background-size: cover;
    cursor: pointer;
    display: block;
    height: 35px;
    position: absolute;
    right: -45px;
    top: 36px;
    width: 35px;
}
@media (max-width: 1280px) {
}
@media (max-width: 992px) {
}
@media (max-width: 750px) {
	.l-c-hd{
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
	}
	.l-c-hdr span{
		margin-left: 6px;
		padding-left: 18px;
	}
	.l-c-hdr span:first-child{
		margin-left: 0;
	}
	.l-c-ft .l-c-apl{
		float: none;
		margin: 0 auto;
	}
}

/* 联系 */
.n-contact{
	width: 100%;
	overflow: hidden;
}
.n-contact em,
.n-contact i{
	color: #777;
}
.n-contact .contact-box{
	width: 100%;
	overflow: hidden;
}
.n-contact .contact-box .con{
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-direction: row-reverse;
	overflow: hidden;
}
.n-contact .contact-box .left, .n-contact .contact-box .right{
	width: 48%;
	overflow: hidden;
}
.n-contact .contact-box .left .box1{
	border-bottom: 1px #000 dotted;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-weight: bolder;
}
.n-contact .contact-box .left .box1 h1{
    color: #9f743d;
    margin-bottom: 10px;
}
.n-contact .contact-box .left .box1 h2{
	color: #555;
}
.n-contact .contact-box .left .box2 dt{
	margin-bottom: 20px;
	font-weight: bolder;
	font-size: 16px;
}
.n-contact .contact-box .left .box2 dd{
	margin: 10px 0;
}
.n-contact .contact-box .left .box2 dd em{
	float: left;
}
.n-contact .contact-box .left .box2 dd div{
    margin-left: 24px;
}
.n-contact .contact-box .right{
	margin-left: 4%;
}
.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 > p{
	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: #f8f7f6;
	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: #f8f7f6;
	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: #f8f7f6;
	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: #9f743d;
	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 .contact-box .left .box1{
		padding-bottom: 3%;
		margin-bottom: 3%;
	}
	.n-contact .contact-box .left .box1 h1{
	    margin-bottom: 2%;
	}
	.n-contact .contact-box .left .box1 h2{
	    line-height: 20px;
	}
	.n-contact .contact-box .left .box2 dt{
		margin-bottom: 2%;
	}
	.n-contact .contact-box .left .box2 dd{
		margin: 2% 0;
	}
	.n-contact .map-box{
		height: 480px;
	}
	.n-contact .feedback-box li{
		margin-bottom: 2%;
	}
}
@media (max-width: 992px) {
	.n-contact .contact-box .con{
		display: block;
	}
	.n-contact .contact-box .con .left, .n-contact .contact-box .con .right{
		width: 100%;
		margin: 0;
	}
	.n-contact .contact-box .con .right{
		margin-bottom: 4%;
	}
}
@media (max-width: 750px) {
	.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%;
	}
}

/*内容留言*/
.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: #f8f7f6;
	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: #f8f7f6;
	border-radius: 16px;
	border:none;
	outline: none;
	padding: 20px;
	resize:none;
	box-sizing: border-box;
}
.message-form .f button{
	width: 280px;
    height: 50px;
    background: #9f743d;
    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;
	border-color: #9f743d;
	background: #9f743d;
}
.page li.page-first a, .page li.disabled a{
	background: #f8f7f6;
	color: #555;
	pointer-events: none;
}
.page li.page-first:hover a, .page li.disabled:hover a{
	color: #555;
	border-color: #eee;
	background: #f8f7f6;
}
@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%;
	}
}