html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p,
a,
span{ margin: 0; padding: 0; box-sizing: border-box;}
img{ border: 0;}
input{border: none;outline: 0;}
a{text-decoration: none;}
/* 公共字体 */
body{ font-family: "Microsoft YaHei",Arial,sans-serif; color: #747474; }
body::-webkit-scrollbar{
	background-color: rgba(52, 52, 52, 0);
	width: 10px;
	height: 10px;
}
body::-webkit-scrollbar-thumb{
	background: rgba(0, 0, 0, 0.12);
	border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover{
	background: rgba(0, 0, 0, 0.4);
}

/* 清除浮动 */
.clearfix:after{ content: ""; display: block; clear: both; height: 0; visibility:hidden; }
.block{display: block;width: 100%;}
.inlineBlock{display: inline-block;}
.fl{float: left;}
.fr{float: right;}
.alignCenter{text-align: center;}
.cursorPointer{cursor: pointer;}
.textOver{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}