/* // 全局样式 */
::-webkit-scrollbar {
    /* display: none; */
    width: 13px;
    height: 13px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(0 0 0 / 40%);
    background-clip: padding-box;
    border: 3px solid transparent;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0 0 0 / 50%);
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-track:hover {
    background-color: #f8fafc;
}

html,
body {
    height: 100%;
}

html, body, ul, ol, dl, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Helvetica Neue",Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Heiti SC","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;
    z-index: 1;
    box-sizing: border-box;    
    -webkit-tap-highlight-color: transparent;
    background: #f1f3f4 repeat-y top center;
    background-size: 100%;
}

body .hidden {
    overflow: hidden;
}

a{
    color: #333;
}

button::-moz-focus-inner {
    border: none;
    padding: 0;
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

* {
    box-sizing: inherit;
}

[v-clock] {
    display: none !important;
}

/* // textarea 字体跟随系统 */
textarea {
    font-family: inherit;
}