/* ivryun 顶栏登录按钮（紧挨系统演示） */
.header-btn-wrap .btn-login {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    margin-left: 10px;
    border-radius: 6px;
    background: #286efa;
    color: #fff !important;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}
.header-btn-wrap .btn-login:hover {
    opacity: 0.9;
    color: #fff !important;
}
.header-btn-wrap .member-menu {
    margin-left: 10px;
}
.header-btn-wrap .member-menu-trigger {
    color: #333;
}
.mobile-nav-list .mobile-nav-auth {
    padding: 16px 20px 24px;
}
.mobile-nav-list .mobile-nav-auth .btn-login {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 6px;
    background: #286efa;
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
}
.member-menu {
        position: relative;
    }

    .member-menu-trigger {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 38px;
        cursor: pointer;
        color: #666;
        font-size: 14px;
        line-height: 38px;
        text-decoration: none;
        white-space: nowrap;
    }

    .member-menu-avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
    }

    .member-menu-caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 2px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        transition: transform .2s ease;
    }

    .member-menu:hover .member-menu-trigger .member-menu-caret,
    .member-menu:focus-within .member-menu-trigger .member-menu-caret {
        transform: rotate(180deg);
    }

    .member-menu-trigger:hover,
    .member-menu:hover .member-menu-trigger,
    .member-menu:focus-within .member-menu-trigger {
        color: #0066ff;
    }

    .member-menu::after {
        position: absolute;
        top: 100%;
        right: 0;
        width: 116px;
        height: 8px;
        content: '';
    }

    .member-menu-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 20;
        width: 116px;
        padding: 6px 0;
        border: 1px solid #edf0f5;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(20, 43, 78, .12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-4px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        visibility: hidden;
    }

    .member-menu:hover .member-menu-dropdown,
    .member-menu:focus-within .member-menu-dropdown {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .member-menu-dropdown a {
        display: block;
        padding: 0 16px;
        color: #4d5b70;
        font-size: 14px;
        line-height: 36px;
        text-decoration: none;
    }

    .member-menu-dropdown a:hover {
        background: #f3f8ff;
        color: #0066ff;
    }

    .site-auth-modal[hidden] {
        display: none;
    }

    .site-auth-modal {
        position: fixed;
        z-index: 1200;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: rgba(15, 23, 42, .48);
        box-sizing: border-box;
    }

    .site-auth-card {
        position: relative;
        width: min(400px, 100%);
        max-height: calc(100vh - 40px);
        padding: 28px 36px 30px;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, .85);
        border-radius: 8px;
        background: #f7faff url('/app/index/index-login-background.png') center / cover no-repeat;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .22);
        box-sizing: border-box;
    }

    .site-auth-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .8);
        color: #64748b;
        cursor: pointer;
        font-size: 22px;
        line-height: 30px;
    }

    .site-auth-brand {
        display: block;
        width: 114px;
        height: 47px;
        margin: 0 auto 18px;
        object-fit: contain;
        object-position: center;
    }

    .site-auth-form {
        display: none;
    }

    .site-auth-form.is-active {
        display: block;
    }

    .site-auth-login-mode {
        display: flex;
        margin: 0 0 14px;
        border-bottom: 1px solid #e8edf5;
    }

    .site-auth-login-mode button {
        flex: 1;
        height: 34px;
        padding: 0;
        border: 0;
        border-bottom: 2px solid transparent;
        background: transparent;
        color: #64748b;
        cursor: pointer;
        font: inherit;
        font-size: 14px;
    }

    .site-auth-login-mode button.is-active {
        border-bottom-color: #0066ff;
        color: #0066ff;
    }

    .site-auth-form > input,
    .site-auth-form [data-auth-login-panel] > input,
    .site-auth-inline input {
        width: 100%;
        height: 44px;
        margin: 0 0 12px;
        padding: 0 18px;
        border: 1px solid #e3e9f2;
        border-radius: 22px;
        outline: 0;
        background: #fff;
        color: #333;
        box-sizing: border-box;
        font: 14px/44px inherit;
    }

    .site-auth-form > input:focus,
    .site-auth-form [data-auth-login-panel] > input:focus,
    .site-auth-inline input:focus {
        border-color: #0066ff;
        box-shadow: 0 0 0 3px rgba(0, 102, 255, .12);
    }

    .site-auth-inline {
        position: relative;
    }

    .site-auth-inline input {
        margin-bottom: 12px;
        padding-right: 128px;
    }

    .site-auth-inline img {
        position: absolute;
        top: 3px;
        right: 8px;
        width: 110px;
        height: 38px;
        border: 0;
        background: transparent;
        cursor: pointer;
        object-fit: cover;
    }

    .site-auth-sms {
        position: absolute;
        top: 8px;
        right: 10px;
        width: 86px;
        height: 28px;
        border: 0;
        background: transparent;
        cursor: pointer;
        color: #0066ff;
        font-family: inherit;
        font-size: 13px;
        line-height: 28px;
    }

    .site-auth-links {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 14px;
    }

    .site-auth-view-link,
    .site-auth-back {
        padding: 0;
        border: 0;
        background: transparent;
        color: #64748b;
        cursor: pointer;
        font-family: inherit;
        font-size: 13px;
    }

    .site-auth-view-link:hover,
    .site-auth-back:hover {
        color: #0066ff;
    }

    .site-auth-back {
        display: block;
        width: 100%;
        margin-top: 14px;
        line-height: 22px;
    }

    .site-auth-sms:disabled {
        color: #94a3b8;
        cursor: default;
    }

    .site-auth-remember,
    .site-auth-agreement {
        display: block;
        margin: 0 0 14px;
        color: #64748b;
        font-size: 13px;
        line-height: 20px;
    }

    .site-auth-agreement a {
        color: #0066ff;
        text-decoration: none;
    }

    .site-auth-submit {
        width: 100%;
        height: 44px;
        border: 0;
        border-radius: 22px;
        background: #0066ff;
        color: #fff;
        cursor: pointer;
        font-family: inherit;
        font-size: 15px;
    }

    .site-auth-submit:disabled {
        cursor: default;
        opacity: .7;
    }

    .site-confirm-modal[hidden] {
        display: none;
    }

    .site-confirm-modal {
        position: fixed;
        z-index: 1300;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background: rgba(15, 23, 42, .48);
        box-sizing: border-box;
    }

    .site-confirm-card {
        width: min(360px, 100%);
        padding: 28px 28px 24px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .22);
        box-sizing: border-box;
        text-align: center;
    }

    .site-confirm-title {
        margin: 0 0 24px;
        color: #1f2937;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
    }

    .site-confirm-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
    }

    .site-confirm-cancel,
    .site-confirm-ok {
        min-width: 108px;
        height: 40px;
        padding: 0 18px;
        border-radius: 20px;
        cursor: pointer;
        font-family: inherit;
        font-size: 14px;
        line-height: 40px;
        box-sizing: border-box;
    }

    .site-confirm-cancel {
        border: 1px solid #d0d7e2;
        background: #fff;
        color: #64748b;
    }

    .site-confirm-cancel:hover {
        border-color: #94a3b8;
        color: #334155;
    }

    .site-confirm-ok {
        border: 0;
        background: #0066ff;
        color: #fff;
    }

    .site-confirm-ok:hover {
        background: #0052cc;
    }