
/* 重置浏览器一些默认样式*是全局标签 */

* {
	padding: 0;
	margin: 0;
	border: 0;
	font-family: Microsoft YaHei, Simsum, serif;
	text-decoration: none;
}
html {
	overflow: auto;
	width: 100%;
}
body {
	text-align: center;

}

/* 重置表格元素 */

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
	width: 99%;
	display: table;
}
/* 重置表单元素 */

input,
textarea,
button,
select {
	background-color: #fff;
	outline: none;
}
address,
cite,
dfn,
em,
var {
	font-style: normal;
}
ul,
ol {
	list-style: none;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

legend {
	color: #000;
}
fieldset,
img {
	border: 0;
	vertical-align: middle;
}
/* 使元素能继承字体大小 */

button,
input,
select,
textarea,
div,
span,
p,
a,
b,
i,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-style: normal;
	/*font-weight: 300;*/
}
/* 清除浮动 */

.clear:after {
	content: '\20';
	display: block;
	height: 0;
	clear: both!important;
}
.clear {
	*zoom: 1;
}