.loading-page {
    position: absolute;
    z-index: 9999999;
    background-color: var(--yb-bg-1-color);
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    color: white;
}

.loading-page-center {
    margin: auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: fit-content;
    position: absolute;
    width: fit-content;
    padding-bottom: 10rem;
    box-sizing: border-box;
}

.loading-page-logo {
    font-style: italic;
    font-weight: bold;
    font-size: 4rem;
    color: white;
    display: inline-block;
}

.loading-ani {
    margin: auto;
    width: fit-content;
}

.slot-machine {
    display: flex;
    justify-content: space-around;
    width: 12rem;
    /* 根据实际需要调整 */
    height: 3rem;
    /* 单个符号的可视高度 */
    overflow: hidden;
}

.slot-ani-1 {
    animation: spin 2.5s linear infinite;
}

.slot-ani-2 {
    animation: spin 2s linear infinite;
}

.slot-ani-3 {
    animation: spin 1.5s linear infinite;
}

.reel {
    display: flex;
    flex-direction: column;
    /* animation: spin 2s linear infinite; */
    /* 调整动画时间以控制速度 */
}

.reel div {
    height: 50px;
    /* 确保这个高度足够显示单个符号 */
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-940%);
        /* 滚动的距离应该根据实际内容的高度调整 */
    }
}

.loading-text {
    margin: auto;
    color: white;
    display: flex;
    font-size: 1rem;
}


.loading-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 1.2rem;
    width: 1rem;
}

.loading-dot {
    background-color: #fff;
    border-radius: 50%;
    width: 0.2rem;
    height: 0.2rem;
    margin: 0px;
    /* 动画 */
    animation: jump 0.6s infinite;
}

/* 定义跳跃动画 */
@keyframes jump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.2rem);
    }
}

/* 为每个圆形设置不同的动画延迟时间 */
.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-failed {
    width: fit-content;
    margin: auto;
    margin-top: 1rem;
    display: none;
}

html {
    overflow: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

html::-webkit-scrollbar {
    display: none;
    /* 隐藏 WebKit 浏览器的滚动条 */
}