
/*清除全屏默认页边距*/
html body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

/*页面rem-px换算*/
.html {
	font-size: 16px;
}

/*禁止选中文字*/
.ForbidSelected {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*背景颜色*/
body {
	background-color: white;
	color:black;
}