﻿@charset "utf-8";

/*reset*/
body,
h1,
h2,
h3,
h4,
h5,
p,
dl,
dd,
ul,
ol,
li,
form,
input,
textarea,
th,
td,
select,
*:before,
*:after {
	margin: 0;
	padding: 0;
}

*::before,
*::after {
	margin: 0;
	padding: 0;
}
em,
i,
strong,
h1,
h2,
h3,
h4,
h5 {
	font-style: normal;
	font-weight: normal;
}

body {
	font-size: 12px;
	font-family: "微软雅黑";
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
}

input,
textarea {
	border: none;
	outline: none;
	/*清除移动端默认的表单样式*/
	-webkit-appearance: none;
}

textarea {
	resize: none;
	overflow: auto;
}
/*去除滚动条卡顿*/
body {
       -webkit-overflow-scrolling: touch; 
       overflow-scrolling: touch; 
}


* {
	/*清除移动端默认的点击高亮效果*/
	-webkit-tap-highlight-color: transparent;
	/*设置所有的都是以边框开始计算宽度*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.fl {
	float: left;
}

.fr {
	float: right;
}

.clearfix {
	zoom: 1;
}
.clearfix:after { 
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.bgc {background-position: center; background-repeat: no-repeat; background-size: cover;}
