@charset "utf-8";
/*Reset CSS*/
* {
	margin: 0;
	padding: 0;
}
/*webkit是苹果浏览器引擎，tap点击，highlight背景高亮，color颜色，颜色用数值调节。*/
html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
}
body {
	font-family: georgia,"微软雅黑","Microsoft Yahei",Arial;
	color: #100a0a;
}
a {
	text-decoration: none;
	outline: none;
}
p {
	text-align: justify;
}
/*清除浮动*/
.clear {
	clear: both;
}
.clearfix {
	zoom:1;
}
.clearfix:after {
	content:".";
	display:block;
	height:0;
	line-height: 0;
	visibility:hidden;
	clear:both;
}
img {
	border: 0;
}
li {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.float_l {
	float: left;
}
.float_r {
	float: right;
}
/*清除ie input输入框小×*/
input::-ms-clear {
	display: none;
}
/*苹果手机端清除自带按钮样式*/
input[type="text"], input[type="password"], textarea { 
	outline-style: none; 
	-webkit-appearance: none; 
}
/*reset CSS end*/ 