
.hide{
	display: none;
}
.transparent{
	opacity: 0;
}
.relative{
	position: relative;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/* flex布局 */
.flexbox {	
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
/* 水平居中 */
.flexbox-center {
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
/* 垂直居中 */
.flexbox-middle {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.flexchild {
	display: block;
	box-flex: 1;
	-ms-flex: 1;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	flex: 1;
}
img{
	display: block;
	width: 100%;
}
body{
	font-size: 0.3rem;
}

.top{
	background-color: #333;
	height: 0.4rem;
	line-height: 0.4rem;
	color: #fff;
	font-size: 0.14rem;
}
.wrap{
	margin-left: auto;
	margin-right: auto;
	max-width: 12rem;
}

.header{
	padding: 0.35rem 0;
}
.logo{
	width: 1rem;
}	
.nav a{
	display: inline-block;
	padding: 0 0.2rem;
	height: 0.4rem;
	line-height: 0.4rem;
	white-space: nowrap;
	font-size: 0.24rem;
}
.title{
	margin: 0 auto;
	width: 11rem;
}
.swiper-box{
	padding: 0.9rem 0;
	box-sizing: border-box;
	max-width: 16.5rem;
	margin-left: auto;
	margin-right: auto;
}
.swiper1{
	float: left;
	width: 8.22rem;
	height: 5.33rem;
	overflow: hidden;
}
.swiper-t{
	float: right;
	margin-left: 0.8rem;
	width: 7.3rem;
}
.tabItem{
	position: relative;
	margin: 0 0.1rem;
	width: 2.4rem;
	height: 0.6rem;
	line-height: 0.6rem;
	border-radius: 0.6rem;
	background-color: #e6e6e6;
	font-size: 0.26rem;
	text-align: center;
	color: #fff;
}
.tabItem.current{
	background-color: #b48967;
}
.tabItem.current::after{
	content: ' ';
	display: block;
	position: absolute;
	z-index: 2;
	transform: translateX(-50%);
	left: 50%;
	top: 0.6rem;
	width: 0;
	height: 0;
	border: 0.1rem solid #b48967;
	border-color: #b48967 transparent transparent transparent;
}
.tabCon{
	padding: 0.3rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.item{
	margin: 0.3rem 0.15rem;
	width: 5.45rem;
}
.item .img{
	width: 100%;
	height: 5.15rem;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
}
.item .name{
	margin-top: 0.2rem;
	width: 100%;
	height: 1rem;
	line-height: 1rem;
	background-color: #dfdfdf;
	text-align: center;
	font-size: 0.36rem;
	color: #b58966;
}

@media screen and (min-width:1200px) and (max-width: 1650px) {
	.swiper-box{
		margin: 0 auto;
		max-width: 12rem;
	}
	.swiper1{
		width: 6.0rem;
		height:3.9rem;
		overflow: hidden;
	}
	.swiper-t{
		margin-left: 0.3rem;
		width: 5rem;
	}
}

@media screen and (max-width: 1200px){

	body{min-width: auto;}
	.wrap{
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}
	.top{display: none;}
	.nav{display: none;}
	.title{width: 100%;}
	.swiper-box{padding: 0.5rem 0.25rem;}
	.swiper1{
		float: none;
		margin: 0 auto;
		width: 7.0rem;
		height: 4.54rem;
	}
	.swiper-t{
		float: none;
		margin: 0.5rem auto 0 auto;	
		width: 6rem;
	}
	.item{
		margin: 0.2rem 0.07rem;
		width: 2.50rem;
	}
	.item .img{
		height: 2.35rem;
	}
	.item .name{
		margin-top: 0.1rem;
		width: 100%;
		height: 0.5rem;
		line-height: 0.5rem;
		font-size: 0.28rem;
	}

}


/* 提示 */
#tip{position:absolute;left:0;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:1001;}
#tip .mask{position:absolute;left:0;top:0;bottom:0;left:0;right:0;width:100%;height:100%;z-index:1;}
#tip.hasmask .mask{background:#000;opacity:0.5;}
#tip .tipTxt,#tip.hasmask .tipTxt{position:absolute;z-index:11;top:50%;left:50%;transform:translate(-50%,-50%);display:block;text-align:center;padding:0.5em;border-radius:0.3em;font-size:20px;}
#tip .tipTxt{background:rgba(0,0,0,0.8);color:#fff;}
#tip.hasmask .tipTxt{background:#fff;color:#333;}