/*清除默认样式*/
* {
	margin: 0;
	padding: 0;
}
li {
	/*清除默认小点*/
	list-style: none;
}
a {
	/*清楚下划线*/

	text-decoration: none;
}
img {
	border: 0;
	/* vertical-align: middle; */
}
input ,textarea {
	/*清除默认面框轮廓*/
	border: 0;
	outline: 0;
	background:none;  
    outline:none;  
    border:none;
}
i,em {
	font-style: normal;

}
h1,h2,h3,h4,h5,h6 {
	/*默认不加粗*/
	font-weight: 400;
}

/*通用样式*/
   .w {
	/*版心*/
	width: 1200px;
	margin:0 auto;
}
body {
	/*默认字体*/
	/* font:12px arial, 'microsoft yahei'; */
	background-color: #fff;
	color:#000;
}
.db {
	display: block;
}
a {
	/*字体颜色*/
	color:#fff;
}
a:hover {
	/*鼠标放置样式*/
	/* color:#c81623; */
}
.red {
	color: #c81623
}
.tc {
	text-align: center;
}
.f12 {
	font-size: 12px;
}
.f14 {
	font-size: 14px;
}
.va {
	vertical-align: top;
}

 .ta {
 	text-align: center;
 }
.fl {
	/*左浮动*/
	float: left;
}
.fr {
	/*右浮动*/
	float: right;
}
/*双伪元素清除浮动*/
.clearfix:before, .clearfix:after {
	content: '';
    display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom:1;
}