/* gate 登录校验载入层（供 logincheck 流程复用） */
.gate-login-loading {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.gate-login-loading.is-hidden {
    display: none;
}

.gate-login-loading__panel {
    width: 300px;
    text-align: center;
    padding: 8px 0 0;
}

.gate-login-loading__logo {
    width: 180px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.gate-login-loading__spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 18px;
    border: 3px solid rgba(66, 66, 66, 0.14);
    border-top-color: #424242;
    border-radius: 50%;
    animation: gate-login-loading-spin 0.85s linear infinite;
}

.gate-login-loading__title {
    font-size: 18px;
    line-height: 1.5;
    color: #323232;
    font-weight: 700;
    font-family: "microsoft yahei", "PingFang SC", sans-serif;
}

.gate-login-loading__hint {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    font-family: "microsoft yahei", "PingFang SC", sans-serif;
}

@keyframes gate-login-loading-spin {
    to {
        transform: rotate(360deg);
    }
}