* {
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}

*::after {
	box-sizing: border-box;
}

*::before {
	box-sizing: border-box;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}
/*包含以下四种的链接*/
a {
	text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
	/* color: black; */
}
/* 正在点击的链接*/
a:active {
	text-decoration: none;
}

body {
	font-family: Avenir, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.2;
	/* background: #f5f5f5; */
	/* // background:rgb(255,255,255)
  // text-align: center;
  // color: #2c3e50; */
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
	font-family: -apple-system, "Microsoft YaHei", "Noto Sans", "Helvetica Neue", Helvetica, "Nimbus Sans L",
		Arial, "Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC",
		"Source Han Sans SC", "Source Han Sans CN", "Wenquanyi Micro Hei",
		"WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp", sans-serif;
}

.icon {
	width: 1em;
	height: 1em;
	display: inline-block;
}

button,
input {
	font: inherit;
}

:focus {
	outline: none;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.oneLine {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* p{
	margin: ;
} */
