﻿/* 清除内外边距 */
@charset "utf-8";
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote , a, b, span, p ,i,dl, dt, dd, ul, ol, li, pre, button, input, textarea,th, td,div,select,img{
    margin: 0;
    padding: 0;
}
/* 取消加粗*/
b {
    font-weight: normal;
}
img{
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
	color:#333;
    font: 12px/1 Microsoft Yahei, Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    outline: none;
}

/* 重置h标签字体*/
h1,h2,h3,h4, h5, h6 { font-size: 100%; font-weight:normal;}

 /* 将斜体扶正 */
address, cite, dfn, em, var ,i{ font-style: normal; }

/* 重置列表元素 */
ul, ol ,li{ list-style: none; }

/* 重置文本格式元素 */
a { 
text-decoration: none;
 }

/* 加小手触发 */
input[type="button"]{
   cursor: pointer;
}

/* 去掉默认触发 */
input[type="text"] {
    outline: none;
}

/* 使得表单元素在 ie 下能继承字体大小 */
button, input, select, textarea {
    font-size: 100%; 
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}


/* 清除浮动 */
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow-y: scroll; }
*{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 微软雅黑;
}


/* 统一左浮动 */
.fl{
	float:left;
}

/* 统一右浮动 */
.fr{
	float:right;
}
input[type="button"], input[type="submit"], input[type="reset"] {

    -webkit-appearance: none;

}

input[type=button],input[type=text],input[type=password]{-webkit-appearance:none;outline:none}
