*,::before,::after{
	/*选择所有的元素*/
	margin: 0;
	padding: 0;
	/*清除移动端默认的点击高亮效果*/
	-webkit-tap-highlight-color:transparent;
	/*设置所有的都是以边框开始计算宽度*/
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
body{
	font-size: 14px;
	font-family: "MicroSoft YaHei",sans-serif;
	color: #333;
}
a{
	color: #333;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
ul,ol{
	list-style: none;
}
input{
	border: none;
	outline: none;
	/*清除移动端默认的表单样式*/
	-webkit-appearance:none;
}
/*设置浮动*/
.f_left{
	float: left;
}
.r_right{
	float: right;
}
/*清除浮动的目的*/
.clearfix::before,.clearfix::after{
	content: "";
	height: 0;
	line-height: 0;
	display: block;
	/*占位置，但不显示*/
	visibility: hidden;
	clear: both;
}
/*给四个方向加上外边距的类，方便使用*/
.m_l10{
	margin-left: 10px;
}
.m_r10{
	margin-right: 10px;
}
.m_b10{
	margin-bottom: 10px;
}
.m_t10{
	margin-top: 10px;
}
