/* /Components/Admin/Layout/AdminLayout.razor.rz.scp.css */
/* ============================================
   Admin Layout Styles
   ============================================ */

.admin-main-content[b-aoxluz97jw] {
    background-color: var(--ks-background-gray);
    min-height: calc(100vh - 48px);
}

/* MudDrawer Mini 模式样式调整 */
[b-aoxluz97jw] .mud-drawer-mini {
    width: 56px !important;
}

[b-aoxluz97jw] .mud-drawer-mini:hover,
[b-aoxluz97jw] .mud-drawer-mini.mud-drawer-open-mini-on-hover:hover {
    width: 240px !important;
}
/* /Components/Admin/Pages/AdminProjects.razor.rz.scp.css */
/* ==== AdminProjects 工程案例列表页面样式 ==== */

.page-header[b-tg7cg3lljb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.text-mono[b-tg7cg3lljb] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
}

[b-tg7cg3lljb] .inactive-row {
    opacity: 0.6;
    background-color: var(--mud-palette-background-grey);
}

[b-tg7cg3lljb] .inactive-row:hover {
    opacity: 0.8;
}
/* /Components/Admin/Pages/Dashboard.razor.rz.scp.css */
/* ============================================
   Admin Dashboard Styles
   ============================================ */

/* 统计卡片 */
.stat-card[b-1hukyz26g0] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-md);
}

.stat-icon[b-1hukyz26g0] {
    width: 56px;
    height: 56px;
    border-radius: var(--ks-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-icon-new[b-1hukyz26g0] {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.stat-icon-processing[b-1hukyz26g0] {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.stat-icon-total[b-1hukyz26g0] {
    background: linear-gradient(135deg, var(--ks-primary), var(--ks-primary-light));
}

.stat-icon-news[b-1hukyz26g0] {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.stat-content[b-1hukyz26g0] {
    flex: 1;
}

.stat-value[b-1hukyz26g0] {
    font-weight: 700;
    color: var(--ks-text-primary);
}

/* 区块头部 */
.section-header[b-1hukyz26g0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 响应式 */
@media (max-width: 600px) {
    .stat-card[b-1hukyz26g0] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Components/Admin/Pages/Inquiries.razor.rz.scp.css */
/* ============================================
   Admin Inquiries Page Styles
   ============================================ */

.page-header[b-gnjuie2qut] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ks-space-lg);
}

.fw-bold[b-gnjuie2qut] {
    font-weight: 600;
}

/* 表格行悬停效果 */
[b-gnjuie2qut] .mud-table-row:hover {
    background-color: var(--mud-palette-action-default-hover) !important;
}
/* /Components/Admin/Pages/Login.razor.rz.scp.css */
/* ============================================
   Admin Login Page Styles - 美化版
   ============================================ */

.login-page[b-q3o70vdi5v] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1565C0 0%, #1E88E5 40%, #42A5F5 100%);
    padding: var(--ks-space-md);
    position: relative;
    overflow: hidden;
}

/* 背景装饰圆圈 */
.login-page[b-q3o70vdi5v]::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -200px;
}

.login-page[b-q3o70vdi5v]::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -100px;
    left: -100px;
}

.login-container[b-q3o70vdi5v] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}

/* 装饰元素 */
.decoration[b-q3o70vdi5v] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-b-q3o70vdi5v 6s ease-in-out infinite;
}

.decoration-1[b-q3o70vdi5v] {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -20px;
    animation-delay: 0s;
}

.decoration-2[b-q3o70vdi5v] {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: -10px;
    animation-delay: 2s;
}

.decoration-3[b-q3o70vdi5v] {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes float-b-q3o70vdi5v {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 登录卡片 */
.login-card[b-q3o70vdi5v] {
    padding: 0;
    border-radius: 20px;
    background: white;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* 头部区域 */
.login-header[b-q3o70vdi5v] {
    text-align: center;
    padding: 40px 40px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.logo-circle[b-q3o70vdi5v] {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.2);
}

.login-header[b-q3o70vdi5v]  .company-name {
    font-weight: 700;
    color: #1E88E5;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.login-header[b-q3o70vdi5v]  .subtitle {
    color: #64748b;
    font-size: 0.9rem;
}

/* 表单区域 */
.login-form[b-q3o70vdi5v] {
    padding: 24px 40px 32px;
}

.login-form[b-q3o70vdi5v]  .password-field {
    margin-bottom: 16px;
}

.login-form[b-q3o70vdi5v]  .password-field .mud-input-outlined-border {
    border-radius: 12px;
}

.login-form[b-q3o70vdi5v]  .password-field .mud-input {
    font-size: 1rem;
}

.login-form[b-q3o70vdi5v]  .remember-checkbox {
    margin-bottom: 20px;
    margin-left: -8px;
}

.login-form[b-q3o70vdi5v]  .remember-checkbox .mud-typography {
    font-size: 0.875rem;
    color: #64748b;
}

.login-form[b-q3o70vdi5v]  .login-button {
    border-radius: 12px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.4);
    transition: all 0.3s ease;
}

.login-form[b-q3o70vdi5v]  .login-button:hover {
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
    transform: translateY(-2px);
}

.login-form[b-q3o70vdi5v]  .error-alert {
    margin-top: 16px;
    border-radius: 8px;
}

/* 底部区域 */
.login-footer[b-q3o70vdi5v] {
    padding: 16px 40px 24px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.login-footer[b-q3o70vdi5v]  .mud-button-root {
    color: #64748b;
    font-size: 0.875rem;
}

.login-footer[b-q3o70vdi5v]  .mud-button-root:hover {
    color: #1E88E5;
    background: rgba(30, 136, 229, 0.08);
}

/* 响应式 */
@media (max-width: 480px) {
    .login-header[b-q3o70vdi5v] {
        padding: 32px 24px 20px;
    }

    .login-form[b-q3o70vdi5v] {
        padding: 20px 24px 28px;
    }

    .login-footer[b-q3o70vdi5v] {
        padding: 12px 24px 20px;
    }

    .logo-circle[b-q3o70vdi5v] {
        width: 70px;
        height: 70px;
    }

    .decoration[b-q3o70vdi5v] {
        display: none;
    }
}
/* /Components/Admin/Pages/News.razor.rz.scp.css */
.page-header[b-1g2xwr5cv4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

[b-1g2xwr5cv4] .draft-row {
    opacity: 0.6;
    background-color: var(--mud-palette-background-grey);
}

[b-1g2xwr5cv4] .draft-row:hover {
    opacity: 0.8;
}
/* /Components/Admin/Pages/NewsEdit.razor.rz.scp.css */
.news-edit-page[b-ns606tyi50] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 64px);
}

.edit-content[b-ns606tyi50] {
    flex: 1;
    padding-bottom: 80px;
}

.main-editor[b-ns606tyi50] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edit-section[b-ns606tyi50] {
    border-radius: 8px;
    overflow: hidden;
}

.section-header[b-ns606tyi50] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.section-content[b-ns606tyi50] {
    padding: 1.5rem;
}

/* 封面图片预览 */
.cover-preview[b-ns606tyi50] {
    position: relative;
    display: inline-block;
}

.cover-delete-btn[b-ns606tyi50] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9) !important;
}

/* 移动端底部保存栏 */
.mobile-save-bar[b-ns606tyi50] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
    gap: 1rem;
    z-index: 100;
}

@media (max-width: 960px) {
    .mobile-save-bar[b-ns606tyi50] {
        display: flex;
    }

    .edit-content[b-ns606tyi50] {
        padding-bottom: 100px;
    }
}
/* /Components/Admin/Pages/ProjectEdit.razor.rz.scp.css */
/* ==== ProjectEdit 工程案例编辑页面样式 ==== */

.project-edit-page[b-pf6h27dw5g] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 64px);
}

/* ---- 页面头部（冻结） ---- */
.page-header[b-pf6h27dw5g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ks-space-sm) var(--ks-space-lg);
    background: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 48px; /* MudAppBar Dense 高度 */
    z-index: 90;
    gap: var(--ks-space-md);
}

.header-left[b-pf6h27dw5g] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    flex-shrink: 0;
}

.header-title[b-pf6h27dw5g] {
    white-space: nowrap;
}

.header-nav[b-pf6h27dw5g] {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0 var(--ks-space-sm);
}

.header-nav[b-pf6h27dw5g]::-webkit-scrollbar {
    display: none;
}

.nav-chips[b-pf6h27dw5g] {
    flex-wrap: nowrap;
    gap: var(--ks-space-xs);
}

.nav-chips[b-pf6h27dw5g]  .mud-chip {
    cursor: pointer;
}

.header-right[b-pf6h27dw5g] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    flex-shrink: 0;
}

/* ---- 编辑内容区域 ---- */
.edit-content[b-pf6h27dw5g] {
    padding: var(--ks-space-lg);
    flex: 1;
}

/* ---- 主编辑区 ---- */
.main-editor[b-pf6h27dw5g] {
    display: flex;
    flex-direction: column;
    gap: var(--ks-space-lg);
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- 编辑区块 ---- */
.edit-section[b-pf6h27dw5g] {
    border-radius: var(--ks-radius-md);
    overflow: hidden;
    scroll-margin-top: var(--ks-space-lg);
}

.section-header[b-pf6h27dw5g] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-md) var(--ks-space-lg);
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.section-content[b-pf6h27dw5g] {
    padding: var(--ks-space-lg);
}

/* ---- 图片相册预览 ---- */
.gallery-preview[b-pf6h27dw5g] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
}

/* ---- 拖拽图片区域 ---- */
.drop-container[b-pf6h27dw5g] {
    width: 100%;
}

.drop-zone-wrapper[b-pf6h27dw5g] {
    background: var(--mud-palette-background-grey);
    border-radius: var(--ks-radius-md);
    padding: var(--ks-space-md);
}

.gallery-zone-wrapper[b-pf6h27dw5g] {
    border: 2px dashed var(--mud-palette-lines-default);
}

.drop-zone-header[b-pf6h27dw5g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ks-space-sm);
}

.drop-zone-target[b-pf6h27dw5g] {
    min-height: 120px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-surface);
    border-radius: var(--ks-radius-sm);
}

.gallery-target[b-pf6h27dw5g] {
    min-height: 150px;
}

.drop-zone-source[b-pf6h27dw5g] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-background);
    border-radius: var(--ks-radius-sm);
}

.drop-zone-placeholder[b-pf6h27dw5g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    color: var(--mud-palette-text-secondary);
    gap: var(--ks-space-sm);
}

.draggable-image[b-pf6h27dw5g] {
    position: relative;
    width: 120px;
    height: 90px;
    border-radius: var(--ks-radius-sm);
    overflow: hidden;
    cursor: grab;
    transition: all var(--ks-transition-fast);
    border: 2px solid transparent;
}

.draggable-image:hover[b-pf6h27dw5g] {
    border-color: var(--ks-primary);
    transform: scale(1.02);
}

.draggable-image:active[b-pf6h27dw5g] {
    cursor: grabbing;
}

.draggable-image img[b-pf6h27dw5g] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.draggable-image.source-image[b-pf6h27dw5g] {
    opacity: 0.8;
}

.draggable-image.target-image[b-pf6h27dw5g] {
    box-shadow: var(--ks-shadow-sm);
}

.image-actions[b-pf6h27dw5g] {
    position: absolute;
    top: 4px;
    right: 4px;
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

.draggable-image:hover .image-actions[b-pf6h27dw5g] {
    opacity: 1;
}

.image-actions[b-pf6h27dw5g]  .mud-icon-button {
    background: rgba(0, 0, 0, 0.6);
    padding: 2px;
}

.image-order[b-pf6h27dw5g] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: var(--ks-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--ks-radius-xs);
}

.drag-handle[b-pf6h27dw5g] {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px;
    border-radius: var(--ks-radius-xs);
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

.draggable-image:hover .drag-handle[b-pf6h27dw5g] {
    opacity: 1;
}

/* ---- 移动端底部保存栏 ---- */
.mobile-save-bar[b-pf6h27dw5g] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--ks-space-md);
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
    gap: var(--ks-space-md);
    z-index: 100;
}

/* ---- 响应式 ---- */
@media (max-width: 960px) {
    .page-header[b-pf6h27dw5g] {
        padding: var(--ks-space-xs) var(--ks-space-sm);
    }

    .header-title[b-pf6h27dw5g] {
        display: none;
    }

    .header-nav[b-pf6h27dw5g] {
        justify-content: flex-start;
    }

    .header-right .mud-button[b-pf6h27dw5g] {
        min-width: auto;
        padding: 4px 8px;
    }

    .edit-content[b-pf6h27dw5g] {
        padding: var(--ks-space-md);
    }

    .main-editor[b-pf6h27dw5g] {
        padding-bottom: 40px;
    }

    .section-content[b-pf6h27dw5g] {
        padding: var(--ks-space-md);
    }
}

@media (max-width: 600px) {
    .page-header[b-pf6h27dw5g] {
        flex-wrap: wrap;
        gap: var(--ks-space-xs);
    }

    .header-left[b-pf6h27dw5g] {
        order: 1;
    }

    .header-right[b-pf6h27dw5g] {
        order: 2;
    }

    .header-nav[b-pf6h27dw5g] {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding: var(--ks-space-xs) 0 0 0;
    }

    .edit-content[b-pf6h27dw5g] {
        padding: var(--ks-space-sm);
        gap: var(--ks-space-md);
    }
}
/* /Components/Admin/Pages/ServiceEdit.razor.rz.scp.css */
/* ==== ServiceEdit 服务编辑页面样式 ==== */

.service-edit-page[b-s6ujm3y4vw] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 64px);
}

/* ---- 页面头部（冻结） ---- */
.page-header[b-s6ujm3y4vw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ks-space-sm) var(--ks-space-lg);
    background: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 48px; /* MudAppBar Dense 高度 */
    z-index: 90;
    gap: var(--ks-space-md);
}

.header-left[b-s6ujm3y4vw] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    flex-shrink: 0;
}

.header-title[b-s6ujm3y4vw] {
    white-space: nowrap;
}

.header-nav[b-s6ujm3y4vw] {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 0 var(--ks-space-sm);
}

.header-nav[b-s6ujm3y4vw]::-webkit-scrollbar {
    display: none;
}

.nav-chips[b-s6ujm3y4vw] {
    flex-wrap: nowrap;
    gap: var(--ks-space-xs);
}

.nav-chips[b-s6ujm3y4vw]  .mud-chip {
    cursor: pointer;
}

.header-right[b-s6ujm3y4vw] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    flex-shrink: 0;
}

/* ---- 编辑内容区域 ---- */
.edit-content[b-s6ujm3y4vw] {
    padding: var(--ks-space-lg);
    flex: 1;
}

/* ---- 主编辑区 ---- */
.main-editor[b-s6ujm3y4vw] {
    display: flex;
    flex-direction: column;
    gap: var(--ks-space-lg);
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- 编辑区块 ---- */
.edit-section[b-s6ujm3y4vw] {
    border-radius: var(--ks-radius-md);
    overflow: hidden;
    scroll-margin-top: var(--ks-space-lg);
}

.section-header[b-s6ujm3y4vw] {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-md) var(--ks-space-lg);
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.section-content[b-s6ujm3y4vw] {
    padding: var(--ks-space-lg);
}

/* ---- 图片字段 ---- */
.image-field[b-s6ujm3y4vw] {
    margin-bottom: var(--ks-space-md);
}

/* ---- 富文本编辑器字段 ---- */
.rte-field[b-s6ujm3y4vw] {
    margin-bottom: var(--ks-space-lg);
}

.rte-field:last-child[b-s6ujm3y4vw] {
    margin-bottom: 0;
}

/* Syncfusion RichTextEditor 样式调整 */
.rte-field[b-s6ujm3y4vw]  .e-richtexteditor {
    border-radius: var(--ks-radius-sm);
    border-color: var(--mud-palette-lines-default);
}

.rte-field[b-s6ujm3y4vw]  .e-richtexteditor .e-rte-toolbar {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.rte-field[b-s6ujm3y4vw]  .e-richtexteditor .e-rte-content {
    background: var(--mud-palette-surface);
}

.rte-field[b-s6ujm3y4vw]  .e-richtexteditor:hover {
    border-color: var(--mud-palette-primary);
}

.rte-field[b-s6ujm3y4vw]  .e-richtexteditor.e-rte-full-screen {
    z-index: 9999;
}

/* ---- 动态内容块 ---- */
.content-block[b-s6ujm3y4vw] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--ks-radius-md);
    background: var(--mud-palette-surface);
    overflow: hidden;
}

.content-block-header[b-s6ujm3y4vw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ks-space-sm) var(--ks-space-md);
    background: var(--mud-palette-background-grey);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    cursor: pointer;
    transition: background-color var(--ks-transition-fast);
}

.content-block-header:hover[b-s6ujm3y4vw] {
    background: var(--mud-palette-action-default-hover);
}

.content-block.collapsed .content-block-header[b-s6ujm3y4vw] {
    border-bottom: none;
}

.content-block-body[b-s6ujm3y4vw] {
    padding: var(--ks-space-md);
}

.content-block-summary[b-s6ujm3y4vw] {
    background: var(--mud-palette-background);
    border-top: 1px dashed var(--mud-palette-lines-default);
}

.image-preview[b-s6ujm3y4vw] {
    width: 200px;
    height: 150px;
    border-radius: var(--ks-radius-sm);
    overflow: hidden;
    border: 1px solid var(--mud-palette-lines-default);
}

.image-preview img[b-s6ujm3y4vw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- 拖拽容器 ---- */
.drop-container[b-s6ujm3y4vw] {
    width: 100%;
}

/* ---- 目标区块网格 ---- */
.drop-zones-grid[b-s6ujm3y4vw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ks-space-md);
}

.drop-zone-wrapper[b-s6ujm3y4vw] {
    background: var(--mud-palette-background-grey);
    border-radius: var(--ks-radius-sm);
    padding: var(--ks-space-sm);
}

.drop-zone-header[b-s6ujm3y4vw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ks-space-sm);
    padding: 0 var(--ks-space-xs);
}

/* ---- 目标拖放区 ---- */
[b-s6ujm3y4vw] .drop-zone-target {
    min-height: 120px;
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: var(--ks-radius-sm);
    padding: var(--ks-space-md);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    align-items: flex-start;
    align-content: flex-start;
    transition: all var(--ks-transition-fast);
    position: relative;
}

[b-s6ujm3y4vw] .drop-zone-target:empty {
    justify-content: center;
    align-items: center;
}

[b-s6ujm3y4vw] .drop-zone-target.mud-drop-zone-drag-block {
    border-color: var(--mud-palette-primary);
    background: rgba(var(--mud-palette-primary-rgb), 0.05);
}

.drop-zone-placeholder[b-s6ujm3y4vw] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ks-space-xs);
    color: var(--mud-palette-text-secondary);
    font-size: 12px;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

/* ---- 源拖放区（可用图片） ---- */
[b-s6ujm3y4vw] .drop-zone-source {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-background-grey);
    border-radius: var(--ks-radius-sm);
    max-height: 300px;
    overflow-y: auto;
    align-items: flex-start;
    align-content: flex-start;
}

/* ---- 可拖拽图片 ---- */
.draggable-image[b-s6ujm3y4vw] {
    position: relative;
    border-radius: var(--ks-radius-sm);
    overflow: hidden;
    cursor: grab;
    transition: all var(--ks-transition-fast);
    border: 2px solid transparent;
}

.draggable-image:hover[b-s6ujm3y4vw] {
    border-color: var(--mud-palette-primary);
    transform: scale(1.02);
}

.draggable-image:active[b-s6ujm3y4vw] {
    cursor: grabbing;
}

.draggable-image img[b-s6ujm3y4vw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 源区域图片 */
.draggable-image.source-image[b-s6ujm3y4vw] {
    width: 100px;
    height: 75px;
}

/* 目标区域图片 */
.draggable-image.target-image[b-s6ujm3y4vw] {
    width: 80px;
    height: 60px;
}

/* 拖拽手柄 */
.drag-handle[b-s6ujm3y4vw] {
    position: absolute;
    top: 2px;
    left: 2px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 2px;
    padding: 2px;
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

.draggable-image:hover .drag-handle[b-s6ujm3y4vw] {
    opacity: 1;
}

/* 图片操作按钮 */
.image-actions[b-s6ujm3y4vw] {
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

.draggable-image:hover .image-actions[b-s6ujm3y4vw] {
    opacity: 1;
}

.image-actions[b-s6ujm3y4vw]  .mud-icon-button {
    background: rgba(0, 0, 0, 0.6);
    color: white !important;
    padding: 2px;
}

/* 图片顺序标记 */
.image-order[b-s6ujm3y4vw] {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 1px 4px;
    border-radius: 2px;
}

/* ---- 移动端底部保存栏 ---- */
.mobile-save-bar[b-s6ujm3y4vw] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--ks-space-md);
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
    gap: var(--ks-space-md);
    z-index: 100;
}

/* ---- 响应式 ---- */
@media (max-width: 960px) {
    .page-header[b-s6ujm3y4vw] {
        padding: var(--ks-space-xs) var(--ks-space-sm);
    }

    .header-title[b-s6ujm3y4vw] {
        display: none;
    }

    .header-nav[b-s6ujm3y4vw] {
        justify-content: flex-start;
    }

    .header-right .mud-button[b-s6ujm3y4vw] {
        min-width: auto;
        padding: 4px 8px;
    }

    .edit-content[b-s6ujm3y4vw] {
        padding: var(--ks-space-md);
    }

    .mobile-save-bar[b-s6ujm3y4vw] {
        display: none; /* 头部已有保存按钮，不需要底部栏 */
    }

    .main-editor[b-s6ujm3y4vw] {
        padding-bottom: 40px;
    }

    .drop-zones-grid[b-s6ujm3y4vw] {
        grid-template-columns: 1fr;
    }

    .draggable-image.source-image[b-s6ujm3y4vw] {
        width: 80px;
        height: 60px;
    }

    .section-content[b-s6ujm3y4vw] {
        padding: var(--ks-space-md);
    }
}

@media (max-width: 600px) {
    .page-header[b-s6ujm3y4vw] {
        flex-wrap: wrap;
        gap: var(--ks-space-xs);
    }

    .header-left[b-s6ujm3y4vw] {
        order: 1;
    }

    .header-right[b-s6ujm3y4vw] {
        order: 2;
    }

    .header-nav[b-s6ujm3y4vw] {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding: var(--ks-space-xs) 0 0 0;
    }

    .edit-content[b-s6ujm3y4vw] {
        padding: var(--ks-space-sm);
        gap: var(--ks-space-md);
    }

    [b-s6ujm3y4vw] .drop-zone-source {
        max-height: 200px;
    }

    .draggable-image.source-image[b-s6ujm3y4vw] {
        width: 70px;
        height: 52px;
    }

    .draggable-image.target-image[b-s6ujm3y4vw] {
        width: 60px;
        height: 45px;
    }

    .image-preview[b-s6ujm3y4vw] {
        width: 100%;
        height: 120px;
    }
}

/* ---- 图标预览 ---- */
.icon-preview[b-s6ujm3y4vw] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--mud-palette-background-grey);
    border-radius: var(--ks-radius-md);
    border: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}

.icon-preview i[b-s6ujm3y4vw] {
    font-size: 24px;
    color: var(--mud-palette-primary);
}
/* /Components/Admin/Pages/Services.razor.rz.scp.css */
.page-header[b-r8tfh9x1nm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.text-mono[b-r8tfh9x1nm] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
}

[b-r8tfh9x1nm] .inactive-row {
    opacity: 0.6;
    background-color: var(--mud-palette-background-grey);
}

[b-r8tfh9x1nm] .inactive-row:hover {
    opacity: 0.8;
}
/* /Components/Admin/Shared/AdminPageHeader.razor.rz.scp.css */
.admin-page-header[b-1eh3n8h1ov] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background-color: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    position: sticky;
    top: 48px; /* MudAppBar Dense 高度 */
    z-index: 100;
    gap: 16px;
}

.header-left[b-1eh3n8h1ov] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.header-title[b-1eh3n8h1ov] {
    white-space: nowrap;
    font-weight: 600;
}

.header-nav[b-1eh3n8h1ov] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-chips[b-1eh3n8h1ov] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.header-right[b-1eh3n8h1ov] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 响应式 */
@media (max-width: 960px) {
    .admin-page-header[b-1eh3n8h1ov] {
        flex-wrap: wrap;
        padding: 8px 16px;
    }

    .header-nav[b-1eh3n8h1ov] {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .nav-chips[b-1eh3n8h1ov] {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .header-left[b-1eh3n8h1ov] {
        flex: 1;
    }

    .header-title[b-1eh3n8h1ov] {
        font-size: 1rem;
    }
}
/* /Components/Admin/Shared/IconPickerDialog.razor.rz.scp.css */
/* 图标选择器对话框样式 */
.icon-picker-content[b-vf30ezaj5q] {
    min-width: 500px;
    max-height: 60vh;
}

.selected-preview[b-vf30ezaj5q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    background: var(--mud-palette-primary-lighten);
    border-radius: 8px;
    min-width: 80px;
}

.selected-preview i[b-vf30ezaj5q] {
    font-size: 24px;
    color: var(--mud-palette-primary);
    margin-bottom: 4px;
}

.icon-grid[b-vf30ezaj5q] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
}

.icon-item[b-vf30ezaj5q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--mud-palette-surface);
}

.icon-item:hover[b-vf30ezaj5q] {
    background: var(--mud-palette-action-default-hover);
    border-color: var(--mud-palette-primary);
}

.icon-item.selected[b-vf30ezaj5q] {
    background: var(--mud-palette-primary-lighten);
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 2px var(--mud-palette-primary-lighten);
}

.icon-item i[b-vf30ezaj5q] {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--mud-palette-text-primary);
}

.icon-item.selected i[b-vf30ezaj5q] {
    color: var(--mud-palette-primary);
}

.icon-name[b-vf30ezaj5q] {
    font-size: 11px;
    text-align: center;
    color: var(--mud-palette-text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

@media (max-width: 600px) {
    .icon-picker-content[b-vf30ezaj5q] {
        min-width: auto;
        width: 100%;
    }

    .icon-grid[b-vf30ezaj5q] {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
}
/* /Components/Admin/Shared/ImageDropZone.razor.rz.scp.css */
/* ImageDropZone 组件样式 */
.image-drop-zone-container[b-learhehhqr] {
    width: 100%;
}

.drop-container[b-learhehhqr] {
    width: 100%;
}

.drop-zone-wrapper[b-learhehhqr] {
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    padding: 16px;
}

.drop-zone-header[b-learhehhqr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.drop-zone-target[b-learhehhqr] {
    min-height: 120px;
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transition: all 0.2s ease;
}

.drop-zone-target:hover[b-learhehhqr],
.drop-zone-target.mud-dropzone-drag[b-learhehhqr] {
    border-color: var(--mud-palette-primary);
    background: rgba(var(--mud-palette-primary-rgb), 0.05);
}

.drop-zone-placeholder[b-learhehhqr] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    padding: 24px;
}

.drop-zone-source[b-learhehhqr] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
    background: var(--mud-palette-surface);
    border-radius: 8px;
    min-height: 80px;
}

.draggable-image[b-learhehhqr] {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: grab;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.draggable-image:hover[b-learhehhqr] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.draggable-image:active[b-learhehhqr] {
    cursor: grabbing;
}

.draggable-image img[b-learhehhqr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 可点击图片样式 - 点击放大预览 */
.draggable-image img.clickable-image[b-learhehhqr] {
    cursor: zoom-in;
}

.draggable-image img.clickable-image:hover[b-learhehhqr] {
    filter: brightness(1.05);
}

.draggable-image.source-image[b-learhehhqr] {
    opacity: 0.85;
}

.draggable-image.source-image:hover[b-learhehhqr] {
    opacity: 1;
}

.draggable-image.target-image[b-learhehhqr] {
    border: 2px solid var(--mud-palette-primary);
}

.image-actions[b-learhehhqr] {
    position: absolute;
    top: 4px;
    right: 4px;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.draggable-image:hover .image-actions[b-learhehhqr] {
    display: flex;
}

.image-order[b-learhehhqr] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: var(--mud-palette-primary);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 20px;
    text-align: center;
}

.drag-handle[b-learhehhqr] {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 4px;
    padding: 2px;
    opacity: 0;
    transition: opacity 0.2s;
}

.draggable-image:hover .drag-handle[b-learhehhqr] {
    opacity: 1;
}
/* /Components/Admin/Shared/MultiZoneImageManager.razor.rz.scp.css */
/* ==== MultiZoneImageManager.razor.css ==== */

/* ---- 容器 ---- */
.multi-zone-manager[b-eqv9g4fqp3] {
    display: flex;
    flex-direction: column;
    gap: var(--ks-space-md);
}

.manager-header[b-eqv9g4fqp3] {
    display: flex;
    flex-direction: column;
    gap: var(--ks-space-xs);
}

/* ---- 拖拽容器 ---- */
[b-eqv9g4fqp3] .drop-container {
    display: flex;
    flex-direction: column;
}

/* ---- 区块网格 ---- */
[b-eqv9g4fqp3] .drop-zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ks-space-md);
}

@media (max-width: 960px) {
    [b-eqv9g4fqp3] .drop-zones-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- 目标区块 ---- */
[b-eqv9g4fqp3] .drop-zone-wrapper {
    background: var(--mud-palette-background-gray);
    border-radius: var(--ks-radius-md);
    padding: var(--ks-space-sm);
}

[b-eqv9g4fqp3] .drop-zone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ks-space-sm);
    padding: 0 var(--ks-space-xs);
}

[b-eqv9g4fqp3] .drop-zone-target {
    min-height: 120px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-surface);
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: var(--ks-radius-sm);
    transition: border-color var(--ks-transition-fast), background-color var(--ks-transition-fast);
}

[b-eqv9g4fqp3] .drop-zone-target:hover,
[b-eqv9g4fqp3] .drop-zone-target.mud-drop-zone-drag-block {
    border-color: var(--mud-palette-primary);
    background: rgba(var(--mud-palette-primary-rgb), 0.05);
}

/* ---- 占位符 ---- */
[b-eqv9g4fqp3] .drop-zone-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--ks-space-xs);
    width: 100%;
    height: 100%;
    min-height: 80px;
    color: var(--mud-palette-text-secondary);
    font-size: 0.875rem;
}

/* ---- 可用图片源 ---- */
[b-eqv9g4fqp3] .drop-zone-source {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-background-gray);
    border-radius: var(--ks-radius-sm);
    min-height: 80px;
}

/* ---- 拖拽图片项 ---- */
[b-eqv9g4fqp3] .draggable-image {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--ks-radius-sm);
    overflow: hidden;
    cursor: grab;
    transition: transform var(--ks-transition-fast), box-shadow var(--ks-transition-fast);
}

[b-eqv9g4fqp3] .draggable-image:hover {
    transform: scale(1.05);
    box-shadow: var(--ks-shadow-md);
}

[b-eqv9g4fqp3] .draggable-image:active {
    cursor: grabbing;
}

[b-eqv9g4fqp3] .draggable-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- 可点击图片样式 - 点击放大预览 ---- */
[b-eqv9g4fqp3] .draggable-image img.clickable-image {
    cursor: zoom-in;
}

[b-eqv9g4fqp3] .draggable-image img.clickable-image:hover {
    filter: brightness(1.05);
}

/* ---- 源图片样式 ---- */
[b-eqv9g4fqp3] .draggable-image.source-image {
    border: 2px solid transparent;
}

[b-eqv9g4fqp3] .draggable-image.source-image:hover {
    border-color: var(--mud-palette-primary);
}

/* ---- 目标图片样式 ---- */
[b-eqv9g4fqp3] .draggable-image.target-image {
    border: 2px solid var(--mud-palette-primary);
}

/* ---- 图片操作按钮 ---- */
[b-eqv9g4fqp3] .image-actions {
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

[b-eqv9g4fqp3] .draggable-image:hover .image-actions {
    opacity: 1;
}

[b-eqv9g4fqp3] .image-actions .mud-icon-button {
    background: rgba(0, 0, 0, 0.6);
    color: white !important;
    width: 24px;
    height: 24px;
}

/* ---- 可用图片区的删除按钮 ---- */
[b-eqv9g4fqp3] .image-actions.source-actions {
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--ks-radius-xs);
    padding: 2px;
}

[b-eqv9g4fqp3] .draggable-image.source-image:hover .image-actions.source-actions {
    opacity: 1;
}

/* ---- 图片顺序标记 ---- */
[b-eqv9g4fqp3] .image-order {
    position: absolute;
    bottom: 2px;
    left: 2px;
    background: var(--mud-palette-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ks-radius-xs);
}

/* ---- 拖拽手柄 ---- */
[b-eqv9g4fqp3] .drag-handle {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ks-radius-xs);
    opacity: 0;
    transition: opacity var(--ks-transition-fast);
}

[b-eqv9g4fqp3] .draggable-image:hover .drag-handle {
    opacity: 1;
}

/* ==== 上传进度区域 ==== */
[b-eqv9g4fqp3] .upload-progress-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ks-space-sm);
    padding: var(--ks-space-sm);
    background: var(--mud-palette-background-gray);
    border-radius: var(--ks-radius-sm);
}

[b-eqv9g4fqp3] .upload-progress-item {
    display: flex;
    align-items: center;
    gap: var(--ks-space-sm);
    width: 180px;
    padding: var(--ks-space-xs);
    background: var(--mud-palette-surface);
    border-radius: var(--ks-radius-sm);
    border: 1px solid var(--mud-palette-lines-default);
}

[b-eqv9g4fqp3] .upload-progress-item.error {
    border-color: var(--mud-palette-error);
    background: rgba(var(--mud-palette-error-rgb), 0.05);
}

[b-eqv9g4fqp3] .upload-file-preview {
    width: 48px;
    height: 48px;
    border-radius: var(--ks-radius-xs);
    overflow: hidden;
    background: var(--mud-palette-background-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[b-eqv9g4fqp3] .upload-file-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[b-eqv9g4fqp3] .upload-file-preview .mud-icon-root {
    color: var(--mud-palette-text-secondary);
}

[b-eqv9g4fqp3] .upload-file-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

[b-eqv9g4fqp3] .upload-file-name {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

[b-eqv9g4fqp3] .upload-file-status {
    display: flex;
    align-items: center;
    gap: var(--ks-space-xs);
}

[b-eqv9g4fqp3] .upload-file-status .mud-progress-linear {
    flex: 1;
    min-width: 50px;
}

[b-eqv9g4fqp3] .upload-file-status .status-text {
    font-size: 0.625rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

[b-eqv9g4fqp3] .upload-file-status .status-text.success {
    color: var(--mud-palette-success);
}

[b-eqv9g4fqp3] .upload-file-status .status-text.error {
    color: var(--mud-palette-error);
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Admin/Shared/RichTextEditor.razor.rz.scp.css */
.rich-text-editor[b-8mzktn2rge] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.editor-toolbar[b-8mzktn2rge] {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: var(--mud-palette-background-grey);
    border-radius: var(--mud-default-borderradius);
    flex-wrap: wrap;
    gap: 4px;
}

.editor-preview[b-8mzktn2rge] {
    padding: 16px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--mud-default-borderradius);
    background-color: var(--mud-palette-surface);
    min-height: 150px;
    max-height: 400px;
    overflow-y: auto;
}

.editor-preview h1[b-8mzktn2rge],
.editor-preview h2[b-8mzktn2rge],
.editor-preview h3[b-8mzktn2rge],
.editor-preview h4[b-8mzktn2rge] {
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.editor-preview h1:first-child[b-8mzktn2rge],
.editor-preview h2:first-child[b-8mzktn2rge],
.editor-preview h3:first-child[b-8mzktn2rge],
.editor-preview h4:first-child[b-8mzktn2rge] {
    margin-top: 0;
}

.editor-preview ul[b-8mzktn2rge],
.editor-preview ol[b-8mzktn2rge] {
    padding-left: 24px;
    margin: 1em 0;
}

.editor-preview li[b-8mzktn2rge] {
    margin-bottom: 0.5em;
}

.editor-preview hr[b-8mzktn2rge] {
    border: none;
    border-top: 1px solid var(--mud-palette-lines-default);
    margin: 1em 0;
}

.editor-textarea[b-8mzktn2rge] {
    width: 100%;
}

.editor-textarea textarea[b-8mzktn2rge] {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
}
/* /Components/Admin/Shared/RichTextEditorDialog.razor.rz.scp.css */
/* 富文本编辑器对话框样式 */
.rte-dialog-content[b-cv8rf0swlz] {
    min-width: 700px;
    max-width: 100%;
}

@media (max-width: 960px) {
    .rte-dialog-content[b-cv8rf0swlz] {
        min-width: auto;
        width: 100%;
    }
}
/* /Components/Admin/Shared/ServicePreviewDialog.razor.rz.scp.css */
/* 服务预览对话框样式 */
.service-preview-dialog[b-fu5m963gqu] {
    max-width: 900px;
}

.preview-container[b-fu5m963gqu] {
    padding: 16px;
    background: var(--mud-palette-background);
    border-radius: 8px;
    max-height: 70vh;
    overflow-y: auto;
}

/* 头部 */
.preview-header[b-fu5m963gqu] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--mud-palette-primary);
    margin-bottom: 24px;
}

.preview-icon[b-fu5m963gqu] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mud-palette-primary), var(--mud-palette-primary-darken));
    border-radius: 16px;
    flex-shrink: 0;
}

.preview-icon i[b-fu5m963gqu] {
    font-size: 36px;
    color: white;
}

.preview-title-area h1[b-fu5m963gqu] {
    font-size: 28px;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    margin: 0 0 8px 0;
}

.preview-description[b-fu5m963gqu] {
    font-size: 16px;
    color: var(--mud-palette-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* 图片画廊 */
.preview-gallery[b-fu5m963gqu] {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-item[b-fu5m963gqu] {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img[b-fu5m963gqu] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-more[b-fu5m963gqu] {
    width: 80px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mud-palette-background-grey);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    flex-shrink: 0;
}

/* 内容区块 */
.preview-section[b-fu5m963gqu] {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.preview-section.image-left[b-fu5m963gqu] {
    flex-direction: row;
}

.preview-section.image-right[b-fu5m963gqu] {
    flex-direction: row-reverse;
}

.section-image[b-fu5m963gqu] {
    width: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.section-image img[b-fu5m963gqu] {
    width: 100%;
    height: auto;
    display: block;
}

.section-content[b-fu5m963gqu] {
    flex: 1;
    min-width: 0;
}

.section-content.full-width[b-fu5m963gqu] {
    width: 100%;
}

.section-content h2[b-fu5m963gqu] {
    font-size: 20px;
    font-weight: 600;
    color: var(--mud-palette-primary);
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.section-body[b-fu5m963gqu] {
    font-size: 14px;
    line-height: 1.8;
    color: var(--mud-palette-text-primary);
}

.section-body p[b-fu5m963gqu] {
    margin: 0 0 12px 0;
}

.section-body ul[b-fu5m963gqu],
.section-body ol[b-fu5m963gqu] {
    margin: 0 0 12px 0;
    padding-left: 20px;
}

.section-body li[b-fu5m963gqu] {
    margin-bottom: 4px;
}

/* 响应式 */
@media (max-width: 600px) {
    .preview-header[b-fu5m963gqu] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .preview-section[b-fu5m963gqu] {
        flex-direction: column !important;
    }

    .section-image[b-fu5m963gqu] {
        width: 100%;
        max-height: 200px;
    }
}
