/* 把我们所有标签的内外边距清零 */
* {
    box-sizing: border-box;
	margin: 0;
	padding: 0
}
a{
	text-decoration: none;
	color: #fff;
}
/* em 和 i 斜体的文字都不倾斜 */
em,
i {
	font-style: normal
}

/* 去掉每个li前面的小圆点 */
li {
	list-style: none
}


img {
	border: 0;/* 为了照顾低版本浏览器,如果 图片的外面包含了链接 会出现边框的问题 */
	vertical-align: middle /* 解决图片底侧出现空白缝隙的问题 */
}


button {
	cursor: pointer /* 当我们鼠标经过button按钮时,鼠标变成小手的样子 */
}

a {
	text-decoration: none
}


body {
	/* 抗锯齿性,避免文字被放大后会产生锯齿 */
	-webkit-font-smoothing: antialiased;
}


/* 清除浮动 */
.clearfix:after {
	visibility: hidden;
	clear: both;
	display: block;
	content: "";
	height: 0
}
select input{
	border: 0;
}
select:focus{
	outline: none;
}
input:focus{
	outline: none;
}
