/*reset*/
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: "微软雅黑";
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
	color:#666;
}
a:hover{
	color:#FF6600;
}
/*解决img在盒子中有下边距问题*/
img{
	vertical-align: bottom;
}
body{
	font-size: 14px;
	color:#666;
	font-family: 'microsoft yahei';
}
/*tool*/
.lf{
	float:left;
}
.rf{
	float:right;
}
.clearfix:before,.clearfix:after{
	content:'';
	display: table;
}
.clearfix:after{
	clear:both;
}



