/* 样式重置 */
html,
body,
img,
div,
ul,
li,
input,
a,
p,
form,
ol,
h3 {
    margin: 0;
    padding: 0;
    /* 设置和模型 */
    box-sizing: border-box;
    /* 去除移动端特有的高亮显示背景 */
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 20px;
}

@media only screen and (min-width: 400px) {
    html {
        font-size: 21.33333333px !important;
    }
}

@media only screen and (min-width: 414px) {
    html {
        font-size: 22.08px !important;
    }
}

@media only screen and (min-width: 480px) {
    html {
        font-size: 25.6px !important;
    }
}

/*! normalize.sui v3.0.3 | MIT License | github.com/necolas/normalize.sui */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "微软雅黑", sans-serif;
    font-size: 0.65rem;
    background: #f1eff0;
}

a,
a:hover {
    color: #666;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

em,
i {
    font-style: normal;
}

input {
    /*1.清除文本框获取焦点时默认的边框阴影*/
    outline: none;
    border: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 清楚浮动 */
.clearfix::before,
.clearfix::after {
    content: "";
    display: block;
    height: 0;
    line-height: 0px;
    clear: both;
    visibility: hidden;
}

.show {
    display: block;
}

.hidden {
    display: none;
}