@charset "utf-8";

/* CSS Document */

body,div,h1,h2,h3,h4,h5,h6,p,ul,li,ol,dl,dt,dd,p,a,span,input,img,button,textarea,select,table,label,tr,td,thead,tbody {
	margin: 0;
	padding: 0;
	list-style: none;
	border: none;
}

body {
	color: #333333;
	font-size: 14px;
	font-family: "微软雅黑";
	background: #f2f2f2;
}

a {
	color: #333333;
	text-decoration: none;
	outline: none;
}



/*伪类清浮动*/


/*这段代码 每次要加在cssrest当中 把它当做一个模块来使用 使用方法就是：给高度塌陷的元素 加上这个clearfix类名即可*/

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
}

*html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

*+html .clearfix {
	min-height: 1%;
}


