*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

html{
	font-size: 16px;
}

body {
	font-family:  "Microsoft YaHei", "微软雅黑";
	user-select: none;
	/* 禁止用户鼠标在页面上选中文字/图片等 */
	-webkit-tap-highlight-color: transparent;
	/* webkit是苹果浏览器引擎，tap点击，highlight背景高亮，color颜色，颜色用数值调节 */
	color: #333;
	font-size: 16px;
}



img{
	max-width: 100% !important;
}




