    :root {
      --primary-color: #2563eb;
      --primary-hover: #1d4ed8;
      --primary-light: #eff6ff;
      --accent-color: #ea580c;
      --accent-light: #fff7ed;
      --bg-color: #f8fafc;
      --card-bg: #ffffff;
      --card-glass: rgba(255, 255, 255, 0.88);
      --text-main: #0f172a;
      --text-secondary: #475569;
      --text-muted: #94a3b8;
      --border-color: #e2e8f0;
      --sidebar-bg: #0f172a;
      --sidebar-sub: #1e293b;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
      --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
      --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.2);
    }
    
    * { box-sizing: border-box; }
    html, body { 
      background-color: var(--bg-color); 
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
      margin: 0; 
      padding: 0; 
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
      min-width: 1080px;
      overflow-x: auto;
    }
    
    /* ---------------- 工作台首页（项目大厅）样式 ---------------- */
    .view-lobby { 
      display: block; 
      min-height: 100vh; 
      min-width: 1080px;
      background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.8) 0%, rgba(248, 250, 252, 1) 90%); 
    }
    .lobby-header { 
      height: 80px; 
      min-width: 1080px;
      background: rgba(255, 255, 255, 0.85); 
      backdrop-filter: blur(16px); 
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04); 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding: 0 40px; 
      position: sticky; 
      top: 0; 
      z-index: 100; 
      border-bottom: 1px solid rgba(226, 232, 240, 0.8); 
    }
    .lobby-logo { 
      font-size: 22px; 
      font-weight: 800; 
      color: var(--text-main); 
      display: flex; 
      align-items: center; 
      letter-spacing: -0.5px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .lobby-logo img { 
      height: 40px; 
      margin-right: 14px; 
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    }
    .lobby-content { 
      padding: 40px 24px; 
      max-width: 1320px; 
      margin: 0 auto; 
      display: flex; 
      justify-content: center;
    }
    
    /* 主区项目卡片与仓储卡片居中与固定精美多列水平网格布局 (水平铺开，自适应对齐) */
    .lobby-main, .warehouse-main { 
      width: 100%; 
      max-width: 1240px; 
      min-width: 0; 
    }
    #projectCardsContainer, #warehouseCardsContainer {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 380px));
      gap: 24px;
      justify-content: flex-start;
      align-items: stretch;
    }
    .project-card-wrapper {
      width: 100%;
      max-width: 380px;
    }
    .project-card { 
      background: var(--card-glass); 
      backdrop-filter: blur(20px); 
      border-radius: var(--radius-lg); 
      padding: 26px; 
      height: 100%;
      cursor: pointer; 
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
      border: 1px solid rgba(226, 232, 240, 0.9); 
      position: relative; 
      overflow: hidden; 
      box-shadow: var(--shadow-md); 
      box-sizing: border-box;
    }
    .project-card:hover { 
      transform: translateY(-8px) scale(1.005); 
      box-shadow: var(--shadow-lg), var(--shadow-glow); 
      border-color: rgba(37, 99, 235, 0.35); 
    }
    .project-card::before { 
      content: ""; 
      position: absolute; 
      top: 0; 
      left: 0; 
      width: 5px; 
      height: 100%; 
      background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%); 
      opacity: 0.85; 
      transition: width 0.3s; 
    }
    .project-card:hover::before { 
      width: 7px;
    }
    
    /* 仓储专属卡片风格 */
    .project-card.warehouse-card::before {
      background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    }
    .project-card.warehouse-card:hover {
      border-color: rgba(16, 185, 129, 0.35);
      box-shadow: 0 16px 32px -4px rgba(16, 185, 129, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .card-title { 
      font-size: 19px; 
      font-weight: 700; 
      color: var(--text-main); 
      margin-bottom: 16px; 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      letter-spacing: -0.3px;
    }
    .card-desc p { 
      color: var(--text-secondary); 
      margin-bottom: 10px; 
      font-size: 14px; 
      line-height: 1.6;
    }
    
    /* 左侧联系人边栏卡片 */
    .lobby-sidebar {
      width: 28%;
      min-width: 290px;
      max-width: 360px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    @media (max-width: 1100px) {
      .lobby-sidebar {
        display: none !important;
      }
    }
    .contact-card { 
      background: var(--card-glass); 
      backdrop-filter: blur(16px); 
      border-radius: var(--radius-lg); 
      padding: 22px; 
      margin-bottom: 24px; 
      box-shadow: var(--shadow-md); 
      border: 1px solid rgba(226, 232, 240, 0.9); 
    }
    .contact-entry-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md) !important;
    }
    .contact-entry-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-color);
      background: #ffffff !important;
    }
    .contact-card-header { 
      font-size: 15px; 
      font-weight: 700; 
      color: var(--text-main); 
      margin-bottom: 16px; 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding-bottom: 12px; 
      border-bottom: 1px dashed var(--border-color); 
    }
    .contact-item { 
      display: flex; 
      align-items: center; 
      padding: 12px; 
      border-radius: var(--radius-sm); 
      transition: all 0.2s; 
      cursor: pointer; 
      margin-bottom: 8px; 
    }
    .contact-item:hover { 
      background: var(--primary-light); 
    }
    .contact-avatar { 
      width: 42px; 
      height: 42px; 
      border-radius: 12px; 
      background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%); 
      color: var(--primary-color); 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      font-weight: 700; 
      font-size: 16px; 
      margin-right: 14px; 
      flex-shrink: 0; 
      box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
    }
    .contact-info { flex: 1; min-width: 0; }
    .contact-name { font-weight: 700; color: var(--text-main); font-size: 14px; margin-bottom: 2px; }
    .contact-role { font-size: 12px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .contact-action { color: var(--primary-color); opacity: 0; transition: opacity 0.2s; padding: 6px; border-radius: 6px; }
    /* ---------------- 全局顶栏导航栏与下拉菜单组件 ---------------- */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 28px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .header-nav-item {
      position: relative;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #475569;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
      user-select: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .header-nav-item:hover, .header-nav-item.active {
      color: #1677ff;
      background: #eff6ff;
    }
    .header-nav-item .layui-icon-down {
      font-size: 11px;
      transition: transform 0.2s ease;
      color: #94a3b8;
    }
    .header-nav-item:hover .layui-icon-down {
      transform: rotate(180deg);
      color: #1677ff;
    }
    
    /* 下拉菜单卡片 */
    .header-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 250px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.08);
      border: 1px solid #e2e8f0;
      padding: 8px;
      display: none;
      z-index: 1000;
      animation: navDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes navDropdownFade {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .header-dropdown-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .header-dropdown-item:hover {
      background: #f1f5f9;
    }
    .header-dropdown-item .item-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .header-dropdown-item .item-title {
      font-size: 14px;
      font-weight: 600;
      color: #1e293b;
      white-space: nowrap;
    }
    .header-dropdown-item .item-desc {
      font-size: 12px;
      color: #64748b;
      margin-top: 2px;
      white-space: nowrap;
    }

    /* ---------------- 项目内部工作区样式 ---------------- */
    .view-project { display: none; height: 100vh; position: relative; min-width: 1080px; }
    .project-header { 
      height: 80px; 
      min-width: 1080px;
      background: rgba(255, 255, 255, 0.95); 
      backdrop-filter: blur(16px); 
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04); 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      padding: 0 40px; 
      position: absolute; 
      top: 0; 
      left: 0; 
      right: 0; 
      z-index: 1001; 
      border-bottom: 1px solid rgba(226, 232, 240, 0.8); 
    }
    .layui-layout-admin .layui-side { 
      top: 80px !important;
      height: calc(100vh - 80px) !important;
      background: linear-gradient(180deg, var(--sidebar-bg) 0%, var(--sidebar-sub) 100%) !important; 
      width: 250px; 
      box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15); 
      z-index: 1000;
    }
    .layui-layout-admin .layui-body { 
      top: 80px !important;
      left: 250px !important; 
      bottom: 0 !important;
      height: calc(100vh - 80px) !important;
      background-color: var(--bg-color); 
      z-index: 999;
    }
    
    /* 全局表格表头置顶/吸顶样式 (下滚页面时表头固定在顶部) */
    .layui-table-view {
      overflow: visible !important;
    }
    .layui-table-box {
      overflow: visible !important;
    }
    .layui-table-header {
      position: sticky !important;
      top: 0 !important;
      z-index: 99 !important;
      background-color: #fafafa !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    }
    .layui-table-header table {
      background-color: #fafafa !important;
    }
    .layui-table-header th {
      background-color: #fafafa !important;
    }
    .layui-table-fixed .layui-table-header {
      position: sticky !important;
      top: 0 !important;
      z-index: 100 !important;
      background-color: #fafafa !important;
    }
    
    .sidebar-logo { 
      height: 60px; 
      padding: 12px 20px; 
      background: rgba(15, 23, 42, 0.85); 
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex; 
      flex-direction: column; 
      justify-content: center; 
      box-sizing: border-box; 
    }
    .sidebar-logo-sub { 
      font-size: 11px; 
      color: rgba(255,255,255,0.5); 
      display: flex; 
      align-items: center; 
      margin-bottom: 4px; 
      letter-spacing: 0.5px; 
      white-space: nowrap; 
      font-weight: 500;
    }
    .sidebar-logo-main { 
      font-size: 16px; 
      font-weight: 700; 
      color: #ffffff; 
      width: 100%; 
      overflow: hidden; 
      text-overflow: ellipsis; 
      white-space: nowrap; 
      display: flex; 
      align-items: center; 
    }
    .sidebar-logo-main i { margin-right: 8px; font-size: 18px; color: #60a5fa; }
    
    .menu-section { padding: 20px 14px; }
    .menu-item { 
      padding: 13px 16px; 
      color: rgba(255, 255, 255, 0.88); 
      border-radius: var(--radius-sm); 
      cursor: pointer; 
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
      margin-bottom: 10px; 
      display: flex; 
      align-items: center; 
      font-size: 14px;
      font-weight: 500;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.06));
      border: 1px solid rgba(96, 165, 250, 0.12);
      border-left: 3px solid #60a5fa;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
    .menu-item i { margin-right: 12px; font-size: 18px; color: #60a5fa; opacity: 0.95; transition: all 0.2s; }
    .menu-item:hover { 
      color: #ffffff; 
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(96, 165, 250, 0.14)); 
      border-color: rgba(96, 165, 250, 0.35);
      border-left: 3px solid #93c5fd;
      box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
      transform: translateX(2px);
    }
    .menu-item:hover i { opacity: 1; color: #93c5fd; transform: scale(1.08); }
    .menu-item.active { 
      background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important; 
      color: #ffffff !important; 
      font-weight: 700; 
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      border-left: 4px solid #ffffff !important;
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5), 0 0 16px rgba(96, 165, 250, 0.35) !important;
      transform: translateX(0);
    }
    .menu-item.active i { opacity: 1; color: #ffffff !important; }
    
    .content-wrapper { padding: 28px; }
    .page-section { display: none; }
    .page-section.active { display: block; animation: fadeIn 0.35s ease-out; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
    
    /* ---------------- 内部模块通用 UI ---------------- */
    .module-container { 
      background: var(--card-bg); 
      border-radius: var(--radius-lg); 
      padding: 28px; 
      margin-bottom: 28px; 
      box-shadow: var(--shadow-md); 
      border: 1px solid var(--border-color);
    }
    .module-header { 
      font-size: 17px; 
      font-weight: 700; 
      color: var(--text-main); 
      margin-bottom: 22px; 
      padding-bottom: 16px; 
      border-bottom: 1px solid var(--border-color); 
      display: flex; 
      justify-content: space-between; 
      align-items: center;
    }
    
    /* 外置可见的筛选区 */
    .filter-wrapper { 
      background: #f8fafc; 
      padding: 20px 24px; 
      border-radius: var(--radius-md); 
      border: 1px solid var(--border-color); 
      margin-bottom: 24px; 
    }
    .filter-group { display: flex; align-items: center; margin-bottom: 16px; }
    .filter-group:last-child { margin-bottom: 0; }
    .filter-label { width: 90px; font-weight: 700; color: var(--text-main); font-size: 14px; }
    
    .status-tag { padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
    .tag-green { background: #ecfdf5; border: 1px solid #a7f3d0; color: #059669; }
    .tag-blue { background: #eff6ff; border: 1px solid #bfdbfe; color: #2563eb; }
    .tag-orange { background: #fff7ed; border: 1px solid #fed7aa; color: #ea580c; }
    
    /* 弹性筛选卡标签样式 */
    .visa-filter-badge { 
      cursor: pointer; 
      padding: 7px 18px !important; 
      height: auto !important; 
      font-size: 13px !important; 
      font-weight: 600 !important;
      border-radius: 30px !important; 
      transition: all 0.25s ease; 
      border: 1px solid var(--border-color); 
      background: #ffffff; 
      color: var(--text-secondary); 
      display: inline-block; 
      line-height: 1.4; 
    }
    .visa-filter-badge:hover { 
      border-color: var(--primary-color); 
      color: var(--primary-color); 
      background: var(--primary-light);
    }
    .visa-filter-badge.active { 
      background: var(--primary-color) !important; 
      color: #ffffff !important; 
      border-color: var(--primary-color) !important; 
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); 
    }

    /* ---------------- 全局 Layui Layer 窗口/弹窗与控件高奢样式重绘 ---------------- */
    body .layui-layer {
      border-radius: var(--radius-lg) !important;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(226, 232, 240, 0.8) !important;
      overflow: hidden !important;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
      backdrop-filter: blur(16px);
      background: rgba(255, 255, 255, 0.96) !important;
    }
    
    /* 修复 msg 提示框背景与文字颜色冲突问题 */
    body .layui-layer-msg {
      background: rgba(0, 0, 0, 0.8) !important;
      border: none !important;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    }
    body .layui-layer-msg .layui-layer-content {
      color: #ffffff !important;
      font-weight: 500;
    }
    body .layui-layer-title {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
      color: var(--text-main) !important;
      font-weight: 700 !important;
      font-size: 16px !important;
      height: 54px !important;
      line-height: 54px !important;
      padding: 0 24px !important;
      border-bottom: 1px solid var(--border-color) !important;
      letter-spacing: -0.2px;
    }
    body .layui-layer-setwin {
      top: 18px !important;
      right: 20px !important;
    }
    body .layui-layer-setwin a {
      transition: all 0.2s ease !important;
    }
    body .layui-layer-setwin a:hover {
      transform: rotate(90deg) scale(1.1) !important;
    }
    body .layui-layer-btn {
      background: #f8fafc !important;
      padding: 14px 24px 18px !important;
      border-top: 1px solid var(--border-color) !important;
      text-align: right !important;
    }
    body .layui-layer-btn a {
      height: 40px !important;
      line-height: 40px !important;
      padding: 0 22px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      font-size: 14px !important;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    body .layui-layer-btn .layui-layer-btn0 {
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
      border-color: #2563eb !important;
      color: #ffffff !important;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
    }
    body .layui-layer-btn .layui-layer-btn0:hover {
      transform: translateY(-1px) !important;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4) !important;
    }
    body .layui-layer-btn .layui-layer-btn1,
    body .layui-layer-btn .layui-layer-btn2 {
      background: #ffffff !important;
      border: 1px solid var(--border-color) !important;
      color: var(--text-secondary) !important;
    }
    body .layui-layer-btn .layui-layer-btn1:hover {
      background: #f1f5f9 !important;
      color: var(--text-main) !important;
    }
    .layui-layer-shade {
      backdrop-filter: blur(5px) !important;
      background-color: rgba(15, 23, 42, 0.45) !important;
    }

    /* 表单控件与 Focus 态 */
    .layui-input, .layui-textarea, .layui-select {
      border-radius: 8px !important;
      border: 1px solid var(--border-color) !important;
      padding-left: 14px !important;
      height: 42px !important;
      font-size: 14px !important;
      transition: all 0.2s ease !important;
      background-color: #ffffff !important;
      color: var(--text-main) !important;
    }
    .layui-input:focus, .layui-textarea:focus, .layui-select:focus,
    .layui-input:hover, .layui-textarea:hover {
      border-color: var(--primary-color) !important;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14) !important;
    }
    .layui-form-label {
      font-weight: 600 !important;
      color: var(--text-main) !important;
      font-size: 14px !important;
      white-space: nowrap !important;
    }

    /* Layui Table 全局美化 */
    .layui-table-view {
      border-radius: var(--radius-md) !important;
      border: 1px solid var(--border-color) !important;
      overflow: hidden !important;
      box-shadow: var(--shadow-sm) !important;
    }
    .layui-table-header th {
      background-color: #f1f5f9 !important;
      color: #334155 !important;
      font-weight: 700 !important;
      font-size: 13px !important;
      text-transform: uppercase !important;
      letter-spacing: 0.5px !important;
      height: 46px !important;
    }
    .layui-table-hover, .layui-table-click, .layui-table tbody tr:hover {
      background-color: #f8fafc !important;
    }
    .layui-table td {
      font-size: 14px !important;
      color: var(--text-main) !important;
      height: 50px !important;
    }
    /* 强化的数字与金额展示字体 */
    .money-num, td[data-field*="Price"], td[data-field*="Amount"], td[data-field*="Cost"], td[data-field*="Paid"], td[data-field*="Visa"] {
      font-family: 'Fira Code', monospace !important;
      font-weight: 600 !important;
    }

    /* 修复表格底部分页器页码数字与容器精准垂直水平居中对齐 */
    .layui-table-page {
      padding: 12px 15px !important;
      height: auto !important;
    }
    .layui-laypage {
      display: inline-flex !important;
      align-items: center !important;
      margin: 0 !important;
    }
    .layui-laypage a, 
    .layui-laypage span {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      height: 28px !important;
      line-height: 1 !important;
      vertical-align: middle !important;
      padding: 0 10px !important;
      font-size: 13px !important;
      border-radius: 4px !important;
    }
    .layui-laypage .layui-laypage-curr {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    .layui-laypage .layui-laypage-curr .layui-laypage-em {
      border-radius: 4px !important;
      background-color: #1677ff !important;
    }
    .layui-laypage .layui-laypage-curr span,
    .layui-laypage .layui-laypage-curr em {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      height: 28px !important;
      line-height: 1 !important;
      color: #ffffff !important;
      font-style: normal !important;
      font-weight: bold !important;
    }
    .layui-laypage-limits select,
    .layui-laypage-skip input {
      height: 28px !important;
      line-height: 28px !important;
      text-align: center !important;
      padding: 0 4px !important;
      vertical-align: middle !important;
      border-radius: 4px !important;
    }
    
    /* Modern Segmented Control Styles */
    .modern-segmented-control {
      display: inline-flex;
      background: #f0f2f5;
      border-radius: 6px;
      padding: 3px;
    }
    .segment-btn {
      padding: 6px 16px;
      font-size: 13px;
      border-radius: 4px;
      cursor: pointer;
      color: #595959;
      transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
      font-weight: 500;
      user-select: none;
    }
    .segment-btn.active {
      background: #ffffff;
      color: #1677ff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    .segment-btn:hover:not(.active) {
      color: #262626;
      background: #e8e8e8;
    }
    
    /* Modern Badges (白话友好、防换行溢出、高颜值圆角) */
    .modern-badge-cost {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      white-space: nowrap !important;
      height: 22px !important;
      line-height: 20px !important;
      padding: 0 8px !important;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      background: #fff1f0;
      color: #cf1322;
      border: 1px solid #ffa39e;
      box-sizing: border-box !important;
      vertical-align: middle;
    }
    .modern-badge-payment {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      white-space: nowrap !important;
      height: 22px !important;
      line-height: 20px !important;
      padding: 0 8px !important;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      background: #f6ffed;
      color: #389e0d;
      border: 1px solid #b7eb8f;
      box-sizing: border-box !important;
      vertical-align: middle;
    }

    /* 彻底隐藏编辑表格选择列复选框内的多余三个点与折叠下拉箭头 */
    #costEditorTable + .layui-table-view .layui-table-col-special .layui-table-tree-btn,
    #costEditorTable + .layui-table-view .layui-table-col-special .layui-table-tree-icon,
    [lay-id="costEditorTable"] .layui-table-col-special .layui-table-tree-btn,
    [lay-id="costEditorTable"] .layui-table-col-special .layui-table-tree-icon {
      display: none !important;
    }
    
    /* Modern Editor Add Buttons */
    .btn-add-cost, .btn-add-payment {
      flex: 1; height: 38px; border-radius: 6px; font-weight: 500; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .btn-add-cost {
      border: 1px dashed #ffa39e; background: #fff1f0; color: #cf1322;
    }
    .btn-add-cost:hover {
      border: 1px dashed #ff7875; background: #ffe1df;
    }
    .btn-add-payment {
      border: 1px dashed #b7eb8f; background: #f6ffed; color: #389e0d;
    }
    .btn-add-payment:hover {
      border: 1px dashed #95de64; background: #eaff8f;
    }

    /* ==================== 顶部楼栋筛选/分级导航与L3看板/表头多层级联动置顶 ==================== */
    .compact-filter-breadcrumb-bar {
      position: sticky !important;
      top: 0 !important;
      z-index: 130 !important;
      margin-top: 4px !important;
      margin-bottom: 6px !important;
      background: #fafafa !important;
      border: 1px solid #e2e8f0 !important;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    }

    .sticky-editor-top-bar {
      position: sticky !important;
      top: 38px !important;
      z-index: 120 !important;
      background: #ffffff !important;
      padding: 8px 14px !important;
      border-radius: 6px 6px 0 0 !important;
      border: 1px solid #e2e8f0 !important;
      border-left: 4px solid var(--primary-color) !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      margin-bottom: 0 !important;
    }

    .sticky-l3-top-bar {
      position: sticky !important;
      top: 38px !important;
      z-index: 120 !important;
      background: #ffffff !important;
      padding: 8px 14px !important;
      border-radius: 6px 6px 0 0 !important;
      border: 1px solid #e2e8f0 !important;
      border-bottom: 2px solid var(--primary-color) !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      margin-bottom: 0 !important;
    }

    #cost-view-3 .layui-table-view,
    #cost-view-3 .layui-table-box,
    #cost-view-3 .layui-tab,
    #cost-view-3 .layui-tab-content,
    #cost-view-3 .layui-tab-item,
    #cost-view-editor .layui-table-view,
    #cost-view-editor .layui-table-box,
    #invoiceContainer .layui-table-view,
    #invoiceContainer .layui-table-box {
      overflow: visible !important;
    }

    /* 编辑工作台表头置顶（紧贴顶部楼栋筛选与编辑看板下方） */
    #cost-view-editor .layui-table-header {
      position: sticky !important;
      top: 86px !important;
      z-index: 110 !important;
      background-color: #f8fafc !important;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06) !important;
    }

    /* L3 明细流水表头置顶（紧贴顶部楼栋筛选与L3操作看板下方） */
    #cost-view-3 #costFlowContainer .layui-table-header {
      position: sticky !important;
      top: 114px !important;
      z-index: 110 !important;
      background-color: #f8fafc !important;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06) !important;
    }

    /* 发票登记表头置顶 */
    #invoiceContainer .layui-table-header {
      position: sticky !important;
      top: 48px !important;
      z-index: 110 !important;
      background-color: #f8fafc !important;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06) !important;
    }

    .layui-table-header th {
      background-color: #f8fafc !important;
      position: relative !important;
      z-index: 2 !important;
    }

    /* ==================== 决策中心模块样式 ==================== */
    #page-decision {
      padding: 0;
    }
    .dc-filter-bar {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      padding: 14px 20px;
      background: #fff;
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    }
    .dc-filter-bar .dc-filter-label {
      font-weight: 600;
      font-size: 12px;
      color: var(--text-secondary);
      white-space: nowrap;
    }
    .dc-segment-group {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }
    .dc-seg-btn {
      padding: 3px 11px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      border: 1.5px solid var(--border-color);
      background: #f8fafc;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.18s;
      user-select: none;
      white-space: nowrap;
    }
    .dc-seg-btn.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
      box-shadow: 0 2px 8px rgba(37,99,235,0.25);
    }
    .dc-seg-btn:hover:not(.active) {
      border-color: var(--primary-color);
      color: var(--primary-color);
      background: var(--primary-light);
    }
    .dc-date-range {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
    }
    .dc-date-range input {
      width: 118px;
      padding: 4px 8px;
      border: 1.5px solid var(--border-color);
      border-radius: 6px;
      font-size: 12px;
      color: var(--text-main);
      outline: none;
      transition: border-color 0.18s;
    }
    .dc-date-range input:focus {
      border-color: var(--primary-color);
    }
    .dc-filter-divider {
      width: 1px;
      height: 22px;
      background: var(--border-color);
      margin: 0 4px;
      flex-shrink: 0;
    }
    .dc-body {
      padding: 20px 20px 30px;
    }
    /* KPI 卡片 */
    .dc-kpi-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }
    .dc-kpi-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 18px 20px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .dc-kpi-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .dc-kpi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .dc-kpi-card.blue::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
    .dc-kpi-card.green::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
    .dc-kpi-card.red::before { background: linear-gradient(90deg, #dc2626, #f87171); }
    .dc-kpi-card.amber::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
    .dc-kpi-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .dc-kpi-label i {
      font-size: 14px;
    }
    .dc-kpi-value {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      line-height: 1.2;
    }
    .dc-kpi-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 5px;
    }
    /* 图表行 */
    .dc-chart-row {
      display: grid;
      gap: 16px;
      margin-bottom: 16px;
    }
    .dc-chart-row.two-col {
      grid-template-columns: 1fr 1fr;
    }
    .dc-chart-row.one-col {
      grid-template-columns: 1fr;
    }
    .dc-chart-card {
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      padding: 16px 20px 12px;
      display: flex;
      flex-direction: column;
    }
    .dc-chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .dc-chart-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .dc-chart-title i {
      color: var(--primary-color);
      font-size: 16px;
    }
    .dc-chart-view-toggle {
      display: flex;
      gap: 6px;
    }
    .dc-chart-view-btn {
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      border: 1.5px solid var(--border-color);
      background: #f8fafc;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.18s;
    }
    .dc-chart-view-btn.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
    }
    .dc-echarts-box {
      flex: 1;
      min-height: 260px;
    }
    /* 热力矩阵表 */
    .dc-heatmap-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }
    .dc-heatmap-table th {
      background: #f1f5f9;
      color: var(--text-secondary);
      font-weight: 600;
      padding: 8px 12px;
      text-align: center;
      border: 1px solid var(--border-color);
      white-space: nowrap;
    }
    .dc-heatmap-table th:first-child {
      text-align: left;
      background: #0f172a;
      color: #e2e8f0;
    }
    .dc-heatmap-table td {
      padding: 8px 10px;
      border: 1px solid var(--border-color);
      text-align: right;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-main);
      transition: background 0.2s;
    }
    .dc-heatmap-table td:first-child {
      text-align: left;
      font-weight: 600;
      color: var(--text-main);
      background: #f8fafc;
      white-space: nowrap;
    }
    .dc-heatmap-table tr:hover td {
      filter: brightness(0.96);
    }
    .dc-heatmap-table .row-total {
      font-weight: 700;
      background: #eff6ff !important;
      color: var(--primary-color) !important;
    }
    .dc-heatmap-table .col-total td {
      background: #f1f5f9;
      font-weight: 700;
    }
    .dc-empty-tip {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
width: 118px;
      padding: 4px 8px;
      border: 1.5px solid var(--border-color);
      border-radius: 6px;
      font-size: 12px;
      color: var(--text-main);
      outline: none;
      transition: border-color 0.18s;
    }
    .dc-date-range input:focus {
      border-color: var(--primary-color);
    }
    .dc-filter-divider {
      width: 1px;
      height: 22px;
      background: var(--border-color);
      margin: 0 4px;
      flex-shrink: 0;
    }
    .dc-body {
      padding: 20px 20px 30px;
    }
    /* KPI 卡片 */
    .dc-kpi-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }
    .dc-kpi-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 18px 20px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .dc-kpi-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .dc-kpi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .dc-kpi-card.blue::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
    .dc-kpi-card.green::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
    .dc-kpi-card.red::before { background: linear-gradient(90deg, #dc2626, #f87171); }
    .dc-kpi-card.amber::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
    .dc-kpi-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .dc-kpi-label i {
      font-size: 14px;
    }
    .dc-kpi-value {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      line-height: 1.2;
    }
    .dc-kpi-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 5px;
    }
    /* 图表行 */
    .dc-chart-row {
      display: grid;
      gap: 16px;
      margin-bottom: 16px;
    }
    .dc-chart-row.two-col {
      grid-template-columns: 1fr 1fr;
    }
    .dc-chart-row.one-col {
      grid-template-columns: 1fr;
    }
    .dc-chart-card {
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      padding: 16px 20px 12px;
      display: flex;
      flex-direction: column;
    }
    .dc-chart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .dc-chart-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .dc-chart-title i {
      color: var(--primary-color);
      font-size: 16px;
    }
    .dc-chart-view-toggle {
      display: flex;
      gap: 6px;
    }
    .dc-chart-view-btn {
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      border: 1.5px solid var(--border-color);
      background: #f8fafc;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.18s;
    }
    .dc-chart-view-btn.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
    }
    .dc-echarts-box {
      flex: 1;
      min-height: 260px;
    }
    /* 热力矩阵表 */
    .dc-heatmap-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }
    .dc-heatmap-table th {
      background: #f1f5f9;
      color: var(--text-secondary);
      font-weight: 600;
      padding: 8px 12px;
      text-align: center;
      border: 1px solid var(--border-color);
      white-space: nowrap;
    }
    .dc-heatmap-table th:first-child {
      text-align: left;
      background: #0f172a;
      color: #e2e8f0;
    }
    .dc-heatmap-table td {
      padding: 8px 10px;
      border: 1px solid var(--border-color);
      text-align: right;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-main);
      transition: background 0.2s;
    }
    .dc-heatmap-table td:first-child {
      text-align: left;
      font-weight: 600;
      color: var(--text-main);
      background: #f8fafc;
      white-space: nowrap;
    }
    .dc-heatmap-table tr:hover td {
      filter: brightness(0.96);
    }
    .dc-heatmap-table .row-total {
      font-weight: 700;
      background: #eff6ff !important;
      color: var(--primary-color) !important;
    }
    .dc-heatmap-table .col-total td {
      background: #f1f5f9;
      font-weight: 700;
    }
    .dc-empty-tip {
      text-align: center;
      padding: 60px 20px;
      color: var(--text-muted);
    }
    .dc-empty-tip i { font-size: 48px; display: block; margin-bottom: 12px; }
    .dc-reset-btn {
      padding: 4px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
      border: 1.5px solid var(--border-color);
      background: #f8fafc;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.18s;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }
    .dc-reset-btn:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
      background: var(--primary-light);
    }
/* ==================== 广联达风格表格识别与清洗工作台样式 ==================== */
.glodon-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.glodon-tool-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #94a3b8;
}
.glodon-tool-btn:active {
  background: #cbd5e1;
}
.glodon-tool-btn.glodon-btn-danger {
  color: #b91c1c;
  border-color: #fca5a5;
  background: #fef2f2;
}
.glodon-tool-btn.glodon-btn-danger:hover {
  background: #fee2e2;
  border-color: #f87171;
}
.glodon-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  table-layout: fixed;
  background: #fff;
}
.glodon-table th, .glodon-table td {
  border: 1px solid #cbd5e1;
  padding: 4px 6px;
  height: 26px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.glodon-header-row th {
  background: #f8fafc;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-weight: bold;
}
.glodon-header-select {
  width: 100% !important;
  height: 24px !important;
  line-height: 24px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border: 1px solid #94a3b8 !important;
  border-radius: 3px !important;
  padding: 0 4px !important;
  background: #fff !important;
  color: #64748b !important;
  outline: none !important;
  display: block !important;
  cursor: pointer !important;
}
.glodon-header-select.mapped {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border-color: #3b82f6 !important;
  font-weight: 700 !important;
}
.glodon-row-header {
  width: 48px;
  min-width: 48px;
  max-width: 48px;
  background: #f1f5f9;
  text-align: center;
  font-weight: bold;
  color: #64748b;
  cursor: pointer;
  user-select: none;
  position: sticky;
  left: 0;
  z-index: 20;
}
.glodon-row-header:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.glodon-row-selected td {
  background-color: #dbeafe !important;
}
.glodon-row-selected .glodon-row-header {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}
.glodon-col-selected {
  background-color: #dbeafe !important;
}
.glodon-header-col-selected {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}
.glodon-cell-active {
  outline: 2px solid #2563eb !important;
  outline-offset: -1px;
  background-color: #eff6ff !important;
  position: relative !important;
}
.glodon-cell-editing {
  background: #ffffff !important;
  outline: 2px solid #16a34a !important;
  outline-offset: -1px;
  padding: 0 !important;
  position: relative !important;
  z-index: 50;
}
.glodon-inline-input, .glodon-inline-select {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  outline: none !important;
  background: #ffffff !important;
  font-size: 12px !important;
  font-family: inherit !important;
  padding: 0 4px !important;
  box-sizing: border-box !important;
  color: #0f172a !important;
  display: block !important;
}
.glodon-inline-select {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}
.glodon-fill-handle {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 7px;
  height: 7px;
  background: #2563eb;
  border: 1px solid #ffffff;
  cursor: crosshair;
  z-index: 60;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.glodon-fill-handle:hover {
  transform: scale(1.3);
  background: #1d4ed8;
}
.glodon-fill-preview {
  background-color: #e0e7ff !important;
  border-left: 2px dashed #2563eb !important;
  border-right: 2px dashed #2563eb !important;
  border-bottom: 2px dashed #2563eb !important;
  color: #1e40af !important;
}

/* ==================== 🛡️ 数据安全与双重灾备中台专属视觉 ==================== */
.btn-open-security-center {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-open-security-center:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.2) !important;
}
#modalDataSecurityCenter table tr:hover td {
  background-color: #f8fafc !important;
}

/* ==================== 🏗️ 选项卡精细化排版（去除无用Tab折叠箭头与空白方块） ==================== */
#newProjectModal .layui-tab-bar,
.layui-tab .layui-tab-bar,
.layui-tab-card > .layui-tab-title .layui-tab-bar,
.layui-tab-brief > .layui-tab-title .layui-tab-bar {
  display: none !important;
}

/* 工器具借还记录多维表头筛选栏 */
.tool-borrows-filter-bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-borrows-filter-bar .filter-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
}
.tool-borrows-filter-bar select {
  height: 32px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 13px;
  color: #1e293b;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.tool-borrows-filter-bar select:focus {
  border-color: #1677ff;
}

#newProjectModal .layui-tab-title {
  height: 38px !important;
  border-bottom: 2px solid #f1f5f9 !important;
}

#newProjectModal .layui-tab-title li {
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 0 16px !important;
  line-height: 36px !important;
}

#newProjectModal .layui-tab-title li.layui-this {
  color: #1677ff !important;
  border-bottom: 2px solid #1677ff !important;
}

#newProjectModal .layui-input,
#newProjectModal .layui-select {
  border-radius: 6px;
  border-color: #cbd5e1;
}

#newProjectModal .layui-input:focus,
#newProjectModal .layui-textarea:focus {
  border-color: #1677ff !important;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.15);
}

.new-project-layer-modal .layui-layer-content {
  overflow-y: hidden !important;
}

/* ==================== 📑 办公附件与 PDF/图片 矢量防挤压全景全览规范 ==================== */
.pdf-preview-wrapper,
.image-preview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  background: #1e293b;
  box-sizing: border-box;
}

.pdf-toolbar,
.image-toolbar {
  flex-shrink: 0 !important;
  width: 100% !important;
  position: relative !important;
  z-index: 50 !important;
  box-sizing: border-box !important;
}

.pdf-scroll-viewport,
.image-scroll-viewport {
  flex: 1 1 0% !important;
  width: 100% !important;
  height: 100% !important;
  overflow: auto !important;
  position: relative !important;
  box-sizing: border-box !important;
  display: block !important;
  background: #1e293b !important;
}

.pdf-zoom-container,
.image-zoom-container {
  display: inline-block !important;
  min-width: 100% !important;
  min-height: 100% !important;
  padding: 24px 20px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  vertical-align: top !important;
}

.pdf-stage {
  display: inline-block !important;
  text-align: left !important;
  vertical-align: top !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  max-width: none !important;
  flex-shrink: 0 !important;
}

.pdf-page-card {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 200px !important;
  box-sizing: border-box !important;
  margin: 0 0 24px 0 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
  border-radius: 4px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.pdf-page-card canvas {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 4px !important;
}

.a4-document-card {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}


