/* /Components/Childs/ModelChilds/NewMultiSelect.razor.rz.scp.css */
[b-wfr9cznb8n] .multi-select {
    --bb-multi-select-min-height: 35px;
    --bb-multi-select-max-height: 65px;
    --bb-multi-select-button-bg-color: rgba(var(--bs-body-color-rgb), .15);
    --bb-multi-select-button-hover-bg-color: rgba(var(--bs-body-color-rgb), .3);
    --bb-multi-select-item-margin-x: 3px;
    --bb-multi-select-item-margin-y: 3px;
    --bb-multi-select-item-max-width: 130px;
    --bb-multi-select-item-padding: 2px 6px;
    width: 100%;
    position: relative;

    .dropdown-toggle {
        border: 1px solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        min-height: var(--bb-multi-select-min-height);
        max-height: var(--bb-multi-select-max-height);
        overflow: auto;
        cursor: pointer;
        transition: border 0.15s ease-in-out;

        &.is-fixed {
            --bb-multi-select-max-height: var(--bb-multi-select-min-height);
        }

        &.is-single-line[b-wfr9cznb8n] {
            height: var(--bb-multi-select-min-height);
            overflow-y: hidden;
            overflow-x: hidden;

            &:hover {
                overflow-x: auto;
            }

            .multi-select-items[b-wfr9cznb8n] {
                display: flex;
                flex-wrap: nowrap;
                width: fit-content;
            }
        }

        &:not(.disabled):hover[b-wfr9cznb8n] {
            border: 1px solid var(--bb-border-hover-color);
        }

        &.disabled[b-wfr9cznb8n] {
            background-color: var(--bs-secondary-bg);
        }
    }

    .multi-select-item-group[b-wfr9cznb8n] {
        margin-inline-end: var(--bb-multi-select-item-margin-x);
        margin-block-end: var(--bb-multi-select-item-margin-y);
    }

    .multi-select-items[b-wfr9cznb8n] {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        padding-top: var(--bb-multi-select-item-margin-y);
        padding-left: var(--bb-multi-select-item-margin-x);
        width: calc(100% - var(--bb-select-append-width));

        span {
            border: solid 1px var(--bs-border-color);
            border-radius: var(--bs-border-radius);
            padding: var(--bb-multi-select-item-padding);
            background-color: var(--bb-multi-select-button-bg-color);
        }

        .multi-select-item[b-wfr9cznb8n] {
            display: inline-block;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            max-width: var(--bb-multi-select-item-max-width);
        }

        .multi-select-item-group[b-wfr9cznb8n] {
            display: inline-flex;
            position: relative;

            + .multi-select-input {
                padding: 3px 6px;
            }
        }

        .multi-select-close[b-wfr9cznb8n] {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            margin-inline-end: -1px;
            transition: color .3s linear, background-color .3s linear;
        }
    }

    :not(.disabled) .multi-select-items .multi-select-close:hover[b-wfr9cznb8n] {
        background-color: var(--bb-multi-select-button-hover-bg-color);
    }

    .multi-select-ph[b-wfr9cznb8n] {
        padding: 0 1rem;
        color: #c0c4cc;
        line-height: var(--bb-height);
        position: absolute;
    }

    .multi-select-input[b-wfr9cznb8n] {
        border: none;
        outline: none;
        appearance: none;
        padding: 3px 12px;
        background-color: transparent;
        flex: 1;
        width: 1%;
        min-width: 1rem;
        margin-block-end: var(--bb-multi-select-item-margin-y);
    }
}

[b-wfr9cznb8n] .dropdown-menu {
    &.is-fixed-toolbar {
        --bb-dropdown-max-height: 330px;
        --bb-dropdown-toolbar-height: 38px;

        .dropdown-menu-body {
            max-height: calc(var(--bb-dropdown-max-height) - var(--bb-dropdown-toolbar-height));
        }
    }

    &.is-fixed-search.is-fixed-toolbar[b-wfr9cznb8n] {
        .dropdown-menu-body {
            max-height: calc(var(--bb-dropdown-max-height) - var(--bb-select-search-height) - var(--bb-dropdown-toolbar-height));
        }
    }

    .toolbar[b-wfr9cznb8n] {
        --bb-multi-select-toolbar-padding: 0 16px 8px 16px;
        --bb-multi-select-toolbar-button-padding: 3px 10px;
        padding: var(--bb-multi-select-toolbar-padding);
        white-space: nowrap;
        border-block-end: var(--bs-border-width) solid var(--bb-select-search-border-color);
        margin-block-end: var(--bb-select-search-margin-bottom);

        .btn {
            padding: var(--bb-multi-select-toolbar-button-padding);
            border: 1px solid var(--bs-border-color);
            transition: border-color .3s linear, color .3s linear;

            &:hover {
                border: 1px solid var(--bb-border-hover-color);
                color: var(--bs-primary);
            }

            &:not(:last-child)[b-wfr9cznb8n] {
                margin-inline-end: .5rem;
            }
        }
    }
}

[b-wfr9cznb8n] .dropdown-item .multi-select-item {
    display: flex;
    align-items: center;

    > span {
        margin-left: 0.75rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* /Components/Layout/PageLayout.razor.rz.scp.css */
.nav-header[b-qw4itdmy8g] {
    height: 40px;
    background: #393f52;
    color: white;
}

ul[b-qw4itdmy8g] {
    list-style-type: none;
    padding: 0;
}

nav ul li[b-qw4itdmy8g] {
    list-style-type: none;
    height: 40px;
    width: 7rem;
    float: left;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    user-select: none;
}

nav ul li a[b-qw4itdmy8g] {
    display: inline-block;
    height: 40px;
    width: 6rem;
    color: #FFF;
}

nav li:hover[b-qw4itdmy8g] {
    background: #646464;
    color: #FFF;
    border-bottom: 2px white;
}

.loginlink[b-qw4itdmy8g] {
    height: 40px;
    width: 6rem;
    line-height: 40px;
    text-align: center;
}

    .loginlink a[b-qw4itdmy8g] {
        display: inline-block;
        height: 40px;
        width: 6rem;
        font-size: 14px;
        color: #ffd800;
    }

    .loginlink :hover[b-qw4itdmy8g] {
        background: #646464;
        color: #ffd800;
        border-bottom: 2px white;
    }


.footer[b-qw4itdmy8g] {
    position: fixed;
    bottom: 0;
    padding: 0;
    width: 100%;
}

    .footer .link[b-qw4itdmy8g] {
        color: #fff;
        cursor: pointer;
        text-decoration: none;
    }

.footer-text[b-qw4itdmy8g] {
    font-size: 13px;
    color: #fff;
    opacity: 0.5;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mpcg683zxv],
.components-reconnect-repeated-attempt-visible[b-mpcg683zxv],
.components-reconnect-failed-visible[b-mpcg683zxv],
.components-pause-visible[b-mpcg683zxv],
.components-resume-failed-visible[b-mpcg683zxv],
.components-rejoining-animation[b-mpcg683zxv] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-retrying[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-failed[b-mpcg683zxv],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-mpcg683zxv] {
    display: block;
}


#components-reconnect-modal[b-mpcg683zxv] {
    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-mpcg683zxv 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-mpcg683zxv 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-mpcg683zxv 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-mpcg683zxv]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-mpcg683zxv 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-mpcg683zxv {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-mpcg683zxv {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-mpcg683zxv {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-mpcg683zxv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-mpcg683zxv] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-mpcg683zxv] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-mpcg683zxv] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-mpcg683zxv] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-mpcg683zxv] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-mpcg683zxv] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mpcg683zxv 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-mpcg683zxv] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-mpcg683zxv {
    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/Admin/Dashbord.razor.rz.scp.css */
body[b-oxi1fig9kg] {
    background-color: #f8f9fc;
    font-family: 'Segoe UI', 'Nunito', sans-serif;
    padding-top: 20px;
}

.dashboard-header[b-oxi1fig9kg] {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #2a3bbf 100%);
    color: white;
    padding: 15px 0;
    margin-bottom: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card[b-oxi1fig9kg] {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 24px;
    transition: transform 0.2s;
}

    .card:hover[b-oxi1fig9kg] {
        transform: translateY(-5px);
    }

.stat-card[b-oxi1fig9kg] {
    height: 100%;
}

.card-border-left[b-oxi1fig9kg] {
    border-left: 4px solid;
}

.border-left-primary[b-oxi1fig9kg] {
    border-color: var(--bs-primary) !important;
}

.border-left-success[b-oxi1fig9kg] {
    border-color: var(--bs-success) !important;
}

.border-left-info[b-oxi1fig9kg] {
    border-color: var(--bs-info) !important;
}

.border-left-warning[b-oxi1fig9kg] {
    border-color: var(--bs-warning) !important;
}

.stat-icon[b-oxi1fig9kg] {
    font-size: 2.5rem;
    opacity: 0.3;
}

.section-title[b-oxi1fig9kg] {
    border-left: 4px solid var(--bs-primary);
    padding-left: 10px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}
/* /Components/Pages/Admin/FinancialManage/DataAnalysis.razor.rz.scp.css */
:root[b-nl4ty8jpo9] {
    --primary-color: #3a6ea5;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

.body[b-nl4ty8jpo9] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.stat-card[b-nl4ty8jpo9] {
    text-align: center;
    padding: 15px;
}

.stat-number[b-nl4ty8jpo9] {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.stat-title[b-nl4ty8jpo9] {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.trend-up[b-nl4ty8jpo9] {
    color: var(--success-color);
}

.trend-down[b-nl4ty8jpo9] {
    color: var(--danger-color);
}

.date-filter[b-nl4ty8jpo9] {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.chart-container[b-nl4ty8jpo9] {
    height: 400px;
    width: 100%;
}
/* /Components/Pages/Admin/Sftp/LocalData.razor.rz.scp.css */
.dir-style:hover[b-7df5wrpg36] {
    color: #3366FF
}

[b-7df5wrpg36] .table-cell{
    display:block;
}
/* /Components/Pages/Admin/Sftp/SFTP_DFYX.razor.rz.scp.css */
.dir-style:hover[b-iaop628d23] {
    color: #3366FF
}

[b-iaop628d23] .table-cell{
    display:block;
}
/* /Components/Pages/Comm/ModelTasks.razor.rz.scp.css */
.detail-content[b-w4wgm90fpq] {
    padding: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    background-color: #f5f7fb;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 0.9rem;
}

.info-card[b-w4wgm90fpq] {
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    padding: 12px;
    height: 100%;
    margin-bottom: 10px;
}

.info-group[b-w4wgm90fpq] {
    margin-bottom: 10px;
}

.info-label[b-w4wgm90fpq] {
    color: #6c757d;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.info-value[b-w4wgm90fpq] {
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.status-badge[b-w4wgm90fpq] {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-active[b-w4wgm90fpq] {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-pending[b-w4wgm90fpq] {
    background-color: #ffecb3;
    color: #f57c00;
}

.section-title[b-w4wgm90fpq] {
    font-size: 0.85rem;
    color: #4a6fdc;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eaeef7;
}

.rotate-icon[b-w4wgm90fpq] {
    transition: transform 0.3s;
}

    .rotate-icon.rotated[b-w4wgm90fpq] {
        transform: rotate(180deg);
    }

.progress[b-w4wgm90fpq] {
    height: 6px;
}

.btn-sm[b-w4wgm90fpq] {
    padding: 3px 8px;
    font-size: 0.8rem;
}

.badge[b-w4wgm90fpq] {
    font-size: 0.75rem;
}

.action-buttons[b-w4wgm90fpq] {
    white-space: nowrap;
}

/* 两列布局样式 */
.two-column-layout[b-w4wgm90fpq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

    .two-column-layout .info-group[b-w4wgm90fpq] {
        margin-bottom: 12px;
    }

/* 三列布局样式 */
.three-column-layout[b-w4wgm90fpq] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .three-column-layout .info-group[b-w4wgm90fpq] {
        margin-bottom: 12px;
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .two-column-layout[b-w4wgm90fpq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Cus/CustomerCenter/AccountInfo.razor.rz.scp.css */

body[b-7y51brkv2q] {
    background-color: #f5f7fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.profile-header[b-7y51brkv2q] {
    background: linear-gradient(135deg, var(--bb-primary-color), #4395e9);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--bb-card-shadow);
}

.info-item[b-7y51brkv2q] {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-label[b-7y51brkv2q] {
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.info-value[b-7y51brkv2q] {
    color: #333;
    flex: 1;
}

.logo-container[b-7y51brkv2q] {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .logo-container:hover[b-7y51brkv2q] {
        border-color: var(--bb-primary-color);
    }

.logo-img[b-7y51brkv2q] {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.edit-icon[b-7y51brkv2q] {
    color: #6c757d;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: color 0.2s;
}

    .edit-icon:hover[b-7y51brkv2q] {
        color: var(--bs-warning);
    }

/* /Components/Pages/Cus/CustomerCenter/BdPoint.razor.rz.scp.css */

.info-item[b-j47ty184i8] {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-label[b-j47ty184i8] {
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.info-value[b-j47ty184i8] {
    color: #333;
    flex: 1;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-item-floating[b-rn368tup2e] {
    --login-padding-x: 1rem;
    --bs-border-radius: 10px;
}

.container-fluid[b-rn368tup2e] {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    --min-height: 600px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container[b-rn368tup2e] {
    --login-max-width: 540px;
    --login-padding-x: 1.5rem;
    --login-padding-y: .75rem;
    --bs-border-radius: 23px;
    max-width: var(--login-max-width);
    margin: 0 auto;
}

[b-rn368tup2e] .form-control {
    margin-bottom: 1rem
}

[b-rn368tup2e] .form-check {
    padding: var(--login-padding-y) var(--login-padding-x);
    margin-bottom: 1rem;
}

[b-rn368tup2e] .btn {
    --bs-btn-padding-x: var(--login-padding-x);
    --bs-btn-padding-y: var(--login-padding-y);
    width: 100%;
    margin-bottom: 1rem;
}
