html,body{
    width: 100%;
    height: 100%;
}
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, div,/* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
label,th, td ,img{ /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    border: 0;
}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    font-family: "Microsoft YaHei", Arial,Verdana,Tahoma, Helvetica, Arial, "宋体", sans-serif;
    /* font:12px/150% Arial,Verdana,"\5b8b\4f53" sans-serif; */
    font-size: 13px;
    color: #2b2b2b; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    outline: none;
}
h1,h2,h3,h4{font-weight: normal;}
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 0.12rem; } /* 小于 12px 的中文很难阅读，让 small 正常化 */
input{
    border-radius: 5px;
}
textarea{
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    resize: none;
}
input[type="text"],input[type="password"]{
    text-indent: 1em;
}
/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a:link{}
a:visited{color:#2b2b2b;}
a:active{color:#2b2b2b;}
a { text-decoration: none; color: #2b2b2b; cursor: pointer;}
a:active,
a:hover {
    outline: 0;
}
button{
    cursor: pointer;
}
abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
border-bottom: 0.01rem dotted;
cursor: help;
}

/* 重置表单元素 */
legend { color: #2b2b2b; } /* for ie6 */
fieldset, img { border: none;vertical-align: middle; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */

/* 重置表格元素 */
table {
border-collapse: collapse;
border-spacing: 0;
}
td{
    text-align: center;
}

/* 清浮动 */
.clear{
    clear:both;
}
.clearfix:after{
    display:block;
    content: '';
    height:0;
    clear:both;
    zoom:1;
}

/*基础样式*/
.fl{
    float:left;
}
.fr{
    float:right;
}
input[type=button]{
    background-color: #4385f5;
    border-radius:5px;
    cursor: pointer;
}
input[type=text],select,textarea,input[type=password]{
    border-color:#c9c9c9;
}
/*backgroundColor*/
.bgf{
    background-color: #fff;

}
/*input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { !* WebKit*!
    color:    #2b2b2b;
}
input:-moz-placeholder, textarea:-moz-placeholder { !* Mozilla Firefox 4 to 18 *!
    color:    #2b2b2b;
}
input::-moz-placeholder, textarea::-moz-placeholder { !* Mozilla Firefox 19+ *!
    color:    #2b2b2b;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder { !* IE 10+ *!
    color:    #2b2b2b;
}*/



