.loading-animations {
    background-color: var(--loading-background);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
    opacity: 1;
}

.la-ball-clip-rotate,
.la-ball-clip-rotate>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-clip-rotate {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-clip-rotate.la-dark {
    color: #333;
}

.la-ball-clip-rotate>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-clip-rotate {
    width: 32px;
    height: 32px;
}

.la-ball-clip-rotate>div {
    width: 32px;
    height: 32px;
    background: transparent;
    border-width: 2px;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: ball-clip-rotate .75s linear infinite;
    -moz-animation: ball-clip-rotate .75s linear infinite;
    -o-animation: ball-clip-rotate .75s linear infinite;
    animation: ball-clip-rotate .75s linear infinite;
}

.la-ball-clip-rotate.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-clip-rotate.la-sm>div {
    width: 16px;
    height: 16px;
    border-width: 1px;
}

.la-ball-clip-rotate.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-clip-rotate.la-2x>div {
    width: 64px;
    height: 64px;
    border-width: 4px;
}

.la-ball-clip-rotate.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-clip-rotate.la-3x>div {
    width: 96px;
    height: 96px;
    border-width: 6px;
}

/*
     * Animation
     */
@-webkit-keyframes ball-clip-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes ball-clip-rotate {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes ball-clip-rotate {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ball-clip-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading-animations-out {
    opacity: 0;
}

.la-ball-scale-ripple,
.la-ball-scale-ripple>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-scale-ripple {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-scale-ripple.la-dark {
    color: #333;
}

.la-ball-scale-ripple>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-scale-ripple {
    width: 32px;
    height: 32px;
}

.la-ball-scale-ripple>div {
    width: 32px;
    height: 32px;
    background: transparent;
    border-width: 2px;
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8);
    -moz-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8);
    -o-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8);
    animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8);
}

.la-ball-scale-ripple.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-scale-ripple.la-sm>div {
    width: 16px;
    height: 16px;
    border-width: 1px;
}

.la-ball-scale-ripple.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-scale-ripple.la-2x>div {
    width: 64px;
    height: 64px;
    border-width: 4px;
}

.la-ball-scale-ripple.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-scale-ripple.la-3x>div {
    width: 96px;
    height: 96px;
    border-width: 6px;
}

@-webkit-keyframes ball-scale-ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(.1);
        transform: scale(.1);
    }

    70% {
        opacity: .65;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes ball-scale-ripple {
    0% {
        opacity: 1;
        -moz-transform: scale(.1);
        transform: scale(.1);
    }

    70% {
        opacity: .65;
        -moz-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes ball-scale-ripple {
    0% {
        opacity: 1;
        -o-transform: scale(.1);
        transform: scale(.1);
    }

    70% {
        opacity: .65;
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

@keyframes ball-scale-ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(.1);
        -moz-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
    }

    70% {
        opacity: .65;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
    }
}

:root {
    --box-border-radius: 5px;
    --theme-color: #409eff;
    --a-hover-color: #409eff;
}

.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #409eff;
}

.el-pagination.is-background .el-pager li:not(.disabled):hover {
    color: #409eff;
}

::selection {
    background-color: #3390ff;
}

.el-button--primary {
    background-color: #409eff;
    border-color: #409eff;
}

.el-button--primary:focus,
.el-button--primary:hover {
    background-color: #409eff;
    border-color: #409eff;
    opacity: .8;
}

.el-button:focus,
.el-button:hover {
    opacity: .8;
}

.content-warp img:not(.not-shadow) {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
}


body {
    font-family: 'HarmonyOS_Regular', system-ui;
}

/* 分页样式 */

#pagi {
    text-align: center;
    margin: 20px 0;
}

#pagi a,
#pagi b {
    border-radius: 10px;
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
}

#pagi a:hover {
    background-color: #f5f5f5;
}

.zit {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}