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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    outline: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block
}

html {
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none
}

html,
body,
textarea {
    font-family: "PingFang SC", "Microsoft YaHei", "Microsoft Jhenghei", -apple-system, system-ui, "Hiragino Sans GB", STHeitiTC-Light, tahoma, arial, sans-serif
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden
}

li,
ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

input {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-appearance: none
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px white inset
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

input[type="number"] {
    -moz-appearance: textfield
}

div,
p,
section,
input,
table,
ul,
li,
ol {
    box-sizing: border-box
}

button {
    border: 0;
    outline: 0
}

.overhide {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.overhide2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2
}

.overhide3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3
}

@font-face {
    font-family: "DIN";
    src: url("https://resources.fx696.com/web20/font/DIN-Light.otf");
    font-display: swap
}

@font-face {
    font-family: "DIN-Medium";
    src: url("https://resources.fx696.com/web20/font/DIN-MEDIUM_0.OTF");
    font-display: swap
}

html {
    min-height: 100vh;
    background: #FAFAFA
}

::-webkit-scrollbar {
    width: 6px;
    height: 1px;
    background-color: #F1F1F1
}

::-webkit-scrollbar-thumb {
    background-color: #C1C1C1
}

body {
    background-color: #fff;
    overflow: auto
}

body, textarea {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  -webkit-font-smoothing: antialiased; /* 字体抗锯齿渲染 */
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none; /* 禁用Webkit内核浏览器的文字大小调整功能（因为字体<12px时，中文版Chrome浏览器里字体显示仍为12px） */
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* 这个属性只用于iOS (iPhone和iPad)。当你点击一个链接或者通过JavaScript定义的可点击元素的时候，它就会出现一个半透明的灰色背景。要重设这个表现，可设置-webkit-tap-highlight-color为任何颜色 */
}

[v-cloak] {
    display: none
}


/* Animations */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-5%);
        transform: translateY(-5%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}