body,dd,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,html,img,legend,li,ol,p,ul{margin:0;padding:0;}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
button {
	border:none;
}
i,em {
	font-style: normal;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
}
img {
	border: 0;
}
body {
	background-color: #f0f2f5;
	-webkit-font-smoothing: antialiased;
	font-size: 14px;
	font-family: Muli, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";	 
	color: #666;
	font-weight: 400;
	line-height: 1.5;
}
.clearfix {
	clear: both;
}
input,textarea,button {
	/* 去掉轮廓线 */
	outline: none;
	border: 0;
}
textarea {
	/* 禁止退拽 */
	resize: none;
	overflow: hidden;
}
select {
	border: none;
	outline: none;
}
/* 定义滚动条整体样式 */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* 定义滚动条轨道 */
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	border-radius: 5px;
}

/* 定义滚动条滑块 */
::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 5px;
}

/* 鼠标悬停在滑块上的样式 */
::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

/* Firefox 滚动条样式 */
* {
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}
/* 隐藏滚动条的箭头按钮（适用于 WebKit 浏览器） */
        ::-webkit-scrollbar-button {
            display: none;
        }
		/* 通用样式 */
		        ::placeholder {
		            color: #999;
		        }
				input::-webkit-input-placeholder {
				    color: #9fa3af
				}
				
				input:-ms-input-placeholder {
				    color: #9fa3af
				}
				
				input:-moz-placeholder {
				    color: #9fa3af
				}
				
				input::-moz-placeholder {
				    color: #9fa3af
}