html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
legend,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
}

html,
body {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

@supports (padding-bottom: constant(safe-area-inset-bottom)) or
    (padding-bottom: env(safe-area-inset-bottom)) {
    body {
        padding-top: constant(safe-area-inset-top);
        padding-top: env(safe-area-inset-top);

        padding-right: constant(safe-area-inset-right);
        padding-right: env(safe-area-inset-right);

        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);

        padding-left: constant(safe-area-inset-left);
        padding-left: env(safe-area-inset-left);
    }
}

* {
    scrollbar-color: #e5e5e5 #f7f7f9; /* 滑块颜色  滚动条背景颜色 未生效 */
    scrollbar-width: none; /* 滚动条宽度有三种：thin、auto、none */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
*:not(input, textarea) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
blockquote {
    display: block;
    border-left: 8px solid #d0e5f2;
    padding: 5px 10px;
    margin: 10px 0;
    line-height: 1.4;
    font-size: 100%;
    background-color: #f1f1f1;
}

img,
a,
button,
em,
del,
strong,
var,
label,
cite,
small,
time,
mark,
code,
textarea {
    display: inline-block;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}
img {
    user-select: none; /* 禁止图片拖动 */
    user-drag: none;
    -webkit-user-drag: none;
}

input,
button,
textarea,
select {
    border: 0;
    outline: 0;
    background-color: transparent;
    -webkit-appearance: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

::-webkit-input-placeholder {
    color: #999;
}

:-moz-placeholder {
    color: #999;
}

::-moz-placeholder {
    color: #999;
}

:-ms-input-placeholder {
    color: #999;
}

a:active,
a:hover {
    outline: 0;
}

a,
a:visited {
    /* color: #fff; */
    text-decoration: none;
    background-color: transparent;
    /* font-size: 0; */
}
.tab_item a {
    color: #cccccc;
}

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

td,
th {
    padding: 0;
}

.text-line1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.text-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-line3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.text-line4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.text-line5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.flex-v-center {
    align-items: center;
    -webkit-align-items: center;
}

.flex-center {
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

.flex-between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.flex-col {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.flex1 {
    flex: 1;
    -webkit-flex: 1;
}

.flex-start {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

[v-cloak] {
    display: none;
}

.none {
    display: none;
}

.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 1s;
}
.loading_img_box {
    width: 3.28rem;
    height: 5.26rem;
    background: url("../img/pc/loading_bg1.png") no-repeat center;
    background-size: contain;
}
#progressCanvas {
    width: 100%;
}

.logout {
    opacity: 0;
    z-index: -99;
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(0, -0.05rem);
    }
    50% {
        transform: translate(0, 0);
    }
    75% {
        transform: translate(0, 0.05rem);
    }
    100% {
        transform: translate(0, 0);
    }
}

.animate__fadeInDown_custom {
    animation-name: fadeInDown_custom;
}

@keyframes fadeInDown_custom {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.xiaoWrite {
    text-transform: lowercase;
}