@charset "utf-8";
/* CSS Document */
/* ================= 重置css样式===================== */	
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, legend, button, input, textarea, th, td {
	margin: 0;
	padding: 0;
}
h4, h5, h6 { font-size: 100%; }
cite, em, i { font-style: normal; }
/* 重置列表元素 */
ul, ol { list-style: none; }
/* 重置文本格式元素 */
a {
	text-decoration:none;
	cursor:pointer;
	outline:none;
}
/* 重置表单元素 */ 
fieldset, img { border: none; } 
/* 重置表格元素 */
table {
	border-collapse: collapse;
	border-spacing: 0;
} 
/* ========================= 页面常用样式 CSS样式 =========================== */	
/*清除浮动*/
.clearfix:after{
	content:"";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfix{zoom:1;}
html{overflow-x:hidden;}
.fl{float:left;}
.fr{float:right;}
/*重置苹果默认按钮样式*/
input,textarea ,select{
  background: none;
  border:0; 
  border-radius:0;
 /* -webkit-appearance:none; 把原来的默认样式都去了*/
  outline:none;
  -webkit-tap-highlight-color:transparent;
}
input {
   padding:0;
}
button{
   -webkit-appearance:none;
} 
button,
a
{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
/*清除获取焦点时元素灰色背景及外边框*/
input:focus,select:focus{
  -webkit-tap-highlight-color:transparent;
  outline:none;
}
/*清除移动端点击元素灰色背景*/
*{-webkit-tap-highlight-color:rgba(255, 255, 255, 0);}
body{-webkit-text-size-adjust:none;}
/*设置默认字体 */
input,textarea{
	font-family: "微软雅黑";
}
/*重置firefox按钮样式*/
button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: none;
}
*::-webkit-input-placeholder { 
	color: #BEBEBE;  
}
textarea{
	resize: none;
}
*{cursor:pointer;}

