*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	font-size: 10px;
}
html,body{
	height: 100%;
	width: 100%;
}
body{
	font: 16px/1.5 Montserrat,Helvetica Neue,sans-serif;
}
a{
	text-decoration: none;
}
img{
	border: 0;
	display: block;
}
ul,li{
	list-style: none;
	list-style-type: none;
}
button,input{
	border: 0;
	border-radius: 0;
	background: none;
	outline: none;
}
.w-width-1200{
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	/* overflow: hidden; */
	min-width: 320px;
}
.w-flex{
	display: flex;
	display: -webkit-flex;
	display: -moz-box;
	align-items: center;
	-webkit-align-items: center;
}
.w-flex-sb{
	justify-content: space-between;
}
.w-flex-sa{
	justify-content: space-around;
}
.w-mt{
	margin-top: 100px;
	border-top: .5px solid transparent;
}
.pc{
	display: flex;
}
.ipad{
	display: none;
}
.mobeil{
	display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.w-width-1200{
		width: 100%;
	}
}
/** iPhone **/
@media only screen and (min-width: 320px) and (max-width: 767px) {
	.w-mt{
		margin-top: 1.18rem;
	}
	.w-width-1200{
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
}
/*隐藏滚轮*/
/* ::-webkit-scrollbar {
display: none;
} */

@media screen and (max-width: 767px) and (min-width: 320px){
	.mobeil-phone-padding{
		padding: 0 0.8rem;
	}
}

