@charset "utf-8";
/*CSS reset*/
/* 全局重置 */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font: 14px/1.5 "Microsoft YaHei", 微软雅黑, Arial, Helvetica, sans-serif;
}

/*用到的元素盒模型重置*/
img, p, h1, h2, h3, input, button, table, th, td, form, ul, ol, li, div, em, strong, a, span, i {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/*列表重置*/
li {
    list-style: none;
}

/*表格重置*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
}

/*表单重置*/
input {
    background: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
}

input::-webkit-input-placeholder {
    color: #999;
}

input[type=file] {
    width: 100%;
    height: 100%;
    opacity: 0;
}

textarea {
    resize: none;
    border: 0
}

button {
    background: transparent;
    -webkit-appearance: none;
}

/*文本重置*/
 del, caption, th, td, em, i {
    font-size: 100%;
    font-style: normal;
    font-weight: normal;
}

del, ins {
    text-decoration: none;
}

q::before, q::after {
    content: '';
}

/*链接重置*/
a {
    text-decoration: none;
    color: #000;
}

a:active {
    outline: 0;
}

/*去掉图片4px下边距*/
img {
    display: block;
}



.fl{
    float: left;
}
.fr{
    float: right;
}
.mt0{
    margin-top:0;
}
.ml0{
    margin-top:0;
}
.mr0{
    margin-top:0;
}
.mb0{
    margin-top:0;
}