﻿@charset "utf-8";
@media only screen and (min-width: 800px) {
::-webkit-scrollbar {
 width: 5px;
 height: 5px;
 background-color: #b79a7c;
}
  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track {
 border-radius: 0px;
 background: #222222;
}
  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb {
 border-radius: 0px;
 background-color:#8e693c;
}
}
 /*=========
  基本默认值
  ==========*/
*{
	margin: 0;
	padding: 0; 
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-word-break: normal !important;
    word-break: normal !important;
    word-wrap: break-word !important;
}
html,body{ 
	min-height: 100%;
	-webkit-overflow-scrolling : touch;/*苹果手机端滑动卡屏*/
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color:transparent;/*手机端点击底部出现背景*/
    width: 100%;
    overflow-y:auto;
    /*min-width: 320px;*/
    font-size: 12px;
    line-height: 1.6;
}
body {	
	color: #000;
	font-family:"Arial", "Microsoft YaHei";
}

li{
    list-style: none;
}
img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
}
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
    text-decoration: none;
    color: #000;    
    -moz-transition: all .5s; 
    -webkit-transition: all .5s;  
    -o-transition: all .5s;
    -ms-transition: all .5s; 
    transition: all .5s; 
}
::after,::before{   
    -moz-transition: all .5s; 
    -webkit-transition: all .5s;  
    -o-transition: all .5s;
    -ms-transition: all .5s; 
    transition: all .5s;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box; 
}
table {
    border-collapse: collapse;
}
input, textarea,select {
    font-family: "Arial","Microsoft YaHei";
    font-size: 12px;
    outline: none;
    appearance:none; /*清楚表单默认样式*/
    -moz-appearance:none;
    -webkit-appearance:none;
    border: none;
}

@font-face{
	font-family: 'ziti'; 
    src: url('../fonts/tt0861m.ttf') format('truetype');
}
@font-face{
	font-family: 'sziti'; 
    src: url('../fonts/MinionPro-Bold.otf') format('OpenType');
}

/*94%的内容*/
.container{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1435px;
    position: relative;
}
.wrap{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1605px;
    position: relative;
}
.wrap1{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    position: relative;
}
.wrap2{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1085px;
    position: relative;
}
.wrap3{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    position: relative;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*图片通用样式*/
.img-common{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
}
/*清楚浮动*/
.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
}

.clearfix:after {
    clear: both;
}
/*Flex居中样式*/
.flex-center{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
/*动画*/
.donghua {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
}
/*文字溢出*/
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}


/* =========

    导航

 ========= */
.hearer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
}
.hearer .nav-box {
    height: 100%;
    width: 94%;
    max-width: 1605px;
    margin: 0 auto;
}
.hearer .nav-box .logo {
    float: left;
    display: flex;
    height: 100%;
    align-items: center;
}
.hearer .nav-box .search-box {
    width: 60px;
    height: 100%;
    position: relative;
}
.hearer .nav-box .search-box .search {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.hearer .search-form {
    top: 100px;
    right: -1000px;
    padding: 0 20px;
    background-color: rgba(255,255,255,.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#33000000, endcolorstr=#33000000);
    z-index: 100;
    width: 400px;
    padding-left: 40px;
    position: absolute;
    height: 60px;
    line-height: 60px;
}
.hearer .nav-box .search-box[data-active="on"] .search-form{
	right: 0;
}
.hearer .nav-box .search-box, .hearer .search-form input[type=submit] {
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: right;
    cursor: pointer;
}
.hearer .search-form input[type=submit] {
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 15px;
    left: 6px;
}
.hearer .search-form input[type=text] {
    height: 30px;
    line-height: 30px;
    width: 100%;
    border: none;
    background: 0 0;
    border-bottom: 1px solid #e5e5e5;
    margin-left: 10px;
}

/*导航条*/
.hearer .nav-list {
    float: right;
    line-height: 100px;
    position: relative;
}
.hearer .nav-list .list-n {
    display: inline-block;
    position: relative;
    z-index: 112;
    cursor: pointer;
    margin-right: 70px;
    transition: all .5s;
}
.hearer .nav-list .list-n:last-child{
	margin-right: 0;
}
.hearer .nav-list .list-n .nav-word {
    display: block;
    font-size: 18px;
    color: #282828;
    width: auto;
    position: relative;
}
.hearer .nav-list .list-n::after{
	content: "";
	width: 0;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #8e693c;
	transition: all .5s;
}
.hearer .nav-list .list-n.on::after{
	content: "";
	width: 100%;
}
.hearer .nav-list .list-n.on .nav-word{
	color: #8e693c;
}
.hearer .nav-list .list-n .nav-word.on{
	color: #8e693c;
}
.hearer .nav-list .list-n .nav-word.on::after{
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #8e693c;
}
.hearer .nav-list .list-n .nav-word.on{
    color: #8e693c;
}

.hearer .nav-list .list-n .nav-menu {
    position: fixed;
    top: 100px;
    width: auto;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 111;
    opacity: 0;
    visibility: hidden;
    transition-delay: .2s;
    line-height: 30px;
}
.hearer .nav-list .list-n .nav-menu .nav-info{
    white-space: nowrap;
}
.hearer .nav-list .list-n[data-on="touch"] .nav-menu {
    opacity: 1;
    visibility: visible;
    
}
.hearer .nav-list .list-n .nav-menu .nav-menu-icon {
    display: inline-block;
    padding-right: 20px;
    border-right: 1px solid #4e5054;
    -webkit-transform: translate3d(10%, 0, 0);
    -ms-transform: translate3d(10%, 0, 0);
    -o-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    opacity: 0;
    visibility: hidden;
}

.hearer .nav-list .list-n[data-on="touch"] .nav-menu .nav-menu-icon {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}
.hearer .nav-list .list-n .nav-menu .menu-a {
    display: inline-block;
    padding: 0 53px;
    font-size: 14px;
    color: #888888;
    -webkit-transform: translate3d(10%, 0, 0);
    -ms-transform: translate3d(10%, 0, 0);
    -o-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    opacity: 0;
    visibility: hidden;
    position: relative;
    line-height: 1;
}
.hearer .nav-list .list-n .nav-menu .menu-a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #888888;
}
.hearer .nav-list .list-n .nav-menu .menu-a:nth-child(1){
	padding-left: 0;
}
.hearer .nav-list .list-n .nav-menu .menu-a:nth-child(1)::before{
	display: none;
}
.hearer .nav-list .list-n[data-on="touch"] .nav-menu .menu-a {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

/*首页顶部*/
.hearer.inhead{
	background-color: transparent;
	border-bottom: none;
	margin-top: 53px;
}
.hearer.inhead .nav-box{
	background-color: #fff;
	max-width: 1727px;
	padding: 0 61px;
	box-shadow: 0 5px 30px rgba(2,16,46,.45);
	border-bottom: 1px solid #e5e5e5;
}
.hearer.inhead .nav-list .list-n .nav-menu{
	top: 153px;
	max-width: 1727px;
}

.hearer .nav-list .bg{
	content: "";
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: 80px;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    border-bottom: 1px solid #e5e5e5;
}
.hearer .nav-list .bg::after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,1);
}
.hearer .nav-list .bg[data-on="on"]{
	opacity: 1;
	visibility: visible;
}
.hearer.inhead .nav-list .bg{
	top: 153px;
}

@media only screen and (min-width: 601px) {
    .hearer .nav-list .list-n .nav-menu .menu-a:hover{
        color: #8e693c;
    }
    .hearer .language-box.ali{
        display: none;
    }
}
@media only screen and (max-width: 1660px){
	.hearer .nav-list .list-n{
		margin-right: 50px;
	}
	.hearer.inhead .nav-list .list-n{
		margin-right: 45px;
	}
	.hearer.inhead .nav-list .list-n:last-child{
		margin-right: 0;
	}
}
@media only screen and (max-width: 1440px){
	.hearer{
		height: 80px;
	}
	.hearer .nav-list{
		line-height: 80px;
	}
	.hearer.inhead .nav-box{
		padding: 0 40px;
	}
	.hearer .nav-list .list-n{
		margin-right: 30px;
	}
	.hearer.inhead .nav-list .list-n{
		margin-right: 27px;
	}
	.hearer .search-form{
		top: 80px;
	}
	.hearer.inhead .nav-list .list-n .nav-menu{
		top: 133px;
	}
	.hearer.inhead .nav-list .bg{
		top: 133px;
	}
	.hearer .nav-list .list-n .nav-menu{
		top: 80px;
	}
	.hearer .nav-list .bg{
		top: 80px;
	}
}
@media only screen and (max-width: 1200px){
	.hearer.inhead{
		margin-top: 0;
		background-color: #fff;
		border-bottom: 1px solid #e5e5e5;
	}
	.hearer.inhead .nav-box{
		box-shadow: none;
		width: 94%;
		max-width: 1605px;
		padding: 0;
		border-bottom: none;
	}
	.hearer .nav-list .list-n{
		margin-right: 24px;
	}
	.hearer.inhead .nav-list .list-n{
		margin-right: 24px;
	}
	.hearer .nav-list .list-n .nav-word{
		font-size: 16px;
	}
	.hearer.inhead .nav-list .list-n .nav-menu{
		top: 80px;
	}
	.hearer.inhead .nav-list .bg{
		top: 80px;
	}
}
@media only screen and (max-width: 1024px){
	.hearer .nav-list{
		display: none;
	}
	.hearer{
		height: 60px;
	}
	.hearer .nav-box .logo{
		width: 68px;
	}
	.hearer .search-form{
		top: 60px;
	}
	.hearer .nav-box .search-box{
		display: none;
	}
}
@media only screen and (max-width: 640px){
	.hearer{
		height: 55px;
	}
	.hearer .search-form{
		top: 55px;
	}
}


/*手机导航按钮*/
.hearer .nav-menu{
	float: right;
	display: none;
}


/*手机导航菜单*/
.mm-nav-box{
	display: none;
}
@media only screen and (max-width:1024px){
/*手机导航菜单*/
.mm-nav-box{
	display: block;
}
.mm-nav-box .mm-nav-list{
    position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 999;
	padding: 80px 3% 6% 3%;
	transition: all .5s ease;
	transform: translate3d(0,-100%,0);
	opacity:0;
	visibility: visible;
}
.mm-nav-box[data-on="on"] .mm-nav-list{
transform: translate3d(0,0,0);
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
}
.mm-nav-box .mm-nav-list .list-n{
	position: relative;
}
.mm-nav-box .mm-nav-list .list-n .mnav-word{
    border-bottom: 1px solid #F5F5F5;
    position: relative;
}
.mm-nav-box .mm-nav-list .list-n.first .mnav-word:after{
	display: none;
}
.mm-nav-box .mm-nav-list .list-n .mnav-word:after{
	content:"";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent transparent #3c3b3b #3c3b3b;
	position: absolute;
	right: 3%;
	top: 50%;
	margin-top: -5px;
	transform:rotate(-45deg);
-ms-transform:rotate(-45deg); 	/* IE 9 */
-moz-transform:rotate(-45deg); 	/* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); 	/* Opera */
}
.mm-nav-box .mm-nav-list .list-n[data-on="on"] .mnav-word:after{
	transform:rotate(135deg);
-ms-transform:rotate(135deg); 	/* IE 9 */
-moz-transform:rotate(135deg); 	/* Firefox */
-webkit-transform:rotate(135deg); /* Safari 和 Chrome */
-o-transform:rotate(135deg); 	/* Opera */
}
.mm-nav-box .mm-nav-list .list-n .mnav-word .word-a{
    font-size: 1.16rem;
    color: #3c3b3b;
    display: block;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
.mm-nav-box .mm-nav-list .list-n .mnav-sub{
	padding-top: 3%;
	padding-left: 3%;
	display: none;
}
.mm-nav-box .mm-nav-list .list-n .mnav-sub .sub-ma{
	display: block;
	font-size: 1.16rem;
	color: #3c3b3b;
	height: 40px;
    line-height: 40px;
}
.mm-nav-box .mm-nav-list .list-n .mnav-sub .ma-list{
	padding-left: 10px;
}
.mm-nav-box .mm-nav-list .list-n .mnav-sub .ma-list .mma{
	font-size: 14px;
	color: #3c3b3b;
}
.mm-nav-box .mm-nav-list .mmsearch{
	position: relative;
}
.mm-nav-box .mm-nav-list .mmsearch input[type="text"]{
	width: 100%;
	height: 45px;
	line-height: 45px;
	border-bottom: 1px solid #000;
}
.mm-nav-box .mm-nav-list .mmsearch input[type="submit"]{
	background-image: url(../images/search.png);
	background-position: center;
	background-repeat: no-repeat;
	width: 20px;
	height: 45px;
	background-color: transparent;
	position: absolute;
	top: 0;
	right: 0;
}
.hearer .nav-menu{
	display: block;
	width: 26px;
	height: 60px;
	position: relative;
	cursor: pointer;
	margin-left: 20px;
}
.hearer .nav-menu .line{
	width: 100%;
	height: 2px;
	background-color: #8e693c;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
}
.hearer .nav-menu .line.line1{
	margin-top: -8px;
}
.hearer .nav-menu .line.line3{
	margin-top: 7px;
}
.hearer .nav-menu[data-on="on"] .line.line2{
	display: none;
}
.hearer .nav-menu[data-on="on"] .line.line1{
	margin-top: 0;
	transform:rotate(45deg);
-ms-transform:rotate(45deg); 	/* IE 9 */
-moz-transform:rotate(45deg); 	/* Firefox */
-webkit-transform:rotate(45deg); /* Safari 和 Chrome */
-o-transform:rotate(45deg); 	/* Opera */
}
.hearer .nav-menu[data-on="on"] .line.line3{
	margin-top: 0;
	transform:rotate(-45deg);
-ms-transform:rotate(-45deg); 	/* IE 9 */
-moz-transform:rotate(-45deg); 	/* Firefox */
-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
-o-transform:rotate(-45deg); 	/* Opera */
}
}
@media only screen and (max-width:640px){
	.mm-nav-box .mm-nav-list{
		padding: 55px 3% 6% 3%;
	}
}
@media only screen and (max-width:375px){
.mm-nav-box .mm-nav-list .list-n .mnav-word .word-a{
	height: 40px;
	line-height: 40px;
}
.mm-nav-box .mm-nav-list .list-n .mnav-sub .sub-ma{
	    height: 30px;
    line-height: 30px;
}
}


/*通用banner*/
.bannerbox{
	margin-top: 100px;
}
.bannerbox .banner-tit{
	display: inline-block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	max-width: 430px;
	padding: 80px 0 100px 0;
	width: 94%;
	margin: 0 auto;
}
.bannerbox .banner-tit .title{
	font-size: 36px;
	color: #3a3a3a;
	line-height: 1;
	margin-bottom: 38px;
}
.bannerbox .banner-tit .line{
	width: 100%;
	height: 2px;
	background-color: #888888;
	margin-bottom: 10px;
}
.bannerbox .banner-tit .entext{
	font-size: 12px;
	color: #888888;
	line-height: 1.5;
	white-space: pre-wrap;
	letter-spacing: 0.1rem;
}
.bannerbox .banner-bg{
	overflow: hidden;
}
.bannerbox .banner-bg .bannerimg{
	padding-top: calc(680 / 1920 * 100%);
	min-height: 250px;
	transform: scale(1);
	animation:myfirst 5s;
}
@keyframes myfirst{
	from {transform: scale(1.1);}
	to {transform: scale(1);}
}

.bannerbox .phone-menu{
	display: none;
}
@media only screen and (max-width: 414px){
	.bannerbox .phone-menu{
		margin-bottom: 30px;
		position: relative;
		display: block;
	}
	.bannerbox .phone-menu .showtit{
		font-size: 18px;
		line-height: 40px;
		color: #666666;
		border-bottom: 1px solid #e0e0e0;
		position: relative;
		text-align: center;
	}
	.bannerbox .phone-menu .showtit::before{
		content: "";
		position: absolute;
		right: 5px;
		top: 50%;
		width: 10px;
		height: 10px;
		border-style: solid;
		border-width: 1px;
		border-color:  transparent transparent #666666 #666666;
		transform: rotate(-45deg);
		margin-top: -6px;
	}
	.bannerbox .phone-menu .kindlist{
		display: none;
		position: absolute;
		top: 41px;
		left: 0;
		width: 100%;
		z-index: 100;
		background-color: #fff;
	}
	.bannerbox .phone-menu .kindlist li .hh{
		font-size: 16px;
		line-height: 40px;
		color: #a9a9a9;
		display: block;
		text-align: center;
		border-bottom: 1px solid #e0e0e0;
	}
	.bannerbox .phone-menu .kindlist li:last-child .hh{
		border-bottom: none;
	}
	.bannerbox .phone-menu .kindlist li .hh.on{
		color: #a68564;
		border-bottom: 2px solid #a68564;
	}
}

/* 通用导航链接 */
.hrefbox{
	border-bottom: 1px solid #e5e5e5;
	padding-top: 26px;
}
.hrefbox .href-l .ina{
	font-size: 12px;
	color: #3a3a3a;
	position: relative;
	padding-right: 8px;
	line-height: 1;
}
.hrefbox .href-l .ina::after{
	content: "";
	position: absolute;;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-width: 1px;
	border-color: #3a3a3a #3a3a3a transparent transparent;
	transform: rotate(45deg);
	margin-top: -3px;
}
.hrefbox .href-l span{
	font-size: 12px;
	color: #888888;
}
.hrefbox .href-r{
	text-align: right;
}
.hrefbox .href-r ul li{
	padding: 0 54px;
	display: inline-block;
	position: relative;
}
.hrefbox .href-r .href-kind{
	font-size: 14px;
	color: #888888;
	line-height: 1;
	position: relative;
	padding-bottom: 40px;
	display: inline-block;
}
.hrefbox .href-r ul li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 16px;
	background-color: #888888;
}
.hrefbox .href-r ul li:nth-child(1)::before{
	display: none;
}
.hrefbox .href-r ul li .href-kind.on::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #8e693c;
}
.hrefbox .href-r ul li .href-kind.on{
	color: #8e693c;
	font-weight: bold;
}
.hrefbox .href-r .back{
	font-size: 14px;
	color: #8e693c;
	font-weight: bold;
	display: inline-block;
	padding-bottom: 40px;
}

@media only screen and (min-width: 601px) {
	.hrefbox .href-r ul li:hover .href-kind{
		color: #8e693c;
	}
}
@media only screen and (max-width: 1440px){
	.bannerbox{
		margin-top: 80px;
	}
}
@media only screen and (max-width: 1200px){
	.bannerbox .banner-tit{
		padding: 6% 0 8% 0;
	}
	.bannerbox .banner-tit .title{
		font-size: 32px;
		margin-bottom: 5%;
	}
	.hrefbox .href-r ul li{
		padding: 0 4%;
	}
	.hrefbox .href-r .back{
		padding-bottom: 25px;
	}
}
@media only screen and (max-width: 1024px){
	.bannerbox{
		margin-top: 60px;
	}
	.hrefbox .href-r{
		display: none;
	}
	.hrefbox{
		padding: 15px 0;
	}
	.bannerbox .banner-tit .title{
		font-size: 28px;
	}
}
@media only screen and (max-width: 640px){
	.bannerbox{
		margin-top: 55px;
	}
	.bannerbox .banner-tit .title{
		font-size: 26px;
	}
	.about-info .about-tit{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.about-info .about-demo{
		font-size: 16px;
	}
	.hrefbox{
		display: none;
	}
}





/* =========

    首页

 ========= */


/*轮播*/
.inbanner-bg{
	position: relative;
}
.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner-imgbox{
	display: block;
}
.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide .inbanner-imgbox .inbanner-img{
	padding-top: calc(950 / 1920 * 100%);
	position: relative;
	min-height: 280px;
	transform: scale(1.1);
	transition: all 6s;
}
.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .inbanner-imgbox .inbanner-img{
	transform: scale(1);
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .infotit{
	position: absolute;
	top: 50%;
	left: 3%;
	width: 50%;
	padding-left: 60px;
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .infotit .cntit{
	font-size: 100px;
	color: #fff;
	line-height: 1;
	font-family: 'FZCQK';
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .infotit .entit{
	font-size: 36px;
	color: #fff;
	line-height: 48px;
	font-family: 'ziti';
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .centertit{
	position: absolute;
	bottom: 150px;
	left: 50%;
	width: 70%;
	transform: translateX(-50%);
	text-align: center;
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .centertit .cntit{
	font-size: 40px;
	color: #fff;
	line-height: 1;
	font-weight: bold;
	margin-top: 5px;
}
.inbanner-bg .inbanner-swiper .inbanner-imgbox .inbanner-img .centertit .entit{
	font-size: 46px;
	color: #fff;
	line-height: 48px;
	font-family: 'ziti';
}

.inbanner-bg .scroll{
	width: 25px;
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    z-index: 11;
    cursor: pointer;
    animation:mymove 2s infinite;
	-webkit-animation:mymove 2s infinite;
}
.inbanner-bg .scroll .line{
	width: 1px;
	height: 70px;
	border-left: 1px dashed #fff;
	margin: 0 auto;
	
}
@keyframes mymove{
	from {opacity: 0;bottom: 15px;}
	to {opacity: 1;bottom: 7px;}
}
@-webkit-keyframes mymove{
	from {height:70px;opacity: 0;}
	to {height:0px;opacity: 1;}
}
.inbanner-bg .scroll .arrow{
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border: 1px solid #fff;
	position: relative;
	margin-top: 1px;
}
.inbanner-bg .scroll .arrow::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent #fff #fff transparent;
	transform: rotate(45deg);
	margin-top: -4px;
	margin-left: -3px;
}
#main{
	position: absolute;
	top: -100px;
}
.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide.phone{
	display: none;
}

@media only screen and (max-width: 1660px){
	.inbanner-bg .scroll .line{
		height: 50px;
	}
	
}
@media only screen and (max-width: 1024px){
	.inbanner-bg .scroll{
		display: none;
	}
}
@media only screen and (max-width: 640px){
	.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide.pc{
		display: none;
	}
	.inbanner-bg .inbanner-swiper .swiper-wrapper .swiper-slide.phone{
		display: block;
	}
}



/*睡眠体验*/
.insleepbox{
	position: relative;
}
.insleepbox .insleepbg{
	padding-top: calc(600 / 1920 * 100%);
	position: relative;
	display: block;
	min-height: 250px;
}

.insleepbox .insleepbg .insleepinfo{
	position: absolute;
	left: 335px;
	top: 50%;
	transform: translateY(-50%);
}
.insleepbox .insleepbg .insleepinfo .entit{
	font-size: 36px;
	color: rgba(255,255,255,.75);
	font-family: "ziti";
}
.insleepbox .insleepbg .insleepinfo .cntit{
	font-size: 30px;
	font-weight: bold;
	color: rgba(142,105,60,.75);
}
.insleepbox .insleepbg .insleepinfo .img{
	position: relative;
	margin-top: 40px;
}
.insleepbox .insleepbg .insleepinfo .img::before{
	content: "";
	position: absolute;
	left: 143px;
	top: 50%;
	width: 45px;
	height: 1px;
	background-color: rgba(255,255,255,.25);
}
.insleepbox .insleepbg .insleepinfo .img::after{
	content: "";
	position: absolute;
	left: 176px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 1px;
	border-color: #fff #fff transparent transparent;
	transform: rotate(45deg);
	margin-top: -5.5px;
	opacity: 0.25;
}
.insleepbox .insleepbg .insleepinfo .text{
	font-size: 16px;
	color: rgba(255,255,255,.65);
	position: absolute;
	bottom: -85px;
	left: 0;
	font-family: 'sziti';
}

/*探索梦凯莎*/
.bannerbox .banner-bg .bannerimg{
	position: relative;
}
.bannerbox .banner-bg .bannerimg .wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 94%;
	height: 100%;
	transform: translate(-50%,-50%);
}
.bannerbox .banner-bg .bannerimg .abinfo{
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.75);
	max-width: 850px;
	width: 100%;
	height: 209px;
	padding: 50px 60px 0 86px;
}
.bannerbox .banner-bg .bannerimg .abinfo .abdemo{
	font-size: 16px;
	color: #c7c4c4;
	line-height: 30px;
	max-height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bannerbox .banner-bg .bannerimg .abinfo .abtit{
	margin-top: 35px;
	text-align: right;
}
.bannerbox .banner-bg .bannerimg .abinfo .abtit .tit{
	font-size: 16px;
	color: #8e693c;
	position: relative;
	display: inline-block;
}
.bannerbox .banner-bg .bannerimg .abinfo .abtit .tit::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 65px;
	height: 1px;
	background-color: #8e693c;
	margin-left: -75px;
}

.inexplorebox .inexplore-l{
	display: block;
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
}
.inexplorebox .inexplore-l .inexploreimg{
	padding-top: calc(960 / 960 * 100%);
	position: relative;
	transform: scale(1);
	transition: all 2s;
}
.inexplorebox .inexplore-l .inexploreimg .info{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.inexplorebox .inexplore-l .inexploreimg .info .tit{
	font-size: 30px;
	color: rgba(255,255,255,.75);
	font-weight: bold;
	margin-bottom: 20px;
}
.inexplorebox .inexplore-l .inexploreimg .info .more{
	width: 150px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	border-radius: 22.5px;
	border: 1px solid rgba(255,255,255,.45);
	font-size: 14px;
	font-weight: bold;
	color: rgba(255,255,255,.45);
	margin: 0 auto;
}
.inexplorebox .inexplore-r{
	width: 50%;
	float: left;
}
.inexplorebox .inexplore-r .inexplore-item{
	display: block;
	width: 50%;
	height: 50%;
	float: left;
	overflow: hidden;
}
.inexplorebox .inexplore-r .inexplore-item .img{
	padding-top: calc(480 / 480 * 100%);
	position: relative;
	transform: scale(1);
	transition: all 2s;
	
}
.inexplorebox .inexplore-r .inexplore-item .img .info{
	position: absolute;
	bottom: 50px;
	left: 50px;
}
.inexplorebox .inexplore-r .inexplore-item .img .info .tit{
	font-size: 22px;
	color: #fff;
	transform: translateX(0);
	opacity: 1;
	transition: all 1s;
	letter-spacing: initial;
}
.inexplorebox .inexplore-r .inexplore-item .img .info .more{
	font-size: 16px;
	color: #8e693c;
	position: relative;
	display: inline-block;
}
.inexplorebox .inexplore-r .inexplore-item .img .info .more::after{
	content: "";
	position: absolute;
	right: -40px;
	top: 50%;
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: #8e693c #8e693c transparent transparent;
	transform: rotate(45deg);
	margin-top: -4.5px;
}

/*坚持品质*/
.inkeepbox{
	overflow: hidden;
}
.inkeepbox .inkeepbg{
	padding-top: calc(740 / 1920 * 100%);
	position: relative;
	display: block;
	min-height: 280px;
	transform: scale(1);
	transition: all 2s;
}
.inkeepbox .inkeepbg .inkeepinfo{
	position: absolute;
	left: 335px;
	top: 40%;
	max-width: 50%;
}
.inkeepbox .inkeepbg .inkeepinfo .entit{
	font-size: 28px;
	color: rgba(255,255,255,.6);
	line-height: 30px;
	font-family: "ziti";
}
.inkeepbox .inkeepbg .inkeepinfo .cntit{
	font-size: 30px;
	color: rgba(142,105,60,.6);
	font-weight: bold;
}
.inkeepbox .inkeepbg .inkeepinfo .text{
	position: absolute;
	bottom: -200px;
	left: 0;
	font-size: 14px;
	color: rgba(255,255,255,.25);
	font-family: "sziti";
}

@media only screen and (min-width: 601px){
	.inkeepbox .inkeepbg:hover{
		transform: scale(1.1);
	}
	.inexplorebox .inexplore-l:hover .inexploreimg{
		transform: scale(1.1);
	}
	.inexplorebox .inexplore-r .inexplore-item:hover .img{
		transform: scale(1.1);
	}
	.inexplorebox .inexplore-r .inexplore-item:hover .img .info .tit{
		transform: translateX(100%);
		opacity: 0;
		letter-spacing: 5px;
	}
}
@media only screen and (max-width: 1660px){
	.insleepbox .insleepbg .insleepinfo{
		left: 228px;
	}
	.inkeepbox .inkeepbg .inkeepinfo{
		left: 228px;
		top: 32%;
	}
	.inkeepbox .inkeepbg .inkeepinfo .text{
		bottom: -140px;
	}
}
@media only screen and (max-width: 1440px){
	.insleepbox .insleepbg .insleepinfo .entit{
		font-size: 30px;
	}
	.insleepbox .insleepbg .insleepinfo .cntit{
		font-size: 26px;
	}
	.insleepbox .insleepbg .insleepinfo .img{
		margin-top: 20px;
	}
	.insleepbox .insleepbg .insleepinfo .text{
		bottom: -65px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info{
		left: 10%;
		bottom: 8%;
	}
	.insleepbox .insleepbg .insleepinfo{
		left: 168px;
	}
	.inkeepbox .inkeepbg .inkeepinfo{
		left: 168px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .entit{
		font-size: 26px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .cntit{
		font-size: 26px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo{
		max-width: 640px;
		height: 180px;
		padding: 30px 44px 0 60px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abtit{
		margin-top: 25px;
	}
}
@media only screen and (max-width: 1200px){
	.inbanner-bg .scroll .line{
		display: none;
	}
	.insleepbox .insleepbg .insleepinfo .entit{
		font-size: 26px;
	}
	.insleepbox .insleepbg .insleepinfo .cntit {
	    font-size: 22px;
	    line-height: 1;
	}
	.insleepbox .insleepbg .insleepinfo .text{
		font-size: 12px;
		bottom: -55px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info .tit{
		font-size: 18px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info .more{
		font-size: 14px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info .more::after{
		right: -32px;
		width: 7px;
		height: 7px;
		margin-top: -3px;
	}
	.insleepbox .insleepbg .insleepinfo{
		left: 94px;
	}
	.inkeepbox .inkeepbg .inkeepinfo{
		left: 94px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .entit {
    	font-size: 22px;
	    line-height: 28px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .cntit{
		font-size: 22px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .text{
		bottom: -110px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo{
		max-width: 50%;
		height: 140px;
		padding: 20px 30px 0 40px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abtit{
		margin-top: 15px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abdemo{
		line-height: 25px;
		max-height: 50px;
	}
}
@media only screen and (max-width: 1024px){
	.insleepbox .insleepbg .insleepinfo .entit{
		font-size: 22px;
	}
	.insleepbox .insleepbg .insleepinfo .cntit{
		font-size: 18px;
	}
	.insleepbox .insleepbg .insleepinfo .text{
		bottom: -40px;
	}
	.inexplorebox .inexplore-l .inexploreimg .info .tit{
		font-size: 26px;
		margin-bottom: 10px;
	}
	.inexplorebox .inexplore-l .inexploreimg .info .more{
		width: 120px;
		height: 35px;
		line-height: 35px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info .tit{
		font-size: 16px;
	}
	.inexplorebox .inexplore-r .inexplore-item .img .info .more{
		font-size: 12px;
	}
	.inkeepbox .inkeepbg .inkeepinfo{
		top: 25%;
	}
	.inkeepbox .inkeepbg .inkeepinfo .entit {
	    font-size: 18px;
	    line-height: 24px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .cntit{
		font-size: 20px;
	}
	.inkeepbox .inkeepbg .inkeepinfo .text{
		bottom: -70px;
	}
	.bannerbox .banner-bg .bannerimg .wrap{
		width: 100%;
	}
	.bannerbox .banner-bg .bannerimg .abinfo{
		max-width: 100%;
		height: 110px;
		padding: 20px 20px 0 20px;
		background-color: rgba(0,0,0,.6);
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abtit{
		margin-top: 5px;
	}
}
@media only screen and (max-width: 800px){
	.inexplorebox .inexplore-l,.inexplorebox .inexplore-r{
		width: 100%;
		float: none;
	}
	.inkeepbox .inkeepbg .inkeepinfo{
		max-width: 100%;
		width: 94%;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}
	.inkeepbox .inkeepbg .inkeepinfo .text{
		left: 0;
		width: 100%;
	}
}
@media only screen and (max-width: 414px){
	.insleepbox .insleepbg .insleepinfo{
		max-width: 100%;
		width: 90%;
		left: 50%;
		transform: translate(-50%,-50%);
		margin-top: -10px;
	}
	.inexplorebox .inexplore-l .inexploreimg .info .tit{
		font-size: 24px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abdemo{
		font-size: 14px;
		line-height: 20px;
    	max-height: 40px;
	}
	.bannerbox .banner-bg .bannerimg .abinfo .abtit .tit{
		font-size: 14px;
	}
}





/* =========

    梦凯莎

 ========= */
/*通用*/
.about-info{
	padding-top: 100px;
}
.about-info .about-tit{
	font-size: 24px;
	color: #8e693c;
	text-align: center;
	line-height: 1;
	margin-bottom: 20px;
}
.about-info .about-demo{
	font-size: 18px;
	color: #888888;
	text-align: center;
	line-height: 1;
	margin-bottom: 90px;
}
.about-info .about-content{
	font-size: 14px;
	color: #666666;
	line-height: 2;
}
@media only screen and (max-width: 1200px){
	.about-info{
		padding-top: 8%;
	}
	.about-info .about-demo{
		margin-bottom: 6%;
	}
}
@media only screen and (max-width: 640px){
	.about-info .about-demo{
		font-size: 16px;
	}
	.about-info .about-tit{
		font-size: 20px;
	}
}


/*品牌起源*/
.abstart .start-list{
	position: relative;
	margin-top: 123px;
}
.abstart .start-list::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 16px;
	height: 16px;
	border: 1px solid #8e693c;
	border-radius: 50%;
	margin-left: -8px;
	margin-top: -16px;
}
.abstart .start-list::after{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #8e693c;
	margin-left: -4px;
	margin-top: -12px;
}
.abstart .start-list .start-item{
	display: flex;
	align-items: center;
	position: relative;
	padding: 70px 0 58px 0;
}
.abstart .start-list .start-item::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #e5e5e5;
}
.abstart .start-list .start-item .start-l{
	width: calc(50% - 30px);
	margin-right: 30px;
}
.abstart .start-list .start-item .start-l .img{
	padding-top: calc(380 / 510 * 100%);
}
.abstart .start-list .start-item .start-r{
	width: calc(50% - 30px);
}
.abstart .start-list .start-item .start-r .tit{
	font-size: 24px;
	color: #8e693c;
	line-height: 1;
	margin-bottom: 40px;
	position: relative;
	padding-left: 30px;
}
.abstart .start-list .start-item .start-r .tit::before{
	content: "";
	position: absolute;
    left: 0;
    top: 50%;
    border-right: 12px solid transparent;
    border-left: 12px solid #8e693c;
    border-top: 12px solid transparent;
    transform: rotate(45deg);
    margin-left: -8px;
    margin-top: -1px;
}
.abstart .start-list .start-item .start-r .textbox{
	max-height: 120px;
	overflow: hidden;
}
.abstart .start-list .start-item .start-r .text{
	padding-left: 30px;
	font-size: 12px;
	color: #888888;
	line-height: 2;
}
.abstart .start-list .start-item .start-r .textbox[data-on="on"]{
	overflow: visible;
	max-height: 100%;
}
.abstart .start-list .start-item .start-r .open{
	font-size: 12px;
	color: #8e693c;
	cursor: pointer;
	margin-top: 28px;
	padding-left: 30px;
	display: none;
}
.abstart .start-list .start-item:nth-child(2n){
	flex-direction: row-reverse;
}
.abstart .start-list .start-item:nth-child(2n) .start-l{
	margin-right: 0;
	margin-left: 30px;
}
.abstart .start-list .start-item:nth-child(2n) .start-r .tit{
	padding-left: 0;
	padding-right: 30px;
}
.abstart .start-list .start-item:nth-child(2n) .start-r .tit::before{
	left: initial;
	right: 0;
	margin-left: 0;
	border-left: 12px solid transparent;
    border-right: 12px solid #8e693c;
    border-top: 12px solid transparent;
    transform: rotate(-45deg);
    margin-right: -8px;
}
.abstart .start-list .start-item:nth-child(2n) .start-r .text{
	padding-left: 0;
	padding-right: 30px;
}
.abstart .start-list .start-item:nth-child(2n) .start-r .open{
	padding-left: 0;
	padding-right: 30px;
}

/*加载动画*/
#preloader_1{
    position:relative;
    left: 50%;
    padding: 20px 0;
    font-size: 20px;
    color: #aaaaaa;
    cursor: pointer;
    margin-bottom: 60px;
    overflow: hidden;
    margin-left: -26px;
}
#preloader_1 span{
    display:block;
    bottom:0px;
    width: 9px;
    height: 5px;
    background:#a68564;
    position:absolute;
    animation: preloader_1 1.5s  infinite ease-in-out;
}
#preloader_1 span:nth-child(2){
	left:11px;
	animation-delay: .2s;
  
}
#preloader_1 span:nth-child(3){
	left:22px;
	animation-delay: .4s;
}
#preloader_1 span:nth-child(4){
	left:33px;
	animation-delay: .6s;
}
#preloader_1 span:nth-child(5){
	left:44px;
	animation-delay: .8s;
}
@keyframes preloader_1 {
    0% {height:5px;transform:translateY(0px);background:#a68564;}
    25% {height:30px;transform:translateY(15px);background:#2f383f;}
    50% {height:5px;transform:translateY(0px);background:#a68564;}
    100% {height:5px;transform:translateY(0px);background:#a68564;}
}

#end{
	font-size: 20px;
    color: #aaaaaa;
    text-align: center;
    padding: 15px 0;
}



@media only screen and (max-width: 1200px){
	.abstart .start-list{
		margin-top: 6%;
	}
	.abstart .start-list .start-item{
		padding: 50px 0 40px 0;
	}
}
@media only screen and (max-width: 640px){
	.abstart .start-list{
		margin-bottom: 6%;
	}
	.abstart .start-list .start-item{
		display: block;
		padding: 50px 0 0 0;
	}
	.abstart .start-list::before{
		left: 0;
	}
	.abstart .start-list::after{
		left: 0;
	}
	.abstart .start-list .start-item .start-l{
		width: 100%;
		margin-right: 0;
	}
	.abstart .start-list .start-item .start-r{
		width: 100%;
	}
	.abstart .start-list .start-item::before{
		left: 0;
	}
	.abstart .start-list .start-item .start-r .tit{
		margin-bottom: 15px;
		margin-top: 15px;
	}
	.abstart .start-list .start-item .start-r .tit::before{
		border-left: 12px solid transparent;
    	border-right: 12px solid #8e693c;
    	border-top: 12px solid transparent;
    	transform: rotate(-45deg);
    	margin-left: -15px;
	}
	.abstart .start-list .start-item:nth-child(2n) .start-l{
		margin-left: 0;
	}
	.abstart .start-list .start-item:nth-child(2n) .start-r .tit{
		padding-right: 0;
		padding-left: 30px;
	}
	.abstart .start-list .start-item:nth-child(2n) .start-r .tit::before{
		left: 0;
		right: initial;
		margin-left: -15px;
	}
	.abstart .start-list .start-item:nth-child(2n) .start-r .text{
		padding-left: 30px;
		padding-right: 0;
	}
	.abstart .start-list .start-item:nth-child(2n) .start-r .open{
		padding-left: 30px;
		padding-right: 0;
	}
}

/*品牌介绍*/
.abintroduce .introduce-m .imgbg{
	padding-top: calc(638 / 1920 * 100%);
	position: relative;
	min-height: 350px;
}
.abintroduce .introduce-m .imgbg .introduce-list{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
	display: flex;
	align-items: center;
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item{
	width: 320px;
	text-align: center;
	height: 100%;
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: rotateY(0);
	transition: all .5s;
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .entit{
	font-size: 24px;
	color: #fff;
	line-height: 1;
	margin-bottom: 18px;
	transition: all .5s
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .cntit{
	font-size: 20px;
	color: #fff;
	position: relative;
	line-height: 1;
	padding-top: 40px;
	transition: all .5s
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .cntit::before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 25px;
	height: 1px;
	background-color: #fff;
	transform: translate(-50%,0);
}
.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .text{
	font-size: 16px;
	color: #fff;
	line-height: 2;
	display: none;
	transition: all .5s;
}

.abintroduce .introduce-info .intd-item{
	display: flex;
	align-items: center;
}
.abintroduce .introduce-info .intd-item .intd-l{
	width: 50%;
}
.abintroduce .introduce-info .intd-item .intd-l .img{
	padding-top: calc(660 / 960 * 100%);
}
.abintroduce .introduce-info .intd-item .intd-r{
	width: 50%;
}
.abintroduce .introduce-info .intd-item .intd-r .info{
	font-size: 14px;
	color: #666666;
	line-height: 2;
	max-width: 75%;
	padding-left: 60px;
}
.abintroduce .introduce-info .intd-item:nth-child(2n){
	flex-direction: row-reverse;
}

.abintroduce .introduce-pro{
	margin-top: 95px;
}
.abintroduce .introduce-pro .intp-container{
	width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1545px;
    position: relative;
}
.abintroduce .introduce-pro .intp-container .intp-title{
	font-size: 24px;
	color: #8e693c;
	line-height: 30px;
	text-align: center;
	margin-bottom: 10px;
}
.abintroduce .introduce-pro .intp-container .intp-text{
	font-size: 18px;
	color: #888888;
	line-height: 1;
	text-align: center;
	margin-bottom: 74px;
}
.abintroduce .introduce-pro .intp-container .intp-list{
	display: flex;
	margin-bottom: 120px;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item{
	width: calc(100% / 3);
	position: relative;
	overflow: hidden;
	display: block;
	height: 350px;
	transition: all 1s;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(142,105,60,.2);
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .imgicon{
	width: 115px;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .imgicon .img{
	padding-top: calc(92 / 115 * 100%);
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .tit{
	font-size: 24px;
	color: #fff;
	text-align: center;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide{
	transform: translateX(-100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	padding-left: 48px;
	padding-right: 10px;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info .tit{
	font-size: 24px;
	color: #fff;
	margin-bottom: 30px;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info .text{
	font-size: 16px;
	color: #dad9d9;
	margin-bottom: 40px;
	line-height: 1.5;
}
.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info .more{
	font-size: 16px;
	color: #fff;
}
@media only screen and (min-width: 601px){
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item:hover::before{
		background-color: rgba(142,105,60,.8);
		transform: rotateY(180deg);
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item:hover .entit{
		font-size: 14px;
		margin-bottom: 16px;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item:hover .cntit{
		padding-top: 0;
		margin-bottom: 36px;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item:hover .cntit::before{
		transform: translate(-50%,36px);
		top: initial;
		bottom: 0;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item:hover .text{
		display: block;
		margin-top: 32px;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item:hover{
		width: 45%;
		cursor: pointer;
	}
}
@media only screen and (max-width: 1440px){
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item{
		width: 230px;
	}
	.abintroduce .introduce-info .intd-item .intd-r{
		max-height: 400px;
		overflow-y: auto;
	}
	.abintroduce .introduce-info .intd-item .intd-r::-webkit-scrollbar{
		display: none;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item{
		height: 300px;
	}
}
@media only screen and (max-width: 1200px){
	.abintroduce .introduce-info .intd-item .intd-r .info{
		max-width: 90%;
	}
	.abintroduce .introduce-info .intd-item .intd-r{
		max-height: 320px;
	}
	.abintroduce .introduce-pro .intp-container .intp-text{
		margin-bottom: 4%
	}
	.abintroduce .introduce-pro .intp-container .intp-list{
		margin-bottom: 6%;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .imgicon{
		width: 95px;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .tit{
		font-size: 20px;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item{
		height: 250px;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info{
		padding-left: 8%;
	}
}
@media only screen and (max-width: 1024px){
	.abintroduce .introduce-info .intd-item{
		display: block;
	}
	.abintroduce .introduce-info .intd-item .intd-l,.abintroduce .introduce-info .intd-item .intd-r{
		width: 100%;
		max-height: 100%;
	}
	.abintroduce .introduce-info .intd-item .intd-r .info{
		padding-left: 0;
		max-width: 100%;
		width: 94%;
		margin: 0 auto;
		padding: 4% 0;
	}
	.abintroduce .introduce-pro{
		margin-top: 6%;
	}
	.abintroduce .introduce-m .imgbg .introduce-list{
		display: block;
		width: 100%;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item{
		width: 100%;
		height: calc(100% / 4);
		flex-direction: column;
	}
	.abintroduce .introduce-pro .intp-container .intp-list{
		margin-bottom: 60px;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-show .imgicon{
		width: 80px;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .text{
		display: none;
		line-height: 1.5;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .entit{
		margin-bottom: 5px;
		font-size: 20px;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .cntit{
		padding-top: 0;
		margin: 0 20px;
	}
	.abintroduce .introduce-m .imgbg .introduce-list .introduce-item .cntit::before{
		top: 50%;
		right: 0;
		left: initial;
		display: none;
	}
	.abintroduce .introduce-pro .intp-container .intp-text{
		font-size: 16px;
	}

	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info .tit{
		font-size: 20px;
		margin-bottom: 4%;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item .imgbg .intp-hide .info .text{
		font-size: 14px;
		margin-bottom: 4%;
	}
}
@media only screen and (max-width: 800px){}
@media only screen and (max-width: 640px){
	.abintroduce .introduce-pro .intp-container .intp-list{
		display: block;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item{
		width: 100%;
	}
}


/*产品专利*/
.abpatent .patent-list{
	width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1286px;
    position: relative;
    margin-bottom: 120px;
}
.abpatent .patent-list .patent-item{
	width: calc((100% - 297px) / 4);
	margin-right: 99px;
	float: left;
	margin-bottom: 70px;
}
.abpatent .patent-list .patent-item:nth-child(4n){
	margin-right: 0;
}
.abpatent .patent-list .patent-item .imgbg{
	width: 100%;
	border: 4px solid #e5e5e5;
}
.abpatent .patent-list .patent-item .imgbg .img{
	padding-top: calc(316 / 242 * 100%);
}
.abpatent .patent-list .patent-item .tit{
	font-size: 16px;
	color: #010101;
	text-align: center;
	margin-top: 46px;
}

/*.layui-layer{
	top: 50%!important;
	left: 50%!important;
	transform: translate(-50%,-50%)!important;
}*/
.layui-layer .layui-layer-content{
	height: auto!important;
}

@media only screen and (max-width: 1440px){
	.abpatent .patent-list .patent-item{
		margin-right: 4%;
		margin-bottom: 6%;
		width: calc((100% - 12%) / 4);
	}
}
@media only screen and (max-width: 1200px){
	.abpatent .patent-list{
		margin-bottom: 6%;
	}
	.abpatent .patent-list .patent-item{
		margin-right: 2%;
		width: calc((100% - 6%) / 4);
	}
	.abpatent .patent-list .patent-item .tit{
		margin-top: 10%;
	}
}
@media only screen and (max-width: 1024px){
	.abpatent .patent-list .patent-item{
		margin-right: 2%;
		width: calc((100% - 4%) / 3);
	}
	.abpatent .patent-list .patent-item:nth-child(4n){
		margin-right: 2%;
	}
	.abpatent .patent-list .patent-item:nth-child(3n){
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){
	.abpatent .patent-list .patent-item{
		margin-right: 2%;
		width: calc((100% - 2%) / 2);
	}
	
	.abpatent .patent-list .patent-item:nth-child(3n){
		margin-right: 2%;
	}
	.abpatent .patent-list .patent-item:nth-child(4n){
		margin-right: 0;
	}
	.abpatent .patent-list .patent-item:nth-child(2n){
		margin-right: 0;
	}
}

/*梦凯莎荣耀*/
.abhonor{
	margin-bottom: 140px;
}
.abhonor .line{
	width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1305px;
    height: 1px;
    background-color: #e5e5e5;
    margin-top: 116px;
}
.abhonor .honor-container{
	width: 94%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1485px;
    position: relative;
}
.abhonor .honor-container .honor-swiper{
	height: 574px;
	margin: 0 90px;
}
.abhonor .honor-container .honor-swiper::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #e5e5e5;
	margin-top: -1px;
}
.abhonor .honor-container .honor-swiper .swiper-wrapper {
		position: relative;
}
.abhonor .honor-container .honor-swiper .swiper-wrapper .block{
	position: absolute;
	top: 50%;
	left: 0;
	width: 350px;
	height: 2px;
	margin-top: -1px;
	background-color: #8e693c;
	transition: all .5s;
}
.abhonor .honor-container .honor-swiper .swiper-wrapper .block::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #8e693c;
    margin-top: -8px;
    margin-left: -3px;
}
.abhonor .honor-container .honor-swiper .swiper-wrapper .block.ac::before{
	border-top: 8px solid #8e693c;
	border-bottom: none;
	margin-top: 0;
}
.abhonor .honor-container .honor-swiper .swiper-wrapper .swiper-slide{
	width: 630px;
	position: relative;
}
.abhonor .honor-container .honoritem{
	display: flex;
	align-items: center;
}

.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(even){
	margin-left: -414px;
}
.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(odd){
	margin-left: -175px;
}
.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(1){
	margin-left: 0;
}
.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(2n) .honoritem{
	position: absolute;
	bottom: 0;
	width: 100%;
}

.abhonor .honor-container .honoritem .honoritem-l{
	width: 350px;
	overflow: hidden;
}
.abhonor .honor-container .honoritem .honoritem-l .img{
	padding-top: calc(242 / 350 * 100%);
	transform: scale(1);
	transition: all 2s;
}
.abhonor .honor-container .honoritem .honoritem-r{
	width: 280px;
	padding-left: 15px;
}
.abhonor .honor-container .honoritem .honoritem-r .tit{
	font-size: 30px;
	color: #666666;
	font-weight: bold;
}
.abhonor .honor-container .honoritem .honoritem-r .text{
	font-size: 14px;
	color: #666666;
	line-height: 24px;
}
.abhonor .honor-container .mhonor-swiper{
	display: none;
}

.abhonor .honor-container .honor-prev:focus,.abhonor .honor-container .honor-next:focus{
	outline: none;
}

.abhonor .honor-container .honor-prev{
	position: absolute;
	top: 50%;
	left: 0;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 2px solid #8e693c;
	margin-top: -29px;
}
.abhonor .honor-container .honor-prev::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	border-style: solid;
	border-width: 2px;
	border-color: transparent transparent #8e693c #8e693c;
	transform: rotate(45deg);
	margin-top: -8px;
	margin-left: -4px;
}
.abhonor .honor-container .honor-next{
	position: absolute;
	top: 50%;
	right: 0;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 2px solid #8e693c;
	margin-top: -29px;
}
.abhonor .honor-container .honor-next::before{
	content: "";
	position: absolute;
	right: 50%;
	top: 50%;
	width: 16px;
	height: 16px;
	border-style: solid;
	border-width: 2px;
	border-color: #8e693c #8e693c transparent transparent;
	transform: rotate(45deg);
	margin-top: -8px;
	margin-right: -4px;
}
.abhonor .honor-container .honor-prev.swiper-button-disabled{
	border: 2px solid #e5e5e5;
}
.abhonor .honor-container .honor-prev.swiper-button-disabled::before{
	border-color: transparent transparent #e5e5e5 #e5e5e5;
}
.abhonor .honor-container .honor-next.swiper-button-disabled{
	border: 2px solid #e5e5e5;
}
.abhonor .honor-container .honor-next.swiper-button-disabled::before{
	border-color: #e5e5e5 #e5e5e5 transparent transparent;
}

.honor-thumbs{
	height: 0;
}
.abhonor .honor-container .mhonor-pagination{
	display: none;
}



@media only screen and (min-width: 600px){
	
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item:hover .imgbg .intp-show{
		display: none;
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item:hover .imgbg .intp-hide{
		transform: translateX(0);
	}
	.abintroduce .introduce-pro .intp-container .intp-list .intp-item:hover .imgbg .intp-hide::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to right, rgba(142,105,60,.9) , rgba(142,105,60,0));
		z-index: 1;
	}
	.abhonor .honor-container .honoritem:hover .honoritem-l .img{
		transform: scale(1.1);
	}
}
@media only screen and (max-width: 1360px){
	.abhonor .honor-container .honor-swiper{
		height: 550px;
	}
	.abhonor .honor-container .honor-swiper .swiper-wrapper .swiper-slide{
		width: 575px;
	}
	.abhonor .honor-container .honor-swiper .honoritem .honoritem-l{
		width: 318px;
	}
	.abhonor .honor-container .honor-swiper .honoritem .honoritem-r{
		width: 269px;
	}
	.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(even) {
	    margin-left: -380px;
	}
	.abhonor .honor-container .honor-swiper .swiper-wrapper .block{
		width: 318px;
	}
}
@media only screen and (max-width: 1200px){
	.abhonor{
		margin-bottom: 10%;
	}
	.abhonor .line{
		margin-top: 8%;
	}
	.abhonor .honor-container .honor-swiper{
		height: 520px;
	}
}
@media only screen and (max-width: 1024px){
	.abhonor .honor-container .honor-swiper{
		height: auto;
	}
	.abhonor .honor-container .honor-swiper .swiper-wrapper .swiper-slide{
		width: 100%;
	}
	.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(even){
		margin-left: 0;
	}
	.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(odd){
		margin-left: 0;
	}
	.abhonor .honor-container .honor-swiper .swiper-wrapper .block{
		display: none;
	}
	.abhonor .honor-container .honor-swiper::after{
		display: none;
	}
	.abhonor .honor-container .honor-swiper .swiper-slide:nth-child(2n) .honoritem{
		position: static;
	}
	.abhonor .honor-container .honor-swiper,.abhonor .honor-thumbs{
		display: none;
	}
	.abhonor .honor-container .honor-prev,.abhonor .honor-container .honor-next{
		display: none;
	}
	.abhonor .line{
		margin-top: 4%;
	}
	.abhonor .honor-container .mhonor-swiper{
		display: block;
	}
	.abhonor .honor-container .mhonor-pagination{
		display: block;
		text-align: center;
		padding: 20px 0;
	}
	.abhonor .honor-container .mhonor-pagination .swiper-pagination-bullet{
		margin: 0 5px;
	}
	.abhonor .honor-container .mhonor-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
		background: #8e693c;
	}
	.abhonor .honor-container .honoritem .honoritem-l,.abhonor .honor-container .honoritem .honoritem-r{
		width: 50%;
	}
}
@media only screen and (max-width: 640px){
	.abhonor .honor-container .honor-swiper{
		margin: 0;
	}
	.abhonor .honor-container .honoritem{
		display: block;
	}
	.abhonor .honor-container .honoritem .honoritem-l{
		width: 100%;
	}
	.abhonor .honor-container .honoritem .honoritem-r{
		width: 100%;
	}
	.abhonor .honor-container .honor-prev,.abhonor .honor-container .honor-next{
		display: none;
	}
}


/*底部推荐*/
.abfooter .abfooter-l{
	width: 50%;
	float: left;
	overflow: hidden;
}
.abfooter .abfooter-l .abfl-img{
	display: block;
	padding-top: calc(674 / 960 * 100%);
	position: relative;
	transform: scale(1);
	transition: all 2s;
}
.abfooter .abfooter-l .abfl-img .tit{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 29px;
	color: #fff;
	letter-spacing: initial;
	opacity: 1;
	transition: all .5s;
}
.abfooter .abfooter-r{
	width: 50%;
	float: left;
}
.abfooter .abfooter-r .abfr-img{
	overflow: hidden;
	display: block;
}
.abfooter .abfooter-r .abfr-img .img{
	padding-top: calc(337 / 960 * 100%);
	position: relative;
	transform: scale(1);
	transition: all 2s;
}
.abfooter .abfooter-r .abfr-img .tit{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 29px;
	color: #fff;
	letter-spacing: initial;
	opacity: 1;
	transition: all .5s;
}
@media only screen and (min-width: 601px) {
	.abfooter .abfooter-l:hover .abfl-img{
		transform: scale(1.1);
	}
	.abfooter .abfooter-l:hover .abfl-img .tit{
		letter-spacing: 10px;
		opacity: 0;
	}
	.abfooter .abfooter-r .abfr-img:hover .img{
		transform: scale(1.1);
	}
	.abfooter .abfooter-r .abfr-img:hover .tit{
		letter-spacing: 10px;
		opacity: 0;
	}
}
@media only screen and (max-width: 1024px) {
	.abfooter .abfooter-l .abfl-img .tit{
		font-size: 26px;
	}
	.abfooter .abfooter-r .abfr-img .tit{
		font-size: 26px;
	}
}
@media only screen and (max-width: 800px) {
	.abfooter .abfooter-l,.abfooter .abfooter-r{
		width: 100%;
		float: none;
	}	
	.abfooter .abfooter-l .abfl-img .tit{
		font-size: 22px;
	}
	.abfooter .abfooter-r .abfr-img .tit{
		font-size: 22px;
	}
}






/* =========

    卓越科技

 ========= */
.te-article .tarticle-item{
	margin-bottom: 120px;
}
.te-article .tarticle-item .tit{
	font-size: 18px;
	color: #8e693c;
	line-height: 1;
	margin-bottom: 30px;
	text-align: center;
}
.te-article .tarticle-item .text{
	font-size: 12px;
	color: #666666;
	line-height: 18px;
	margin-bottom: 90px;
	text-align: center;
}
.te-article .tarticle-item .info{
	font-size: 14px;
	color: #666666;
	line-height: 18px;
}
.te-article .tarticle-item .info .infotext{
	display: flex;
	align-items: center;
	margin-bottom: 100px;
}
.te-article .tarticle-item .info .infotext .infotext-l{
	width: 50%;
}
.te-article .tarticle-item .info .infotext .infotext-r{
	width: 50%;
	padding: 0 5%;
}
.te-article .tarticle-item .info .infotext:nth-child(2n){
	flex-direction: row-reverse;
}
.te-article .tarticle-item:nth-child(2) .info .infotext,.te-article .tarticle-item:nth-child(3) .info .infotext{
	flex-direction: row-reverse;
}
.te-article .tarticle-item:nth-child(2)  .info .infotext:nth-child(2n){
	flex-direction: row;
}

.te-contact{
	background-color: #f2f2f2;
}
.te-contact .tcon-info{
	padding: 70px 138px 150px;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.te-contact .tcon-info .tcon-l{
	margin-right: 112px;
}
.te-contact .tcon-info .tcon-l .entit{
	font-size: 30px;
	line-height: 1;
	color: #8e693c;
	margin-bottom: 29px;
}
.te-contact .tcon-info .tcon-l .cntit{
	font-size: 18px;
	line-height: 1;
	color: #000;
	margin-bottom: 80px;
}
.te-contact .tcon-info .tcon-l ul li{
	margin-bottom: 76px;
	position: relative;

}
.te-contact .tcon-info .tcon-l ul li:last-child{
	margin-bottom: 0;
}
.te-contact .tcon-info .tcon-l ul li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #8e693c;
    margin-top: -3px;
}
.te-contact .tcon-info .tcon-l ul li .href-a{
	display: block;
	width: 409px;
	font-size: 18px;
	color: #2a2a2a;
	line-height: 60px;
	padding-left: 38px;
	border-bottom: 2px solid #cecece;
	transition: all .5s;
}
.te-contact .tcon-info .tcon-r{
	width: 402px;
}
.te-contact .tcon-info .tcon-r .img{
	padding-top: calc(402 / 402 * 100%);
}

@media only screen and (min-width: 600px) {
	.te-contact .tcon-info .tcon-l ul li:hover::before{
		transform: rotate(-90deg);
	}
	.te-contact .tcon-info .tcon-l ul li .href-a:hover{
		color: #8e693c;
		padding-left: 50px;
	}
}
@media only screen and (max-width: 1440px){
	.te-contact .tcon-info{
		padding: 5% 8% 10%;
	}
	.te-article .tarticle-item{
		margin-bottom: 100px;
	}
	.te-article .tarticle-item .text{
		margin-bottom: 75px;
	}
	.te-article .tarticle-item .info .infotext{
		margin-bottom: 80px;
	}
}
@media only screen and (max-width: 1200px){
	.te-contact .tcon-info{
		padding: 4% 6% 10%;
	}
	.te-contact .tcon-info .tcon-l{
		margin-right: 8%;
	}
	.te-contact .tcon-info .tcon-l .cntit{
		margin-bottom: 8%;
	}
	.te-contact .tcon-info .tcon-l ul li{
		margin-bottom: 8%;
	}
	.te-article .tarticle-item{
		margin-bottom: 80px;
	}
	.te-article .tarticle-item .text{
		margin-bottom: 6%;
	}
}
@media only screen and (max-width: 1024px){
	.te-contact .tcon-info .tcon-l ul li .href-a{
		width: 320px;
	}
	.te-article .tarticle-item{
		margin-bottom: 10%;
	}
	.te-article .tarticle-item .info .infotext{
		margin-bottom: 6%;
	}
	.te-article .tarticle-item .info .infotext .infotext-r{
		padding: 0 3%;
	}
}
@media only screen and (max-width: 800px){
	.te-article .tarticle-item .info .infotext{
		display: block;
	}
	.te-article .tarticle-item .info .infotext .infotext-l{
		width: 100%;
		text-align: center;
	}
	.te-article .tarticle-item .info .infotext .infotext-r{
		width: 100%;
		margin-top: 20px;
	}
	.te-contact .tcon-info .tcon-l .entit{
		margin-bottom: 10px;
	}
	.te-contact .tcon-info .tcon-l ul li .href-a{
		width: 220px;
		line-height: 50px;
		font-size: 16px;
	}
}
@media only screen and (max-width: 640px){
	.te-contact .tcon-info{
		display: block;
		padding: 0;
	}
	.te-contact .tcon-info .tcon-r{
		width: 100%;
	}
	.te-contact .tcon-info .tcon-l{
		width: 100%;
		margin-right: 0;
		padding: 3% 0 60px 0;
	}
	
	.te-contact .tcon-info .tcon-l .cntit{
		margin-bottom: 15px;
	}
	.te-contact .tcon-info .tcon-l ul li{
		margin-bottom: 20px;
	}
	.te-contact .tcon-info .tcon-l ul li .href-a{
		width: 100%;
		line-height: 45px;
	}
}



/* =========

    产品中心

 ========= */
.hrefbox.pro{
	border-top: 1px solid #e5e5e5;
}
.hrefbox.pro .href-r .href-kind{
	padding-bottom: 30px;
}
.hrefbox.pro .href-r ul li .href-kind{
	padding-right: 10px;
}
.hrefbox.pro .href-r ul li .href-kind.on{
	color: #3a3a3a;
}
.hrefbox.pro .href-r ul li .href-kind::before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-width: 1px;
	border-color: #888888 #888888 transparent transparent;
	transform: rotate(45deg);
	margin-top: 3px;
}
.hrefbox.pro .href-r ul li .href-kind.on::before{
	border-color: #3a3a3a #3a3a3a transparent transparent;
}
.hrefbox.pro .href-r ul li .href-kind.on::after{
	display: none;
}


.product-bg .plist{
	position: relative;
}
.product-bg .plist .litop{
	position: relative;
	display: block;
	overflow: hidden;
}
.product-bg .plist .litop .pimg{
	padding-top: calc(680 / 1915 * 100%);
	min-height: 350px;
	transform: scale(1);
	transition: all 2s;
}
.product-bg .plist .litop .textbox{
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #fff;
	padding-top: 40px;
	padding-bottom: 20px;
	width: 100%;
	max-width: 760px;
}
.product-bg .plist .litop .textbox .star{
	content: "";
	width: 30px;
	height: 42px;
	background-color: #a68529;
	position: absolute;
	left: 40px;
	top: 0;
	background-position:center 5px;
	background-repeat: no-repeat;
	background-image: url(../images/star_03.png);
	-webkit-background-size: 17px 16px;
	background-size: 17px 16px;
}
.product-bg .plist .litop .textbox .star:after{
	content: "";
	border-style: solid;
	border-width: 15px;
	border-color: transparent transparent #fff transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}
.product-bg .plist .litop .textbox .text{
	max-width: 650px;
	margin-right: 0;
	margin-left: auto;
}
.product-bg .plist .litop .textbox .text .en{
	font-size: 14px;
	color: #666666;
	font-weight: bold;
	text-transform:uppercase;
}
.product-bg .plist .litop .textbox .text .cn{
	font-size: 0;
}
.product-bg .plist .litop .textbox .text .cn .word{
	font-size: 24px;
	color: #a68529;
	font-weight: bold;
	margin-right: 10px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.product-bg .plist .litop .textbox .text .cn .from{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 16px;
	color: #888888;
	vertical-align: bottom;
}
.product-bg .plist .litop .textbox .text .num{
	font-size: 0;
	position: relative;
	padding-left: 40px;
	line-height: 20px;
	margin-bottom: 10px;
	height: 20px;
}
.product-bg .plist .litop .textbox .text .num .bt{
	position: absolute;
	left: 0;
	top: 0;
	line-height:20px;
	font-size: 14px;
	color: #888888;
}
.product-bg .plist .litop .textbox .text .num .nn{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 14px;
	color: #888888;
}
.product-bg .plist .litop .textbox .text .num .nn span{
	width: 30px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-align: center;
}
.product-bg .plist .litop .textbox .text .num .nn:last-child span{
	display: none;
}
.product-bg .plist .litop .textbox .text .more{
	font-size: 16px;
	color: #8e693c;
	padding-right: 40px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	position: relative;
	letter-spacing: initial;
	transition: all .5s;
}
.product-bg .plist .litop .textbox .text .more:after{
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: #8e693c #8e693c transparent transparent;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -5px;
	transform: rotate(45deg);
}

.product-bg .plist .pbox{
	width: 50%;
	float: left;
}
.product-bg .plist .pbox.left .lip{
	width: 50%;
	overflow: hidden;
}
.product-bg .plist .pbox.left .lip:first-child{
	width: 100%;
}
.product-bg .plist .pbox.left .lip:first-child .pimg{
	padding-top: calc(1 / 2 * 100%);
	transform: scale(1);
	transition: all 2s;
	position: relative;
}

.product-bg .plist .pbox.right .lip{
	width: 50%;
	overflow: hidden;
}
.product-bg .plist .pbox.right .lip:first-child .pimg{
	padding-top: calc(2 / 1 * 100%);
	transform: scale(1);
	transition: all 2s;
	position: relative;
}

.product-bg .plist .lip{
	width: calc(100% / 4);
	float: left;
	display: block;
	overflow: hidden;
}
.product-bg .plist .lip .pimg{
	padding-top: 100%;
	transform: scale(1);
	transition: all 2s;
	position: relative;
}

.product-bg .plist .lip .pimg .titinfo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.product-bg .plist .lip .pimg .titinfo .ptit{
	font-size: 24px;
	color: #fff;
	letter-spacing: 10px;
	opacity: 0;
	transition: all 1s;
	text-align: center;
}
.product-bg .plist .lip .pimg .titinfo .more{
	font-size: 16px;
	color: #8e693c;
	position: relative;
	letter-spacing: 10px;
	opacity: 0;
	transition: all 1s;
	display: inline-block;
	padding-right: 20px;
}
.product-bg .plist .lip .pimg .titinfo .more::after{
	content: "";
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #8e693c #8e693c transparent transparent;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    transform: rotate(45deg);
}

@media only screen and (min-width: 601px){
	.hrefbox.pro .href-r ul li .href-kind:hover{
		color: #3a3a3a;
	}
	.product-bg .plist .litop:hover .pimg{
		transform: scale(1.1);
	}
	.product-bg .plist .litop:hover .textbox .text .more{
		letter-spacing: 5px;
	}
	.product-bg .plist .pbox.left .lip:hover .pimg{
		transform: scale(1.1);
	}
	.product-bg .plist .pbox.right .lip:hover .pimg{
		transform: scale(1.1);
	}
	.product-bg .plist .lip:hover .pimg .titinfo .ptit{
		letter-spacing: initial;
		opacity: 1;
	}
	.product-bg .plist .lip:hover .pimg .titinfo .more{
		letter-spacing: initial;
		opacity: 1;
	}
	.product-bg .plist .lip:hover .pimg{
		transform: scale(1.1);
	}
}
@media only screen and (max-width: 1200px){
	.product-bg .plist .litop .textbox{
		max-width: 50%;
		padding-bottom: 10px;
	}
	.product-bg .plist .litop .textbox .star{
		left: 26px;
	}
	.product-bg .plist .litop .textbox .text{
		max-width: 86%;
	}
	.product-bg .plist .litop .textbox .text .more{
		font-size: 14px;
	}
	.product-bg .plist .litop .textbox .text .more:after{
		width: 8px;
		height: 8px;
		margin-top: -4px;
	}
	.product-bg .plist .lip .pimg .titinfo .ptit{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1024px){
	.product-bg .plist .pbox{
		width: 100%;
		float: none;
	}
	.product-bg .plist .litop .textbox{
		max-width: 100%;
		background-color: rgba(255,255,255,.6);
		padding-top: 15px;
	}
	.product-bg .plist .litop .textbox .star{
		display: none;
	}
	.product-bg .plist .litop .textbox .text{
		margin-right: auto;
	}
	.product-bg .plist .lip{
		width: calc(100% / 2);
	}
}
@media only screen and (max-width: 640px){
	.product-bg .plist .litop .textbox .text .num{
		display: none;
	}
	.product-bg .plist .litop .pimg{
		min-height: 280px;
	}
}



/* =========

    产品详情

 ========= */
.pview-bg{
	max-width: 1400px;
	padding-top: 120px;
	padding-bottom: 100px;
}
.pview-bg .ptop{
	margin-bottom: 100px;
}
.pview-bg .ptop .swiperbox{
	width: calc(97% - 440px);
	float: left;
	max-width: 900px;
	padding-right: 40px;
	padding-bottom: 130px;
	position: relative;
}
.pview-bg .ptop .swiperbox .gallery-top .swiper-wrapper .swiper-slide .topimg{
	padding-top: calc(560 / 860 * 100%);
}
.pview-bg .ptop .swiperbox .thumbsbox{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 240px;
}
.pview-bg .ptop .swiperbox .thumbsbox .gallery-thumbs .swiper-wrapper .swiper-slide{
	padding: 10px;
	background-color: #fff;
}
.pview-bg .ptop .swiperbox .thumbsbox .gallery-thumbs .swiper-wrapper .swiper-slide .thumbsimg{
	padding-top: calc(300 / 220 * 100%);
}
.pview-bg .ptop .swiperbox .thumbsbox .btnbox{
	display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: space-between;
-ms-flex-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
}
.pview-bg .ptop .swiperbox .thumbsbox .btnbox .btn{
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
	outline: none;
	cursor: pointer;
}
.pview-bg .ptop .swiperbox .thumbsbox .btnbox .btn.gallery-prev{
	background-image: url(../images/jjt_03.png);
}
.pview-bg .ptop .swiperbox .thumbsbox .btnbox .btn.gallery-next{
	background-image: url(../images/jjt_05.png);	
}
.pview-bg .ptop .textbox{
	width: 440px;
	float: right;
	padding-top: 25px;
}
.pview-bg .ptop .textbox .en{
	font-size: 24px;
	color: #666666;
	font-weight: bold;
	text-transform:uppercase;
}
.pview-bg .ptop .textbox .cn{
	font-size: 0;
	margin-bottom: 16px;
}
.pview-bg .ptop .textbox .cn .word{
	font-size: 48px;
	line-height: 60px;
	color: #a68529;
	font-weight: bold;
	margin-right: 10px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
.pview-bg .ptop .textbox .cn .from{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 16px;
	color: #888888;
	vertical-align: bottom;
}
.pview-bg .ptop .textbox .num{
	font-size: 0;
	position: relative;
	line-height: 20px;
	margin-bottom: 20px;
}
.pview-bg .ptop .textbox .num .nn{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	font-size: 14px;
	color: #888888;
}
.pview-bg .ptop .textbox .num .nn span{
	width: 30px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	text-align: center;
}
.pview-bg .ptop .textbox .num .nn:last-child span{
	display: none;
}
.pview-bg .ptop .textbox .demo{
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	overflow: hidden;
	margin-bottom: 20px;
}
.pview-bg .ptop .textbox .selectbox{
	padding-left: 70px;
	position: relative;
	margin-bottom: 20px;
}
.pview-bg .ptop .textbox .selectbox .word{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #a68529;
	font-weight: bold;
}
.pview-bg .ptop .textbox .selectbox .select{
	border:1px solid #dcdcdc;
	position: relative;
	
}
.pview-bg .ptop .textbox .selectbox .select:after{
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent #666666 #666666 transparent;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -7px;
	transform: rotate(45deg);
	z-index: 3
}
.pview-bg .ptop .textbox .selectbox .select select{
	width: 100%;
	height: 45px;
	font-size: 14px;
	color: #666666;
	padding: 0 30px;
	background-color: transparent;
	z-index: 4;
	position: relative;
}

.pview-bg .ptop .textbox .tie{
	font-size: 12px;
	color: #888888;
}
.pview-bg .pcontent{
	padding-bottom: 100px;
}
.pview-bg .pcontent .bbt{
	font-size: 30px;
	color: #8e693c;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	text-align: center;
}
.pview-bg .pcontent .bbt:after{
	content: "";
	width: 60px;
	height: 1px;
	background-color: #8e693c;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.pview-bg .pcontent .content{
	font-size: 12px;
	color: #666666;
	line-height: 2; 	
	overflow: hidden;
}
.pview-bg .linkbox{
	max-width: 400px;
	height: 60px;
	margin:0 auto;
	background-color: #b28850;
	display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.pview-bg .linkbox .btn{
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.pview-bg .linkbox .btn.prev{
	background-image: url(../images/wjjt_03.png);
}
.pview-bg .linkbox .btn.next{
	background-image: url(../images/wjjt_05.png);	
}
.pview-bg .linkbox .word{
	padding: 0 20px;
	height: 30px;
	overflow: hidden;
}
.pview-bg .linkbox .word .ww{
	line-height: 30px;
	font-size: 14px;
	color: #fff;	
	transition: all .5s ease;
}
.pview-bg .linkbox[data-on="prev"] .word .ww.prev{
	transform: translateY(0);
}
.pview-bg .linkbox[data-on="prev"] .word .ww.next{
	transform: translateY(0);
}
.pview-bg .linkbox[data-on="next"] .word .ww.prev{
	transform: translateY(-100%);
}
.pview-bg .linkbox[data-on="next"] .word .ww.next{
	transform: translateY(-100%);
}
@media only screen and (min-width: 601px){
.pview-bg .linkbox .btn:hover{
	opacity: 0.5;
}
}
@media only screen and (max-width: 1200px){
	.pview-bg{
		padding: 6% 0 6% 0;
	}
	.pview-bg .pcontent{
		padding-bottom: 6%;
	}
	.pview-bg .ptop{
		margin-bottom: 6%;
	}
	.pview-bg .ptop .textbox .cn .word{
		font-size: 42px;
	}
}
@media only screen and (max-width: 1024px){
	.pview-bg .ptop .swiperbox{
		width: 100%;
		float: none;
	}
	.pview-bg .ptop .textbox{
		width: 100%;
		float: none;
	}
	.pview-bg .ptop .textbox .selectbox .select{
		width: 50%;
	}
	.pview-bg .pcontent .bbt{
		font-size: 26px;
	}
	.pview-bg .ptop .textbox .demo{
		font-size: 14px;
	}
	.pview-bg .ptop .textbox .cn .word{
		font-size: 36px;
	}
}
@media only screen and (max-width: 800px){
	.pview-bg .ptop .textbox .selectbox .select{
		width: 80%;
	}
}
@media only screen and (max-width: 640px){
	.pview-bg .ptop .swiperbox .thumbsbox{
		max-width: 172px;
	}
	.pview-bg .ptop .textbox .selectbox .select{
		width: 100%;
	}
	.pview-bg .ptop .textbox .num{
		margin-bottom: 10px;
	}
	.pview-bg .pcontent .bbt{
		font-size: 22px;
		padding-bottom: 10px;
	}
	.pview-bg .linkbox{
		height: 50px;
	}
}
@media only screen and (max-width: 414px){
	.pview-bg .ptop .swiperbox .thumbsbox{
		max-width: 130px;
	}
	.pview-bg .ptop .textbox .cn .word{
		font-size: 28px;
	}
}






/* =========

    新闻动态

 ========= */
.news-top{
	max-width: 1600px;
	margin-top: 100px;
}
.news-top .newstop-swiper{
	overflow-x: hidden;
	padding-bottom: 155px;
}
.news-top .newstop-swiper .swiper-slide{
	margin-right: 1px;
}
.news-top .newstop-swiper .swiper-slide .newst-info{
	display: block;
	position: relative;
	padding: 75px 0 145px 0;
	background-color: #eeeeee;
	width: 56%;
	top: 0;
	left: 0;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info{
	width: 50%;
	margin: 0 auto;
}

.news-top .newstop-swiper .swiper-slide .newst-info .news-time{
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	background-color: #8e693c;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-time .date{
	font-size: 36px;
	color: #fff;
	line-height: 1;
	position: relative;
	border-bottom: 1px solid #fff;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-time .month{
	font-size: 20px;
	color: #fff;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info .btit{
	font-size: 30px;
	line-height: 1;
	color: #8e693c;
	margin-bottom: 123px;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info .tit{
	font-size: 24px;
	color: #3a3a3a;
	margin-bottom: 40px;
	line-height: 1;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info .demo{
	font-size: 14px;
	color: #3a3a3a;
	line-height: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 82px;
	margin-bottom: 40px;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info .more{
	font-size: 16px;
	color: #8e693c;
	position: relative;
	display: inline-block;
	padding-right: 40px;
}
.news-top .newstop-swiper .swiper-slide .newst-info .news-info .more::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-style: solid;
	border-width: 1px;
	border-color: #8e693c #8e693c transparent transparent;
	transform: rotate(45deg);
	margin-top: -4px;
}
.news-top .newstop-swiper .swiper-slide .topimg{
	width: 51%;
	position: absolute;
	right: 0;
	bottom: -155px;
}
.news-top .newstop-swiper .swiper-slide .topimg .img{
	padding-top: calc(550 / 829 * 100%);
}
.news-top .newstop-swiper .btnbox{
	position: absolute;
	bottom: 191px;
	left: 50%;
	width: 110px;
	height: 20px;
	margin-left: -180px;
	z-index: 1;
}
.news-top .newstop-swiper .btnbox .nline{
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #666666;
}
.news-top .newstop-swiper .newstop-prev,.news-top .newstop-swiper .newstop-next{
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 1px;
	transform: rotate(45deg);
	margin-top: -6px;
}
.news-top .newstop-swiper .newstop-prev{
	left: 0;
	border-color: transparent transparent #666666 #666666;
}
.news-top .newstop-swiper .newstop-next{
	right: 0;
	border-color: #666666 #666666 transparent transparent;
}
.news-top .newstop-swiper .newstop-prev.swiper-button-disabled{
	border-color: transparent transparent #cccccc #cccccc;
}
.news-top .newstop-swiper .newstop-next.swiper-button-disabled{
	border-color: #cccccc #cccccc transparent transparent;
}
.news-top .newstop-swiper .newstop-pagination{
	display: none;
}

.news-content{
	margin-top: 46px;
}
.news-content .title{
	font-size: 30px;
	color: #8e693c;
	line-height: 1;
	margin-bottom: 76px;
}
.news-content .news-list .news-item{
	display: block;
	margin-bottom: 20px;
	border: 1px solid #e5e5e5;
	position: relative;
	padding: 55px 39px 55px 162px;
}
.news-content .news-list .news-item .news-time{
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	background-color: #8e693c;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.news-content .news-list .news-item .news-time .date{
	font-size: 36px;
	color: #fff;
	line-height: 1;
	position: relative;
	border-bottom: 1px solid #fff;
}
.news-content .news-list .news-item .news-time .month{
	font-size: 20px;
	color: #fff;
}
.news-content .news-list .news-item .news-info .tit{
	font-size: 18px;
	color: #666666;
	margin-bottom: 30px;
	line-height: 1;
}
.news-content .news-list .news-item .news-info .demo{
	font-size: 14px;
	color: #666666;
	margin-bottom: 30px;
	line-height: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 84px;
}
.news-content .news-list .news-item .news-info .more{
	font-size: 12px;
	color: #666666;
	position: relative;
	padding-right: 35px;
	display: inline-block;
	letter-spacing: initial;
	transition: all .5s;
}
.news-content .news-list .news-item .news-info .more::after{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-width: 1px;
	border-color: #666666 #666666 transparent transparent;
	transform: rotate(45deg);
	margin-top: -3px;
}
@media only screen and (min-width: 601px){
	.news-content .news-list .news-item:hover .news-info .tit{
		color: #8e693c;
	}
	.news-content .news-list .news-item:hover .news-info .more{
		letter-spacing: 5px;
		color: #8e693c;
	}
	.news-content .news-list .news-item:hover .news-info .more::after{
		border-color: #8e693c #8e693c transparent transparent;
	}
}
@media only screen and (max-width: 1440px){
	.news-top .newstop-swiper .swiper-slide .newst-info{
		padding: 60px 0 120px 0;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info{
		width: 65%;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .btit{
		margin-bottom: 100px;
	}
}
@media only screen and (max-width: 1200px){
	.news-top{
		margin-top: 6%;
	}
	.news-top .newstop-swiper{
		padding-bottom: 10%;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info{
		padding: 60px 0 80px 0;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info{
		width: 60%;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .btit{
		margin-bottom: 15%;
		font-size: 26px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .tit{
		margin-bottom: 8%;
		font-size: 20px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .demo{
		margin-bottom: 8%;
	}
	.news-content .title{
		margin-bottom: 6%;
	}
	.news-top .newstop-swiper .btnbox{
		bottom: 26%;
	}
}
@media only screen and (max-width: 1024px){
	.news-top .newstop-swiper{
		padding-bottom: 6%;
	}
	.news-top .newstop-swiper .swiper-slide{
		display: flex;
		flex-direction: column-reverse;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info{
		width: 100%;
		padding: 6% 0 8% 0;
	}
	.news-top .newstop-swiper .swiper-slide .topimg{
		width: 100%;
		position: static;
		max-height: 550px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info{
		width: 100%;
		padding: 0 3% 0 120px;
	}

	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .btit{
		margin-bottom: 8%;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .tit{
		margin-bottom: 4%;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .demo{
		max-height: 100%;
		display: block;
		margin-bottom: 4%;
	}
	.news-content{
		margin-top: 0;
	}
	.news-content .title{
		font-size: 26px;
		margin-bottom: 3%;
	}
	.news-content .news-list .news-item{
		padding: 4% 39px 4% 130px;
	}
	.news-content .news-list .news-item .news-info .tit{
		margin-bottom: 20px;
	}
	.news-content .news-list .news-item .news-info .demo{
		margin-bottom: 20px;
	}
	.news-top .newstop-swiper .btnbox{
		display: none;
	}
	.news-top .newstop-swiper .newstop-pagination{
		display: block;
		position: absolute;
		bottom: 6%;
		left: 0;
		z-index: 1;
		text-align: center;
	}
	.news-top .newstop-swiper .newstop-pagination .swiper-pagination-bullet-active{
		background-color: #8e693c;
	}
}
@media only screen and (max-width: 640px){
	.news-top .newstop-swiper .swiper-slide .newst-info .news-time{
		position: static;
		width: 80px;
		height: 80px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-time .date{
		font-size: 26px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-time .month{
		font-size: 16px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info{
		padding: 0 0 6% 0;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info{
		padding: 0 3%;
		margin-top: 20px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .btit{
		margin-bottom: 15px;
		font-size: 24px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .tit{
		margin-bottom: 2%;
		font-size: 16px;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .demo{
		line-height: 1.5;
	}
	.news-top .newstop-swiper .swiper-slide .newst-info .news-info .more{
		font-size: 14px;
	}
	.news-content .news-list .news-item{
		padding: 4% 20px 4% 100px;
	}
	.news-content .news-list .news-item .news-time{
		width: auto;
		height: auto;
		padding: 10px;
	}
	.news-content .news-list .news-item .news-time .date{
		font-size: 26px;
	}
	.news-content .news-list .news-item .news-time .month{
		font-size: 16px;
	}
	.news-content .news-list .news-item .news-info .demo{
		line-height: 1.5;
	}
}

/*新闻详情*/
.newsviewbox{
	margin-top: 100px;
}
.newsv-title{
	font-size: 30px;
	color: #3a3a3a;
	text-align: center;
	padding: 87px 0 75px 0;
	border-bottom: 1px solid #e5e5e5;
}
.newsviewbox .hrefbox{
	border-bottom: none;
	padding-top: 16px;
	margin-bottom: 46px;
}
.newsv-content{
	margin-bottom: 70px;
}
.newsv-content .newsv-time{
	float: left;
	width: 100px;
    height: 100px;
    background-color: #8e693c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.newsv-content .newsv-time .date{
	font-size: 36px;
    color: #fff;
    line-height: 1;
    position: relative;
    border-bottom: 1px solid #fff;
}
.newsv-content .newsv-time .month{
    font-size: 20px;
    color: #fff;
}
.newsv-content .newsv-info{
	float: left;
	width: calc(100% - 427px);
}
.newsv-content .newsv-info .n-info{
	font-size: 12px;
	line-height: 2;
	color: #666666;
}
.newsv-content .newsv-info .back{
	display: block;
	font-size: 18px;
	color: #8e693c;
	font-weight: bold;
	margin-top: 60px;
}
.newsv-content .newsv-top{
	float: left;
	width: 327px;
	padding-left: 28px;
}
.newsv-content .newsv-top .nshare{
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #888888;
	margin-bottom: 70px;
}
.newsv-content .newsv-top .nshare .bdsharebuttonbox{
	display: inline-block;
}
.newsv-content .newsv-top .nshare .bdsharebuttonbox a{
	width: 21px;
	height: 21px;
	line-height: 21px;
	background-position: center;
}
.newsv-content .newsv-top .nshare .bdsharebuttonbox .bds_tsina{
	background-image: url(../images/share_wb.png);
}
.newsv-content .newsv-top .nshare .bdsharebuttonbox .bds_sqq{
	background-image: url(../images/share_qq.png);
}
.newsv-content .newsv-top .nshare .bdsharebuttonbox .bds_weixin{
	background-image: url(../images/share_wx.png);
}

.newsv-content .newsv-top .n-top .tit{
	font-size: 14px;
	color: #888888;
	line-height: 1;
	font-weight: bold;
	padding-bottom: 20px;
}
.newsv-content .newsv-top .n-top .nt-list .nt-item{
	display: block;
	position: relative;
	border-top: 1px solid #e5e5e5;
	padding-bottom: 40px;
}
.newsv-content .newsv-top .n-top .nt-list .nt-item .tt{
	font-size: 14px;
	color: #3a3a3a;
	line-height: 1;
	margin-bottom: 16px;
	padding-top: 25px;
}
.newsv-content .newsv-top .n-top .nt-list .nt-item .demo{
	font-size: 12px;
	color: #888888;
	line-height: 1.5;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsv-content .newsv-top .n-top .nt-list .nt-item .more{
	display: inline-block;
	padding-right: 18px;
	position: relative;
	font-size: 12px;
	color: #888888;
	letter-spacing: initial;
	transition: all .5s;
}
.newsv-content .newsv-top .n-top .nt-list .nt-item .more::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	border-style: solid;
	border-width: 1px;
	border-color: #888888 #888888 transparent transparent;
	transform: rotate(45deg);
	margin-top: -3px;
}
@media only screen and (min-width: 601px){
	.newsv-content .newsv-top .n-top .nt-list .nt-item:hover .tt{
		color: #8e693c;
	}
	.newsv-content .newsv-top .n-top .nt-list .nt-item:hover .more{
		letter-spacing: 5px;
		color: #8e693c;
	}
}
@media only screen and (max-width: 1440px){
	.newsviewbox{
		margin-top: 80px;
	}
	.newsv-title{
    	padding: 60px 0 55px 0;
	}
}
@media only screen and (max-width: 1360px){
	.newsv-title{
    	padding: 4% 0 3% 0;
    	font-size: 26px;
	}
	.newsviewbox .hrefbox{
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 1200px){
	.newsv-content{
		margin-bottom: 60px;
	}
	.newsv-content .newsv-time{
		float: none;
	}
	.newsv-content .newsv-info{
		float: none;
		width: 100%;
	}
	.newsv-content .newsv-top{
		float: none;
		position: absolute;
		top: 0;
		padding-left: 120px;
	}
	.newsv-content .newsv-top .n-top{
		display: none;
	}
	.newsv-content .newsv-top .nshare{
		margin-bottom: 0;
		margin-top: 50px;
	}
	.newsv-content .newsv-info .back{
		margin-top: 6%;
	}
}
@media only screen and (max-width: 1024px){
	.newsviewbox{
		margin-top: 60px;
	}
	.newsv-title{
		font-size: 22px;
	}
	.newsviewbox .hrefbox{
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 640px){
	.newsviewbox{
		margin-top: 55px;
	}
	.newsv-title{
		font-size: 20px;
	}
}


/*分页*/
.fenye{
	text-align: center;
	margin-bottom: 95px;
	margin-top: 79px;
}
.fenye a{
	display: inline-block;
	font-size: 14px;
	color: #888888;
	height: 33px;
	line-height: 33px;
	margin-right: 28px;
}
.fenye a.active{
	color: #8e693c;
	font-size: 18px;
}
.fenye .prev{
	float: left;
	font-size: 20px;
	color: #666666;
	position: relative;
	padding-left: 55px;
}
.fenye .next{
	float: right;
	font-size: 20px;
	color: #666666;
	position: relative;
	padding-right: 55px;
}
.fenye .prev::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 1px;
	border-color:  transparent transparent #666666 #666666;
	transform: rotate(45deg);
	margin-top: -6px;
}
.fenye .next::before{
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 12px;
	height: 12px;
	border-style: solid;
	border-width: 1px;
	border-color: #666666 #666666 transparent transparent;
	transform: rotate(45deg);
	margin-top: -6px;
}
@media only screen and (min-width: 601px){
	.fenye .next:hover,.fenye .prev:hover{
		color: #8e693c;
	}
	.fenye .prev:hover::before{
		border-color:  transparent transparent #8e693c #8e693c;
	}
	.fenye .next:hover::before{
		border-color: #8e693c #8e693c transparent transparent;
	}
}
@media only screen and (max-width: 1024px){
	.fenye{
		margin: 8% 0;
	}
}




/* =========

    服务专区

 ========= */
.service-bg{
	padding-top: 100px;
	padding-bottom: 80px;
	max-width: 1400px;
}
.serv-nav{
	text-align: right;
	background-color: #ededed;
	padding-top: 40px;
}
.serv-nav .href-kind{
	font-size: 14px;
    color: #888888;
    line-height: 1;
    position: relative;
    padding-bottom: 40px;
    display: inline-block;
}
.serv-nav ul li{
	padding: 0 54px;
    display: inline-block;
    position: relative;
}
.serv-nav ul li::before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 16px;
    background-color: #888888;
}
.serv-nav ul li:nth-child(1)::before{
	display: none;
}
.serv-nav ul li .href-kind.on{
	color: #8e693c;
    font-weight: bold;
}
.serv-nav ul li .href-kind.on::after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8e693c;
}
/*问答*/
.service-bg .question-box .qlist .liq{
 	margin-bottom: 20px;
} 
.service-bg .question-box .qlist .liq .qtitle{
	background-color: #eeeeee;
	cursor: pointer;
}
.service-bg .question-box .qlist .liq[data-on="on"] .qtitle{
	background-color: #8e693c;
}
.service-bg .question-box .qlist .liq .qtitle .word{
	margin: 0 50px;
	height: 85px;
	line-height: 85px;
	font-size: 16px;
	color: #666666;
	position: relative;
}
.service-bg .question-box .qlist .liq[data-on="on"] .qtitle .word{
	color: #fff;
}
.service-bg .question-box .qlist .liq .qtitle .word.zimu:before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #666666;
}
.service-bg .question-box .qlist .liq[data-on="on"] .qtitle .word.zimu:before{
	color: #fff;
}
.service-bg .question-box .qlist .liq .qtitle .word span{
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.service-bg .question-box .qlist .liq .qtitle .word span:before{
	content: "";
	width: 2px;
	height: 100%;
	background-color: #8e693c;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.service-bg .question-box .qlist .liq .qtitle .word span:after{
	content: "";
	width: 2px;
	height: 100%;
	background-color: #8e693c;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
}
.service-bg .question-box .qlist .liq[data-on="on"] .qtitle .word span:before{
	display: none;
}
.service-bg .question-box .qlist .liq[data-on="on"] .qtitle .word span:after{
	background-color: #fff;
	width: 4px;
}
.service-bg .question-box .qlist .liq .sub{
	background-color: #f2f2f2;
	display: none;
}
.service-bg .question-box .qlist .liq[data-on="on"] .sub{
	display: block;
}
.service-bg .question-box .qlist .liq .sub .text{
	max-width: 1250px;
	padding: 20px 0;
	margin: 0 200px 0 50px;
}
.service-bg .question-box .qlist .liq .sub .text .content{
	font-size: 12px;
	color: #666666;
	line-height: 2;
	overflow: hidden;
	
}
.service-bg .question-box .qlist .liq .sub .text .down{
	display: block;
	width: 120px;
	height: 30px;
	line-height: 30px;
	border:1px solid #8e693c;
	border-radius: 50px;
	margin-top: 40px;
	padding-left: 20px;
	font-size: 12px;
	color: #8e693c;
	position: relative;
}
.service-bg .question-box .qlist .liq .sub .text .down:before{
	content: "";
	width: 2px;
	height: 15px;
	background-color: #8e693c;
	position: absolute;
	right: 20px;
	top: 7px;
}
.service-bg .question-box .qlist .liq .sub .text .down:after{
	content: "";
	width: 8px;
	height: 8px;
	border-style: solid;
	border-width:2px;
	border-color: transparent #8e693c #8e693c transparent;
	position: absolute;
	right: 17px;
	bottom: 7px;
	transform: rotate(45deg);
}
@media only screen and (max-width: 1440px){
	.service-bg .question-box .qlist .liq .sub .text{
		margin: 0 50px;
	}
}
@media only screen and (max-width: 1200px){
	
	.service-bg .question-box .qlist .liq .qtitle .word{
		height: 70px;
		line-height: 70px;
	}
	.hrefbox .href-r ul li .href-kind{
		padding-bottom: 30px;
	}
	.serv-nav{
		padding-top: 25px;
	}
	.serv-nav ul li{
		padding: 0 35px;
	}
	.serv-nav ul li .href-kind{
		padding-bottom: 25px;
	}
}
@media only screen and (max-width: 1024px){
	.serv-nav{
		display: none;
	}
	.service-bg .question-box .qlist .liq{
		margin-bottom: 10px;
	}
	.service-bg .question-box .qlist .liq .qtitle .word{
		margin: 0 3%;
		height: 60px;
		line-height: 60px;
		padding-right: 20px;
	}
	.service-bg .question-box .qlist .liq .sub .text{
		margin: 0 3%;
	}
}
@media only screen and (max-width: 640px){
	.service-bg .question-box .qlist .liq .qtitle .word{
		height: 50px;
		line-height: 50px;
	}
}

/*防伪查询*/
.service-bg .check-box .check-form{
	padding-bottom: 50px;
}
.service-bg .check-box .check-form .wrap1{
	width: 100%;
}
.service-bg .check-box .check-form .formbox{
	margin-bottom: 20px;
	    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    background-color: #eeeeee;
}
.service-bg .check-box .check-form .formbox .imgbox{
	width: calc(100% - 680px);
	    -webkit-flex: 1;
    -ms-flex: 1;
   flex: 1;
    -webkit-box-flex: 1;
}
.service-bg .check-box .check-form .formbox .imgbox .fimg{
	padding-top: calc(375 / 550 * 100%);
	min-height: 250px;
}
.service-bg .check-box .check-form .formbox .main{
	width: 100%;
	max-width: 680px;
}
.service-bg .check-box .check-form .formbox .main .inbox{
	width: 100%;
	max-width: 560px;
}
.service-bg .check-box .check-form .formbox .main .inbox .cn{
	font-size: 24px;
	color: #8e693c;
}
.service-bg .check-box .check-form .formbox .main .inbox .en{
	font-size: 24px;
	color: #888888;
	text-transform:uppercase;
	margin-bottom: 40px;
}
.service-bg .check-box .check-form .formbox .main .inbox form{
	max-width: 510px;
}
.service-bg .check-box .check-form .formbox .main .inbox form input[type="text"]{
	border-radius: 5px;
	height: 50px;
	width: 100%;
	background-color: #fff;
	border:1px solid #e5e5e5;
	padding: 0 20px;
	margin-bottom: 30px;
	font-size: 16px;
	color: #888888;
}
.service-bg .check-box .check-form .formbox .main .inbox form input[type="submit"]{
	width: 130px;
	height: 50px;
	background-color: #8e693c;
	font-size: 20px;
	color: #ffffff;
	border-radius: 5px;
}
.service-bg .check-box .check-form .tie{
	font-size: 16px;
	color: #888888;
	margin-bottom: 30px;
}
.service-bg .check-box .check-form .msgbox{
	font-size: 0;
}
.service-bg .check-box .check-form .msgbox .mm{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	padding-left: 65px;
	height: 50px;
	position: relative;
	margin-right: 100px;
}
.service-bg .check-box .check-form .msgbox .mm .ico{
	width: 50px;
	height: 50px;
	border:1px solid #666666;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.service-bg .check-box .check-form .msgbox .mm .title{
	font-size: 12px;
	color: #666666;
}
.service-bg .check-box .check-form .msgbox .mm .content{
	font-size: 24px;
	color: #666666;
}
.service-bg .check-box .saybox{
	padding-top: 40px;
	border-top:1px solid #e5e5e5;
}
.service-bg .check-box .saybox .say{
	max-width: 1200px;
	margin: 0 auto;
}
.service-bg .check-box .saybox .say .bt{
	font-size: 24px;
	color: #8e693c;
}
.service-bg .check-box .saybox .say .content{
	font-size: 16px;
	color: #7c7b7b;
	line-height: 30px;
}
@media only screen and (max-width: 1440px){
	.service-bg{
		padding-top: 80px;
		padding-bottom: 60px;
	}
	.service-bg .check-box .check-form .formbox .main .inbox .en{
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 1200px){
	.service-bg{
		padding-top: 6%;
		padding-bottom: 6%;
	}
	.service-bg .check-box .check-form{
		padding-bottom: 4%;
	}
	.service-bg .check-box .check-form .formbox .imgbox{
		width: 40%;
	}
	.service-bg .check-box .check-form .formbox .main{
		max-width: 60%;
	}
	.service-bg .check-box .check-form .formbox .main .inbox{
		max-width: 85%;
	}
	.service-bg .check-box .check-form .formbox .main .inbox .cn{
		font-size: 20px;
	}
	.service-bg .check-box .check-form .formbox .main .inbox .en{
		margin-bottom: 20px;
		font-size: 20px;
	}
	.service-bg .check-box .check-form .formbox .main .inbox form input[type="text"] {
		margin-bottom: 20px;
	}
	.service-bg .check-box .check-form .formbox .main .inbox form input[type="submit"]{
		width: 100px;
		height: 40px;
		font-size: 18px;
	}
	.service-bg .check-box .check-form .tie{
		margin-bottom: 20px;
	}
	.service-bg .check-box .saybox{
		padding-top: 2%;
	}
}
@media only screen and (max-width: 800px){

	.service-bg .check-box .check-form .formbox{
		display: block;
	}
	.service-bg .check-box .check-form .formbox .imgbox{
		width: 100%;
	}
	.service-bg .check-box .check-form .formbox .main{
		max-width: 100%;
	}
	.service-bg .check-box .check-form .formbox .main .inbox{
		max-width: 94%;
		padding: 3% 0;
	}
	.service-bg .check-box .check-form .formbox .main .inbox .en{
		margin-bottom: 5px;
	}
	.service-bg .check-box .check-form .formbox .main .inbox form input[type="submit"]{
		font-size: 16px;
	}
	.service-bg .check-box .saybox .say .content{
		line-height: 1.5;
		font-size: 14px;
	}
	.service-bg .check-box .check-form .msgbox .mm{
		margin-right: 60px;
	}
	.service-bg .check-box .check-form .msgbox .mm:last-child{
		margin-right: 0;
	}
	.service-bg .check-box .saybox .say .bt{
		font-size: 20px;
	}
	.service-bg .check-box .check-form .msgbox .mm .content{
		font-size: 20px;
	}
}
@media only screen and (max-width: 640px){
	.service-bg .check-box .check-form .msgbox .mm{
		display: block;
		margin-right: 0;
		margin-bottom: 2%;
	}
}

/*在线留言*/
.service-bg .message-box{
	max-width: 765px;
	margin: 0 auto;
}
.service-bg .message-box .title{
	font-size: 24px;
	color: #8e693c;
	margin-bottom: 20px;
	text-align: center;
}
.service-bg .message-box .desc{
	font-size: 12px;
	color: #666666;
	text-align: center;
	margin-bottom: 110px;
}
.service-bg .message-box form .my-item{
	width: calc(97% / 2);
	max-width: 345px;
	float: left;
	margin-bottom: 45px;
}
.service-bg .message-box form .my-item:nth-child(2n){
	float: right;
}
.service-bg .message-box form .my-item .my-label{
	font-size: 14px;
	color: #666666;
}
.service-bg .message-box form .my-item .my-input input[type="text"]{
	width: 100%;
	height: 35px;
	border-bottom: 1px solid #e8e8e8;
	font-size: 14px;
}
.service-bg .message-box form .my-item.textarea{
	width: 100%;
	max-width: none;
}
.service-bg .message-box form .my-item.textarea .my-label{
	margin-bottom: 20px;
	display: block;
}
.service-bg .message-box form .my-item.textarea .my-textarea textarea{
	width: 100%;
	height: 300px;
	border:1px solid #d9d9d9;
	resize: none;
	padding: 10px;
}
.service-bg .message-box form input[type="submit"]{
	width: 160px;
	height: 60px;
	margin: 0 auto;
	display: block;
	font-size: 16px;
	color: #8e693c;
	border-radius: 50px;
	border:1px solid #8e693c;
	background-color: transparent;
	cursor: pointer;
}


/*睡眠知识*/
.sleep-box .slist .lis{
	width: calc((100% - 160px) / 3);
	float: left;
	margin-right: 80px;
	margin-bottom: 50px;
}
.sleep-box .slist .lis:nth-child(3n){
	margin-right: 0;
}
.sleep-box .slist .lis .title{
	font-size: 24px;
	color: #8e693c;
	margin-bottom: 20px;
}
.sleep-box .slist .lis .content{
	font-size: 12px;
	color: #212121;
	line-height: 30px;
	display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
	height:90px; 
}
.sleep-box .imglist .lim{
	width: calc((100% - 260px) / 3);
	float: left;
	margin-right: 130px;
}
.sleep-box .imglist .lim:nth-child(3n){
	margin-right: 0;
}
.sleep-box .imglist .lim .imgbox{
	max-width: 264px;
}
.sleep-box .imglist .lim .imgbox .simg{
	padding-top: 100%;
}
@media only screen and (max-width: 1440px){
	.service-bg .message-box .desc{
		margin-bottom: 10%;
	}
}
@media only screen and (max-width: 1200px){
	.service-bg .message-box .desc{
		margin-bottom: 8%;
	}
}
@media only screen and (max-width: 1024px){
	.service-bg .message-box form .my-item.textarea .my-textarea textarea{
		height: 250px;
	}
	.sleep-box .slist .lis{
		width: calc((100% - 60px) / 3);
		margin-right: 30px;
		margin-bottom: 30px;
	}
	.sleep-box .imglist .lim{
		width: calc((100% - 60px) / 3);
	    margin-right: 30px;
	}
}
@media only screen and (max-width: 800px){
	.sleep-box .slist .lis{
		width: calc((100% - 30px) / 2);
		margin-right: 30px;
	}
	.sleep-box .slist .lis:nth-child(3n){
		margin-right: 30px;
	}
	.sleep-box .slist .lis:nth-child(2n){
		margin-right: 0;
	}
	.sleep-box .imglist .lim{
		width: calc((100% - 30px) / 2);
	    margin-right: 30px;
	}
	.sleep-box .imglist .lim:nth-child(3n){
		margin-right: 30px;
	}
	.sleep-box .imglist .lim:nth-child(2n){
		margin-right: 0;
	}
	.sleep-box .imglist .lim .imgbox{
		max-width: 100%;
	}
	.sleep-box .slist .lis .title{
		margin-bottom: 10px;
	}
	.sleep-box .slist .lis .content{
		line-height: 2;
	}
}
@media only screen and (max-width: 640px){
	.service-bg .message-box form .my-item{
		width: 100%;
		float: none;
		max-width: 100%;
		margin-bottom: 20px;
	}
	.service-bg .message-box form .my-item:nth-child(2n){
		float: none;
	}
	.service-bg .message-box form input[type="submit"]{
		height: 50px;
		line-height: 50px;
	}
	.sleep-box .slist .lis .title{
		font-size: 20px;
	}
}
@media only screen and (max-width: 414px){
	.sleep-box .slist .lis{
		width: 100%;
		margin-right: 0;
	}
	.sleep-box .slist .lis:nth-child(3n){
		margin-right: 0;
	}
	.sleep-box .imglist .lim{
		width: 100%;
	    margin-right: 0;
	}
	.sleep-box .imglist .lim:nth-child(3n){
		margin-right: 0;
	}
	.sleep-box .slist .lis .content{
		display: block;
	}
}



/* =========

    工程案例

 ========= */
.casebox{
	padding-top: 129px;
}
.casebox .case-content .case-title{
	margin-bottom: 60px;
}
.casebox .case-content .case-title .tit{
	font-size: 24px;
	color: #8e693c;
	margin-bottom: 18px;
	text-align: center;
}
.casebox .case-content .case-title .demo{
	font-size: 16px;
	color: #666666;
	text-align: center;
}
.casebox .case-content .case-title .demo.jdemo{
	font-size: 12px;
	line-height: 16px;
}
.casebox .case-content .case-title .content{
	font-size: 14px;
	color: #2a2a2a;
	line-height: 2;
	margin-top: 45px;
}

.casebox .case-content .jd-tit{
	position: relative;
	font-size: 24px;
	text-align: center;
	padding-bottom: 45px;
	margin-bottom: 33px;
}
.casebox .case-content .jd-tit::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 35px;
	background-color: #8e693c;
}

.casebox .case-swiper {
	margin-bottom: 72px;
}
.casebox .case-swiper .swiper-slide .casew-left {
	width: 50%;
}
.casebox .case-swiper .swiper-slide .casew-left .img{
	padding-top: calc(460 / 710 * 100%);
}
.casebox .case-swiper .swiper-slide .casew-right{
	width: 50%;
	font-size: 12px;
	line-height: 2;
	color: #666666;
	padding: 0 85px 0 70px;
}
.casebox .case-swiper .swiper-slide .casew-right.jd{
	padding: 0 85px 0 40px;
}
.casebox .case-swiper .case-prev{
	position: absolute;
	top: 50%;
	left: 25px;
	width: 35px;
	height: 35px;
	border-style: solid;
	border-width: 3px;
	transform: rotate(45deg);
	z-index: 1;
	border-radius: 3px;
	border-color: transparent transparent #3c3c3c #3c3c3c;
}
.casebox .case-swiper .case-next{
	position: absolute;
	top: 50%;
	right: 25px;
	width: 35px;
	height: 35px;
	border-style: solid;
	border-width: 3px;
	transform: rotate(45deg);
	z-index: 1;
	border-radius: 3px;
	border-color: #3c3c3c #3c3c3c transparent transparent;
}
.casebox .case-swiper .case-prev.swiper-button-disabled{
	border-color: transparent transparent #e8e8e8 #e8e8e8;
}
.casebox .case-swiper .case-next.swiper-button-disabled{
	border-color: #e8e8e8 #e8e8e8 transparent transparent;
}

.casebox .case-content .case-partner{
	border-top: 1px solid #e5e5e5;
	padding-top: 20px;
	padding-left: 32px;
	padding-bottom: 102px;
}
.casebox .case-content .case-partner .tit{
	font-size: 12px;
	color: #666666;
}
.casebox .case-content .case-partner .infobox{
	max-height: 48px;
	overflow: hidden;
	margin: 30px 0;
}
.casebox .case-content .case-partner .info{
	font-size: 12px;
	color: #666666;
	line-height: 24px;
}
.casebox .case-content .case-partner .infobox[data-on="on"]{
	max-height: 100%;
	overflow: visible;
}
.casebox .case-content .case-partner .open{
	font-size: 14px;
	color: #8e693c;
	font-weight: bold;
	cursor: pointer;
}
@media only screen and (max-width: 1440px){
	.casebox {
	    padding-top: 7%;
	}
	.casebox .case-content .case-title{
		margin-bottom: 4%;
	}
	.casebox .case-content .case-title .content{
		margin-top: 30px;
	}
	.casebox .case-swiper{
		margin-bottom: 60px;
	}
	.casebox .case-content .case-partner{
		padding-bottom: 6%;
	}
}
@media only screen and (max-width: 1200px){
	.casebox .case-swiper{
		margin-bottom: 4%;
	}
	.casebox .case-swiper .swiper-slide .casew-right{
		padding: 0 70px 0 40px;
	}
}
@media only screen and (max-width: 1024px){
	.casebox .case-swiper .swiper-slide{
		display: block;
	}
	.casebox .case-swiper .swiper-slide .casew-left{
		width: 100%;
	}
	.casebox .case-swiper .swiper-slide .casew-right{
		width: 100%;
	}
	.casebox .case-content .case-partner{
		padding-left: 0;
	}
	.casebox .case-content .case-partner .info{
		margin: 2% 0;
	}
	.casebox .case-swiper .swiper-slide .casew-right.jd{
		padding: 3%;
	}
	.casebox .case-swiper .swiper-slide .casew-right{
		padding: 3%;
	}
}
@media only screen and (max-width: 800px){
	.casebox .case-content .jd-tit{
		padding-bottom: 37px;
    	margin-bottom: 20px;
	}
	.casebox .case-swiper .case-prev,.casebox .case-swiper .case-next{
		display: none;
	}
	
}





/* =========

    梦凯莎商场

 ========= */
/*服务网点*/
.web-store .about-demo{
	margin-bottom: 68px;
}
.netbanner .qualitytitle{
	height: 300px;
	line-height: 300px;
	color: #fff;
}
.net-bg{
	padding-bottom: 100px;
}
.net-bg .net-top{
	margin-bottom: 40px;
	text-align: center;	
	position: relative;
}
.net-bg .net-top #tonettop{
	position: absolute;
	top: -90px;
}
.net-bg .net-top .theme{
	font-size: 18px;
	color: #444444;
	position: absolute;
	left: 20px;
	bottom: 0;
	padding-top: 8px;
	padding-left: 30px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(/phone/images/mmico_03.png);
}
.net-bg .net-top .selectbox{
	display: inline-block;
}
.net-bg .net-top .selectbox .sitem{
	display: inline-block;
	position: relative;
}
.net-bg .net-top .selectbox .sitem:after{
	content: "";
	width: 10px;
	height: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: transparent #e0e0e0 #e0e0e0 transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -7px;
	transform: rotate(45deg);
}
.net-bg .net-top .selectbox .sitem .select-list{
	width: 190px;
	height: 40px;
	border:1px solid #e0e0e0;
	padding: 0 15px;
	font-size: 14px;
	color: #999999;
	margin-left: 42px;
}
.net-bg .net-top .selectbox .sitem:nth-child(1) .select-list{
	margin-left: 0;
}
.net-bg .net-map .maplist{
	width: 343px;
	height: 550px;
	float: left;
	overflow-y: auto;
	border: 1px solid #e5e5e5;
	margin-right: 10px;
}
.net-bg .net-map .maplist .item{
	cursor: pointer;
	padding: 0 10px;
}
.net-bg .net-map .maplist .item .titlebox{
	padding: 16px 10px 16px 48px;
	border-bottom: 1px solid #f3f3f3;
	position: relative;
}
.net-bg .net-map .maplist .item .titlebox .title{
	font-size: 14px;
	line-height: 24px;
}
.net-bg .net-map .maplist .item .titlebox .title.addr{
	line-height: 1.5;
}
.net-bg .net-map .maplist .item .titlebox .num{
	width: 24px;
	height: 24px;
	line-height: 24px;
	position: absolute;
	left: 10px;
	top: 16px;
}
.net-bg .net-map .maplist .item .titlebox .num::before{
	content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 12px 12px 0 12px;
    -webkit-transform: rotate(45deg); 
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #8e693c;
}
.net-bg .net-map .maplist .item .titlebox .num .nn{
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 16px;
	color: #fff;
	text-align: center;
	transform: translate(-50%,-50%);
	margin-top: 3px;
}
.net-bg .net-map .maplist .item .address{
	padding-left: 110px;
	padding-top: 10px;
	font-size: 	12px;
	color: #999999;
	line-height: 2;
	display: none;
}
.net-bg .net-map .maplist .item.on .address{
	display: block;
}
.net-bg .net-map .mapview{
	width: calc(100% - 353px);
	height: 550px;
	float: right;
}
.net-bg .net-map .mapview img{
	max-width: none;
}
/*服务网点end*/

@media only screen and (max-width:1360px){
	.web-store .about-demo{
		margin-bottom: 6%;
	}
}
@media only screen and (max-width:1280px){
	.netbanner .qualitytitle {
	    height: 250px;
	    line-height: 250px;
	}
	.net-bg {
	    padding-bottom: 60px;
	}
	.web-store .about-demo{
		margin-bottom: 4%;
	}
}
@media only screen and (max-width:1024px){
	.net-bg .net-map .maplist {
	    width: 100%;
	    float: none;
	    max-height: 500px;
	    height: 100%;
	}
	.net-bg .net-map .mapview {
	    width: 100%;
	    height:600px;
	    float: none;
	}
	.netbanner .qualitytitle {
	    height: 200px;
	    line-height: 200px;
	}
	.net-bg .net-map .mapview{
		height: 500px;
	}
	.net-bg .net-top{
		text-align: center;
		margin-bottom: 30px;
	}
	.net-bg .net-top .theme {
		display: inline-block;
	    position: static;
	    left: 0;
	    margin-bottom: 3%;
	}
	.net-bg .net-top .selectbox {
	   	width: 100%;
	}
	.net-bg .net-map .maplist .item .titlebox {
	    padding: 16px 0 16px 70px;
	}
	.net-bg .net-map .maplist .item .address{
		padding-left: 70px;
	}
	.net-bg .net-map .maplist .item .titlebox .num {
	    left: 15px;
	}
	.net-bg .net-top .selectbox .sitem .select-list{
		width: 170px;
		margin-left: 10px;
	}
}
@media only screen and (max-width:800px){
	.netbanner .qualitytitle {
	    height: 150px;
	    line-height: 150px;
	}
	.net-bg .net-map .mapview{
		height:450px;
	}
	.net-bg .net-top{
		text-align: left;
		margin-bottom: 10px;
	}
	.net-bg .net-top .selectbox .sitem{
		width: calc((100% - 10px) / 2);
		float: left;
		margin-bottom: 10px;
	}
	.net-bg .net-top .selectbox .sitem .select-list{
		width: 100%;
		margin-left: 0;
	}
	.net-bg .net-top .selectbox .sitem:nth-child(2n+1){
		margin-right: 10px
	}
	.net-bg .net-top .selectbox .sitem:nth-child(1) .select-list{
		width: 100%;
	}

	
}
@media only screen and (max-width:640px){
	.net-bg .net-map .mapview{
		height: 400px;
	}
}
@media only screen and (max-width:414px){
	.netbanner .qualitytitle {
	    height: 120px;
	    line-height: 120px;
	}
	.net-bg {
	    padding-bottom: 5%;
	}
	.net-bg .net-top {
	    margin-bottom: 4%;
	}
	.net-bg .net-map .mapview{
		height: 300px;
	}
	.net-bg .net-top .selectbox{
		font-size: 0;
	}
	.net-bg .net-top .selectbox .sitem{
		width: calc((100% - 5px) / 2);
	}
	.net-bg .net-top .selectbox .sitem:nth-child(2n+1){
		margin-right: 5px
	}
	.net-bg .net-top .selectbox .sitem .select-list{
		width: 100%;
		height: 35px;
		margin-left: 0;
	}
	.net-bg .net-map .maplist .item .titlebox {
	    padding: 3% 0 3% 55px;
	}
	.net-bg .net-map .maplist .item .address{
		padding-left: 55px;
	}
	.net-bg .net-map .maplist .item .titlebox .num {
	    left: 6px;
	}
}



/* =========

    联系我们

 ========= */
/*联系我们*/
.contact-us .conus-list{
	padding-top: 98px;
}
.contact-us .conus-list .conus-item{
	width: 48%;
	float: left;
	margin-right: 2%;
	display: flex;
	align-items: center;
	margin-bottom: 140px;
}
.contact-us .conus-list .conus-item:nth-child(2n){
	float: right;
	margin-right: 0;
	margin-left: 2%;
}
.contact-us .conus-list .conus-item .conus-l{
	width: 50%;
}
.contact-us .conus-list .conus-item .conus-l .img{
	padding-top: calc(260 / 320 * 100%);
}
.contact-us .conus-list .conus-item .conus-r{
	width: 50%;
	padding-left: 20px;
	color: #888888;
}

/*人才招聘*/
.contact-job .job-concept .jconcept-list .jconcept-item{
	width: calc(100% / 4);
	float: left;
	background-color: #eeeeee;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 48px 0 55px 0;
}
.contact-job .job-concept .jconcept-list .jconcept-item:nth-child(2n){
	background-color: #fff;
}
.contact-job .job-concept .jconcept-list .jconcept-item .icon{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid #e8e8e8;
	margin-bottom: 35px;
}
.contact-job .job-concept .jconcept-list .jconcept-item .tit{
	font-size: 18px;
	color: #906c40;
	margin-bottom: 25px;
}
.contact-job .job-concept .jconcept-list .jconcept-item .text{
	font-size: 12px;
	color: #666666;
	line-height: 2;
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 48px;
}
.contact-job .job-join .question-box{
	margin-top: 64px;
}
.service-bg .question-box .qlist .liq .sub .text .jsend{
	font-size: 14px;
	color: #a68529;
	margin-top: 40px;
	display: inline-block;
}
@media only screen and (max-width:1360px){
	.contact-us .conus-list{
		padding-top: 70px;
	}
	.contact-us .conus-list .conus-item{
		margin-bottom: 100px;
	}
}
@media only screen and (max-width:1200px){
	.contact-us .conus-list{
		padding-top: 6%;
	}
	.contact-us .conus-list .conus-item{
		margin-bottom: 8%;
	}
}
@media only screen and (max-width:1024px){
	.contact-us .conus-list .conus-item{
		width: 100%;
		float: none;
		margin-bottom: 6%;
	}
	.contact-job .job-concept .jconcept-list .jconcept-item{
		width: calc(100% / 2);
	}
	.contact-job .job-concept .jconcept-list .jconcept-item:nth-child(3){
		background-color: #fff;
	}
	.contact-job .job-concept .jconcept-list .jconcept-item:nth-child(4){
		background-color: #eeeeee;
	}

	.contact-job .job-join .question-box{
		margin-top: 4%;
	}
}
@media only screen and (max-width:600px){
	.contact-us .conus-list .conus-item{
		display: block;
		margin-bottom: 50px;
		float: none;
	}
	.contact-us .conus-list .conus-item .conus-l{
		width: 100%;
	}
	.contact-us .conus-list .conus-item .conus-r{
		width: 100%;
		padding-left: 0;
		padding-top: 20px;
	}
	.contact-us .conus-list .conus-item:nth-child(2n){
		float: none;
	}
	.contact-job .job-concept .jconcept-list .jconcept-item{
		width: 100%;
		padding: 35px 0 45px 0;
	}
	.contact-job .job-concept .jconcept-list .jconcept-item:nth-child(3){
		background-color: #eeeeee;
	}
	.contact-job .job-concept .jconcept-list .jconcept-item:nth-child(4){
		background-color: #ffffff;
	}
}

/*合作专区*/
.contact-team .conteam-content{
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    position: relative;
}
.contact-team .conteam-content .about-info .about-demo.tdemo{
	font-size: 12px;
	line-height: 2;
	margin-bottom: 60px;
}

.contact-form{
	margin-bottom: 100px;
}
.contact-form .my-item{
    width: calc(97% / 2);
    max-width: 345px;
    float: left;
    margin-bottom: 45px;
}
.contact-form .my-item:nth-child(2n){
    float: right;
}
.contact-form form .my-item .my-label {
    font-size: 14px;
    color: #666666;
}
.contact-form form .my-item .my-input input[type="text"]{
	width: 100%;
    height: 35px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
}

.contact-form .my-item.f-check {
	min-height: 57px;
	border-bottom: 1px solid #e8e8e8;
}
.contact-form .my-item.f-check .check-item{
	width: 100%;
}
.contact-form .my-item.f-check .f-itemr{
    width: calc(100% - 95px);
    display: inline-block;
    padding-left: 20px;
}
.contact-form .my-item.f-check .f-itemr .ccheck{
    display: inline-block;
    width: 49%;
    color: #666666;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    vertical-align: middle;
}
.contact-form .my-item.f-check .f-itemr .ccheck::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #e0e0e0;
    margin-top: -7.5px;
    border-radius: 50%;
}
.contact-form .my-item.f-check .f-itemr .ccheck[data-on="on"]::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #8e693c;
    margin-top: -3.5px;
}
.contact-form form .my-item.textarea {
    width: 100%;
    max-width: none;
}
.contact-form form .my-item.textarea .my-label {
    margin-bottom: 20px;
    display: block;
}
.contact-form form .my-item.textarea .my-textarea textarea{
	width: 100%;
    height: 300px;
    border: 1px solid #d9d9d9;
    resize: none;
    padding: 10px;
}
.contact-form form input[type="submit"] {
    width: 160px;
    height: 60px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    color: #8e693c;
    border-radius: 50px;
    border: 1px solid #8e693c;
    background-color: transparent;
    cursor: pointer;
}
@media only screen and (max-width:1024px){
	.contact-form{
		margin-bottom: 8%;
	}
	.contact-form .my-item{
		margin-bottom: 30px;
	}
	.contact-form form input[type="submit"]{
		height: 50px;
		line-height: 50px;
	}
	.contact-form form .my-item.textarea .my-textarea textarea{
		height: 250px;
	}
}
@media only screen and (max-width:640px){
	.contact-form .my-item{
		float: none;
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}
	.contact-form .my-item:nth-child(2n){
		float: none;
	}
}


/* =========

    底部

 ========= */
.footer{
	background-color: #222222;
}
.footer .footer-top{
	padding: 45px 0 68px 0;
}
.footer .footer-top .fitem{
	float: left;
	width: calc(25% - 100px);
	margin-right: 100px;
}
.footer .footer-top .fitem.zhi{
	width: calc(15% - 100px);
}
.footer .footer-top .fitem.code{
	width: 10%;
}
.footer .footer-top .fitem:last-child{
	margin-right: 0;
}
.footer .footer-top .fitem .ftit{
	font-size: 16px;
	line-height: 18px;
	color: #fff;
	margin-bottom: 18px;
}
.footer .footer-top .fitem .flogo{
	margin-bottom: 65px;
	display: block;
}
.footer .footer-top .fitem .hotline{
	display: flex;
	align-items: center;
}
.footer .footer-top .fitem .hotline .text{
	margin-left: 10px;
}
.footer .footer-top .fitem .hotline .text .tit{
	font-size: 12px;
	color: #a2a2a2;
}
.footer .footer-top .fitem .hotline .text .num{
	font-size: 20px;
	color: #fff;
}
.footer .footer-top .fitem .fmenu{
	max-height: 196px;
	writing-mode: vertical-lr;
	width: 100%;
}
.footer .footer-top .fitem .fmenu li{
	float: left;
	width: 50%;
	writing-mode: horizontal-tb;
}
.footer .footer-top .fitem .fmenu li .flia{
	display: inline-block;
	font-size: 14px;
	color: #a2a2a2;
	line-height: 2;
}
.footer .footer-top .fitem .info{
	font-size: 14px;
	color: #a2a2a2;
	line-height: 2;
}
.footer .footer-bottom{
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 14px;
	color: #a2a2a2;
}
.footer .footer-bottom a{
	color: #a2a2a2;
}
@media only screen and (min-width: 600px) {
	.footer .footer-top .fitem .fmenu li .flia:hover{
		color: #fff;
	}
}
@media only screen and (max-width: 1440px){
	.footer .footer-top .fitem{
		margin-right: 60px;
		width: calc(25% - 60px);
	}
	.footer .footer-top .fitem.zhi{
		width: calc(15% - 60px);
	}
	.footer .footer-bottom{
		padding: 18px 0;
	}
}
@media only screen and (max-width: 1200px){
	.footer .footer-top{
		padding: 3% 0 4% 0;
	}
	.footer .footer-top .fitem{
		margin-right: 30px;
		width: calc(25% - 30px);
	}
	.footer .footer-top .fitem.zhi{
		width: calc(15% - 30px);
	}
	.footer .footer-bottom{
		padding: 15px 0;
	}
}
@media only screen and (max-width: 1024px){
	.footer .footer-top .fitem.zhi{
		display: none;
	}
	.footer .footer-top .fitem{
		width: calc(30% - 30px);
	}
}
@media only screen and (max-width: 800px){
	.footer .footer-top .fitem:nth-child(2){
		display: none;
	}
	.footer .footer-top .fitem{
		width: calc(40% - 30px);
	}
	.footer .footer-top .fitem.code{
		width: 20%;
	}
	.footer .footer-top .fitem .flogo{
		margin-bottom: 45px;
	}
}
@media only screen and (max-width: 600px){
	.footer .footer-top .fitem{
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.footer .footer-top .fitem:nth-child(1){
		display: flex;
	}
	.footer .footer-top .fitem .flogo{
		margin-bottom: 0;
		margin-right: 10%;
	}
	.footer .footer-top .fitem .ftit{
		margin-bottom: 5px;
	}
	.footer .footer-top .fitem.code{
		margin-bottom: 0;
	}
	.footer .footer-bottom{
		padding: 10px 3%;
	}
}



/*搜索*/
.all .stitle{
	margin-top: 100px;
	padding-top: 3%;
}
.all .search-main {
	padding:3% 0; 
}
.all .search-main .list ul li{
	width: 50%;
	float: left;
	padding-right: 3%;
	margin-bottom: 30px;
}
.all .search-main .list ul li.nothing{
	width: 100%;
	font-size: 1.5rem;
	line-height: 100px;
	text-align: center;
}
.all .search-main .list ul li a{
	display: block;
}
.all .search-main .list ul li .tu{
	width: 40%;
	float: left;
}
.all .search-main .list ul li .tu .img{
	padding-top: calc(180 / 270 * 100%);
}
.all .search-main .list ul li .tu.none{
	background-color: rgba(0,0,0,.5);
}
.all .search-main .list ul li .text{
	width: 57%;
	margin-left: 3%;
	float: left;
}
.all .search-main .list ul li .text .title{
	font-size: 1.33rem;
}
.all .search-main .list ul li .text .demo{
	font-size: 14px;
	line-height: 1.5;
	color: #333333;
	margin: 4% 0 6% 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	height: 63px;
}
.all .search-main .list ul li .text .rq{
	color: #999;
	font-size: 14px;
}
@media only screen and (max-width:1024px){
	.all .stitle{
		margin-top: 80px;
	}
.all .search-main .list ul li{
	margin-bottom: 3%;
}
}
@media only screen and (max-width:800px){
.all .search-main .list ul li{
	width: 100%;
	float: none;
}
}
@media only screen and (max-width:600px){
	.all .stitle{
		margin-top: 60px;
	}
	.all .search-main .list ul li{
		text-align: center;
	}
.all .search-main .list ul li .tu {
    width: 100%;
    float: none;
    height: auto;
}
.all .search-main .list ul li .text {
    width: 100%;
    margin-left: 0;
    float: none;
    margin-top: 3%;
}
.all .search-main .list ul li .text .demo{
	display: none;
}
}



#md{
	position: absolute;
	top: -100px;
}

