*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "microsoft yahei";
}
em,i{
	font-style: normal;
}
img{
	/* 照顾低版本浏览器 如果图片外面包含了边框的问题 */
	border: 0;
	/* 取消图片底侧有空白间隙的问题*/
	vertical-align: middle;
}
ul{
	list-style:none;
}
a{
	text-decoration: none;
	color: #777777;
	font-size: 14px;
}
button{
	cursor: pointer;
}
button
,input{
	/* 去掉灰色边框 */
	border: 0;
	outline: none;
}
body{
	/* css3抗锯齿形 让文字显示更加清晰 */
	-webkit-font-smoothing: antialiased;
	background-color: #F5F5F5;
	font:12px/1.5 Microsoft yahei;
	color:#666666;
}