/* CSS重置 */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, a, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

header, footer, nav, hgroup, section, article, section, aside {
	display: block;
}

/*标签属性重置*/

body {
	line-height: 32px;
	font-family: "Microsoft YaHei", "微软雅黑";
	font-size: 16px;
	color: #333333;
}

input::-ms-clear, input::-ms-reveal {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0;
	vertical-align: middle;
}

ol, ul, li {
	list-style: none;
}

input {
	border: none;
	outline: medium;
}

a {
	font-size: 16px;
	color: #333333;
	text-decoration: none;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.w {
	width: 1400px;
	margin: 0 auto;
}
.w1 {
	width: 1400px;
        height: 60px;
	margin: 0 auto;
}

/*对于 IE8 及更早版本中的 :before :after，必须声明 <!DOCTYPE>。*/

.clearfix:before, .clearfix:after {
	display: block;
	content: " ";
	clear: both;
}

/* 定位 */

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.pf {
	position: fixed;
}

.clear {
	clear: both;
}
/* 浮动 */
.fl{
	float: left;
}
.fr{
	float: right;
}