@charset "UTF-8";
/* 通用样式 */

html,body{
    height: 100%;
}

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 {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-size: 10px;
}

html {
    line-height: 1;
    font-size: 13.33333333vw;
}

ol, ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q, blockquote {
    quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

span {
    display: inline-block;
}

img {
    vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

html, body {
    -webkit-user-select: none;
    user-select: none;
}

body {
    /* line-height: 1.2; */
    font-family: Arial, "MicrosoftYaHei";
    -webkit-text-size-adjust: 100% !important;
    background-color: white;
}

a, img {
    -webkit-touch-callout: none;
}

button, input, optgroup, select, textarea {
    -webkit-appearance: none;
}

a, button, input, optgroup, select, textarea, label {
    -webkit-tap-highlight-color: transparent;
}

button {
    padding: 0;
    outline: none;
    border: none;
    background: none;
}

input {
    font-family: inherit;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

input::-webkit-input-placeholder {
    color: #c5cedb;
}

input:focus::-webkit-input-placeholder {
    color: #c5cedb;
}

input::-webkit-input-speech-button {
    display: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

::-webkit-scrollbar {
    display: none;
}

* {
    box-sizing: border-box;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.hide {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.elli {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.elli-3 {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.bg-white {
    background: #fff;
}

.mt {
    margin-top: 10px;
}

.mb {
    margin-bottom: 10px;
}

.clearfix:after {
    /*伪元素是行内元素 正常浏览器清除浮动方法*/
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
    /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}