body{
	margin: 0;
	font-family: "Microsoft YaHei";
}

a{
	text-decoration: none;
	color: black;
}

a:focus, a:hover {
	text-decoration: none;
	outline: 0;
}

a:hover {
	cursor: pointer;
}

ul, ol {
	list-style: none;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

ul, ol, li, div {
	margin: 0;
	padding: 0;
}

img {
	border: none;
}

hr{
	margin: 0;
}

.clear{
	clear: both;
}

.hide{
	display: none;
}

.divhide{
	display: none;
}

a h3,h4{
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

/*导航start*/
@media (max-width: 1367px){
	.header {
		height: 80px;
	}

	.navbar-brand {
		height: 80px !important;
		/*line-height: 80px !important;*/
		text-align: center;
		padding: 0;
	}

	.navbar-nav>li {
		height: 80px;
		line-height: 80px;
	}

	.navbar-nav > li > a{
		font-size: 1.3rem;
	}
}

@media (min-width: 1367px){
	.header {
		height: 100px;
	}

	.navbar-brand {
		height: 100px !important;
		/*line-height: 100px !important;*/
		text-align: center;
		padding: 0;
	}

	.navbar-nav>li {
		height: 100px;
		line-height: 100px;
	}
	.navbar-nav > li > a{
		font-size: 1.7rem;
	}
	.banner-down-middle {
	  /* 1. 统一盒模型，避免padding/border撑大容器 */
	  box-sizing: border-box;
	  /* 2. 限定宽度，和左右侧的“家纺/服装”容器保持一致 */
	  width: 33.333%; /* 因为产品中心是三列布局，和banner-up-left保持同宽 */
	  float: left; /* 和左右元素统一浮动方式 */
	  height: 100%; /* 继承父容器高度，避免高度溢出 */
	  padding: 0; /* 清空默认内边距 */
	  margin: 0; /* 清空默认外边距 */
	}

	/* 同时确保视频本身适配容器，不超出 */
	.banner-down-middle video {
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: cover; /* 替换fill为cover，避免视频拉伸变形，且不超出容器 */
	  display: block; /* 清除视频默认的行内空白间隙 */
	}

	/* 统一产品中心所有列的布局（家纺/视频/服装行） */
	.banner-down-content {
	  display: flex; /* 改用flex布局，替代float，更易对齐 */
	  width: 100%;
	  height: auto; /* 自适应子元素高度 */
	}
	.banner-down-content .banner-up-left {
	  /*flex: 1; 等分宽度 */
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
	}
	.banner-down-middle {
	  flex: 1; /* 和左右列等分宽度 */
	}
	/* 统一所有banner-up-left的样式 */
	.banner-up-left {
	  width: 33.333%; /* 三列等分 */
	  float: left;
	  box-sizing: border-box;
	  height: auto; /* 自适应内容高度，或固定高度（如果需要） */
	  margin: 0;
	  padding: 0;
	  position: relative; /* 兼容内部left-cover的定位 */
	}

	/* 清除浮动的容器样式优化 */
	.banner-up-content, .banner-down-content {
	  width: 100%;
	  overflow: hidden; /* 清除float浮动，避免父容器高度塌陷 */
	  margin: 0 auto; /* 居中，避免左右偏移 */
	}
}
@media (min-width: 1242px) and (max-width: 1367px){
    .banner-down-middle {
	  /* 1. 统一盒模型，避免padding/border撑大容器 */
	  box-sizing: border-box;
	  /* 2. 限定宽度，和左右侧的“家纺/服装”容器保持一致 */
	  width: 33.333%; /* 因为产品中心是三列布局，和banner-up-left保持同宽 */
	  float: left; /* 和左右元素统一浮动方式 */
	  height: 100%; /* 继承父容器高度，避免高度溢出 */
	  padding: 0; /* 清空默认内边距 */
	  margin: 0; /* 清空默认外边距 */
	}

	/* 同时确保视频本身适配容器，不超出 */
	.banner-down-middle video {
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: cover; /* 替换fill为cover，避免视频拉伸变形，且不超出容器 */
	  display: block; /* 清除视频默认的行内空白间隙 */
	}

	/* 统一产品中心所有列的布局（家纺/视频/服装行） */
	.banner-down-content {
	  display: flex; /* 改用flex布局，替代float，更易对齐 */
	  width: 100%;
	  height: auto; /* 自适应子元素高度 */
	}
	.banner-down-content .banner-up-left {
	  /*flex: 1; 等分宽度 */
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
	}
	.banner-down-middle {
	  flex: 1; /* 和左右列等分宽度 */
	}
	/* 统一所有banner-up-left的样式 */
	.banner-up-left {
	  width: 33.333%; /* 三列等分 */
	  float: left;
	  box-sizing: border-box;
	  height: auto; /* 自适应内容高度，或固定高度（如果需要） */
	  margin: 0;
	  padding: 0;
	  position: relative; /* 兼容内部left-cover的定位 */
	}

	/* 清除浮动的容器样式优化 */
	.banner-up-content, .banner-down-content {
	  width: 100%;
	  overflow: hidden; /* 清除float浮动，避免父容器高度塌陷 */
	  margin: 0 auto; /* 居中，避免左右偏移 */
	}
}
@media (min-width: 992px) and (max-width: 1242px){
        .banner{
	 height:580px!important;
	 }
	.foot-contact-right{
	   width:100%;
	}
	.foot-contact-left{
	   width:100%;
	}
	.chain .owl-carousel .owl-item{
	   width:33%!important;
	}
	.banner-down-middle {
	  /* 1. 统一盒模型，避免padding/border撑大容器 */
	  box-sizing: border-box;
	  /* 2. 限定宽度，和左右侧的“家纺/服装”容器保持一致 */
	  width: 33.333%; /* 因为产品中心是三列布局，和banner-up-left保持同宽 */
	  float: left; /* 和左右元素统一浮动方式 */
	  height: 100%; /* 继承父容器高度，避免高度溢出 */
	  padding: 0; /* 清空默认内边距 */
	  margin: 0; /* 清空默认外边距 */
	}

	/* 同时确保视频本身适配容器，不超出 */
	.banner-down-middle video {
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: cover; /* 替换fill为cover，避免视频拉伸变形，且不超出容器 */
	  display: block; /* 清除视频默认的行内空白间隙 */
	}

	/* 统一产品中心所有列的布局（家纺/视频/服装行） */
	.banner-down-content {
	  display: flex; /* 改用flex布局，替代float，更易对齐 */
	  width: 100%;
	  height: auto; /* 自适应子元素高度 */
	}
	.banner-down-content .banner-up-left {
	  /*flex: 1; 等分宽度 */
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
	}
	.banner-down-middle {
	  flex: 1; /* 和左右列等分宽度 */
	}
	/* 统一所有banner-up-left的样式 */
	.banner-up-left {
	  width: 33.333%; /* 三列等分 */
	  float: left;
	  box-sizing: border-box;
	  height: auto; /* 自适应内容高度，或固定高度（如果需要） */
	  margin: 0;
	  padding: 0;
	  position: relative; /* 兼容内部left-cover的定位 */
	}

	/* 清除浮动的容器样式优化 */
	.banner-up-content, .banner-down-content {
	  width: 100%;
	  overflow: hidden; /* 清除float浮动，避免父容器高度塌陷 */
	  margin: 0 auto; /* 居中，避免左右偏移 */
	}

}

/*@media (min-width: 714px) and (max-width: 992px){*/
	/*.chain .owl-carousel .owl-item{*/
	 /*  width:55%!important;*/
	/*}*/
/*}*/
@media (max-width: 992px){
	.chain .owl-carousel .owl-item{
	   width:50%!important;
	}
	.header .navbar-nav > li{
	   width:16%;
	}
	.banner .banner-up-left,.banner .banner-up-middle,.banner .banner-up-right,.banner .banner-down-left,.banner .banner-down-middle,.banner .banner-down-right{
	   width:50%;
	}
	.banner .banner-down-content{
	   padding-top:0;
	}
	.banner .banner-down-content,.banner .banner-up-content{
	   height:20%
	}
}
@media (max-width: 992px){
	
	.banner{
	height:900px!important;
	}
}
@media (max-width: 832px){
	
	.banner{
	height:800px!important;
	}
}
@media (max-width: 714px){
	
	.banner{
	height:650px!important;
	}
}
@media (max-width: 680px){
	
	.banner{
	height:600px!important;
	}
}
@media (max-width: 550px){
	
	.banner{
	height:500px!important;
	}
}
@media (max-width: 714px){
	.banner .banner-down-content,.banner .banner-up-content{
	   height:15%
	}
}


.navbar-brand{
	display: table;
}

.navbar-brand div{
	display: table-cell;
	vertical-align: middle;
}

.navbar-nav{
	width: 100%;
	padding: 0!important;
}

.navbar-nav > li{
	width: 14%;
	text-align: center;
	position: relative;
}

.navbar-nav > li > a{
	padding: 0 !important;
	display: inline-block;
}

.navbar-nav > li > a:hover{
	color: #A28363;
}

.navbar-nav > li.active >a{
	color: #A28363;
}

.navbar-nav > li:not(:last-child):after {
	border-right:1px solid #000000;
	-webkit-transform: rotate(25deg);
	-moz-transform: rotate(25deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=0.45);
	position: absolute;
	height: 20%;
	top: 0;
	right: 0;
	/*left: 0;*/
	bottom: 0;
	margin: auto;
	content: '';
}

/*导航end*/

@media  (min-width: 1501px) {
	.example{
		/*height: 950px;*/
	}

	.logo-div{
		width: 245px;
	}

	.index-lan-div div{
		font-size: 18px;
	}
}


@media (max-width: 1500px) {
	.example{
		/*height: 626px;*/
	}

	.logo-div{
		width: 180px;
	}

	.index-lan-div div{
		font-size: 16px;
	}
}

.example {
	width: 100%;
	font-size: 40px;
	text-align: center;
	position: relative;
}

.logo-div{
	position: absolute;
	top: 47px;
	left: 60px;
	z-index: 100;
}

.logo-div img{
	width: 100%;
}

.index-lan-div{
	position: absolute;
	top: 60px;
	right: 60px;
	z-index: 100;
}

.carousel-item{
	line-height: 689px;
	color: #fff;
	font-family: Arial Black;
}

.carousel-item img{
	width: 100%;
	height: 100%;
}

.nav{
	padding-top: 20px;
	padding-bottom: 15px;
	width: 80%;
	margin: 10px auto;
}

.menu{
	display: table-cell;
	width: 1%;
	/* justify-content:center;
	align-items:center;
	display: flex-wrap; */
}
@media  (min-width: 1700px) {
       .banner{
		height: 900px!important;
	}
}
@media  (min-width: 1500px) {
	.banner{
		height: 800px;
	}

	.left-content{
		font-size: 15px;
	}

	.left-title{
		font-size: 33px;
	}

	.right-title{
		font-size: 33px;
	}

}

@media  (max-width: 1500px) {
	.banner{
		height: 716px;
	}

	.left-content{
		font-size: 12px;
	}

	.left-title{
		font-size: 30px;
	}

	.right-title{
		font-size: 30px;
	}
}

.banner{
	width: 75%;
	margin: 50px auto;
	padding-bottom: 15px;
	text-align: center;

}

/*.banner-title{*/
	/*height: 10%;*/
/*}*/

.banner-up-content{
	margin-top: 20px;
	width: 100%;
	/*height: 50%;*/
}

.banner-up-left{
	width: 33%;
	/*height: 100%;*/
	background: #b89260;
	float: left;
	position: relative;
}

.banner-up-left span{
	position: absolute;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	display: block;
	/*background: url(../img/join-bg.png);*/
	background-color: rgba(88,87,86,0.2);
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	display: table;
}

.banner-up-left span > div{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

@media (min-width: 1500px){
	.banner-up-left span > div {
		font-size: 33px;
		font-weight: 500;
		color: #ffffff;
	}
}

@media (max-width: 1500px){
	.banner-up-left span > div {
		font-size: 30px;
		font-weight: 500;
		color: #ffffff;
	}
}

.banner-up-left>div {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 1px solid #ffffff;
	width: 90%;
	height: 95%;
	z-index: 99;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
	/*background: url(../img/w-box.png) no-repeat;*/
	opacity: 0;
}

.banner-up-left:hover span {
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
}

.banner-up-left:hover>div {
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}


.left-title{
	height: 40%;
	color: white;
	font-weight: 500;
}

.left-title-font{
	text-align: center;
	padding-top: 80px;
}

.left-content{
	margin: 0 auto;
	width: 70%;
	height: 40%;
	text-align: justify;
	color: white;
	letter-spacing: 1px;
}

.left-link{
	height: 20%;
	display: table;
	margin: 0 auto;
}

.left-link-cell{
	display: table-cell;
}

.banner-up-middle{
	width: 33%;
	height: 100%;
	float: left;
	position: relative;
}

.banner-up-middle span{
	position: absolute;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	display: block;
	background: url(../img/join-bg.png);
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.banner-up-middle div {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 1px solid #ffffff;
	width: 90%;
	height: 95%;
	z-index: 99;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
	/*background: url(../img/w-box.png) no-repeat;*/
	opacity: 0;
}

.banner-up-middle:hover span {
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
}

.banner-up-middle:hover div {
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.banner-up-right{
	width: 33%;
	height: 100%;
	/* background: #1D5068; */
	float: left;
	border:1px solid #CFCFCD;
	box-sizing: border-box;
	
}

.right-content{
	margin: 0 auto;
	width: 70%;
	height: 40%;
	text-align: justify;
	color: black;
	font-size: 0.5em;
	letter-spacing: 1px;
	color: white;
}

.right-title{
	height: 40%;
	color: black;
	font-weight: 500;
}

.right-title-font{
	color: white;
	text-align: center;
	padding-top: 80px;
}

.right-link{
	height: 20%;
	display: table;
	margin: 0 auto;
}

.right-link-cell{
	display: table-cell;
}

.banner-down-content{
	padding-top: 5px;
	width: 100%;
	/*height: 50%;*/
}

.banner-down-left{
	width: 33%;
	height: 100%;
	float: left;
	position:relative;
}

.banner-down-left span{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	display: block;
	/*background: url(../img/join-bg.png);*/
	background-color: rgba(88,87,86,0.5);
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	display: table;
}

.banner-down-left span > div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

@media (min-width: 1500px){
	.banner-down-left span > div {
		font-size: 33px;
		font-weight: 500;
		color: #ffffff;
	}
}

@media (max-width: 1500px){
	.banner-down-left span > div {
		font-size: 30px;
		font-weight: 500;
		color: #ffffff;
	}
}

.banner-down-left>div {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	border: 1px solid #ffffff;
	width: 92%;
	height: 90%;
	z-index: 99;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
	/*background: url(../img/w-box.png) no-repeat;*/
	opacity: 0;
}

.banner-down-left:hover span {
	transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
}

.banner-down-left:hover>div {
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}


.left-up-content{
	width: 100%;
	background-color: rgba(88,87,86,0.5);
	height: 20%;
	padding-bottom: 0px;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
}

.left-up-bg-font{
	height: 100%;
	font-size: 25px;
	font-weight: 500;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.left-down-content{
	width: 100%;
	background-color: rgba(88,87,86,0.5);
	height: 27%;
	padding-bottom: 0px;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
}

.left-down-bg-font{
	height: 100%;
	font-size: 25px;
	font-weight: 500;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner-down-middle{
	width: 33%;
	height: 100%;
	float: left;
}

.middle-down-img{
	width: 100%;
	height: 100%;
}

.middle-down-right{
	width: 35%;
	height: 100%;
	float: left;
	background: black;
}

@media  (min-width: 1500px) {
	/*.explain{*/
		/*height: 537px;*/
	/*}*/

	.explain-right-up-title{
		font-size: 13px;
	}

	.explain-right-up-date{
		font-size: 13px;
	}

	.explain-right-up-detail{
		font-size: 15px;
	}
}

@media  (max-width: 1500px) {
	/* .explain{
		height: 400px;
	} */

	.explain-right-up-title{
		font-size: 12px;
	}

	.explain-right-up-date{
		font-size: 12px;
	}

	.explain-right-up-detail{
		font-size: 13px;
	}
}

.explain{
	/*padding-top: 50px;*/
	width: 75%;
	margin: 50px auto 15px auto;
	/*padding-bottom: 15px;*/
	/*text-align: center;*/
}

.explain-title{
	height: 24%;
}

.explain-content{
	margin-top: 50px;
	height: 65%;
}

.explain-content-left{
	width: 37%;
	height: 100%;
	float: left;
}

.explain-content-right{
	width: 63%;
	height: 100%;
	float: left;
}

.explain-right-up{
	width: 100%;
	height: 46%;
	/*margin-top: 1%;*/
	/*margin-bottom: 1%;*/
}

/*.explain-right-up:hover >div>div>div a{*/
	/*color: #9a5817;*/
/*}*/

/*.explain-right-up:hover div.explain-right-up-content{*/
	/*background: #b892608c;*/
	/*border-top: 1px solid #cebba38c;*/
	/*border-bottom: 1px solid #cebba38c;*/
/*}*/

.explain-right-up-active + div.explain-right-up-content{
	background: #b892608c;
	border-top: 1px solid #cebba38c;
	border-bottom: 1px solid #cebba38c;
}

.explain-right-up-active + div.explain-right-up-content a{
	color: #ffffff;
}

.explain-right-up-content > div:hover{
	/*background: #b892608c;*/
}

.explain-right-up-content > div:hover a{
	color: #b892608c;
}

/*.explain-right-up-content > div:hover div>hr{*/
	/*border: 1px dashed white;*/
/*}*/


.explain-right-up-num{
	float: left;
	margin-left: 5%;
	width: 18%;
	height: 100%;
	/*font-size: 70px;*/
	font-size: 20px;
	color: #606060;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: Center;
	position: relative;
}


.explain-right-up-num span{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	display: block;
	/*background: url(../img/join-bg.png);*/
	background-color: rgba(88,87,86,0.5);
	display: table;
}

.explain-right-up-num span div{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #ffffff;
}

.explain-right-up-content{
	width: 76%;
	float: left;
	height: 100%;
}

.explain-right-up-content > div > div > hr {
	margin-left: 3%;
	border: 1px dashed #efebeb;
}

.explain-right-up-content > div{
	width: 100%;
	height: 25%;
}

.explain-right-up-content > div > div{
	width: 97%;
	height: 100%;
	position: relative;
	border-bottom: 1px dashed #efebeb;
	margin-left: 3%;
}

.explain-right-up-title{
	float: left;
	/*font-weight: 600;*/
	width: 70%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	bottom:0;
	margin: auto;
	white-space:nowrap;
	text-overflow:ellipsis;
	/*display: table;*/
}

.explain-right-up-title div{
	height:100%;
	display: table;
}

.explain-right-up-title a{
	color: #595656;
	display: table-cell;
	vertical-align: middle;
}

.explain-right-up-date{
	float: right;
	position: absolute;
	top: 0;
	right: 0;
	bottom:0;
	margin: auto;
	display: table;
}

.explain-right-up-date a{
	color: #A9A9A9;
	display: table-cell;
	vertical-align: middle;
}

.explain-right-up-line{
	float: left;
	margin-left: 10px;
	width: 20%;
}

.explain-right-up-detail{
	float: left;
	margin-left: 10px;
	/*width: 70%;*/
	text-align: justify;
	padding-right: 10px;
}

.explain-right-up-detail a{
	color: #A9A9A9;
}

/*.explain-right-down{*/
	/*width: 100%;*/
	/*height: 46%;*/
	/*margin-top: 3%;*/
/*}*/

.explain-right-down-num{
	float: left;
	margin-left: 38px;
	width: 18%;
	height: 100%;
	border: 1px solid #C7C7C7;
	font-size: 70px;
	color: #606060;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: Center;
}

.explain-right-down-title{
	float: left;
	margin-left: 10px;
	font-weight: 600;
}

.explain-right-down-line{
	float: left;
	margin-left: 10px;
	width: 20%;
}

.explain-line{
	float: left;
	width: 50%;
	border-top: 1px solid #E5E5E5;
}

.explain-right-down-detail{
	float: left;
	width: 70%;
	text-align: justify;
	margin-left: 10px;
	margin-top: 25px;
	font-size: 10px;
	color: #A9A9A9;
}

.chain{
	/* padding-top: 50px; */
	width: 75%;
	margin: 50px auto;
	/*height: 320px;*/
	text-align: center;
}

.chain-title{
	height: 20%;
}

.chain-content{
	/*padding-top: 49px;*/
	margin: 50px auto;
	height: 85%;
	text-align: center;
}

.chain-content-one{
	/*width: 20%;*/
	width: 100%;
	float: left;
}

.chain-content-two{
	width: 20%;
	float: left;
}

.chain-content-three{
	width: 20%;
	float: left;
}

.chain-content-four{
	width: 20%;
	float: left;
}

.chain-content-five{
	width: 20%;
	float: left;
}

.chain-content-img{
	width: 70%;
	height: 60%;
	margin: 0 auto;
	position: relative;
}

.chain-content-img a{
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	text-decoration: none;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.chain-content-intro{
	width: 70%;
	height: 10%;
	margin: 10px auto;
}

.chain-frame{
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

.chain-frame{
	cursor:pointer;
	margin: 0 auto;
	border: 1px solid #949494;
	width: 100%;
	color: #767676;
	font-size: 13px;
}

.page-foot{
	/*padding-top: 2%;*/
	width: 100%;
	margin: 0 auto;
	text-align: center;
	height: 261px;
}

.foot-background{
	background: #393536;
	height: 100%;
}

.foot-back-content{
	margin: 0 auto;
	width: 75%;
	height: 100%;
}

.foot-title{
	padding-top: 40px;
	height: 10%;
}

.foot-title-font{
	margin-left: 5px;
	float: left;
	font-size: 11px;
	height: 45px;
        margin-bottom:5px;
}

.foot-title-font a{
	color: #BAB6B7;
}

.foot-contact{
	margin-top: 10px;
}

.foot-contact-left{
	padding-bottom: 10px;
        padding-left:0;
	/*width: 40%;*/
	height: 60%;
	float: left;
}

.foot-contact-num{
	text-align: left;
	margin-top: 12px;
	margin-left: 20px;
	font-size: 13px;
	color: #ddd;
}

.foot-company{
	text-align: center;
	height: 10%;
	font-size: 13px;
	color: #827E7F;
	margin-top: 20px;
}


.foot-contact-right{
	/*width: 60%;*/
	height: 60%;
	float:left;
	margin-right: 0px;
}

.foot-contact-left .foot-contact-right{
	display: inline;
}

.foot-contact-left-img{
	float: right;
	margin: 2px;
}

.foot-contact-right-img{
	/*float: right;*/
}

.menu{
	height: 100%;
}

.mid{
	height: 142px;
	width: 101px;
	margin: 0 auto;
}

.flipper{
	height: 142px;
	width: 101px;
	margin: 0 auto;
}

.mid:hover
.flipper {
		transform: rotateY(-180deg);
}

.flipper {
		transition: 1s;
		transform-style: preserve-3d;
		position: relative;
}

.front,
.back {
		backface-visibility: hidden;
		position: absolute;
		top: 0;
		left: 0;
}

.nav img {
		overflow: hidden;
}

.front {
		z-index: 2;
}

.back {
		transform: rotateY(-180deg);
}

.pink-link{
	text-decoration: none;
}

.pink-detail{
	width: 108px;
	height: 33px;
	line-height: 33px;
	background: #b89260;
	border:1px solid white ;
	color: white;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-style: oblique;
	position: relative;
}

.pink-detail:after{
	background: #ffffff;
	content: "DETAIL";
	opacity: 0;
	visibility: visible;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 33px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.pink-link:hover :after{
	opacity: 1;
	color: #714c15;
}

.white-link{
	text-decoration: none;
}

.white-detail{
	width: 108px;
	height: 33px;
	line-height: 33px;
	background: white;
	border:1px solid black ;
	color: black;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-style: oblique;
	position: relative;
}

.white-detail:after{
	background: #000000;
	content: "DETAIL";
	opacity: 0;
	visibility: visible;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 33px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.white-link:hover :after{
	opacity: 1;
	color: white;
}

.chain-link{
	text-decoration: none;
}

.foot-link :hover{
	color: white;
}

.chain-content-img{
	overflow:hidden;
}

.chain-content-img img{
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
}

.chain-content-img:hover img{
	transform: scale(1.2,1.2);
}

.explain-content-left{
	overflow:hidden;
}

.explain-content-left img{
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
}

.explain-content-left:hover img{
	transform: scale(1.1,1.1);
}

.banner-up-left{
	overflow: hidden;
}

.banner-up-left img{
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
}

.banner-up-left:hover img{
	transform: scale(1.1,1.1);
}

.banner-down-left{
	overflow:hidden;
}

.banner-down-left img{
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
}

.banner-down-left:hover img{
	transform: scale(1.1,1.1);
}
/*.banner-down-left:hover > div > a > div {*/
	/*color: #714c15;*/
/*}*/




/**
 产业链样式
 */

.chain-content-img a:before {
	content: "";
	display: block;
	height: 44px;
	width: 44px;
	background: url(../img/s1-ico.png) center center no-repeat;
	z-index: 4;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -22px 0 0 -22px;
	transition: all 300ms ease-in-out 0s;
	opacity: 0;
}

.chain-content-img a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,.3);
	z-index: 3;
	transform: scale(.5);
	transition: all 300ms ease-in-out 0s;
	opacity: 0;
}


.chain-content-one:hover .chain-content-img a:before{
	opacity: 1;
	transform: rotate(360deg);
}

.chain-content-one:hover .chain-content-img a:after {
	transform: scale(1);
	opacity: 1;
}


.chain-content-one:hover .chain-content-intro .chain-link div{
	background: #393536;
	color: #ffffff;
}


/* 新闻标题单行显示，超出显示省略号 */
.explain-right-up-content > div > div > div:first-child {
	overflow: hidden !important;
}

.explain-right-up-content > div > div > div:first-child a {
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: block !important;
}
