/* /Components/Layout/MainLayout.razor.rz.scp.css */
.winner-shell[b-7abnn0z5ql] {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;

    display: flex;

    background: #f4f6f9;
}


/*==============================================================
  左侧菜单
==============================================================*/

.winner-sidebar[b-7abnn0z5ql] {
    width: 220px;
    min-width: 220px;

    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;

    background: #123f6d;

    box-shadow:
            2px 0 8px
            rgba(0, 0, 0, 0.08);

    z-index: 1000;
}


/*==============================================================
  桌面端隐藏整个左侧功能树

  注意：

  这里不是缩成窄栏，
  而是完全不显示、不占任何页面宽度。

  主区域因为 .winner-main 使用 flex: 1，
  会自动占满释放出来的 220px。
==============================================================*/

@media (min-width: 769px) {

    .winner-sidebar.desktop-hidden[b-7abnn0z5ql] {
        display: none;
    }

}


.sidebar-brand[b-7abnn0z5ql] {
    height: 72px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-bottom:
            1px solid
            rgba(255, 255, 255, 0.12);

    background: #0d3763;
}


.brand-main[b-7abnn0z5ql] {
    color: #ffffff;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: 2px;
}


.brand-sub[b-7abnn0z5ql] {
    margin-top: 2px;

    color: #d9e7f5;

    font-size: 11px;

    letter-spacing: 1px;
}


.sidebar-content[b-7abnn0z5ql] {
    flex: 1;

    min-height: 0;

    overflow-y: auto;
    overflow-x: hidden;
}


/*==============================================================
  主区域
==============================================================*/

.winner-main[b-7abnn0z5ql] {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;

    min-height: 100vh;
    min-height: 100dvh;
}


/*==============================================================
  顶部栏
==============================================================*/

.winner-topbar[b-7abnn0z5ql] {
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
            0
            18px;

    box-sizing: border-box;

    border-bottom:
            1px solid
            #dfe4ea;

    background: #ffffff;

    box-shadow:
            0 1px 4px
            rgba(0, 0, 0, 0.04);

    z-index: 100;
}


.topbar-left[b-7abnn0z5ql] {
    display: flex;

    align-items: center;

    min-width: 0;

    flex:
            0
            1
            auto;
}


.topbar-title[b-7abnn0z5ql] {
    color: #26384a;

    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;
}


/*==============================================================
  桌面端左侧功能树按钮

  始终放在顶部栏左侧。
  即使 Sidebar 完全隐藏，本按钮仍然存在，
  用户可以随时重新展开。
==============================================================*/

.desktop-sidebar-button[b-7abnn0z5ql] {
    width: 36px;
    height: 36px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    flex:
            0
            0
            36px;

    margin-right: 8px;

    padding: 8px;

    box-sizing: border-box;

    border: 0;

    border-radius: 4px;

    background: transparent;

    cursor: pointer;
}


.desktop-sidebar-button:hover[b-7abnn0z5ql] {
    background: #f2f4f7;
}


.desktop-sidebar-button span[b-7abnn0z5ql] {
    display: block;

    width: 20px;
    height: 2px;

    margin: 2px 0;

    flex-shrink: 0;

    background: #344054;

    border-radius: 2px;
}


/*==============================================================
  顶部右侧

  重要：

  桌面端不允许把：

  用户名
  公司名称
  角色名称

  压缩成 ...
==============================================================*/

.topbar-right[b-7abnn0z5ql] {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-left: auto;

    flex:
            0
            0
            auto;

    min-width: max-content;
}


/*==============================================================
  当前用户
==============================================================*/

.current-user[b-7abnn0z5ql] {
    display: flex;

    align-items: center;

    gap: 9px;

    flex:
            0
            0
            auto;

    min-width: max-content;
}


.user-icon[b-7abnn0z5ql] {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex:
            0
            0
            34px;

    border-radius: 50%;

    background: #e9f2fb;

    color: #1769aa;

    font-size: 13px;
    font-weight: 800;
}


.user-info[b-7abnn0z5ql] {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    flex:
            0
            0
            auto;

    min-width: max-content;
}


/*==============================================================
  用户名

  PC 完整显示
==============================================================*/

.user-name[b-7abnn0z5ql] {
    max-width: none;

    overflow: visible;

    color: #344054;

    font-size: 12px;
    font-weight: 700;

    line-height: 16px;

    white-space: nowrap;

    text-overflow: clip;
}


/*==============================================================
  公司 + 角色

  PC 完整显示
==============================================================*/

.user-meta[b-7abnn0z5ql] {
    display: flex;

    align-items: center;

    max-width: none;

    margin-top: 1px;

    overflow: visible;

    color: #98a2b3;

    font-size: 10px;

    line-height: 14px;

    white-space: nowrap;
}


.company-name[b-7abnn0z5ql],
.role-name[b-7abnn0z5ql] {
    max-width: none;

    overflow: visible;

    white-space: nowrap;

    text-overflow: clip;
}


.meta-divider[b-7abnn0z5ql] {
    margin:
            0
            5px;

    flex:
            0
            0
            auto;
}


/*==============================================================
  退出登录
==============================================================*/

.logout-button[b-7abnn0z5ql] {
    width: auto;
    min-width: 78px;
    height: 30px;

    flex:
            0
            0
            auto;

    padding:
            0
            13px;

    box-sizing: border-box;

    border:
            1px solid
            #d0d5dd;

    border-radius: 4px;

    background: #ffffff;

    color: #475467;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;
}


.logout-button:hover:not(:disabled)[b-7abnn0z5ql] {
    border-color: #98a2b3;

    background: #f7f8fa;
}


.logout-button:disabled[b-7abnn0z5ql] {
    opacity: 0.6;

    cursor: wait;
}




/*==============================================================
  工作区标签栏
==============================================================*/

.workspace-tabs-bar[b-7abnn0z5ql] {
    min-height: 38px;

    display: flex;
    align-items: stretch;

    flex:
            0
            0
            auto;

    min-width: 0;

    box-sizing: border-box;

    border-bottom:
            1px solid
            #dfe4ea;

    background: #ffffff;
}


.workspace-tabs-scroll[b-7abnn0z5ql] {
    flex: 1;

    min-width: 0;

    display: flex;
    align-items: flex-end;

    gap: 3px;

    padding:
            5px
            6px
            0
            10px;

    box-sizing: border-box;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
}


.workspace-tab[b-7abnn0z5ql] {
    height: 32px;

    display: inline-flex;
    align-items: stretch;

    flex:
            0
            0
            auto;

    max-width: 190px;

    overflow: hidden;

    border:
            1px solid
            #d9e0e8;

    border-bottom: 0;

    border-radius:
            6px
            6px
            0
            0;

    background: #f6f8fb;

    color: #667085;
}


.workspace-tab:hover[b-7abnn0z5ql] {
    background: #eef3f8;
}


.workspace-tab-active[b-7abnn0z5ql] {
    position: relative;

    background: #ffffff;

    color: #1769aa;

    border-color: #b8cadc;

    box-shadow:
            inset
            0
            3px
            0
            #1677ff;
}


.workspace-tab-main[b-7abnn0z5ql] {
    min-width: 0;
    max-width: 150px;

    height: 31px;

    padding:
            0
            10px;

    border: 0;

    background: transparent;

    color: inherit;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;

    cursor: pointer;
}


.workspace-tab-active .workspace-tab-main[b-7abnn0z5ql] {
    font-weight: 700;
}


.workspace-tab-close[b-7abnn0z5ql] {
    width: 26px;
    height: 31px;

    flex:
            0
            0
            26px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #98a2b3;

    font-size: 17px;
    line-height: 1;

    cursor: pointer;
}


.workspace-tab-close:hover[b-7abnn0z5ql] {
    background: #fee4e2;

    color: #b42318;
}


.workspace-tab-home .workspace-tab-main[b-7abnn0z5ql] {
    padding-right: 12px;
}


.workspace-tab-actions[b-7abnn0z5ql] {
    flex:
            0
            0
            auto;

    display: flex;
    align-items: center;

    gap: 5px;

    padding:
            4px
            10px
            4px
            7px;

    box-sizing: border-box;

    border-left:
            1px solid
            #e4e8ef;

    background: #ffffff;
}


.workspace-tab-action-button[b-7abnn0z5ql] {
    height: 27px;

    min-width: 66px;

    padding:
            0
            9px;

    box-sizing: border-box;

    border:
            1px solid
            #d0d5dd;

    border-radius: 4px;

    background: #ffffff;

    color: #475467;

    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;
}


.workspace-tab-action-button:hover:not(:disabled)[b-7abnn0z5ql] {
    border-color: #98a2b3;

    background: #f7f8fa;
}


.workspace-tab-action-button:disabled[b-7abnn0z5ql] {
    opacity: 0.42;

    cursor: default;
}


/*==============================================================
  页面内容
==============================================================*/

.winner-content[b-7abnn0z5ql] {
    position: relative;

    flex: 1;

    min-width: 0;
    min-height: 0;

    padding: 0;

    box-sizing: border-box;

    overflow: hidden;

    background: #f4f6f9;
}


/*==============================================================
  真正常驻的页面容器

  每一个标签都有自己独立的滚动容器，
  因此切换标签后：
  - 页面组件实例保持
  - 页面滚动位置也保持

  inactive 仅 display:none，
  不从 DOM / Blazor 组件树移除。
==============================================================*/

.workspace-panel[b-7abnn0z5ql],
.workspace-router-fallback[b-7abnn0z5ql] {
    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    padding: 14px;

    box-sizing: border-box;

    overflow: auto;

    background: #f4f6f9;
}


.workspace-panel-active[b-7abnn0z5ql] {
    display: block;
}


.workspace-panel-hidden[b-7abnn0z5ql] {
    display: none;
}


.workspace-router-fallback[b-7abnn0z5ql] {
    display: block;
}


/*==============================================================
  页面错误
==============================================================*/

.layout-error[b-7abnn0z5ql] {
    margin:
            10px
            14px
            0
            14px;

    padding:
            8px
            10px;

    border:
            1px solid
            #f5c2c0;

    border-radius: 4px;

    background: #fff1f0;

    color: #b42318;

    font-size: 12px;
}


/*==============================================================
  手机菜单按钮
==============================================================*/

.mobile-menu-button[b-7abnn0z5ql] {
    display: none;

    width: 36px;
    height: 36px;

    margin-right: 8px;

    padding: 8px;

    border: 0;

    border-radius: 4px;

    background: transparent;

    cursor: pointer;
}


.mobile-menu-button span[b-7abnn0z5ql] {
    display: block;

    width: 20px;
    height: 2px;

    margin: 3px 0;

    background: #344054;

    border-radius: 2px;
}


/*==============================================================
  手机遮罩
==============================================================*/

.mobile-mask[b-7abnn0z5ql] {
    display: none;
}


/*==============================================================
  Blazor 错误栏
==============================================================*/

#blazor-error-ui[b-7abnn0z5ql] {
    display: none;

    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 99999;

    padding:
            10px
            16px;

    background: #fff3cd;

    color: #664d03;

    font-size: 12px;
}


#blazor-error-ui .reload[b-7abnn0z5ql] {
    margin-left: 10px;
}


#blazor-error-ui .dismiss[b-7abnn0z5ql] {
    position: absolute;

    right: 12px;

    cursor: pointer;
}


/*==============================================================
  中等屏幕

  仍然保留完整用户名，
  公司 + 角色允许稍微紧凑
==============================================================*/

@media (max-width: 1000px) {

    .winner-topbar[b-7abnn0z5ql] {
        padding:
                0
                12px;
    }


    .topbar-right[b-7abnn0z5ql] {
        gap: 10px;
    }


    .user-meta[b-7abnn0z5ql] {
        font-size: 9px;
    }

}


/*==============================================================
  平板 / 手机
==============================================================*/

@media (max-width: 768px) {

    /*
     * 移动端继续使用原有抽屉菜单。
     *
     * 即使桌面端此前处于 desktop-hidden，
     * 到移动端也不能被 display:none 影响。
     */

    .winner-sidebar[b-7abnn0z5ql],
    .winner-sidebar.desktop-hidden[b-7abnn0z5ql] {
        position: fixed;

        top: 0;
        bottom: 0;
        left: 0;

        width: 250px;
        min-width: 250px;

        display: flex;

        transform:
                translateX(-100%);

        transition:
                transform 0.2s ease;

        box-shadow:
                4px 0 18px
                rgba(0, 0, 0, 0.20);
    }


    .winner-sidebar.mobile-open[b-7abnn0z5ql],
    .winner-sidebar.desktop-hidden.mobile-open[b-7abnn0z5ql] {
        transform:
                translateX(0);
    }


    .mobile-mask[b-7abnn0z5ql] {
        position: fixed;

        inset: 0;

        display: block;

        z-index: 900;

        background:
                rgba(0, 0, 0, 0.42);
    }


    /*
     * 平板 / 手机只显示原来的移动菜单按钮，
     * 不显示桌面菜单按钮。
     */

    .desktop-sidebar-button[b-7abnn0z5ql] {
        display: none;
    }


    .mobile-menu-button[b-7abnn0z5ql] {
        display: block;
    }


    .winner-topbar[b-7abnn0z5ql] {
        height: 54px;

        padding:
                0
                10px;
    }


    .topbar-title[b-7abnn0z5ql] {
        font-size: 14px;
    }


    /*
     * 平板开始隐藏公司、角色，
     * 避免顶部被撑爆。
     */

    .user-meta[b-7abnn0z5ql] {
        display: none;
    }


    .user-name[b-7abnn0z5ql] {
        max-width: 120px;

        overflow: hidden;

        text-overflow: ellipsis;
    }


    .logout-button[b-7abnn0z5ql] {
        height: 34px;

        min-width: 70px;
    }


    .winner-content[b-7abnn0z5ql] {
        padding: 10px;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 520px) {

    .winner-sidebar[b-7abnn0z5ql],
    .winner-sidebar.desktop-hidden[b-7abnn0z5ql] {
        width: 82vw;
        min-width: 82vw;

        max-width: 290px;
    }


    .topbar-title[b-7abnn0z5ql] {
        font-size: 13px;
    }


    /*
     * 手机不显示用户名资料，
     * 只保留头像 + 退出按钮。
     */

    .user-info[b-7abnn0z5ql] {
        display: none;
    }


    .current-user[b-7abnn0z5ql] {
        min-width: 34px;
    }


    .topbar-right[b-7abnn0z5ql] {
        min-width: 0;

        gap: 7px;
    }


    .logout-button[b-7abnn0z5ql] {
        height: 36px;

        min-width: 64px;

        padding:
                0
                9px;

        font-size: 11px;
    }


    .winner-content[b-7abnn0z5ql] {
        padding: 8px;
    }

}


/*==============================================================
  标签栏响应式
==============================================================*/

@media (max-width: 768px) {

    .workspace-tabs-bar[b-7abnn0z5ql] {
        min-height: 39px;
    }


    .workspace-tabs-scroll[b-7abnn0z5ql] {
        padding-left: 6px;
    }


    .workspace-tab[b-7abnn0z5ql] {
        max-width: 150px;
    }


    .workspace-tab-main[b-7abnn0z5ql] {
        max-width: 112px;

        padding:
                0
                8px;
    }


    .workspace-tab-actions[b-7abnn0z5ql] {
        gap: 3px;

        padding:
                4px
                6px;
    }


    .workspace-tab-action-button[b-7abnn0z5ql] {
        min-width: 30px;

        width: 30px;

        padding: 0;

        overflow: hidden;

        font-size: 0;
    }


    .workspace-tab-action-button:first-child[b-7abnn0z5ql]::after {
        content: "关";

        font-size: 11px;
    }


    .workspace-tab-action-button:last-child[b-7abnn0z5ql]::after {
        content: "清";

        font-size: 11px;
    }

}


@media (max-width: 520px) {

    .workspace-tabs-scroll[b-7abnn0z5ql] {
        gap: 2px;
    }


    .workspace-tab[b-7abnn0z5ql] {
        max-width: 132px;
    }


    .workspace-tab-main[b-7abnn0z5ql] {
        max-width: 96px;
    }

}


/*==============================================================
  常驻工作区响应式内边距
==============================================================*/

@media (max-width: 768px) {

    .winner-content[b-7abnn0z5ql] {
        padding: 0;
    }


    .workspace-panel[b-7abnn0z5ql],
    .workspace-router-fallback[b-7abnn0z5ql] {
        padding: 10px;
    }

}


@media (max-width: 520px) {

    .winner-content[b-7abnn0z5ql] {
        padding: 0;
    }


    .workspace-panel[b-7abnn0z5ql],
    .workspace-router-fallback[b-7abnn0z5ql] {
        padding: 8px;
    }

}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.winner-nav[b-iasdtys8nt] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 9px 24px 9px;
}


.nav-section[b-iasdtys8nt] {
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}


.nav-group[b-iasdtys8nt] {
    margin: 0;
    padding: 5px 0 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}


.nav-group-title[b-iasdtys8nt] {
    width: 100%;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 9px;

    box-sizing: border-box;

    border: 0;
    border-radius: 4px;

    background: transparent;

    color: rgba(255, 255, 255, 0.60);

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-align: left;

    cursor: pointer;

    user-select: none;
}


.nav-group-title:hover[b-iasdtys8nt] {
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.86);
}


.nav-group-arrow[b-iasdtys8nt] {
    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.56);

    font-size: 17px;
    line-height: 1;

    transform: rotate(0deg);

    transition: transform 0.14s ease;
}


.nav-group-arrow-expanded[b-iasdtys8nt] {
    transform: rotate(90deg);
}


.nav-group-body[b-iasdtys8nt] {
    display: flex;
    flex-direction: column;
    gap: 1px;
}


/*==============================================================
  关键修正：
  NavLink 是 Blazor 子组件。

  CSS Isolation 下必须通过 ::deep
  才能真正作用于 NavLink 渲染出来的 <a>。
==============================================================*/

.winner-nav[b-iasdtys8nt]  a.nav-item,
.winner-nav button.nav-item[b-iasdtys8nt],
.winner-nav .nav-placeholder[b-iasdtys8nt] {
    position: relative;

    width: 100%;
    height: 34px;

    display: flex;
    align-items: center;

    box-sizing: border-box;

    margin: 0;

    padding: 0 10px;

    border: 0;
    border-radius: 5px;

    background: transparent;

    color: rgba(255, 255, 255, 0.84) !important;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;

    text-align: left;

    text-decoration: none !important;

    outline: none;

    cursor: pointer;
}


.winner-nav[b-iasdtys8nt]  a.nav-item:link,
.winner-nav[b-iasdtys8nt]  a.nav-item:visited,
.winner-nav[b-iasdtys8nt]  a.nav-item:hover,
.winner-nav[b-iasdtys8nt]  a.nav-item:active,
.winner-nav[b-iasdtys8nt]  a.nav-item:focus {
    color: rgba(255, 255, 255, 0.84) !important;
    text-decoration: none !important;
}


.winner-nav[b-iasdtys8nt]  a.nav-item:hover,
.winner-nav button.nav-item:hover[b-iasdtys8nt] {
    background: rgba(255, 255, 255, 0.085);
    color: #ffffff !important;
}


.winner-nav[b-iasdtys8nt]  a.nav-item.active {
    background:
            linear-gradient(
                    90deg,
                    rgba(61, 169, 237, 0.28),
                    rgba(255, 255, 255, 0.08));

    color: #ffffff !important;

    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
            inset 3px 0 0 #65c5ff;
}


.winner-nav[b-iasdtys8nt]  a.nav-item.active::after {
    content: "";

    position: absolute;
    right: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #78ceff;
}


.nav-icon[b-iasdtys8nt] {
    width: 20px;
    min-width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 7px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 13px;
    line-height: 1;
}


.winner-nav[b-iasdtys8nt]  a.nav-item.active .nav-icon {
    color: #ffffff;
}


.nav-text[b-iasdtys8nt] {
    min-width: 0;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: inherit;

    text-decoration: none !important;
}


.winner-nav[b-iasdtys8nt]  a.nav-item .nav-text {
    color: inherit !important;
    text-decoration: none !important;
}


.nav-placeholder[b-iasdtys8nt] {
    opacity: 0.48;
    cursor: default !important;
    user-select: none;
}


.winner-nav button.nav-item[b-iasdtys8nt],
.nav-group-title[b-iasdtys8nt] {
    appearance: none;
    -webkit-appearance: none;
}


@media (max-width: 768px) {

    .winner-nav[b-iasdtys8nt] {
        padding: 10px 8px 24px 8px;
    }


    .nav-group-title[b-iasdtys8nt] {
        height: 32px;
        font-size: 10px;
    }


    .winner-nav[b-iasdtys8nt]  a.nav-item,
    .winner-nav button.nav-item[b-iasdtys8nt],
    .winner-nav .nav-placeholder[b-iasdtys8nt] {
        height: 40px;
        font-size: 13px;
    }


    .nav-icon[b-iasdtys8nt] {
        width: 22px;
        min-width: 22px;
        margin-right: 8px;
    }

}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5fjjaen5eo],
.components-reconnect-repeated-attempt-visible[b-5fjjaen5eo],
.components-reconnect-failed-visible[b-5fjjaen5eo],
.components-pause-visible[b-5fjjaen5eo],
.components-resume-failed-visible[b-5fjjaen5eo],
.components-rejoining-animation[b-5fjjaen5eo] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-retrying[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-failed[b-5fjjaen5eo],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5fjjaen5eo] {
    display: block;
}


#components-reconnect-modal[b-5fjjaen5eo] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-5fjjaen5eo 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-5fjjaen5eo 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5fjjaen5eo 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-5fjjaen5eo]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5fjjaen5eo 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5fjjaen5eo {
    0% {
        transform: translateY(30px) scale(0.95);
    }

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

@keyframes components-reconnect-modal-fadeInOpacity-b-5fjjaen5eo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5fjjaen5eo {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5fjjaen5eo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5fjjaen5eo] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5fjjaen5eo] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-5fjjaen5eo] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-5fjjaen5eo] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-5fjjaen5eo] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-5fjjaen5eo] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-5fjjaen5eo 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-5fjjaen5eo] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-5fjjaen5eo {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/AgentManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 代理管理

  桌面 / 平板 / 手机
==============================================================*/


.member-page[b-s7s4rsrajx] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  页面标题
==============================================================*/

.page-title-row[b-s7s4rsrajx] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-s7s4rsrajx] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-s7s4rsrajx] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  卡片
==============================================================*/

.winner-card[b-s7s4rsrajx] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;

    border: 1px solid #d8dee8;
    border-radius: 6px;

    background: #ffffff;
}

.card-header[b-s7s4rsrajx] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-s7s4rsrajx] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-s7s4rsrajx] {
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-s7s4rsrajx] {
    padding: 10px;
}

.edit-grid[b-s7s4rsrajx] {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(180px, 1fr)
        );

    gap: 8px 16px;
}

.field[b-s7s4rsrajx] {
    min-width: 0;
}

.field > label[b-s7s4rsrajx] {
    display: block;

    margin-bottom: 3px;

    color: #475467;

    font-size: 12px;
    line-height: 17px;
}

.control[b-s7s4rsrajx] {
    width: 100%;
    height: 26px;
    min-height: 26px;

    box-sizing: border-box;

    padding: 0 7px;

    border: 1px solid #cfd6df;
    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-s7s4rsrajx] {
    border-color: #1677ff;

    box-shadow:
            0 0 0 2px
            rgba(22, 119, 255, 0.10);
}

.control:disabled[b-s7s4rsrajx],
.readonly-control[b-s7s4rsrajx] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.remark-field[b-s7s4rsrajx] {
    grid-column: span 2;
}

.status-field[b-s7s4rsrajx] {
    min-height: 46px;
}

.checkbox-wrap[b-s7s4rsrajx] {
    height: 26px;

    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
}

.checkbox-wrap input[b-s7s4rsrajx] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.checkbox-wrap label[b-s7s4rsrajx] {
    margin: 0;
    cursor: pointer;
}

.status-hint[b-s7s4rsrajx] {
    margin-left: 4px;

    color: #98a2b3;

    font-size: 11px;
}


/*==============================================================
  编辑按钮
==============================================================*/

.edit-footer[b-s7s4rsrajx] {
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.edit-actions[b-s7s4rsrajx] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-s7s4rsrajx] {
    min-width: 0;

    overflow: hidden;

    color: #176b3a;

    font-size: 12px;

    text-align: right;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-s7s4rsrajx] {
    min-width: 80px;
    height: 30px;

    box-sizing: border-box;

    padding: 0 12px;

    border-radius: 4px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.btn-primary[b-s7s4rsrajx] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-s7s4rsrajx] {
    background: #0f68e6;
}

.btn-secondary[b-s7s4rsrajx] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-s7s4rsrajx] {
    background: #eef1f5;
}

.btn-danger[b-s7s4rsrajx] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-s7s4rsrajx] {
    background: #cf1020;
}

.btn:disabled[b-s7s4rsrajx] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-s7s4rsrajx] {
    padding: 10px;
}

.query-grid[b-s7s4rsrajx] {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(150px, 1fr)
        );

    gap: 8px 12px;
}

.query-actions[b-s7s4rsrajx] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;

    margin-top: 10px;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-s7s4rsrajx],
.empty-panel[b-s7s4rsrajx],
.error-panel[b-s7s4rsrajx] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-s7s4rsrajx],
.empty-panel[b-s7s4rsrajx] {
    padding: 28px 16px;

    color: #667085;
    text-align: center;
}

.error-panel[b-s7s4rsrajx] {
    margin-bottom: 10px;
    padding: 8px 11px;

    border: 1px solid #f5c2c0;

    background: #fff1f0;

    color: #b42318;
}


/*==============================================================
  列表
==============================================================*/

.member-list-card[b-s7s4rsrajx] {
    margin-bottom: 0;
}

.list-header[b-s7s4rsrajx] {
    justify-content: space-between;
}

.record-count[b-s7s4rsrajx] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-s7s4rsrajx] {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.member-table[b-s7s4rsrajx] {
    width: 100%;
    min-width: 900px;

    border-collapse: collapse;
    table-layout: auto;

    font-size: 12px;
}

.member-table th[b-s7s4rsrajx],
.member-table td[b-s7s4rsrajx] {
    height: 34px;

    box-sizing: border-box;

    padding: 5px 8px;

    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}

.member-table th:last-child[b-s7s4rsrajx],
.member-table td:last-child[b-s7s4rsrajx] {
    border-right: 0;
}

.member-table thead th[b-s7s4rsrajx] {
    height: 34px;

    background: #f6f8fb;

    color: #344054;

    font-weight: 700;
}

.member-row[b-s7s4rsrajx] {
    cursor: pointer;
}

.member-row:hover[b-s7s4rsrajx] {
    background: #f5f9ff;
}

.selected-row[b-s7s4rsrajx] {
    background: #eaf3ff !important;
}

.selected-row td[b-s7s4rsrajx] {
    border-bottom-color: #bad6ff;
}

.disabled-row td[b-s7s4rsrajx] {
    color: #98a2b3;
}

.id-column[b-s7s4rsrajx] {
    width: 70px;
}

.status-column[b-s7s4rsrajx] {
    width: 80px;
}

.remark-column[b-s7s4rsrajx] {
    min-width: 140px;
}

.account-cell[b-s7s4rsrajx] {
    color: #1d4f91;

    font-weight: 600;
}

.remark-cell[b-s7s4rsrajx] {
    max-width: 240px;

    overflow: hidden;

    text-overflow: ellipsis;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-s7s4rsrajx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 21px;

    box-sizing: border-box;

    padding: 0 7px;

    border-radius: 10px;

    font-size: 11px;
    font-weight: 600;
}

.status-enabled[b-s7s4rsrajx] {
    background: #eaf8ef;
    color: #16794b;
}

.status-disabled[b-s7s4rsrajx] {
    background: #f2f4f7;
    color: #667085;
}


/*==============================================================
  弹窗遮罩

  删除确认 / 代理域名绑定 共用
==============================================================*/

.dialog-mask[b-s7s4rsrajx] {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 20px;

    background:
            rgba(
                    15,
                    23,
                    42,
                    0.42
            );

    overflow: auto;
}


/*==============================================================
  弹窗主体
==============================================================*/

.confirm-dialog[b-s7s4rsrajx] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;

    box-sizing: border-box;

    padding: 18px;

    border: 1px solid #d8dee8;
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
            0 18px 48px
            rgba(
                    15,
                    23,
                    42,
                    0.20
            );

    color: #1f2937;
}


/*==============================================================
  域名绑定弹窗

  桌面端固定尺寸：
  920 × 560

  加载中 / 空数据 / 有数据时，
  弹窗外框尺寸保持一致，不再忽大忽小。
==============================================================*/

.domain-binding-dialog[b-s7s4rsrajx] {
    width: 920px;
    height: 560px;

    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.domain-binding-dialog > .confirm-dialog-title[b-s7s4rsrajx],
.domain-binding-dialog > .confirm-dialog-text[b-s7s4rsrajx],
.domain-binding-dialog > .error-panel[b-s7s4rsrajx],
.domain-binding-dialog > .confirm-dialog-actions[b-s7s4rsrajx] {
    flex: 0 0 auto;
}

.domain-binding-dialog > .empty-panel[b-s7s4rsrajx] {
    flex: 1 1 auto;

    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.domain-binding-table-wrap[b-s7s4rsrajx] {
    flex: 1 1 auto;

    min-height: 0;

    margin-top: 8px;

    overflow: auto;
}

.domain-binding-dialog .confirm-dialog-actions[b-s7s4rsrajx] {
    margin-top: 12px;
}

.confirm-dialog-title[b-s7s4rsrajx] {
    margin-bottom: 12px;

    color: #1f2937;

    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.confirm-dialog-text[b-s7s4rsrajx] {
    color: #344054;

    font-size: 13px;
    line-height: 22px;
}

.confirm-dialog-note[b-s7s4rsrajx] {
    margin-top: 10px;

    padding: 9px 10px;

    border-radius: 5px;

    background: #f8f9fb;

    color: #667085;

    font-size: 12px;
    line-height: 20px;
}

.confirm-dialog-actions[b-s7s4rsrajx] {
    margin-top: 16px;

    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


/*==============================================================
  弹窗中的错误提示
==============================================================*/

.confirm-dialog .error-panel[b-s7s4rsrajx] {
    margin-top: 10px;
    margin-bottom: 0;
}


/*==============================================================
  弹窗中的列表

  域名绑定弹窗会复用 member-table / table-scroll。
==============================================================*/

.confirm-dialog .table-scroll[b-s7s4rsrajx] {
    width: 100%;
    min-height: 0;

    border: 1px solid #e4e8ef;
    border-radius: 5px;
}

.confirm-dialog .member-table[b-s7s4rsrajx] {
    min-width: 760px;
}

.confirm-dialog .member-table thead th[b-s7s4rsrajx] {
    position: sticky;
    top: 0;

    z-index: 1;

    background: #f6f8fb;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .query-grid[b-s7s4rsrajx] {
        grid-template-columns:
            repeat(
                3,
                minmax(160px, 1fr)
            );
    }

}


/*==============================================================
  平板
==============================================================*/

@media (max-width: 900px) {

    .edit-grid[b-s7s4rsrajx] {
        grid-template-columns:
            repeat(
                2,
                minmax(160px, 1fr)
            );
    }

    .remark-field[b-s7s4rsrajx] {
        grid-column: span 2;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .member-page[b-s7s4rsrajx] {
        padding: 10px;
    }

    .edit-grid[b-s7s4rsrajx],
    .query-grid[b-s7s4rsrajx] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .remark-field[b-s7s4rsrajx] {
        grid-column: auto;
    }

    .control[b-s7s4rsrajx] {
        height: 34px;
        min-height: 34px;

        padding: 0 9px;

        font-size: 13px;
    }

    .checkbox-wrap[b-s7s4rsrajx] {
        height: 34px;

        font-size: 13px;
    }

    .edit-footer[b-s7s4rsrajx] {
        display: block;
    }

    .edit-actions[b-s7s4rsrajx] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-s7s4rsrajx] {
        margin-top: 8px;

        text-align: left;
        white-space: normal;
    }

    .query-actions[b-s7s4rsrajx] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .btn[b-s7s4rsrajx] {
        width: 100%;
        height: 36px;

        font-size: 13px;
    }

    .table-scroll[b-s7s4rsrajx] {
        -webkit-overflow-scrolling: touch;
    }


    /*==========================================================
      手机弹窗
    ==========================================================*/

    .dialog-mask[b-s7s4rsrajx] {
        align-items: flex-start;

        padding: 12px;

        overflow-y: auto;
    }

    .confirm-dialog[b-s7s4rsrajx] {
        width: 100%;
        max-width: none;

        margin: 12px 0;

        padding: 15px;
    }


    .domain-binding-dialog[b-s7s4rsrajx] {
        width: 100%;
        height: calc(100vh - 48px);

        max-width: none;
        max-height: none;

        margin: 12px 0;
    }

    .confirm-dialog-title[b-s7s4rsrajx] {
        font-size: 18px;
        line-height: 26px;
    }

    .confirm-dialog-actions[b-s7s4rsrajx] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .confirm-dialog .member-table[b-s7s4rsrajx] {
        min-width: 680px;
    }

}


/*==============================================================
  小手机
==============================================================*/

@media (max-width: 420px) {

    .edit-actions[b-s7s4rsrajx],
    .query-actions[b-s7s4rsrajx],
    .confirm-dialog-actions[b-s7s4rsrajx] {
        grid-template-columns: 1fr;
    }

}
/* /Components/Pages/CompanyAccountManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 公司账户管理
==============================================================*/

.account-page[b-ummrq1h4wx] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}

.page-title-row[b-ummrq1h4wx] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-ummrq1h4wx] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-ummrq1h4wx] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.page-title-note[b-ummrq1h4wx] {
    margin-left: auto;
    color: #8a94a3;
    font-size: 11px;
}

.winner-card[b-ummrq1h4wx] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background: #ffffff;
}

.card-header[b-ummrq1h4wx] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-ummrq1h4wx] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-ummrq1h4wx] {
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
}

.tab-strip[b-ummrq1h4wx] {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 5px 10px 0;
    border-bottom: 1px solid #e4e8ef;
    background: #fbfcfe;
}

.tab-button[b-ummrq1h4wx] {
    height: 29px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    background: transparent;
    color: #667085;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.tab-button:hover[b-ummrq1h4wx] {
    color: #175cd3;
    background: #f2f6ff;
}

.tab-button.active[b-ummrq1h4wx] {
    border-color: #d8dee8;
    background: #ffffff;
    color: #175cd3;
}

.edit-body[b-ummrq1h4wx] {
    padding: 10px;
}

.basic-grid[b-ummrq1h4wx],
.fee-grid[b-ummrq1h4wx] {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 8px 16px;
}

.field[b-ummrq1h4wx] {
    min-width: 0;
}

.field > label[b-ummrq1h4wx] {
    display: block;
    margin-bottom: 3px;
    color: #475467;
    font-size: 12px;
    line-height: 17px;
}

.control[b-ummrq1h4wx] {
    width: 100%;
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-ummrq1h4wx] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.control:disabled[b-ummrq1h4wx],
.readonly-control[b-ummrq1h4wx] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.wide-field[b-ummrq1h4wx] {
    grid-column: span 2;
}

.purpose-field[b-ummrq1h4wx],
.status-field[b-ummrq1h4wx] {
    min-height: 46px;
}

.purpose-list[b-ummrq1h4wx] {
    min-height: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 12px;
}

.purpose-option[b-ummrq1h4wx] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    color: #344054;
    font-size: 12px;
    cursor: pointer;
}

.purpose-option input[b-ummrq1h4wx] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.checkbox-wrap[b-ummrq1h4wx] {
    height: 26px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.checkbox-wrap input[b-ummrq1h4wx] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.checkbox-wrap label[b-ummrq1h4wx] {
    margin: 0;
    cursor: pointer;
}

.status-hint[b-ummrq1h4wx] {
    margin-left: 4px;
    color: #98a2b3;
    font-size: 11px;
}

.fee-panel[b-ummrq1h4wx] {
    min-height: 98px;
}

.tier-section[b-ummrq1h4wx] {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #edf0f4;
}

.tier-header[b-ummrq1h4wx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.tier-title[b-ummrq1h4wx] {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.tier-add-button[b-ummrq1h4wx] {
    min-width: 76px;
    height: 27px;
}

.tier-empty[b-ummrq1h4wx] {
    padding: 18px 10px;
    border: 1px dashed #d8dee8;
    border-radius: 5px;
    color: #98a2b3;
    font-size: 12px;
    text-align: center;
}

.tier-table-wrap[b-ummrq1h4wx] {
    width: 100%;
    overflow-x: auto;
}

.tier-table[b-ummrq1h4wx] {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 12px;
}

.tier-table th[b-ummrq1h4wx],
.tier-table td[b-ummrq1h4wx] {
    height: 32px;
    box-sizing: border-box;
    padding: 4px 6px;
    border: 1px solid #e4e8ef;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.tier-table th[b-ummrq1h4wx] {
    background: #f6f8fb;
    color: #344054;
    font-weight: 700;
}

.tier-table th:first-child[b-ummrq1h4wx],
.tier-table td:first-child[b-ummrq1h4wx] {
    width: 55px;
}

.tier-table th:last-child[b-ummrq1h4wx],
.tier-table td:last-child[b-ummrq1h4wx] {
    width: 72px;
}

.tier-control[b-ummrq1h4wx] {
    width: 100%;
    height: 24px;
    min-height: 24px;
    box-sizing: border-box;
    padding: 0 5px;
    border: 1px solid #cfd6df;
    border-radius: 3px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.tier-control:focus[b-ummrq1h4wx] {
    border-color: #1677ff;
}

.tier-control:disabled[b-ummrq1h4wx] {
    background: #f2f4f7;
    color: #667085;
}

.tier-delete-button[b-ummrq1h4wx] {
    min-width: 48px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #f1b8bc;
    border-radius: 3px;
    background: #fff7f7;
    color: #c5221f;
    font-size: 11px;
    cursor: pointer;
}

.tier-delete-button:hover:not(:disabled)[b-ummrq1h4wx] {
    background: #ffecec;
}

.tier-delete-button:disabled[b-ummrq1h4wx] {
    opacity: 0.5;
    cursor: not-allowed;
}

.edit-footer[b-ummrq1h4wx] {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.edit-actions[b-ummrq1h4wx] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-ummrq1h4wx] {
    min-width: 0;
    overflow: hidden;
    color: #176b3a;
    font-size: 12px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn[b-ummrq1h4wx] {
    min-width: 80px;
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary[b-ummrq1h4wx] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-ummrq1h4wx] {
    background: #0f68e6;
}

.btn-secondary[b-ummrq1h4wx] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-ummrq1h4wx] {
    background: #eef1f5;
}

.btn-danger[b-ummrq1h4wx] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-ummrq1h4wx] {
    background: #cf1020;
}

.btn:disabled[b-ummrq1h4wx] {
    opacity: 0.55;
    cursor: not-allowed;
}

.query-body[b-ummrq1h4wx] {
    padding: 10px;
}

.query-grid[b-ummrq1h4wx] {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 8px 12px;
}

.query-keyword-field[b-ummrq1h4wx] {
    grid-column: span 2;
}

.query-actions[b-ummrq1h4wx] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 10px;
}

.loading-panel[b-ummrq1h4wx],
.empty-panel[b-ummrq1h4wx],
.error-panel[b-ummrq1h4wx] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-ummrq1h4wx],
.empty-panel[b-ummrq1h4wx] {
    padding: 28px 16px;
    color: #667085;
    text-align: center;
}

.error-panel[b-ummrq1h4wx] {
    margin-bottom: 10px;
    padding: 8px 11px;
    border: 1px solid #f5c2c0;
    background: #fff1f0;
    color: #b42318;
}

.account-list-card[b-ummrq1h4wx] {
    margin-bottom: 0;
}

.list-header[b-ummrq1h4wx] {
    justify-content: space-between;
}

.record-count[b-ummrq1h4wx] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-ummrq1h4wx] {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.account-table[b-ummrq1h4wx] {
    width: 100%;
    min-width: 1280px;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 12px;
}

.account-table th[b-ummrq1h4wx],
.account-table td[b-ummrq1h4wx] {
    height: 34px;
    box-sizing: border-box;
    padding: 5px 8px;
    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.account-table th:last-child[b-ummrq1h4wx],
.account-table td:last-child[b-ummrq1h4wx] {
    border-right: 0;
}

.account-table thead th[b-ummrq1h4wx] {
    height: 34px;
    background: #f6f8fb;
    color: #344054;
    font-weight: 700;
}

.account-row[b-ummrq1h4wx] {
    cursor: pointer;
}

.account-row:hover[b-ummrq1h4wx] {
    background: #f5f9ff;
}

.selected-row[b-ummrq1h4wx] {
    background: #eaf3ff !important;
}

.selected-row td[b-ummrq1h4wx] {
    border-bottom-color: #bad6ff;
}

.disabled-row td[b-ummrq1h4wx] {
    color: #98a2b3;
}

.sequence-column[b-ummrq1h4wx] {
    width: 64px;
}

.status-column[b-ummrq1h4wx] {
    width: 76px;
}

.remark-column[b-ummrq1h4wx] {
    min-width: 130px;
}

.account-number-cell[b-ummrq1h4wx] {
    max-width: 260px;
    overflow: hidden;
    color: #1d4f91;
    font-weight: 600;
    text-align: left !important;
    text-overflow: ellipsis;
}

.amount-cell[b-ummrq1h4wx] {
    text-align: right !important;
}

.remark-cell[b-ummrq1h4wx] {
    max-width: 240px;
    overflow: hidden;
    text-align: left !important;
    text-overflow: ellipsis;
}

.status-badge[b-ummrq1h4wx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 21px;
    box-sizing: border-box;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.status-enabled[b-ummrq1h4wx] {
    background: #eaf8ef;
    color: #16794b;
}

.status-disabled[b-ummrq1h4wx] {
    background: #f2f4f7;
    color: #667085;
}

.dialog-mask[b-ummrq1h4wx] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(15, 23, 42, 0.42);
    overflow: auto;
}

.confirm-dialog[b-ummrq1h4wx] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.20);
    color: #1f2937;
}

.confirm-dialog-title[b-ummrq1h4wx] {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.confirm-dialog-text[b-ummrq1h4wx] {
    color: #344054;
    font-size: 13px;
    line-height: 22px;
}

.confirm-dialog-note[b-ummrq1h4wx] {
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    background: #f8f9fb;
    color: #667085;
    font-size: 12px;
    line-height: 20px;
}

.confirm-dialog-actions[b-ummrq1h4wx] {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 1180px) {
    .basic-grid[b-ummrq1h4wx],
    .fee-grid[b-ummrq1h4wx] {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .query-grid[b-ummrq1h4wx] {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (max-width: 900px) {
    .page-title-note[b-ummrq1h4wx] {
        display: none;
    }
}

@media (max-width: 680px) {
    .account-page[b-ummrq1h4wx] {
        padding: 10px;
    }

    .tab-strip[b-ummrq1h4wx] {
        overflow-x: auto;
    }

    .tab-button[b-ummrq1h4wx] {
        flex: 0 0 auto;
    }

    .basic-grid[b-ummrq1h4wx],
    .fee-grid[b-ummrq1h4wx],
    .query-grid[b-ummrq1h4wx] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wide-field[b-ummrq1h4wx],
    .query-keyword-field[b-ummrq1h4wx] {
        grid-column: auto;
    }

    .control[b-ummrq1h4wx] {
        height: 34px;
        min-height: 34px;
        padding: 0 9px;
        font-size: 13px;
    }

    .checkbox-wrap[b-ummrq1h4wx] {
        height: 34px;
        font-size: 13px;
    }

    .purpose-list[b-ummrq1h4wx] {
        min-height: 34px;
        font-size: 13px;
    }

    .edit-footer[b-ummrq1h4wx] {
        display: block;
    }

    .edit-actions[b-ummrq1h4wx],
    .query-actions[b-ummrq1h4wx] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-ummrq1h4wx] {
        margin-top: 8px;
        text-align: left;
        white-space: normal;
    }

    .btn[b-ummrq1h4wx] {
        width: 100%;
        height: 36px;
        font-size: 13px;
    }

    .table-scroll[b-ummrq1h4wx],
    .tier-table-wrap[b-ummrq1h4wx] {
        -webkit-overflow-scrolling: touch;
    }

    .dialog-mask[b-ummrq1h4wx] {
        align-items: flex-start;
        padding: 12px;
    }

    .confirm-dialog[b-ummrq1h4wx] {
        width: 100%;
        max-width: none;
        margin: 12px 0;
        padding: 15px;
    }

    .confirm-dialog-actions[b-ummrq1h4wx] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }
}

@media (max-width: 420px) {
    .edit-actions[b-ummrq1h4wx],
    .query-actions[b-ummrq1h4wx],
    .confirm-dialog-actions[b-ummrq1h4wx] {
        grid-template-columns: 1fr;
    }
}

/*==============================================================
  修复：入金设置 / 出金设置动态内容

  这两个标签页中的表单是由 RenderFragment 动态生成。
  Blazor CSS Isolation 不会自动给这些动态元素附加当前页面的
  scope 属性，因此普通 .field / .control / .fee-grid 等规则
  无法命中。

  通过 ::deep 从已有 scope 的 .edit-body 向下应用样式。
==============================================================*/

.edit-body[b-ummrq1h4wx]  .fee-panel {
    min-height: 98px;
}

.edit-body[b-ummrq1h4wx]  .fee-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(180px, 1fr)
        );

    gap: 8px 16px;
}

.edit-body[b-ummrq1h4wx]  .fee-grid .field {
    min-width: 0;
}

.edit-body[b-ummrq1h4wx]  .fee-grid .field > label {
    display: block;

    margin-bottom: 3px;

    color: #475467;

    font-size: 12px;
    line-height: 17px;
}

.edit-body[b-ummrq1h4wx]  .fee-grid .control {
    width: 100%;
    height: 26px;
    min-height: 26px;

    box-sizing: border-box;

    padding: 0 7px;

    border: 1px solid #cfd6df;
    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
}

.edit-body[b-ummrq1h4wx]  .fee-grid .control:focus {
    border-color: #1677ff;

    box-shadow:
            0 0 0 2px
            rgba(22, 119, 255, 0.10);
}

.edit-body[b-ummrq1h4wx]  .fee-grid .control:disabled {
    background: #f2f4f7;

    color: #667085;

    cursor: not-allowed;
}


/*==============================================================
  阶梯手续费
==============================================================*/

.edit-body[b-ummrq1h4wx]  .tier-section {
    margin-top: 10px;

    padding-top: 8px;

    border-top: 1px solid #edf0f4;
}

.edit-body[b-ummrq1h4wx]  .tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 7px;
}

.edit-body[b-ummrq1h4wx]  .tier-title {
    color: #344054;

    font-size: 12px;
    font-weight: 700;
}

.edit-body[b-ummrq1h4wx]  .tier-add-button {
    min-width: 76px;
    height: 27px;

    box-sizing: border-box;

    padding: 0 12px;

    border: 1px solid #d0d5dd;
    border-radius: 4px;

    background: #f8f9fb;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.edit-body[b-ummrq1h4wx]  .tier-add-button:hover:not(:disabled) {
    background: #eef1f5;
}

.edit-body[b-ummrq1h4wx]  .tier-add-button:disabled {
    opacity: 0.55;

    cursor: not-allowed;
}

.edit-body[b-ummrq1h4wx]  .tier-empty {
    padding: 18px 10px;

    border: 1px dashed #d8dee8;
    border-radius: 5px;

    color: #98a2b3;

    font-size: 12px;

    text-align: center;
}

.edit-body[b-ummrq1h4wx]  .tier-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.edit-body[b-ummrq1h4wx]  .tier-table {
    width: 100%;
    min-width: 720px;

    border-collapse: collapse;

    font-size: 12px;
}

.edit-body[b-ummrq1h4wx]  .tier-table th,
.edit-body[b-ummrq1h4wx]  .tier-table td {
    height: 32px;

    box-sizing: border-box;

    padding: 4px 6px;

    border: 1px solid #e4e8ef;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}

.edit-body[b-ummrq1h4wx]  .tier-table th {
    background: #f6f8fb;

    color: #344054;

    font-weight: 700;
}

.edit-body[b-ummrq1h4wx]  .tier-table th:first-child,
.edit-body[b-ummrq1h4wx]  .tier-table td:first-child {
    width: 55px;
}

.edit-body[b-ummrq1h4wx]  .tier-table th:last-child,
.edit-body[b-ummrq1h4wx]  .tier-table td:last-child {
    width: 72px;
}

.edit-body[b-ummrq1h4wx]  .tier-control {
    width: 100%;
    height: 24px;
    min-height: 24px;

    box-sizing: border-box;

    padding: 0 5px;

    border: 1px solid #cfd6df;
    border-radius: 3px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
}

.edit-body[b-ummrq1h4wx]  .tier-control:focus {
    border-color: #1677ff;
}

.edit-body[b-ummrq1h4wx]  .tier-control:disabled {
    background: #f2f4f7;

    color: #667085;
}

.edit-body[b-ummrq1h4wx]  .tier-delete-button {
    min-width: 48px;
    height: 24px;

    padding: 0 8px;

    border: 1px solid #f1b8bc;
    border-radius: 3px;

    background: #fff7f7;

    color: #c5221f;

    font-family: inherit;
    font-size: 11px;

    cursor: pointer;
}

.edit-body[b-ummrq1h4wx]  .tier-delete-button:hover:not(:disabled) {
    background: #ffecec;
}

.edit-body[b-ummrq1h4wx]  .tier-delete-button:disabled {
    opacity: 0.5;

    cursor: not-allowed;
}


/*==============================================================
  动态手续费区响应式
==============================================================*/

@media (max-width: 1180px) {

    .edit-body[b-ummrq1h4wx]  .fee-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(160px, 1fr)
            );
    }

}

@media (max-width: 680px) {

    .edit-body[b-ummrq1h4wx]  .fee-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .edit-body[b-ummrq1h4wx]  .fee-grid .control {
        height: 34px;
        min-height: 34px;

        padding: 0 9px;

        font-size: 13px;
    }

    .edit-body[b-ummrq1h4wx]  .tier-table-wrap {
        -webkit-overflow-scrolling: touch;
    }

}
/* /Components/Pages/CompanyExpenseManagement.razor.rz.scp.css */
.expense-page[b-1xh5g0zeyf] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 18px;
    color: #1f2937;
    font-size: 12px;
}

.page-title-row[b-1xh5g0zeyf] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.page-title-mark[b-1xh5g0zeyf] {
    width: 4px;
    height: 22px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-1xh5g0zeyf] {
    font-size: 18px;
    font-weight: 700;
}

.winner-card[b-1xh5g0zeyf] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 7px;
    border: 1px solid #d8dee8;
    border-radius: 7px;
    background: #ffffff;
}

.card-header[b-1xh5g0zeyf] {
    min-height: 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px 3px;
}

.card-title[b-1xh5g0zeyf] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-1xh5g0zeyf] {
    color: #667085;
    font-size: 12px;
}

.edit-body[b-1xh5g0zeyf] {
    padding: 2px 10px 8px;
}

.edit-grid[b-1xh5g0zeyf] {
    display: grid;
    grid-template-columns: repeat(3, minmax(312px, 1fr));
    column-gap: 18px;
    row-gap: 8px;
    align-items: center;
}

.form-field[b-1xh5g0zeyf] {
    min-width: 0;
    display: grid;
    grid-template-columns: 112px 200px minmax(0, 1fr);
    align-items: center;
}

.form-field > label[b-1xh5g0zeyf] {
    grid-column: 1;
    margin: 0 8px 0 0;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    text-align: right;
    white-space: nowrap;
}

.control[b-1xh5g0zeyf],
.currency-control[b-1xh5g0zeyf] {
    box-sizing: border-box;
    height: 26px;
    min-height: 26px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
}

.control[b-1xh5g0zeyf] {
    grid-column: 2;
    width: 200px;
    padding: 0 7px;
    background: #ffffff;
    color: #344054;
}

.control:focus[b-1xh5g0zeyf],
.query-control:focus[b-1xh5g0zeyf],
.cancel-reason:focus[b-1xh5g0zeyf] {
    border-color: #1677ff;
    box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.12);
}

.control:disabled[b-1xh5g0zeyf],
.readonly-control[b-1xh5g0zeyf],
.currency-control[b-1xh5g0zeyf] {
    background: #f3f6fa;
    color: #667085;
}

.money-control-wrap[b-1xh5g0zeyf] {
    grid-column: 2;
    width: 200px;
    display: grid;
    grid-template-columns: 128px 6px 66px;
    align-items: center;
}

.money-control-wrap .control[b-1xh5g0zeyf] {
    grid-column: 1;
    width: 128px;
}

.currency-control[b-1xh5g0zeyf] {
    grid-column: 3;
    width: 66px;
    padding: 0 5px;
    text-align: center;
}

.amount-input[b-1xh5g0zeyf] {
    text-align: right;
}

.audit-status-editor[b-1xh5g0zeyf] {
    grid-column: 2;
    width: 200px;
    height: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid #d8dee8;
    border-radius: 4px;
    background: #f8fafc;
}

.audit-check[b-1xh5g0zeyf] {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.edit-footer[b-1xh5g0zeyf] {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.edit-actions[b-1xh5g0zeyf],
.query-actions[b-1xh5g0zeyf] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.btn[b-1xh5g0zeyf] {
    min-width: 76px;
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn:disabled[b-1xh5g0zeyf] {
    opacity: 0.58;
    cursor: not-allowed;
}

.btn-primary[b-1xh5g0zeyf] {
    background: #1677ff;
    color: #ffffff;
}

.btn-secondary[b-1xh5g0zeyf] {
    border-color: #cfd6df;
    background: #ffffff;
    color: #344054;
}

.btn-danger[b-1xh5g0zeyf] {
    background: #d32f2f;
    color: #ffffff;
}

.btn-export[b-1xh5g0zeyf] {
    background: #169b45;
    color: #ffffff;
}

.operation-message[b-1xh5g0zeyf] {
    color: #169b45;
    font-size: 12px;
    font-weight: 700;
}

.error-text[b-1xh5g0zeyf] {
    color: #d32f2f;
}

.loading-panel[b-1xh5g0zeyf],
.error-panel[b-1xh5g0zeyf] {
    box-sizing: border-box;
    margin-bottom: 7px;
    padding: 9px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.loading-panel[b-1xh5g0zeyf] {
    border: 1px solid #d8dee8;
    background: #f8fafc;
    color: #475467;
}

.error-panel[b-1xh5g0zeyf] {
    border: 1px solid #f5c2c0;
    background: #fff1f0;
    color: #b42318;
}

.query-body[b-1xh5g0zeyf] {
    padding: 2px 10px 8px;
}

.query-row[b-1xh5g0zeyf] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.query-control[b-1xh5g0zeyf] {
    height: 28px;
    min-height: 28px;
    box-sizing: border-box;
    padding: 0 6px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.company-query[b-1xh5g0zeyf] {
    width: 116px;
}

.quick-date-control[b-1xh5g0zeyf] {
    width: 76px;
}

.date-query[b-1xh5g0zeyf] {
    width: 122px;
}

.type-query[b-1xh5g0zeyf] {
    width: 112px;
}

.account-query[b-1xh5g0zeyf] {
    width: 180px;
}

.status-query[b-1xh5g0zeyf] {
    width: 100px;
}

.query-separator[b-1xh5g0zeyf] {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.query-audit-actions[b-1xh5g0zeyf] {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.query-main-actions[b-1xh5g0zeyf] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.select-all-wrap[b-1xh5g0zeyf] {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.list-card[b-1xh5g0zeyf] {
    margin-bottom: 0;
}

.list-header[b-1xh5g0zeyf] {
    justify-content: space-between;
}

.list-count[b-1xh5g0zeyf] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-1xh5g0zeyf] {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
}

.expense-table[b-1xh5g0zeyf] {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    font-size: 12px;
}

.expense-table th[b-1xh5g0zeyf],
.expense-table td[b-1xh5g0zeyf] {
    box-sizing: border-box;
    height: 30px;
    padding: 0 6px;
    border: 1px solid #d8dee8;
    vertical-align: middle;
}

.expense-table th[b-1xh5g0zeyf] {
    background: #f5f7fa;
    font-weight: 700;
    text-align: center;
}

.expense-table tbody tr[b-1xh5g0zeyf] {
    cursor: pointer;
}

.expense-table tbody tr:hover[b-1xh5g0zeyf] {
    background: #f7fbff;
}

.cancelled-row[b-1xh5g0zeyf] {
    background: #fff4f3;
}

.audit-column[b-1xh5g0zeyf],
.center-column[b-1xh5g0zeyf] {
    text-align: center;
}

.audit-column[b-1xh5g0zeyf] {
    width: 36px;
}

.amount-column[b-1xh5g0zeyf],
.amount-cell[b-1xh5g0zeyf] {
    text-align: right;
}

.expense-positive[b-1xh5g0zeyf] {
    color: #1677ff;
    font-weight: 700;
}

.expense-negative[b-1xh5g0zeyf] {
    color: #d32f2f;
    font-weight: 700;
}

.fee-amount[b-1xh5g0zeyf] {
    color: #1677ff;
    font-weight: 700;
}

.status-text[b-1xh5g0zeyf] {
    font-weight: 700;
}

.status-pending[b-1xh5g0zeyf] {
    color: #f59e0b;
}

.status-audited[b-1xh5g0zeyf] {
    color: #169b45;
}

.status-cancelled[b-1xh5g0zeyf] {
    color: #d32f2f;
}

.empty-row[b-1xh5g0zeyf] {
    height: 56px !important;
    color: #667085;
    text-align: center;
}

.summary-bar[b-1xh5g0zeyf] {
    min-height: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    padding: 6px 10px;
    border-top: 1px solid #d8dee8;
    background: #fafbfc;
}

.summary-item[b-1xh5g0zeyf] {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
}

.summary-item span[b-1xh5g0zeyf] {
    color: #667085;
}

.currency-summary[b-1xh5g0zeyf] {
    padding-left: 12px;
    border-left: 1px solid #d8dee8;
}

.modal-backdrop[b-1xh5g0zeyf] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(17, 24, 39, 0.45);
}

.modal-card[b-1xh5g0zeyf] {
    width: min(520px, 100%);
    box-sizing: border-box;
    padding: 16px;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, 0.2);
}

.modal-title[b-1xh5g0zeyf] {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.modal-text[b-1xh5g0zeyf] {
    margin-bottom: 10px;
    font-size: 12px;
}

.cancel-reason[b-1xh5g0zeyf] {
    width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    padding: 8px;
    resize: none;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    font-size: 12px;
}

.modal-actions[b-1xh5g0zeyf] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 12px;
}

@media (max-width: 1180px) {
    .edit-grid[b-1xh5g0zeyf] {
        grid-template-columns: repeat(2, minmax(312px, 1fr));
    }
}

@media (max-width: 760px) {
    .expense-page[b-1xh5g0zeyf] {
        padding: 10px;
    }

    .edit-grid[b-1xh5g0zeyf] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-field[b-1xh5g0zeyf] {
        display: block;
    }

    .form-field > label[b-1xh5g0zeyf] {
        display: block;
        margin: 0 0 3px;
        line-height: 17px;
        text-align: left;
    }

    .control[b-1xh5g0zeyf],
    .money-control-wrap[b-1xh5g0zeyf],
    .audit-status-editor[b-1xh5g0zeyf] {
        width: 100%;
    }

    .money-control-wrap[b-1xh5g0zeyf] {
        grid-template-columns: minmax(0, 1fr) 6px 70px;
    }

    .money-control-wrap .control[b-1xh5g0zeyf] {
        width: 100%;
    }

    .currency-control[b-1xh5g0zeyf] {
        width: 70px;
    }

    .control[b-1xh5g0zeyf],
    .currency-control[b-1xh5g0zeyf] {
        height: 34px;
        min-height: 34px;
        font-size: 13px;
    }

    .audit-status-editor[b-1xh5g0zeyf] {
        height: 34px;
    }

    .query-control[b-1xh5g0zeyf] {
        height: 34px;
        min-height: 34px;
        font-size: 13px;
    }

    .company-query[b-1xh5g0zeyf],
    .quick-date-control[b-1xh5g0zeyf],
    .date-query[b-1xh5g0zeyf],
    .type-query[b-1xh5g0zeyf],
    .account-query[b-1xh5g0zeyf],
    .status-query[b-1xh5g0zeyf] {
        width: 100%;
    }

    .query-separator[b-1xh5g0zeyf] {
        display: none;
    }

    .query-audit-actions[b-1xh5g0zeyf] {
        width: 100%;
        flex-wrap: wrap;
    }

    .query-main-actions[b-1xh5g0zeyf] {
        width: 100%;
        margin-left: 0;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .edit-actions[b-1xh5g0zeyf] {
        width: 100%;
    }

    .btn[b-1xh5g0zeyf] {
        min-width: 96px;
        height: 34px;
        flex: 1 1 auto;
    }
}
/* /Components/Pages/CompanyExpenseTypeManagement.razor.rz.scp.css */
.expense-type-page[b-s74b7ivvol] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    height: 100%;
    font-size: 12px;
}

.page-title-row[b-s74b7ivvol] {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-title-mark[b-s74b7ivvol] {
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background: #1677ff;
    flex: 0 0 auto;
}

.page-title[b-s74b7ivvol] {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #1f2937;
}

.page-title-actions[b-s74b7ivvol] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.winner-card[b-s74b7ivvol] {
    background: #fff;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    min-width: 0;
    overflow: hidden;
}

.card-header[b-s74b7ivvol] {
    min-height: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    border-bottom: 1px solid #e4e8ef;
    background: #fbfcfe;
}

.card-title[b-s74b7ivvol] {
    font-size: 12px;
    font-weight: 700;
    color: #263238;
}

.company-name[b-s74b7ivvol] {
    margin-left: auto;
    color: #475467;
    font-weight: 600;
}

.edit-indicator[b-s74b7ivvol] {
    color: #1677ff;
    font-weight: 600;
}

.edit-body[b-s74b7ivvol] {
    padding: 8px 10px;
}

.edit-grid[b-s74b7ivvol] {
    display: grid;
    grid-template-columns:
        minmax(270px, 1fr)
        minmax(190px, 0.65fr)
        minmax(300px, 1.15fr);
    gap: 8px 18px;
    align-items: center;
}

.form-field[b-s74b7ivvol],
.query-field[b-s74b7ivvol] {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.compact-field[b-s74b7ivvol] {
    grid-template-columns: 52px minmax(90px, 110px);
}

.status-field[b-s74b7ivvol] {
    grid-template-columns: 46px minmax(0, 1fr);
}

.remark-field[b-s74b7ivvol] {
    grid-column: 1 / span 2;
}

.form-field label[b-s74b7ivvol],
.query-field label[b-s74b7ivvol] {
    margin: 0;
    font-size: 12px;
    color: #344054;
    white-space: nowrap;
}

.control[b-s74b7ivvol] {
    width: 100%;
    min-width: 0;
    height: 26px;
    padding: 2px 7px;
    border: 1px solid #cfd7e3;
    border-radius: 4px;
    background: #fff;
    color: #1f2937;
    font-size: 12px;
    outline: none;
    box-sizing: border-box;
}

.control:focus[b-s74b7ivvol] {
    border-color: #1677ff;
    box-shadow: 0 0 0 1px rgba(22, 119, 255, 0.12);
}

.control:disabled[b-s74b7ivvol] {
    background: #f4f6f8;
    color: #8a8f98;
    cursor: not-allowed;
}

.status-editor[b-s74b7ivvol] {
    min-height: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.edit-status[b-s74b7ivvol] {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.edit-status-enabled[b-s74b7ivvol] {
    color: #169b45;
}

.edit-status-disabled[b-s74b7ivvol] {
    color: #d32f2f;
}

.checkbox-label[b-s74b7ivvol] {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    width: auto !important;
    cursor: pointer;
}

.checkbox-label input[b-s74b7ivvol] {
    margin: 0;
}

.sort-note[b-s74b7ivvol] {
    color: #8a8f98;
    font-size: 11px;
    white-space: nowrap;
}

.editor-actions[b-s74b7ivvol] {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.btn[b-s74b7ivvol] {
    height: 30px;
    min-width: 82px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid #cfd7e3;
    font-size: 12px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.btn:disabled[b-s74b7ivvol] {
    cursor: not-allowed;
    opacity: 0.58;
}

.btn-primary[b-s74b7ivvol] {
    border-color: #1677ff;
    background: #1677ff;
    color: #fff;
    font-weight: 600;
}

.btn-secondary[b-s74b7ivvol] {
    background: #fff;
    color: #344054;
}

.btn-danger[b-s74b7ivvol] {
    border-color: #e81123;
    background: #e81123;
    color: #fff;
    font-weight: 600;
}

.loading-panel[b-s74b7ivvol],
.error-panel[b-s74b7ivvol],
.message-panel[b-s74b7ivvol] {
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
}

.loading-panel[b-s74b7ivvol] {
    background: #f6f8fb;
    border: 1px solid #d8dee8;
    color: #475467;
}

.error-panel[b-s74b7ivvol],
.error-message[b-s74b7ivvol] {
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #c62828;
}

.success-message[b-s74b7ivvol] {
    background: #f0fff4;
    border: 1px solid #b7ebc6;
    color: #16823b;
}

.query-card[b-s74b7ivvol] {
    padding: 6px 10px;
}

.query-grid[b-s74b7ivvol] {
    display: grid;
    grid-template-columns:
        minmax(250px, 340px)
        minmax(180px, 220px)
        1fr;
    gap: 10px 18px;
    align-items: center;
}

.query-field[b-s74b7ivvol] {
    grid-template-columns: auto minmax(0, 1fr);
}

.query-actions[b-s74b7ivvol] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    align-items: center;
}

.table-card[b-s74b7ivvol] {
    min-height: 220px;
}

.record-count[b-s74b7ivvol] {
    margin-left: auto;
    color: #667085;
}

.table-scroll[b-s74b7ivvol] {
    overflow: auto;
    max-height: calc(100vh - 430px);
    min-height: 180px;
}

.winner-table[b-s74b7ivvol] {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    table-layout: auto;
    font-size: 12px;
}

.winner-table th[b-s74b7ivvol],
.winner-table td[b-s74b7ivvol] {
    height: 28px;
    padding: 0 6px;
    border-right: 1px solid #d8dee8;
    border-bottom: 1px solid #d8dee8;
    vertical-align: middle;
    white-space: nowrap;
}

.winner-table th:last-child[b-s74b7ivvol],
.winner-table td:last-child[b-s74b7ivvol] {
    border-right: 0;
}

.winner-table thead th[b-s74b7ivvol] {
    position: sticky;
    top: 0;
    z-index: 2;
    height: 30px;
    background: #eef4fb;
    color: #344054;
    font-weight: 700;
    text-align: center;
}

.data-row[b-s74b7ivvol] {
    cursor: pointer;
    background: #fff;
}

.data-row:hover[b-s74b7ivvol] {
    background: #f6faff;
}

.selected-row[b-s74b7ivvol] {
    background: #eaf3ff !important;
}

.disabled-row:not(.selected-row)[b-s74b7ivvol] {
    background: #fafafa;
    color: #667085;
}

.left-col[b-s74b7ivvol] {
    text-align: left;
}

.center-col[b-s74b7ivvol] {
    text-align: center;
}

.sequence-col[b-s74b7ivvol] {
    width: 58px;
}

.type-col[b-s74b7ivvol] {
    min-width: 130px;
}

.sort-col[b-s74b7ivvol] {
    width: 70px;
}

.status-col[b-s74b7ivvol] {
    width: 74px;
}

.remark-col[b-s74b7ivvol] {
    min-width: 180px;
}

.person-col[b-s74b7ivvol] {
    min-width: 100px;
}

.time-col[b-s74b7ivvol],
.time-cell[b-s74b7ivvol] {
    min-width: 145px;
}

.ellipsis-cell[b-s74b7ivvol] {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-badge[b-s74b7ivvol] {
    font-weight: 700;
}

.status-enabled[b-s74b7ivvol] {
    color: #169b45;
}

.status-disabled[b-s74b7ivvol] {
    color: #d32f2f;
}

.empty-cell[b-s74b7ivvol] {
    height: 90px !important;
    text-align: center;
    color: #8a8f98;
}

.table-footer[b-s74b7ivvol] {
    min-height: 30px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    border-top: 1px solid #e4e8ef;
}

.modal-backdrop[b-s74b7ivvol] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.42);
}

.modal-card[b-s74b7ivvol] {
    width: min(460px, calc(100vw - 32px));
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.modal-title[b-s74b7ivvol] {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #e4e8ef;
    font-size: 14px;
    font-weight: 700;
}

.modal-body[b-s74b7ivvol] {
    padding: 16px 14px;
    color: #344054;
    line-height: 1.8;
}

.modal-note[b-s74b7ivvol] {
    color: #667085;
    font-size: 11px;
}

.modal-actions[b-s74b7ivvol] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px 14px 14px;
}

@media (max-width: 1100px) {
    .edit-grid[b-s74b7ivvol] {
        grid-template-columns: 1fr 1fr;
    }

    .status-field[b-s74b7ivvol],
    .remark-field[b-s74b7ivvol] {
        grid-column: auto;
    }

    .editor-actions[b-s74b7ivvol] {
        grid-column: 1 / -1;
    }

    .query-grid[b-s74b7ivvol] {
        grid-template-columns: 1fr 1fr;
    }

    .query-actions[b-s74b7ivvol] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .expense-type-page[b-s74b7ivvol] {
        gap: 6px;
    }

    .page-title-row[b-s74b7ivvol] {
        flex-wrap: wrap;
    }

    .page-title-actions[b-s74b7ivvol] {
        width: 100%;
        margin-left: 14px;
    }

    .edit-grid[b-s74b7ivvol],
    .query-grid[b-s74b7ivvol] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-field[b-s74b7ivvol],
    .query-field[b-s74b7ivvol],
    .compact-field[b-s74b7ivvol],
    .status-field[b-s74b7ivvol] {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .remark-field[b-s74b7ivvol],
    .editor-actions[b-s74b7ivvol],
    .query-actions[b-s74b7ivvol] {
        grid-column: auto;
    }

    .editor-actions[b-s74b7ivvol],
    .query-actions[b-s74b7ivvol] {
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-left: 98px;
    }

    .status-editor[b-s74b7ivvol] {
        flex-wrap: wrap;
    }

    .sort-note[b-s74b7ivvol] {
        width: 100%;
    }

    .company-name[b-s74b7ivvol] {
        margin-left: 0;
    }

    .edit-indicator[b-s74b7ivvol] {
        width: 100%;
    }

    .table-scroll[b-s74b7ivvol] {
        max-height: none;
    }
}
/* /Components/Pages/DepositManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 入金管理

  桌面 / 平板 / 手机响应式
==============================================================*/

.deposit-page[b-4xcah0ko9v] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  标题
==============================================================*/

.page-title-row[b-4xcah0ko9v] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-4xcah0ko9v] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-4xcah0ko9v] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  通用卡片
==============================================================*/

.winner-card[b-4xcah0ko9v] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background: #ffffff;
}

.card-header[b-4xcah0ko9v] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-4xcah0ko9v] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-4xcah0ko9v] {
    max-width: 60%;
    overflow: hidden;
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-4xcah0ko9v] {
    padding: 10px;
}

.edit-grid[b-4xcah0ko9v] {
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 8px 16px;
}

.form-field[b-4xcah0ko9v] {
    min-width: 0;
}

.form-field > label[b-4xcah0ko9v] {
    display: block;
    margin-bottom: 3px;
    color: #475467;
    font-size: 12px;
    line-height: 17px;
}

.control[b-4xcah0ko9v] {
    width: 100%;
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-4xcah0ko9v] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.control:disabled[b-4xcah0ko9v],
.readonly-control[b-4xcah0ko9v] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.amount-input[b-4xcah0ko9v] {
    text-align: right;
}

.fee-control-wrap[b-4xcah0ko9v] {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(120px, 1.15fr);
    gap: 6px;
}

.fee-rule-text[b-4xcah0ko9v] {
    height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    overflow: hidden;
    border: 1px solid #e0e5ec;
    border-radius: 4px;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audit-status-editor[b-4xcah0ko9v] {
    height: 26px;
    display: flex;
    align-items: center;
}

.audit-check[b-4xcah0ko9v] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #344054;
    font-size: 12px;
    cursor: pointer;
}

.audit-check input[b-4xcah0ko9v] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.status-text[b-4xcah0ko9v] {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.edit-footer[b-4xcah0ko9v] {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.edit-actions[b-4xcah0ko9v] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-4xcah0ko9v] {
    min-width: 0;
    overflow: hidden;
    font-size: 12px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operation-success[b-4xcah0ko9v] {
    color: #176b3a;
}

.operation-error[b-4xcah0ko9v] {
    color: #b42318;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-4xcah0ko9v] {
    min-width: 78px;
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary[b-4xcah0ko9v] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-4xcah0ko9v] {
    background: #0f68e6;
}

.btn-secondary[b-4xcah0ko9v] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-4xcah0ko9v] {
    background: #eef1f5;
}

.btn-danger[b-4xcah0ko9v] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-4xcah0ko9v] {
    background: #cf1020;
}

.btn-audit[b-4xcah0ko9v] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-export[b-4xcah0ko9v] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn:disabled[b-4xcah0ko9v] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-4xcah0ko9v] {
    padding: 8px 10px 10px;
}

.query-toolbar[b-4xcah0ko9v] {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.query-control[b-4xcah0ko9v] {
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.query-control:focus[b-4xcah0ko9v] {
    border-color: #1677ff;
}

.quick-date-control[b-4xcah0ko9v] {
    width: 88px;
}

.date-control[b-4xcah0ko9v] {
    width: 136px;
}

.company-control[b-4xcah0ko9v] {
    width: 145px;
}

.member-control[b-4xcah0ko9v] {
    width: 145px;
}

.account-control[b-4xcah0ko9v] {
    width: 170px;
}

.status-control[b-4xcah0ko9v] {
    width: 105px;
}

.query-separator[b-4xcah0ko9v] {
    height: 26px;
    display: flex;
    align-items: center;
    color: #667085;
    font-size: 12px;
}

.query-spacer[b-4xcah0ko9v] {
    flex: 1 1 auto;
    min-width: 10px;
}

.select-all-wrap[b-4xcah0ko9v] {
    height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 2px 0 0;
    color: #344054;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
}

.select-all-wrap input[b-4xcah0ko9v] {
    width: 14px;
    height: 14px;
    margin: 0;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-4xcah0ko9v],
.empty-panel[b-4xcah0ko9v],
.error-panel[b-4xcah0ko9v] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-4xcah0ko9v],
.empty-panel[b-4xcah0ko9v] {
    padding: 28px 16px;
    color: #667085;
    text-align: center;
}

.error-panel[b-4xcah0ko9v] {
    margin-bottom: 10px;
    padding: 8px 11px;
    border: 1px solid #f5c2c0;
    background: #fff1f0;
    color: #b42318;
}


/*==============================================================
  表格
==============================================================*/

.deposit-list-card[b-4xcah0ko9v] {
    margin-bottom: 0;
}

.list-header[b-4xcah0ko9v] {
    justify-content: space-between;
}

.record-count[b-4xcah0ko9v] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-4xcah0ko9v] {
    width: 100%;

    /*==========================================================
      列表高度自动

      不再按照浏览器高度固定表格显示区。
      有多少记录就自然撑开多少高度。

      横向列很多时仍保留横向滚动。
    ==========================================================*/

    overflow-x: auto;
    overflow-y: visible;
}

.deposit-table[b-4xcah0ko9v] {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 11px;
}

.deposit-table th[b-4xcah0ko9v],
.deposit-table td[b-4xcah0ko9v] {
    height: 31px;
    box-sizing: border-box;
    padding: 4px 7px;
    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.deposit-table th:last-child[b-4xcah0ko9v],
.deposit-table td:last-child[b-4xcah0ko9v] {
    border-right: 0;
}

.deposit-table thead th[b-4xcah0ko9v] {
    position: sticky;
    top: 0;
    z-index: 3;
    height: 32px;
    background: #f6f8fb;
    color: #344054;
    font-weight: 700;
}

.deposit-row[b-4xcah0ko9v] {
    cursor: pointer;
}

.deposit-row:hover td[b-4xcah0ko9v] {
    filter: brightness(0.985);
}

.unaudited-row td[b-4xcah0ko9v] {
    background: #fff7e6;
}

.audited-row td[b-4xcah0ko9v] {
    background: #ecf8f0;
}

.cancelled-row td[b-4xcah0ko9v] {
    background: #fdeeee;
    color: #344054;
}

.selected-row td[b-4xcah0ko9v] {
    background: #eaf3ff !important;
    border-bottom-color: #bad6ff;
}

.audit-checkbox-column[b-4xcah0ko9v],
.audit-checkbox-cell[b-4xcah0ko9v] {
    width: 42px;
    min-width: 42px;
}

.audit-checkbox-cell input[b-4xcah0ko9v] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.sequence-column[b-4xcah0ko9v] {
    width: 56px;
    min-width: 56px;
}

.status-column[b-4xcah0ko9v] {
    min-width: 78px;
}

.agent-column[b-4xcah0ko9v] {
    min-width: 160px;
}

.left-cell[b-4xcah0ko9v] {
    text-align: left !important;
}

.amount-cell[b-4xcah0ko9v] {
    text-align: right !important;
    font-variant-numeric: tabular-nums;
}

.deposit-amount[b-4xcah0ko9v],
.net-amount[b-4xcah0ko9v] {
    color: #d92d20;
    font-weight: 600;
}

.cancelled-amount[b-4xcah0ko9v] {
    color: #344054;
    font-weight: 400;
}

.agent-cell[b-4xcah0ko9v] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time-cell[b-4xcah0ko9v] {
    min-width: 132px;
}

.reason-cell[b-4xcah0ko9v],
.remark-cell[b-4xcah0ko9v] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-4xcah0ko9v] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 21px;
    box-sizing: border-box;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.status-unaudited[b-4xcah0ko9v] {
    background: #fff1cf;
    color: #a15c00;
}

.status-audited[b-4xcah0ko9v] {
    background: #e2f6e9;
    color: #16794b;
}

.status-cancelled[b-4xcah0ko9v] {
    background: #fde5e5;
    color: #c5221f;
}


/*==============================================================
  底部汇总
==============================================================*/

.summary-bar[b-4xcah0ko9v] {
    min-height: 38px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding: 7px 10px;
    border-top: 1px solid #d8dee8;
    background: #f8fafc;
    font-size: 12px;
}

.summary-item[b-4xcah0ko9v] {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.summary-item span[b-4xcah0ko9v] {
    color: #667085;
}

.summary-item strong[b-4xcah0ko9v] {
    color: #1f2937;
    font-weight: 700;
}

.summary-red strong[b-4xcah0ko9v] {
    color: #d92d20;
}


/*==============================================================
  弹窗
==============================================================*/

.dialog-mask[b-4xcah0ko9v] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    overflow: auto;
    background: rgba(15, 23, 42, 0.42);
}

.confirm-dialog[b-4xcah0ko9v] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.20);
    color: #1f2937;
}

.confirm-dialog-title[b-4xcah0ko9v] {
    margin-bottom: 12px;
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
}

.confirm-dialog-text[b-4xcah0ko9v] {
    color: #344054;
    font-size: 13px;
    line-height: 22px;
}

.duplicate-time[b-4xcah0ko9v] {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    background: #fff7e6;
    color: #a15c00;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.confirm-dialog-note[b-4xcah0ko9v] {
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    background: #f8f9fb;
    color: #667085;
    font-size: 12px;
    line-height: 20px;
}

.cancel-reason-field[b-4xcah0ko9v] {
    margin-top: 12px;
}

.cancel-reason-field > label[b-4xcah0ko9v] {
    display: block;
    margin-bottom: 4px;
    color: #475467;
    font-size: 12px;
}

.cancel-reason-input[b-4xcah0ko9v] {
    width: 100%;
    min-height: 88px;
    box-sizing: border-box;
    padding: 7px 8px;
    resize: vertical;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
    line-height: 19px;
}

.cancel-reason-input:focus[b-4xcah0ko9v] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.confirm-dialog-actions[b-4xcah0ko9v] {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .edit-grid[b-4xcah0ko9v] {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

}


/*==============================================================
  平板 / 小屏
==============================================================*/

@media (max-width: 820px) {

    .deposit-page[b-4xcah0ko9v] {
        padding: 10px;
    }

    .query-toolbar[b-4xcah0ko9v] {
        align-items: center;
    }

    .query-spacer[b-4xcah0ko9v] {
        display: none;
    }

    .table-scroll[b-4xcah0ko9v] {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .summary-bar[b-4xcah0ko9v] {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .edit-grid[b-4xcah0ko9v] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .control[b-4xcah0ko9v],
    .query-control[b-4xcah0ko9v] {
        height: 34px;
        min-height: 34px;
        padding: 0 9px;
        font-size: 13px;
    }

    .fee-control-wrap[b-4xcah0ko9v] {
        grid-template-columns: 1fr;
    }

    .fee-rule-text[b-4xcah0ko9v] {
        height: 34px;
        line-height: 32px;
        font-size: 12px;
    }

    .audit-status-editor[b-4xcah0ko9v],
    .select-all-wrap[b-4xcah0ko9v] {
        height: 34px;
    }

    .edit-footer[b-4xcah0ko9v] {
        display: block;
    }

    .edit-actions[b-4xcah0ko9v] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-4xcah0ko9v] {
        margin-top: 8px;
        text-align: left;
        white-space: normal;
    }

    .query-toolbar[b-4xcah0ko9v] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 7px;
    }

    .quick-date-control[b-4xcah0ko9v],
    .date-control[b-4xcah0ko9v],
    .company-control[b-4xcah0ko9v],
    .member-control[b-4xcah0ko9v],
    .account-control[b-4xcah0ko9v],
    .status-control[b-4xcah0ko9v] {
        width: 100%;
    }

    .query-separator[b-4xcah0ko9v] {
        display: none;
    }

    .query-toolbar .btn[b-4xcah0ko9v] {
        width: 100%;
    }

    .select-all-wrap[b-4xcah0ko9v] {
        width: 100%;
    }

    .btn[b-4xcah0ko9v] {
        height: 36px;
        font-size: 13px;
    }

    .dialog-mask[b-4xcah0ko9v] {
        align-items: flex-start;
        padding: 12px;
    }

    .confirm-dialog[b-4xcah0ko9v] {
        width: 100%;
        max-width: none;
        margin: 12px 0;
        padding: 15px;
    }

    .confirm-dialog-title[b-4xcah0ko9v] {
        font-size: 21px;
    }

    .confirm-dialog-actions[b-4xcah0ko9v] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

}


@media (max-width: 420px) {

    .edit-actions[b-4xcah0ko9v],
    .query-toolbar[b-4xcah0ko9v],
    .confirm-dialog-actions[b-4xcah0ko9v] {
        grid-template-columns: 1fr;
    }

}
/* /Components/Pages/DomainManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 域名管理

  桌面 / 平板 / 手机
==============================================================*/


.domain-page[b-tbo330d1ou] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  页面标题
==============================================================*/

.page-title-row[b-tbo330d1ou] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-tbo330d1ou] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-tbo330d1ou] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  卡片
==============================================================*/

.winner-card[b-tbo330d1ou] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;

    border: 1px solid #d8dee8;
    border-radius: 6px;

    background: #ffffff;
}

.card-header[b-tbo330d1ou] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-tbo330d1ou] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-tbo330d1ou] {
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-tbo330d1ou] {
    padding: 10px;
}

.domain-edit-layout[b-tbo330d1ou] {
    display: grid;
    grid-template-columns: minmax(320px, 355px) minmax(0, 1fr);
    gap: 14px;
}

.domain-input-block[b-tbo330d1ou] {
    min-width: 0;
}

.domain-input-block > label[b-tbo330d1ou],
.field > label[b-tbo330d1ou] {
    display: block;
    margin-bottom: 3px;

    color: #475467;

    font-size: 12px;
    line-height: 17px;
}

.domain-textarea[b-tbo330d1ou] {
    width: 100%;
    height: 86px;
    min-height: 86px;
    max-height: 150px;

    box-sizing: border-box;

    padding: 7px 8px;

    resize: vertical;

    border: 1px solid #cfd6df;
    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
    line-height: 18px;

    white-space: pre;
    overflow: auto;
}

.domain-textarea:focus[b-tbo330d1ou] {
    border-color: #1677ff;

    box-shadow:
            0 0 0 2px
            rgba(22, 119, 255, 0.10);
}

.domain-textarea:disabled[b-tbo330d1ou] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.domain-fields[b-tbo330d1ou] {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(160px, 1fr)
        );

    gap: 8px 16px;

    align-content: start;
}

.field[b-tbo330d1ou] {
    min-width: 0;
}

.control[b-tbo330d1ou] {
    width: 100%;
    height: 26px;
    min-height: 26px;

    box-sizing: border-box;

    padding: 0 7px;

    border: 1px solid #cfd6df;
    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-tbo330d1ou] {
    border-color: #1677ff;

    box-shadow:
            0 0 0 2px
            rgba(22, 119, 255, 0.10);
}

.control:disabled[b-tbo330d1ou],
.readonly-control[b-tbo330d1ou] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.remark-field[b-tbo330d1ou] {
    grid-column: span 2;
}

.status-field[b-tbo330d1ou] {
    min-height: 46px;
}

.checkbox-wrap[b-tbo330d1ou] {
    height: 26px;

    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
}

.checkbox-wrap input[b-tbo330d1ou] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.checkbox-wrap label[b-tbo330d1ou] {
    margin: 0;
    cursor: pointer;
}

.status-hint[b-tbo330d1ou] {
    margin-left: 4px;

    color: #98a2b3;

    font-size: 11px;
}


/*==============================================================
  编辑按钮
==============================================================*/

.edit-actions[b-tbo330d1ou] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.domain-edit-actions[b-tbo330d1ou] {
    margin-top: 8px;
}

.operation-message[b-tbo330d1ou] {
    margin-top: 8px;

    color: #176b3a;

    font-size: 12px;

    text-align: right;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-tbo330d1ou] {
    min-width: 80px;
    height: 30px;

    box-sizing: border-box;

    padding: 0 12px;

    border-radius: 4px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.btn-primary[b-tbo330d1ou] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-tbo330d1ou] {
    background: #0f68e6;
}

.btn-secondary[b-tbo330d1ou] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-tbo330d1ou] {
    background: #eef1f5;
}

.btn-danger[b-tbo330d1ou] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-tbo330d1ou] {
    background: #cf1020;
}

.btn:disabled[b-tbo330d1ou] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-tbo330d1ou] {
    padding: 10px;
}

.query-grid[b-tbo330d1ou] {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(150px, 1fr)
        );

    gap: 8px 12px;
}

.query-actions[b-tbo330d1ou] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;

    margin-top: 10px;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-tbo330d1ou],
.empty-panel[b-tbo330d1ou],
.error-panel[b-tbo330d1ou] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-tbo330d1ou],
.empty-panel[b-tbo330d1ou] {
    padding: 28px 16px;

    color: #667085;
    text-align: center;
}

.error-panel[b-tbo330d1ou] {
    margin-bottom: 10px;
    padding: 8px 11px;

    border: 1px solid #f5c2c0;

    background: #fff1f0;

    color: #b42318;
}


/*==============================================================
  列表
==============================================================*/

.domain-list-card[b-tbo330d1ou] {
    margin-bottom: 0;
}

.list-header[b-tbo330d1ou] {
    justify-content: space-between;
}

.record-count[b-tbo330d1ou] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-tbo330d1ou] {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.domain-table[b-tbo330d1ou] {
    width: 100%;
    min-width: 900px;

    border-collapse: collapse;
    table-layout: auto;

    font-size: 12px;
}

.domain-table th[b-tbo330d1ou],
.domain-table td[b-tbo330d1ou] {
    height: 34px;

    box-sizing: border-box;

    padding: 5px 8px;

    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}

.domain-table th:last-child[b-tbo330d1ou],
.domain-table td:last-child[b-tbo330d1ou] {
    border-right: 0;
}

.domain-table thead th[b-tbo330d1ou] {
    height: 34px;

    background: #f6f8fb;

    color: #344054;

    font-weight: 700;
}

.domain-row[b-tbo330d1ou] {
    cursor: pointer;
}

.domain-row:hover[b-tbo330d1ou] {
    background: #f5f9ff;
}

.selected-row[b-tbo330d1ou] {
    background: #eaf3ff !important;
}

.selected-row td[b-tbo330d1ou] {
    border-bottom-color: #bad6ff;
}

.disabled-row td[b-tbo330d1ou] {
    color: #98a2b3;
}

.sequence-column[b-tbo330d1ou] {
    width: 70px;
}

.status-column[b-tbo330d1ou] {
    width: 80px;
}

.date-column[b-tbo330d1ou] {
    width: 120px;
}

.remark-column[b-tbo330d1ou] {
    min-width: 140px;
}

.domain-cell[b-tbo330d1ou] {
    color: #1d4f91;
    font-weight: 600;
    text-align: left !important;
}

.remark-cell[b-tbo330d1ou] {
    max-width: 240px;

    overflow: hidden;

    text-align: left !important;
    text-overflow: ellipsis;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-tbo330d1ou] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 21px;

    box-sizing: border-box;

    padding: 0 7px;

    border-radius: 10px;

    font-size: 11px;
    font-weight: 600;
}

.status-available[b-tbo330d1ou] {
    background: #eaf8ef;
    color: #16794b;
}

.status-bound[b-tbo330d1ou] {
    background: #eaf3ff;
    color: #175cd3;
}

.status-disabled[b-tbo330d1ou] {
    background: #f2f4f7;
    color: #667085;
}


/*==============================================================
  删除确认弹窗
==============================================================*/

.dialog-mask[b-tbo330d1ou] {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    padding: 20px;

    background: rgba(15, 23, 42, 0.42);

    overflow: auto;
}

.confirm-dialog[b-tbo330d1ou] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;

    box-sizing: border-box;

    padding: 18px;

    border: 1px solid #d8dee8;
    border-radius: 8px;

    background: #ffffff;

    box-shadow:
            0 18px 48px
            rgba(15, 23, 42, 0.20);

    color: #1f2937;
}

.confirm-dialog-title[b-tbo330d1ou] {
    margin-bottom: 12px;

    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.confirm-dialog-text[b-tbo330d1ou] {
    color: #344054;

    font-size: 13px;
    line-height: 22px;
}

.confirm-dialog-note[b-tbo330d1ou] {
    margin-top: 10px;

    padding: 9px 10px;

    border-radius: 5px;

    background: #f8f9fb;

    color: #667085;

    font-size: 12px;
    line-height: 20px;
}

.confirm-dialog-actions[b-tbo330d1ou] {
    margin-top: 16px;

    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .domain-edit-layout[b-tbo330d1ou] {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .domain-fields[b-tbo330d1ou] {
        grid-template-columns:
            repeat(
                2,
                minmax(160px, 1fr)
            );
    }

    .query-grid[b-tbo330d1ou] {
        grid-template-columns:
            repeat(
                2,
                minmax(160px, 1fr)
            );
    }

}


/*==============================================================
  平板
==============================================================*/

@media (max-width: 900px) {

    .domain-edit-layout[b-tbo330d1ou] {
        grid-template-columns: 1fr;
    }

    .domain-textarea[b-tbo330d1ou] {
        height: 96px;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .domain-page[b-tbo330d1ou] {
        padding: 10px;
    }

    .domain-fields[b-tbo330d1ou],
    .query-grid[b-tbo330d1ou] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .remark-field[b-tbo330d1ou] {
        grid-column: auto;
    }

    .control[b-tbo330d1ou] {
        height: 34px;
        min-height: 34px;

        padding: 0 9px;

        font-size: 13px;
    }

    .domain-textarea[b-tbo330d1ou] {
        min-height: 110px;

        font-size: 13px;
    }

    .checkbox-wrap[b-tbo330d1ou] {
        height: 34px;

        font-size: 13px;
    }

    .edit-actions[b-tbo330d1ou],
    .query-actions[b-tbo330d1ou] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .btn[b-tbo330d1ou] {
        width: 100%;
        height: 36px;

        font-size: 13px;
    }

    .operation-message[b-tbo330d1ou] {
        text-align: left;
    }

    .table-scroll[b-tbo330d1ou] {
        -webkit-overflow-scrolling: touch;
    }

    .dialog-mask[b-tbo330d1ou] {
        align-items: flex-start;

        padding: 12px;
    }

    .confirm-dialog[b-tbo330d1ou] {
        width: 100%;
        max-width: none;

        margin: 12px 0;

        padding: 15px;
    }

    .confirm-dialog-actions[b-tbo330d1ou] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

}


/*==============================================================
  小手机
==============================================================*/

@media (max-width: 420px) {

    .edit-actions[b-tbo330d1ou],
    .query-actions[b-tbo330d1ou],
    .confirm-dialog-actions[b-tbo330d1ou] {
        grid-template-columns: 1fr;
    }

}
/* /Components/Pages/InternalTransferManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 内部转账

  桌面 / 平板 / 手机响应式
==============================================================*/

.internal-transfer-page[b-ns2bg5wj7z] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  标题
==============================================================*/

.page-title-row[b-ns2bg5wj7z] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-ns2bg5wj7z] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-ns2bg5wj7z] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  通用卡片
==============================================================*/

.winner-card[b-ns2bg5wj7z] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background: #ffffff;
}

.card-header[b-ns2bg5wj7z] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-ns2bg5wj7z] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-ns2bg5wj7z] {
    max-width: 60%;
    overflow: hidden;
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-ns2bg5wj7z] {
    padding: 5px 10px 10px;
}

/*
 * 与 Avalonia 客户端内部转账编辑区一致：
 *
 * 三列资料
 * 标签宽 112
 * 控件宽 200
 * 控件高 26
 * 字号 12
 * 行距 8
 */
.edit-grid[b-ns2bg5wj7z] {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(312px, 1fr));
    column-gap: 18px;
    row-gap: 8px;
    align-items: center;
}

.form-field[b-ns2bg5wj7z] {
    min-width: 0;
    display: grid;
    grid-template-columns: 112px 200px minmax(0, 1fr);
    align-items: center;
}

.form-field > label[b-ns2bg5wj7z] {
    grid-column: 1;
    display: block;
    margin: 0 8px 0 0;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
    text-align: right;
    white-space: nowrap;
}

.control[b-ns2bg5wj7z] {
    grid-column: 2;
    width: 200px;
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
}

.control:focus[b-ns2bg5wj7z] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.control:disabled[b-ns2bg5wj7z],
.readonly-control[b-ns2bg5wj7z] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.amount-input[b-ns2bg5wj7z] {
    text-align: right;
}

.fee-control-wrap[b-ns2bg5wj7z] {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(120px, 1.15fr);
    gap: 6px;
}

.fee-rule-text[b-ns2bg5wj7z] {
    height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    overflow: hidden;
    border: 1px solid #e0e5ec;
    border-radius: 4px;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audit-status-editor[b-ns2bg5wj7z] {
    grid-column: 2;
    width: 200px;
    height: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid #d8dee8;
    border-radius: 4px;
    background: #f8fafc;
    font-size: 12px;
    font-weight: 700;
}

.audit-check[b-ns2bg5wj7z] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #344054;
    font-size: 12px;
    cursor: pointer;
}

.audit-check input[b-ns2bg5wj7z] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.status-text[b-ns2bg5wj7z] {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.edit-footer[b-ns2bg5wj7z] {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.edit-actions[b-ns2bg5wj7z] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-ns2bg5wj7z] {
    min-width: 0;
    overflow: hidden;
    font-size: 12px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operation-success[b-ns2bg5wj7z] {
    color: #176b3a;
}

.operation-error[b-ns2bg5wj7z] {
    color: #b42318;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-ns2bg5wj7z] {
    min-width: 78px;
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary[b-ns2bg5wj7z] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-ns2bg5wj7z] {
    background: #0f68e6;
}

.btn-secondary[b-ns2bg5wj7z] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-ns2bg5wj7z] {
    background: #eef1f5;
}

.btn-danger[b-ns2bg5wj7z] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-ns2bg5wj7z] {
    background: #cf1020;
}

.btn-audit[b-ns2bg5wj7z] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-export[b-ns2bg5wj7z] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn:disabled[b-ns2bg5wj7z] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-ns2bg5wj7z] {
    padding: 8px 10px 10px;
}

.query-toolbar[b-ns2bg5wj7z] {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.query-control[b-ns2bg5wj7z] {
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.query-control:focus[b-ns2bg5wj7z] {
    border-color: #1677ff;
}

.quick-date-control[b-ns2bg5wj7z] {
    width: 88px;
}

.date-control[b-ns2bg5wj7z] {
    width: 136px;
}

.company-control[b-ns2bg5wj7z] {
    width: 145px;
}

.member-control[b-ns2bg5wj7z] {
    width: 145px;
}

.account-control[b-ns2bg5wj7z] {
    width: 170px;
}

.status-control[b-ns2bg5wj7z] {
    width: 105px;
}

.query-separator[b-ns2bg5wj7z] {
    height: 26px;
    display: flex;
    align-items: center;
    color: #667085;
    font-size: 12px;
}

.query-spacer[b-ns2bg5wj7z] {
    flex: 1 1 auto;
    min-width: 10px;
}

.select-all-wrap[b-ns2bg5wj7z] {
    height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 2px 0 0;
    color: #344054;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
}

.select-all-wrap input[b-ns2bg5wj7z] {
    width: 14px;
    height: 14px;
    margin: 0;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-ns2bg5wj7z],
.empty-panel[b-ns2bg5wj7z],
.error-panel[b-ns2bg5wj7z] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-ns2bg5wj7z],
.empty-panel[b-ns2bg5wj7z] {
    padding: 28px 16px;
    color: #667085;
    text-align: center;
}

.error-panel[b-ns2bg5wj7z] {
    margin-bottom: 10px;
    padding: 8px 11px;
    border: 1px solid #f5c2c0;
    background: #fff1f0;
    color: #b42318;
}


/*==============================================================
  表格
==============================================================*/

.internal-transfer-list-card[b-ns2bg5wj7z] {
    margin-bottom: 0;
}

.list-header[b-ns2bg5wj7z] {
    justify-content: space-between;
}

.record-count[b-ns2bg5wj7z] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-ns2bg5wj7z] {
    width: 100%;

    /*==========================================================
      列表高度自动

      不再按照浏览器高度固定表格显示区。
      有多少记录就自然撑开多少高度。

      横向列很多时仍保留横向滚动。
    ==========================================================*/

    overflow-x: auto;
    overflow-y: visible;
}

.internal-transfer-table[b-ns2bg5wj7z] {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 11px;
}

.internal-transfer-table th[b-ns2bg5wj7z],
.internal-transfer-table td[b-ns2bg5wj7z] {
    height: 31px;
    box-sizing: border-box;
    padding: 4px 7px;
    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.internal-transfer-table th:last-child[b-ns2bg5wj7z],
.internal-transfer-table td:last-child[b-ns2bg5wj7z] {
    border-right: 0;
}

.internal-transfer-table thead th[b-ns2bg5wj7z] {
    position: sticky;
    top: 0;
    z-index: 3;
    height: 32px;
    background: #f6f8fb;
    color: #344054;
    font-weight: 700;
}

.transfer-row[b-ns2bg5wj7z] {
    cursor: pointer;
}

.transfer-row:hover td[b-ns2bg5wj7z] {
    filter: brightness(0.985);
}

.unaudited-row td[b-ns2bg5wj7z] {
    background: #fff7e6;
}

.audited-row td[b-ns2bg5wj7z] {
    background: #ecf8f0;
}

.cancelled-row td[b-ns2bg5wj7z] {
    background: #fdeeee;
    color: #344054;
}

.selected-row td[b-ns2bg5wj7z] {
    background: #eaf3ff !important;
    border-bottom-color: #bad6ff;
}

.audit-checkbox-column[b-ns2bg5wj7z],
.audit-checkbox-cell[b-ns2bg5wj7z] {
    width: 42px;
    min-width: 42px;
}

.audit-checkbox-cell input[b-ns2bg5wj7z] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.sequence-column[b-ns2bg5wj7z] {
    width: 56px;
    min-width: 56px;
}

.status-column[b-ns2bg5wj7z] {
    min-width: 78px;
}

.agent-column[b-ns2bg5wj7z] {
    min-width: 160px;
}

.left-cell[b-ns2bg5wj7z] {
    text-align: left !important;
}

.amount-cell[b-ns2bg5wj7z] {
    text-align: right !important;
    font-variant-numeric: tabular-nums;
}

.transfer-out-amount[b-ns2bg5wj7z],
.expected-amount[b-ns2bg5wj7z] {
    color: #d92d20;
    font-weight: 600;
}

.cancelled-amount[b-ns2bg5wj7z] {
    color: #344054;
    font-weight: 400;
}

.agent-cell[b-ns2bg5wj7z] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time-cell[b-ns2bg5wj7z] {
    min-width: 132px;
}

.reason-cell[b-ns2bg5wj7z],
.remark-cell[b-ns2bg5wj7z] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}




/*==============================================================
  内部转账专用
==============================================================*/

.transfer-currency-display[b-ns2bg5wj7z] {
    grid-column: 2;
    width: 200px;
    height: 26px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
}

.transfer-currency-display span[b-ns2bg5wj7z] {
    height: 26px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8dee8;
    border-radius: 4px;
    background: #f3f6fa;
    color: #344054;
}

.transfer-currency-display strong[b-ns2bg5wj7z] {
    color: #344054;
    font-size: 12px;
}

.account-cell[b-ns2bg5wj7z] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-out-amount[b-ns2bg5wj7z] {
    color: #1677ff;
    font-weight: 600;
}

.expected-amount[b-ns2bg5wj7z] {
    color: #d92d20;
    font-weight: 600;
}

.summary-pending strong[b-ns2bg5wj7z] {
    color: #a15c00;
}

.summary-cancelled strong[b-ns2bg5wj7z] {
    color: #c5221f;
}

.currency-summary-card[b-ns2bg5wj7z] {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    padding: 3px 8px;
    border: 1px solid #ead27b;
    border-radius: 4px;
    background: #fff8d8;
    white-space: nowrap;
}

.currency-summary-card strong[b-ns2bg5wj7z] {
    color: #7a5700;
}

.currency-summary-card span[b-ns2bg5wj7z] {
    color: #475467;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-ns2bg5wj7z] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 21px;
    box-sizing: border-box;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.status-unaudited[b-ns2bg5wj7z] {
    background: #fff1cf;
    color: #a15c00;
}

.status-audited[b-ns2bg5wj7z] {
    background: #e2f6e9;
    color: #16794b;
}

.status-cancelled[b-ns2bg5wj7z] {
    background: #fde5e5;
    color: #c5221f;
}


/*==============================================================
  底部汇总
==============================================================*/

.summary-bar[b-ns2bg5wj7z] {
    min-height: 38px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding: 7px 10px;
    border-top: 1px solid #d8dee8;
    background: #f8fafc;
    font-size: 12px;
}

.summary-item[b-ns2bg5wj7z] {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.summary-item span[b-ns2bg5wj7z] {
    color: #667085;
}

.summary-item strong[b-ns2bg5wj7z] {
    color: #1f2937;
    font-weight: 700;
}

.summary-red strong[b-ns2bg5wj7z] {
    color: #d92d20;
}


/*==============================================================
  弹窗
==============================================================*/

.dialog-mask[b-ns2bg5wj7z] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    overflow: auto;
    background: rgba(15, 23, 42, 0.42);
}

.confirm-dialog[b-ns2bg5wj7z] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.20);
    color: #1f2937;
}

.confirm-dialog-title[b-ns2bg5wj7z] {
    margin-bottom: 12px;
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
}

.confirm-dialog-text[b-ns2bg5wj7z] {
    color: #344054;
    font-size: 13px;
    line-height: 22px;
}

.duplicate-time[b-ns2bg5wj7z] {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    background: #fff7e6;
    color: #a15c00;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.confirm-dialog-note[b-ns2bg5wj7z] {
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    background: #f8f9fb;
    color: #667085;
    font-size: 12px;
    line-height: 20px;
}

.cancel-reason-field[b-ns2bg5wj7z] {
    margin-top: 12px;
}

.cancel-reason-field > label[b-ns2bg5wj7z] {
    display: block;
    margin-bottom: 4px;
    color: #475467;
    font-size: 12px;
}

.cancel-reason-input[b-ns2bg5wj7z] {
    width: 100%;
    min-height: 88px;
    box-sizing: border-box;
    padding: 7px 8px;
    resize: vertical;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
    line-height: 19px;
}

.cancel-reason-input:focus[b-ns2bg5wj7z] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.confirm-dialog-actions[b-ns2bg5wj7z] {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .edit-grid[b-ns2bg5wj7z] {
        grid-template-columns:
            repeat(2, minmax(312px, 1fr));
    }

}


/*==============================================================
  平板 / 小屏
==============================================================*/

@media (max-width: 820px) {

    .internal-transfer-page[b-ns2bg5wj7z] {
        padding: 10px;
    }

    .query-toolbar[b-ns2bg5wj7z] {
        align-items: center;
    }

    .query-spacer[b-ns2bg5wj7z] {
        display: none;
    }

    .table-scroll[b-ns2bg5wj7z] {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .summary-bar[b-ns2bg5wj7z] {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .edit-grid[b-ns2bg5wj7z] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-field[b-ns2bg5wj7z] {
        display: block;
    }

    .form-field > label[b-ns2bg5wj7z] {
        display: block;
        margin: 0 0 3px;
        line-height: 17px;
        text-align: left;
    }

    .control[b-ns2bg5wj7z],
    .query-control[b-ns2bg5wj7z] {
        width: 100%;
        height: 34px;
        min-height: 34px;
        padding: 0 9px;
        font-size: 13px;
    }

    .audit-status-editor[b-ns2bg5wj7z],
    .transfer-currency-display[b-ns2bg5wj7z] {
        width: 100%;
        height: 34px;
    }

    .transfer-currency-display span[b-ns2bg5wj7z] {
        height: 34px;
    }

    .fee-control-wrap[b-ns2bg5wj7z] {
        grid-template-columns: 1fr;
    }

    .fee-rule-text[b-ns2bg5wj7z] {
        height: 34px;
        line-height: 32px;
        font-size: 12px;
    }

    .select-all-wrap[b-ns2bg5wj7z] {
        height: 34px;
    }

    .edit-footer[b-ns2bg5wj7z] {
        display: block;
    }

    .edit-actions[b-ns2bg5wj7z] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-ns2bg5wj7z] {
        margin-top: 8px;
        text-align: left;
        white-space: normal;
    }

    .query-toolbar[b-ns2bg5wj7z] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 7px;
    }

    .quick-date-control[b-ns2bg5wj7z],
    .date-control[b-ns2bg5wj7z],
    .company-control[b-ns2bg5wj7z],
    .member-control[b-ns2bg5wj7z],
    .account-control[b-ns2bg5wj7z],
    .status-control[b-ns2bg5wj7z] {
        width: 100%;
    }

    .query-separator[b-ns2bg5wj7z] {
        display: none;
    }

    .query-toolbar .btn[b-ns2bg5wj7z] {
        width: 100%;
    }

    .select-all-wrap[b-ns2bg5wj7z] {
        width: 100%;
    }

    .btn[b-ns2bg5wj7z] {
        height: 36px;
        font-size: 13px;
    }

    .dialog-mask[b-ns2bg5wj7z] {
        align-items: flex-start;
        padding: 12px;
    }

    .confirm-dialog[b-ns2bg5wj7z] {
        width: 100%;
        max-width: none;
        margin: 12px 0;
        padding: 15px;
    }

    .confirm-dialog-title[b-ns2bg5wj7z] {
        font-size: 21px;
    }

    .confirm-dialog-actions[b-ns2bg5wj7z] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

}


@media (max-width: 420px) {

    .edit-actions[b-ns2bg5wj7z],
    .query-toolbar[b-ns2bg5wj7z],
    .confirm-dialog-actions[b-ns2bg5wj7z] {
        grid-template-columns: 1fr;
    }

}
/* /Components/Pages/MemberManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 会员管理

  桌面 / 平板 / 手机
==============================================================*/


.member-page[b-vrqifma6ko] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  页面标题
==============================================================*/

.page-title-row[b-vrqifma6ko] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-vrqifma6ko] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-vrqifma6ko] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  卡片
==============================================================*/

.winner-card[b-vrqifma6ko] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;

    border: 1px solid #d8dee8;
    border-radius: 6px;

    background: #ffffff;
}

.card-header[b-vrqifma6ko] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-vrqifma6ko] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-vrqifma6ko] {
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-vrqifma6ko] {
    padding: 10px;
}

.edit-grid[b-vrqifma6ko] {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(180px, 1fr)
        );

    gap: 8px 16px;
}

.field[b-vrqifma6ko] {
    min-width: 0;
}

.field > label[b-vrqifma6ko] {
    display: block;

    margin-bottom: 3px;

    color: #475467;

    font-size: 12px;
    line-height: 17px;
}

.control[b-vrqifma6ko] {
    width: 100%;
    height: 26px;
    min-height: 26px;

    box-sizing: border-box;

    padding: 0 7px;

    border: 1px solid #cfd6df;
    border-radius: 4px;

    outline: none;

    background: #ffffff;

    color: #344054;

    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-vrqifma6ko] {
    border-color: #1677ff;

    box-shadow:
            0 0 0 2px
            rgba(22, 119, 255, 0.10);
}

.control:disabled[b-vrqifma6ko],
.readonly-control[b-vrqifma6ko] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.remark-field[b-vrqifma6ko] {
    grid-column: span 2;
}

.status-field[b-vrqifma6ko] {
    min-height: 46px;
}

.checkbox-wrap[b-vrqifma6ko] {
    height: 26px;

    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
}

.checkbox-wrap input[b-vrqifma6ko] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.checkbox-wrap label[b-vrqifma6ko] {
    margin: 0;
    cursor: pointer;
}

.status-hint[b-vrqifma6ko] {
    margin-left: 4px;

    color: #98a2b3;

    font-size: 11px;
}


/*==============================================================
  编辑按钮
==============================================================*/

.edit-footer[b-vrqifma6ko] {
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.edit-actions[b-vrqifma6ko] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-vrqifma6ko] {
    min-width: 0;

    overflow: hidden;

    color: #176b3a;

    font-size: 12px;

    text-align: right;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-vrqifma6ko] {
    min-width: 80px;
    height: 30px;

    box-sizing: border-box;

    padding: 0 12px;

    border-radius: 4px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.btn-primary[b-vrqifma6ko] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-vrqifma6ko] {
    background: #0f68e6;
}

.btn-secondary[b-vrqifma6ko] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-vrqifma6ko] {
    background: #eef1f5;
}

.btn-danger[b-vrqifma6ko] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-vrqifma6ko] {
    background: #cf1020;
}

.btn:disabled[b-vrqifma6ko] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-vrqifma6ko] {
    padding: 10px;
}

.query-grid[b-vrqifma6ko] {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(150px, 1fr)
        );

    gap: 8px 12px;
}

.query-actions[b-vrqifma6ko] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;

    margin-top: 10px;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-vrqifma6ko],
.empty-panel[b-vrqifma6ko],
.error-panel[b-vrqifma6ko] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-vrqifma6ko],
.empty-panel[b-vrqifma6ko] {
    padding: 28px 16px;

    color: #667085;
    text-align: center;
}

.error-panel[b-vrqifma6ko] {
    margin-bottom: 10px;
    padding: 8px 11px;

    border: 1px solid #f5c2c0;

    background: #fff1f0;

    color: #b42318;
}


/*==============================================================
  列表
==============================================================*/

.member-list-card[b-vrqifma6ko] {
    margin-bottom: 0;
}

.list-header[b-vrqifma6ko] {
    justify-content: space-between;
}

.record-count[b-vrqifma6ko] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-vrqifma6ko] {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.member-table[b-vrqifma6ko] {
    width: 100%;
    min-width: 900px;

    border-collapse: collapse;
    table-layout: auto;

    font-size: 12px;
}

.member-table th[b-vrqifma6ko],
.member-table td[b-vrqifma6ko] {
    height: 34px;

    box-sizing: border-box;

    padding: 5px 8px;

    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;

    text-align: center;
    vertical-align: middle;

    white-space: nowrap;
}

.member-table th:last-child[b-vrqifma6ko],
.member-table td:last-child[b-vrqifma6ko] {
    border-right: 0;
}

.member-table thead th[b-vrqifma6ko] {
    height: 34px;

    background: #f6f8fb;

    color: #344054;

    font-weight: 700;
}

.member-row[b-vrqifma6ko] {
    cursor: pointer;
}

.member-row:hover[b-vrqifma6ko] {
    background: #f5f9ff;
}

.selected-row[b-vrqifma6ko] {
    background: #eaf3ff !important;
}

.selected-row td[b-vrqifma6ko] {
    border-bottom-color: #bad6ff;
}

.disabled-row td[b-vrqifma6ko] {
    color: #98a2b3;
}

.id-column[b-vrqifma6ko] {
    width: 70px;
}

.status-column[b-vrqifma6ko] {
    width: 80px;
}

.remark-column[b-vrqifma6ko] {
    min-width: 140px;
}

.account-cell[b-vrqifma6ko] {
    color: #1d4f91;

    font-weight: 600;
}

.remark-cell[b-vrqifma6ko] {
    max-width: 240px;

    overflow: hidden;

    text-overflow: ellipsis;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-vrqifma6ko] {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 21px;

    box-sizing: border-box;

    padding: 0 7px;

    border-radius: 10px;

    font-size: 11px;
    font-weight: 600;
}

.status-enabled[b-vrqifma6ko] {
    background: #eaf8ef;
    color: #16794b;
}

.status-disabled[b-vrqifma6ko] {
    background: #f2f4f7;
    color: #667085;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .query-grid[b-vrqifma6ko] {
        grid-template-columns:
            repeat(
                3,
                minmax(160px, 1fr)
            );
    }

}


/*==============================================================
  平板
==============================================================*/

@media (max-width: 900px) {

    .edit-grid[b-vrqifma6ko] {
        grid-template-columns:
            repeat(
                2,
                minmax(160px, 1fr)
            );
    }

    .remark-field[b-vrqifma6ko] {
        grid-column: span 2;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .member-page[b-vrqifma6ko] {
        padding: 10px;
    }

    .edit-grid[b-vrqifma6ko],
    .query-grid[b-vrqifma6ko] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .remark-field[b-vrqifma6ko] {
        grid-column: auto;
    }

    .control[b-vrqifma6ko] {
        height: 34px;
        min-height: 34px;

        padding: 0 9px;

        font-size: 13px;
    }

    .checkbox-wrap[b-vrqifma6ko] {
        height: 34px;

        font-size: 13px;
    }

    .edit-footer[b-vrqifma6ko] {
        display: block;
    }

    .edit-actions[b-vrqifma6ko] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-vrqifma6ko] {
        margin-top: 8px;

        text-align: left;
        white-space: normal;
    }

    .query-actions[b-vrqifma6ko] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .btn[b-vrqifma6ko] {
        width: 100%;
        height: 36px;

        font-size: 13px;
    }

    .table-scroll[b-vrqifma6ko] {
        -webkit-overflow-scrolling: touch;
    }

}


/*==============================================================
  小手机
==============================================================*/

@media (max-width: 420px) {

    .edit-actions[b-vrqifma6ko],
    .query-actions[b-vrqifma6ko] {
        grid-template-columns: 1fr;
    }

}
/* /Components/Pages/WithdrawManagement.razor.rz.scp.css */
/*==============================================================
  赢家 WINNER
  Web 出金管理

  桌面 / 平板 / 手机响应式
==============================================================*/

.withdraw-page[b-7slcqdn6sb] {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 16px;
    color: #1f2937;
}


/*==============================================================
  标题
==============================================================*/

.page-title-row[b-7slcqdn6sb] {
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.page-title-mark[b-7slcqdn6sb] {
    width: 4px;
    height: 20px;
    margin-right: 10px;
    border-radius: 2px;
    background: #1677ff;
}

.page-title[b-7slcqdn6sb] {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}


/*==============================================================
  通用卡片
==============================================================*/

.winner-card[b-7slcqdn6sb] {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    background: #ffffff;
}

.card-header[b-7slcqdn6sb] {
    min-height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e8ef;
}

.card-title[b-7slcqdn6sb] {
    font-size: 12px;
    font-weight: 700;
}

.edit-indicator[b-7slcqdn6sb] {
    max-width: 60%;
    overflow: hidden;
    color: #1677ff;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*==============================================================
  编辑区
==============================================================*/

.edit-body[b-7slcqdn6sb] {
    padding: 10px;
}

.edit-grid[b-7slcqdn6sb] {
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 8px 16px;
}

.form-field[b-7slcqdn6sb] {
    min-width: 0;
}

.form-field > label[b-7slcqdn6sb] {
    display: block;
    margin-bottom: 3px;
    color: #475467;
    font-size: 12px;
    line-height: 17px;
}

.control[b-7slcqdn6sb] {
    width: 100%;
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.control:focus[b-7slcqdn6sb] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.control:disabled[b-7slcqdn6sb],
.readonly-control[b-7slcqdn6sb] {
    background: #f2f4f7;
    color: #667085;
    cursor: not-allowed;
}

.amount-input[b-7slcqdn6sb] {
    text-align: right;
}

.fee-control-wrap[b-7slcqdn6sb] {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(120px, 1.15fr);
    gap: 6px;
}

.fee-rule-text[b-7slcqdn6sb] {
    height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    overflow: hidden;
    border: 1px solid #e0e5ec;
    border-radius: 4px;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audit-status-editor[b-7slcqdn6sb] {
    height: 26px;
    display: flex;
    align-items: center;
}

.audit-check[b-7slcqdn6sb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #344054;
    font-size: 12px;
    cursor: pointer;
}

.audit-check input[b-7slcqdn6sb] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.status-text[b-7slcqdn6sb] {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.edit-footer[b-7slcqdn6sb] {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.edit-actions[b-7slcqdn6sb] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.operation-message[b-7slcqdn6sb] {
    min-width: 0;
    overflow: hidden;
    font-size: 12px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operation-success[b-7slcqdn6sb] {
    color: #176b3a;
}

.operation-error[b-7slcqdn6sb] {
    color: #b42318;
}


/*==============================================================
  按钮
==============================================================*/

.btn[b-7slcqdn6sb] {
    min-width: 78px;
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary[b-7slcqdn6sb] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-primary:hover:not(:disabled)[b-7slcqdn6sb] {
    background: #0f68e6;
}

.btn-secondary[b-7slcqdn6sb] {
    border: 1px solid #d0d5dd;
    background: #f8f9fb;
    color: #344054;
}

.btn-secondary:hover:not(:disabled)[b-7slcqdn6sb] {
    background: #eef1f5;
}

.btn-danger[b-7slcqdn6sb] {
    border: 1px solid #e81123;
    background: #e81123;
    color: #ffffff;
}

.btn-danger:hover:not(:disabled)[b-7slcqdn6sb] {
    background: #cf1020;
}

.btn-audit[b-7slcqdn6sb] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn-export[b-7slcqdn6sb] {
    border: 1px solid #1677ff;
    background: #1677ff;
    color: #ffffff;
}

.btn:disabled[b-7slcqdn6sb] {
    opacity: 0.55;
    cursor: not-allowed;
}


/*==============================================================
  查询区
==============================================================*/

.query-body[b-7slcqdn6sb] {
    padding: 8px 10px 10px;
}

.query-toolbar[b-7slcqdn6sb] {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.query-control[b-7slcqdn6sb] {
    height: 26px;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 7px;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
}

.query-control:focus[b-7slcqdn6sb] {
    border-color: #1677ff;
}

.quick-date-control[b-7slcqdn6sb] {
    width: 88px;
}

.date-control[b-7slcqdn6sb] {
    width: 136px;
}

.company-control[b-7slcqdn6sb] {
    width: 145px;
}

.member-control[b-7slcqdn6sb] {
    width: 145px;
}

.account-control[b-7slcqdn6sb] {
    width: 170px;
}

.status-control[b-7slcqdn6sb] {
    width: 105px;
}

.query-separator[b-7slcqdn6sb] {
    height: 26px;
    display: flex;
    align-items: center;
    color: #667085;
    font-size: 12px;
}

.query-spacer[b-7slcqdn6sb] {
    flex: 1 1 auto;
    min-width: 10px;
}

.select-all-wrap[b-7slcqdn6sb] {
    height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 2px 0 0;
    color: #344054;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
}

.select-all-wrap input[b-7slcqdn6sb] {
    width: 14px;
    height: 14px;
    margin: 0;
}


/*==============================================================
  提示
==============================================================*/

.loading-panel[b-7slcqdn6sb],
.empty-panel[b-7slcqdn6sb],
.error-panel[b-7slcqdn6sb] {
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 12px;
}

.loading-panel[b-7slcqdn6sb],
.empty-panel[b-7slcqdn6sb] {
    padding: 28px 16px;
    color: #667085;
    text-align: center;
}

.error-panel[b-7slcqdn6sb] {
    margin-bottom: 10px;
    padding: 8px 11px;
    border: 1px solid #f5c2c0;
    background: #fff1f0;
    color: #b42318;
}


/*==============================================================
  表格
==============================================================*/

.withdraw-list-card[b-7slcqdn6sb] {
    margin-bottom: 0;
}

.list-header[b-7slcqdn6sb] {
    justify-content: space-between;
}

.record-count[b-7slcqdn6sb] {
    color: #667085;
    font-size: 12px;
}

.table-scroll[b-7slcqdn6sb] {
    width: 100%;

    /*==========================================================
      列表高度自动

      不再按照浏览器高度固定表格显示区。
      有多少记录就自然撑开多少高度。

      横向列很多时仍保留横向滚动。
    ==========================================================*/

    overflow-x: auto;
    overflow-y: visible;
}

.withdraw-table[b-7slcqdn6sb] {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 11px;
}

.withdraw-table th[b-7slcqdn6sb],
.withdraw-table td[b-7slcqdn6sb] {
    height: 31px;
    box-sizing: border-box;
    padding: 4px 7px;
    border-right: 1px solid #e4e8ef;
    border-bottom: 1px solid #e4e8ef;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.withdraw-table th:last-child[b-7slcqdn6sb],
.withdraw-table td:last-child[b-7slcqdn6sb] {
    border-right: 0;
}

.withdraw-table thead th[b-7slcqdn6sb] {
    position: sticky;
    top: 0;
    z-index: 3;
    height: 32px;
    background: #f6f8fb;
    color: #344054;
    font-weight: 700;
}

.withdraw-row[b-7slcqdn6sb] {
    cursor: pointer;
}

.withdraw-row:hover td[b-7slcqdn6sb] {
    filter: brightness(0.985);
}

.unaudited-row td[b-7slcqdn6sb] {
    background: #fff7e6;
}

.audited-row td[b-7slcqdn6sb] {
    background: #ecf8f0;
}

.cancelled-row td[b-7slcqdn6sb] {
    background: #fdeeee;
    color: #344054;
}

.selected-row td[b-7slcqdn6sb] {
    background: #eaf3ff !important;
    border-bottom-color: #bad6ff;
}

.audit-checkbox-column[b-7slcqdn6sb],
.audit-checkbox-cell[b-7slcqdn6sb] {
    width: 42px;
    min-width: 42px;
}

.audit-checkbox-cell input[b-7slcqdn6sb] {
    width: 14px;
    height: 14px;
    margin: 0;
}

.sequence-column[b-7slcqdn6sb] {
    width: 56px;
    min-width: 56px;
}

.status-column[b-7slcqdn6sb] {
    min-width: 78px;
}

.agent-column[b-7slcqdn6sb] {
    min-width: 160px;
}

.left-cell[b-7slcqdn6sb] {
    text-align: left !important;
}

.amount-cell[b-7slcqdn6sb] {
    text-align: right !important;
    font-variant-numeric: tabular-nums;
}

.withdraw-amount[b-7slcqdn6sb],
.actual-amount[b-7slcqdn6sb] {
    color: #1677ff;
    font-weight: 600;
}

.cancelled-amount[b-7slcqdn6sb] {
    color: #344054;
    font-weight: 400;
}

.agent-cell[b-7slcqdn6sb] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time-cell[b-7slcqdn6sb] {
    min-width: 132px;
}

.fee-rule-cell[b-7slcqdn6sb],
.reason-cell[b-7slcqdn6sb],
.remark-cell[b-7slcqdn6sb] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*==============================================================
  状态
==============================================================*/

.status-badge[b-7slcqdn6sb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 21px;
    box-sizing: border-box;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.status-unaudited[b-7slcqdn6sb] {
    background: #fff1cf;
    color: #a15c00;
}

.status-audited[b-7slcqdn6sb] {
    background: #e2f6e9;
    color: #16794b;
}

.status-cancelled[b-7slcqdn6sb] {
    background: #fde5e5;
    color: #c5221f;
}


/*==============================================================
  底部汇总
==============================================================*/

.summary-bar[b-7slcqdn6sb] {
    min-height: 38px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding: 7px 10px;
    border-top: 1px solid #d8dee8;
    background: #f8fafc;
    font-size: 12px;
}

.summary-item[b-7slcqdn6sb] {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.summary-item span[b-7slcqdn6sb] {
    color: #667085;
}

.summary-item strong[b-7slcqdn6sb] {
    color: #1f2937;
    font-weight: 700;
}

.summary-red strong[b-7slcqdn6sb] {
    color: #1677ff;
}


/*==============================================================
  弹窗
==============================================================*/

.dialog-mask[b-7slcqdn6sb] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    overflow: auto;
    background: rgba(15, 23, 42, 0.42);
}

.confirm-dialog[b-7slcqdn6sb] {
    width: min(520px, calc(100vw - 40px));
    max-width: 520px;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.20);
    color: #1f2937;
}

.confirm-dialog-title[b-7slcqdn6sb] {
    margin-bottom: 12px;
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
}

.confirm-dialog-text[b-7slcqdn6sb] {
    color: #344054;
    font-size: 13px;
    line-height: 22px;
}

.duplicate-time[b-7slcqdn6sb] {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    background: #fff7e6;
    color: #a15c00;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.confirm-dialog-note[b-7slcqdn6sb] {
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    background: #f8f9fb;
    color: #667085;
    font-size: 12px;
    line-height: 20px;
}

.cancel-reason-field[b-7slcqdn6sb] {
    margin-top: 12px;
}

.cancel-reason-field > label[b-7slcqdn6sb] {
    display: block;
    margin-bottom: 4px;
    color: #475467;
    font-size: 12px;
}

.cancel-reason-input[b-7slcqdn6sb] {
    width: 100%;
    min-height: 88px;
    box-sizing: border-box;
    padding: 7px 8px;
    resize: vertical;
    border: 1px solid #cfd6df;
    border-radius: 4px;
    outline: none;
    color: #344054;
    font-family: inherit;
    font-size: 12px;
    line-height: 19px;
}

.cancel-reason-input:focus[b-7slcqdn6sb] {
    border-color: #1677ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.10);
}

.confirm-dialog-actions[b-7slcqdn6sb] {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}


/*==============================================================
  中等屏幕
==============================================================*/

@media (max-width: 1180px) {

    .edit-grid[b-7slcqdn6sb] {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

}


/*==============================================================
  平板 / 小屏
==============================================================*/

@media (max-width: 820px) {

    .withdraw-page[b-7slcqdn6sb] {
        padding: 10px;
    }

    .query-toolbar[b-7slcqdn6sb] {
        align-items: center;
    }

    .query-spacer[b-7slcqdn6sb] {
        display: none;
    }

    .table-scroll[b-7slcqdn6sb] {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .summary-bar[b-7slcqdn6sb] {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

}


/*==============================================================
  手机
==============================================================*/

@media (max-width: 680px) {

    .edit-grid[b-7slcqdn6sb] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .control[b-7slcqdn6sb],
    .query-control[b-7slcqdn6sb] {
        height: 34px;
        min-height: 34px;
        padding: 0 9px;
        font-size: 13px;
    }

    .fee-control-wrap[b-7slcqdn6sb] {
        grid-template-columns: 1fr;
    }

    .fee-rule-text[b-7slcqdn6sb] {
        height: 34px;
        line-height: 32px;
        font-size: 12px;
    }

    .audit-status-editor[b-7slcqdn6sb],
    .select-all-wrap[b-7slcqdn6sb] {
        height: 34px;
    }

    .edit-footer[b-7slcqdn6sb] {
        display: block;
    }

    .edit-actions[b-7slcqdn6sb] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .operation-message[b-7slcqdn6sb] {
        margin-top: 8px;
        text-align: left;
        white-space: normal;
    }

    .query-toolbar[b-7slcqdn6sb] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 7px;
    }

    .quick-date-control[b-7slcqdn6sb],
    .date-control[b-7slcqdn6sb],
    .company-control[b-7slcqdn6sb],
    .member-control[b-7slcqdn6sb],
    .account-control[b-7slcqdn6sb],
    .status-control[b-7slcqdn6sb] {
        width: 100%;
    }

    .query-separator[b-7slcqdn6sb] {
        display: none;
    }

    .query-toolbar .btn[b-7slcqdn6sb] {
        width: 100%;
    }

    .select-all-wrap[b-7slcqdn6sb] {
        width: 100%;
    }

    .btn[b-7slcqdn6sb] {
        height: 36px;
        font-size: 13px;
    }

    .dialog-mask[b-7slcqdn6sb] {
        align-items: flex-start;
        padding: 12px;
    }

    .confirm-dialog[b-7slcqdn6sb] {
        width: 100%;
        max-width: none;
        margin: 12px 0;
        padding: 15px;
    }

    .confirm-dialog-title[b-7slcqdn6sb] {
        font-size: 21px;
    }

    .confirm-dialog-actions[b-7slcqdn6sb] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

}


@media (max-width: 420px) {

    .edit-actions[b-7slcqdn6sb],
    .query-toolbar[b-7slcqdn6sb],
    .confirm-dialog-actions[b-7slcqdn6sb] {
        grid-template-columns: 1fr;
    }

}
