
@charset "utf-8";

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*禁止长按链接与图片弹出菜单*/
html {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: 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;
}

html, body {
    margin: 0 auto;
    background: #fff;
}

small{
    font-size: 12px
}

h1, h2, h3, h4, h5, h6 {
    font-size: 12px;
}

ul, ol, li {
    list-style: none
}

a {
    text-decoration: none;
    background-color: transparent
}

a:hover,
a:active {
    outline-width: 0;
    text-decoration: none
}

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

hr {
    border: 0;
    height: 1px;
    border-bottom: 1px solid #eee;
}

img {
    display: block;
    width: 100%;
    border-style: none
}

img:not([src]) {
    display: none
}

svg:not(:root) {
    overflow: hidden
}

input, textarea, button, a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

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

audio, canvas, progress, video {
    display: inline-block
}

/*audio:not([controls]), video:not([controls]) {*/
/*display: none;*/
/*height: 0*/
/*}*/

progress {
    vertical-align: baseline
}

mark {
    background-color: #ff0;
    color: #000
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

button, input, select, textarea {
    font-size: 100%;
    outline: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

textarea {
    overflow: auto
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: .54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

/*滑动条默认的样式 start*/
::-webkit-scrollbar-track-piece {
    width: 8px;
    height: 8px;
    background-color: #f0f0f0;
    /* 背景色 */
}

::-webkit-scrollbar {
    display: none;
    width: 8px;
    height: 8px;
    background-color: #00C0FF
}

::-webkit-scrollbar-thumb {
    width: 8px;
    height: 8px;
    background-color: seagreen
}

::-webkit-scrollbar-thumb:hover {
    width: 8px;
    background-color: #00C0FF
}

::-webkit-scrollbar {
    background-color: seagreen;
}

::-webkit-scrollbar-thumb:hover {
    background-color: seagreen;
}

/* ::-webkit-scrollbar 滚动条整体部分
::-webkit-scrollbar-thumb  滚动条里面的小方块，能向上向下移动（或往左往右移动，取决于是垂直滚动条还是水平滚动条）
::-webkit-scrollbar-track  滚动条的轨道（里面装有Thumb）
::-webkit-scrollbar-button 滚动条的轨道的两端按钮，允许通过点击微调小方块的位置。
::-webkit-scrollbar-track-piece 内层轨道，滚动条中间部分（除去）
::-webkit-scrollbar-corner 边角，即两个滚动条的交汇处
::-webkit-resizer 两个滚动条的交汇处上用于通过拖动调整元素大小的小控件 */
/*滑动条默认的样式 end*/

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

.p-fix {
    position: fixed;
}

.p-rel {
    position: relative;
}

.p-abs {
    position: absolute;
}

.d-unflex {
    display: block !important;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.f-letf {
    float: left;
}

.f-right {
    float: right;
}

/*省略一行*/
.text-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
/*省略二行*/
.text-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}