@charset "utf-8";
/* reset  css */
*,
::before,
::after{
	/*选择所以的标签*/
	margin:0;
	padding:0;
	/*设置所以的都是与边框开始计算宽度 因为百分百布局*/
	-webkit-box-sizing: border-box; /*兼容*/
	/*边框为计算宽度100% 设置   否则内容100%加边框 会超宽*/
	box-sizing:border-box;
}
	
html,body{
	font-size: 14px;
	font-family: "microsoft yahei",sans-serif;/*蓝呀 设备默认字体*/
	color: #333;
	height:100%;
	width:100%;
	
}
a{
	color:#333;
	text-decoration:none;/*文字装饰 无*/
}
a:hover{
	text-decoration:none;
}

ul{
	list-style:none;/*去除表格内边距的黑点*/
}

ul.ol{
	list-style:none;
}
/*
input{
	border:none;
	outline:none;
     /*清楚移动端默认的表单样式*
	-webkit-appearance:none;
}
*/

/*清楚浮动*/
.clearfix::before,
.clearfix::after{
	content:"";
	height:0;
	line-height:0;
	display:block;
	visibility:hidden;
	clear:both;
}
