body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dd,input,button,li {
	margin: 0;
	padding: 0;
}
html,body {
	height: 100%;
}
body {
	line-height: 1;
	font-family: 'Microsoft YaHei','微软雅黑'
}
/*H5新标签*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main{
	display:block
}
/*去掉mac safari浏览器input右边的小图标/小按钮*/
input:focus::-webkit-contacts-auto-fill-button {
	opacity: 0;
} 
h1,h2,h3,h4,h5,h6,b,i,em,strong {
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
}
ul,ol {
	list-style: none;
}
img,input,select {
	vertical-align: top;
	outline:none;
}
button,input,textarea,img {
	outline: none;
	border: none;
} 
button {
	border: none;
	background-color: #fff;
}
a {
	color: #999;
	text-decoration: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*浮动*/
.fl {
	float: left;
}
.fr {
	float: right;
}
/*清除浮动*/
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}
.clearfix {
	zoom: 1;
}
/*父级元素相对定位*/
.posR {
	position: relative;
}
/*拖拽父级*/
.pullF {
	overflow: hidden;
}
/*省略号显示*/
.points {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}