.index-loading-mask {
    display: flex;
    position: absolute;
    left: 0;
    top: 1px;
    bottom: 0;
    z-index: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
}

.index-loading-box {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    /* background-color: rgba(0, 0, 0, 0.6); */
}

.index-loading-text {
    margin-top: 10px;
    font-size: 12px;
    color: #4880FF;
}

/* 加载动画一 */
.index-loading-one {
    width: 25px;
    height: 25px;
    border: 2px solid #4880FF;
    border-top-color: transparent;
    border-radius: 100%;
    animation: indexRotate infinite 0.8s linear;
}

/* 动画声明- 旋转 */
@keyframes indexRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}