/*浮动清除优化方案，兼容各浏览器*/

.clearfloat:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

.clearfloat {
    zoom: 1;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    /* font-size: 0.28rem; */
    font-family: "PingFang SC", Tahoma, Helvetica, Arial, "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    -webkit-text-size-adjust: none;
    /*取消12px字体最小限制，新版本webkit可能无效*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*设置移动端点击阴影透明*/
    -webkit-overflow-scrolling: touch;
    /*对内部元素开启滚动惯性*/
    -webkit-font-smoothing: antialiased;
    /*使字体更清晰，抗锯齿*/
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 0;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: white;
}

a, img {
    border: 0 none;
}

input, button, select, textarea {
    outline: none;
    padding: 0;
    margin: 0;
}

.native_ws {
    -webkit-user-select: none;
    /*禁止用户复制粘贴*/
    -webkit-touch-callout: none;
    /*禁止弹出“在新页面打开”菜单*/
}