/*设置默认的边距*/
*{
	padding:0px;
	margin:0px;
	box-sizing:border-box;
}
/*设置网页的默认颜色*/
html{
	background:#FFF;
}
/*设置网页的默认字体*/
body{
	font-size:12px;
	font-family:Microsoft Yahei,Verdana,Arial,Tahoma;
	color:#333;
	background-color: #F5F5F5;
}
/*设置图像的默认边框*/
img{
	border:none;
	vertical-align:middle;
}
/*设置超链接的默认属性*/
a{
	color:#666;
	text-decoration:none;
}
a:hover{
	color:#666;
	text-decoration:underline;
}
/*设置列表的默认标志*/
ul{
	list-style:none;
}
/*设置表单内容的默认属性*/
input,select,button,textarea{
	font:12px Verdana,Arial,Tahoma;
	vertical-align:middle;
}
.clear-fix {
	clear:both;
}
.mt4 {
	margin-top: 4px;
}
.mt6 {
	margin-top: 6px;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.fl{
	float: left;
}
.wrap {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.box {
	background-color: #FFFFFF;
}
.item {
	background-color: #FFFFFF;
}
