@charset "UTF-8";
/* CSS初始化文件 */

html,
body {
	min-height: 100%;
	/* height: 100%; */
	scroll-behavior:smooth;
}
body {
	background: #fff !important;
}

* {
	margin: 0;
	padding: 0;
	/* font-size: 12px; */
	list-style: none;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

i,
s {
	font-style: normal;
	text-decoration: none;
}

input,
img {
	margin: 0;
	padding: 0;
	/* 去掉边框 */
	border: 0 none;
	/* 去掉轮廓线 */
	outline-style: none;
	vertical-align: bottom;
}

/* 清除浮动 */
.clearfix:after {
	content: "";
	height: 0;
	line-height: 0;
	display: block;
	clear: both;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

/* 版心 */
.w {
	max-width: 1200px;
	min-width: 900px;
	width: 80%;
	margin: 0 auto;
}

/* 文字不能被选择 */
.textNoSelect {
	user-select: none;
}

/* 尺寸向小兼容 */
@media (max-width: 960px) {
	.w {
		min-width: auto;
		max-width: none;
		width: 100%;
	}
}
