/* ========== 全局重置与变量 ========== */
:root {
  --primary: #2563eb;
  --primary-light: #dbeafe;
  --primary-dark: #1d4ed8;
  --success: #16a34a;
  --success-light: #dcfce7;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  --info: #0891b2;
  --info-light: #cffafe;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --sidebar-w: 200px;
  --topbar-h: 56px;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 14px; color: var(--gray-800); background: var(--gray-100); }
a { text-decoration: none; color: inherit; cursor: pointer; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 14px; }

/* ========== 顶部栏 ========== */
.topbar {
  height: var(--topbar-h);
  background: var(--gray-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.logo { font-size: 24px; }
.app-title { font-size: 16px; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.project-selector {
  background: var(--gray-700); color: white; border: 1px solid var(--gray-600);
  padding: 5px 12px; border-radius: 5px; font-size: 13px; min-width: 200px;
}
.user-info { font-size: 13px; }
.btn-icon {
  background: var(--gray-700); border: none; color: white; width: 32px; height: 32px;
  border-radius: 5px; font-size: 15px; transition: background .2s;
}
.btn-icon:hover { background: var(--primary); }

/* ========== 主布局 ========== */
.main-layout { display: flex; margin-top: var(--topbar-h); min-height: calc(100vh - var(--topbar-h)); }

/* ========== 侧边栏 ========== */
.sidebar {
  width: var(--sidebar-w); background: white; border-right: 1px solid var(--gray-200);
  display: flex; flex-direction: column; position: fixed; top: var(--topbar-h); bottom: 0; left: 0; z-index: 50;
}
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 20px;
  font-size: 14px; color: var(--gray-600); border-left: 3px solid transparent; transition: all .15s;
}
.nav-item:hover { background: var(--gray-50); color: var(--primary); }
.nav-item.active { background: var(--primary-light); color: var(--primary); border-left-color: var(--primary); font-weight: 600; }
.nav-icon { font-size: 18px; width: 20px; text-align: center; }
.sidebar-footer { margin-top: auto; padding: 12px 20px; border-top: 1px solid var(--gray-200); }
.version-info { font-size: 11px; color: var(--gray-400); }

/* ========== 内容区 ========== */
.content { flex: 1; margin-left: var(--sidebar-w); padding: 24px; min-height: calc(100vh - var(--topbar-h)); }

/* ========== 通用组件 ========== */
.page-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--gray-900); }
.page-subtitle { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

.card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; margin-bottom: 16px;
}
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-title { font-size: 16px; font-weight: 600; }

.btn {
  padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; border: none; transition: all .15s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #15803d; }
.btn-warning { background: var(--warning); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #b91c1c; }
.btn-outline { background: white; border: 1px solid var(--gray-300); color: var(--gray-600); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-icon-text { display: inline-flex; align-items: center; gap: 4px; }

/* 表格 */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 10px 12px; font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; border-bottom: 2px solid var(--gray-200); white-space: nowrap; }
td { padding: 12px; font-size: 13px; border-bottom: 1px solid var(--gray-100); }
tr:hover td { background: var(--gray-50); }

/* 状态标签 */
.badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 500; }
.badge-success { background: var(--success-light); color: var(--success); }
.badge-warning { background: var(--warning-light); color: #92400e; }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-info { background: var(--info-light); color: var(--info); }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }
.badge-primary { background: var(--primary-light); color: var(--primary); }

/* 进度条 */
.progress-bar { width: 100%; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; transition: width .3s; }
.progress-text { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* 统计卡片 */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 20px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
}
.stat-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--gray-900); }
.stat-label { font-size: 12px; color: var(--gray-500); }

/* 专业色标 */
.discipline-tag { display: inline-flex; align-items: center; gap: 6px; padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 500; }
.discipline-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* 筛选栏 */
.filter-bar { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.filter-item { display: flex; align-items: center; gap: 6px; }
.filter-label { font-size: 13px; color: var(--gray-500); white-space: nowrap; }
.filter-select, .filter-input {
  padding: 6px 10px; border: 1px solid var(--gray-300); border-radius: 6px; font-size: 13px; background: white;
}

/* 消息项 */
.message-item { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
.message-item:hover { background: var(--gray-50); }
.message-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.message-sender { font-weight: 600; font-size: 13px; }
.message-time { font-size: 12px; color: var(--gray-400); }
.message-content { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.message-related { font-size: 12px; color: var(--info); margin-top: 4px; }

/* 子项卡片 */
.subproject-card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px; margin-bottom: 12px; border-left: 4px solid var(--primary);
}
.subproject-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.subproject-name { font-size: 15px; font-weight: 600; color: var(--gray-900); }
.subproject-meta { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.discipline-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* 树形结构 */
.tree-item { padding: 8px 0; }
.tree-children { margin-left: 20px; border-left: 2px solid var(--gray-200); padding-left: 12px; }
.tree-label { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 4px; }
.tree-label:hover { background: var(--gray-50); }
.tree-icon { font-size: 16px; }

/* 模态框 */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.modal { background: white; border-radius: 12px; width: 90%; max-width: 560px; max-height: 85vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-header { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 16px; font-weight: 600; }
.modal-close { background: none; border: none; font-size: 18px; color: var(--gray-400); }
.modal-close:hover { color: var(--gray-700); }
.modal-body { padding: 20px; overflow-y: auto; }

/* 表单 */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-600); margin-bottom: 6px; }
.form-label .required { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: 6px; font-size: 13px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-textarea { resize: vertical; min-height: 80px; }
/* 组合输入框（可自定义的下拉选项）- 添加下拉箭头视觉提示 */
input[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}
input[list] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-actions { display: flex; justify-content: flex-end; gap: 8px; padding-top: 8px; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--gray-900); color: white;
  padding: 12px 20px; border-radius: 8px; font-size: 14px; z-index: 2000; box-shadow: var(--shadow-md);
  animation: slideIn .3s ease; display: flex; align-items: center; gap: 12px;
}
.toast-action {
  background: var(--primary); color: white; border: none; padding: 4px 12px;
  border-radius: 4px; font-size: 13px; cursor: pointer; white-space: nowrap;
}
.toast-action:hover { background: var(--primary-dark); }

/* 回收站按钮角标 */
.trash-badge {
  position: absolute; top: -2px; right: -2px; background: var(--danger); color: white;
  font-size: 10px; font-weight: 600; min-width: 16px; height: 16px; line-height: 16px;
  text-align: center; border-radius: 8px; padding: 0 4px;
}
#trash-btn { position: relative; }
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* 空状态 */
.empty-state { text-align: center; padding: 40px; color: var(--gray-400); }
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }

/* 时间线 */
.timeline-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.timeline-content { flex: 1; }
.timeline-title { font-size: 13px; font-weight: 500; }
.timeline-meta { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* 操作按钮组 */
.action-btns { display: flex; gap: 4px; }
.action-btn { padding: 3px 8px; font-size: 12px; border: 1px solid var(--gray-300); border-radius: 4px; background: white; color: var(--gray-600); }
.action-btn:hover { border-color: var(--primary); color: var(--primary); }
.action-btn.danger:hover { border-color: var(--danger); color: var(--danger); }
.action-btn.success:hover { border-color: var(--success); color: var(--success); }

/* 响应式 */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .content { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { flex-direction: column; }
}

/* ========== 同步状态指示器 ========== */
.sync-divider {
  width: 1px; height: 20px; background: var(--gray-200); margin: 0 4px;
}
.sync-status {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 20px; cursor: pointer;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  font-size: 12px; transition: all 0.2s;
}
.sync-status:hover { background: var(--gray-100); }
.sync-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f39c12; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.sync-status-text { color: var(--gray-600); white-space: nowrap; }
.sync-badge {
  background: var(--danger); color: white;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; line-height: 18px;
  text-align: center; border-radius: 9px; padding: 0 5px;
}

/* ========== 消息中心浮窗 ========== */
.message-center {
  position: fixed; right: 16px; bottom: 16px;
  width: 380px; max-height: 500px;
  background: white; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; z-index: 1000;
  border: 1px solid var(--gray-200);
}
.mc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50); border-radius: 12px 12px 0 0;
}
.mc-title { font-weight: 600; font-size: 14px; }
.mc-header-actions { display: flex; align-items: center; gap: 8px; }
.mc-pending {
  font-size: 11px; color: var(--danger); font-weight: 600;
  background: var(--danger-light); padding: 2px 8px; border-radius: 10px;
}
.mc-close {
  border: none; background: none; cursor: pointer;
  font-size: 16px; color: var(--gray-400); padding: 2px 6px;
}
.mc-close:hover { color: var(--gray-700); }
.mc-body {
  flex: 1; overflow-y: auto; padding: 8px;
}
.mc-empty {
  text-align: center; padding: 40px 20px; color: var(--gray-400);
}
.mc-empty-icon { font-size: 36px; margin-bottom: 8px; }
.mc-item {
  display: flex; gap: 10px; padding: 10px;
  border-radius: 8px; cursor: pointer; transition: background 0.15s;
  border-bottom: 1px solid var(--gray-50);
}
.mc-item:hover { background: var(--gray-50); }
.mc-item-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.mc-item-body { flex: 1; min-width: 0; }
.mc-item-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.mc-item-sender { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.mc-item-time { font-size: 11px; color: var(--gray-400); margin-left: auto; }
.mc-item-text {
  font-size: 12px; color: var(--gray-600); line-height: 1.5;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.mc-conf {
  font-size: 10px; padding: 1px 6px; border-radius: 8px; font-weight: 600;
}
.mc-conf.high { background: var(--success-light); color: var(--success); }
.mc-conf.mid { background: var(--warning-light); color: var(--warning); }
.mc-footer {
  padding: 8px 16px; border-top: 1px solid var(--gray-100);
  border-radius: 0 0 12px 12px; background: var(--gray-50);
}

/* ========== 消息详情弹窗 ========== */
.mc-detail {
  background: var(--gray-50); border-radius: 8px; padding: 12px; margin-bottom: 12px;
}
.mc-detail-row {
  display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px;
}
.mc-detail-label { color: var(--gray-500); }
.mc-detail-intent {
  background: var(--primary-light); color: var(--primary);
  padding: 2px 8px; border-radius: 10px; font-size: 12px; font-weight: 600;
}
.mc-detail-content {
  padding: 12px; background: white; border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 13px; line-height: 1.6; margin-bottom: 12px;
  white-space: pre-wrap; word-break: break-all;
}
.mc-detail-entities { margin-bottom: 12px; }
.mc-detail-entity {
  font-size: 12px; padding: 4px 8px; background: var(--info-light);
  border-radius: 6px; margin-bottom: 4px; color: var(--info);
}
.mc-detail-actions-title {
  font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--gray-700);
}
.mc-detail-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* ========== 配置面板复选框 ========== */
input[type="checkbox"] {
  width: 16px; height: 16px; cursor: pointer; accent-color: var(--primary);
}

/* ========== 审查类型标签页 ========== */
.review-type-tabs {
  display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
  background: white; padding: 8px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.review-type-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 6px; cursor: pointer;
  border: 1px solid var(--gray-200); border-bottom: 3px solid transparent;
  transition: all 0.15s; min-width: 140px;
}
.review-type-tab:hover { background: var(--gray-50); }
.review-type-tab.active { background: var(--gray-50); border-color: var(--gray-300); }

/* ========== 登录界面 ========== */
.login-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
}
.login-card {
  background: white; border-radius: 16px; padding: 40px;
  width: 400px; max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: loginSlideIn 0.4s ease;
}
@keyframes loginSlideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.login-header { text-align: center; margin-bottom: 32px; }
.login-logo { font-size: 48px; display: block; margin-bottom: 12px; }
.login-header h2 { font-size: 20px; color: var(--gray-700); margin: 0 0 8px; }
.login-subtitle { font-size: 13px; color: var(--gray-400); margin: 0; }
.login-form .form-group { margin-bottom: 16px; }
.login-btn {
  width: 100%; padding: 12px; font-size: 16px; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  background: var(--primary); color: white;
  transition: all 0.2s;
}
.login-btn:hover { background: var(--primary-dark, #1d4ed8); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.login-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.login-error {
  background: #fef2f2; color: #dc2626; padding: 8px 12px;
  border-radius: 6px; font-size: 13px; margin-bottom: 12px;
  border: 1px solid #fecaca;
}
.login-hint {
  text-align: center; margin-top: 16px; font-size: 12px; color: var(--gray-400);
  padding: 8px; background: var(--gray-50); border-radius: 6px;
}
.login-hint b { color: var(--gray-600); }

/* 用户管理表格 */
.data-table {
  width: 100%; border-collapse: collapse; background: white;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.data-table th {
  background: var(--gray-50); padding: 12px 16px; text-align: left;
  font-size: 13px; color: var(--gray-500); font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
}
.data-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.data-table tr:hover { background: var(--gray-50); }

/* ========== v2.1 CDE 协同体验升级 ========== */
:root{--primary:#0f6b5d;--primary-light:#e4f3ef;--primary-dark:#084d43;--sidebar-w:216px;--topbar-h:64px;--radius:12px;--shadow:0 1px 2px rgba(21,35,31,.06),0 6px 18px rgba(21,35,31,.04);--shadow-md:0 12px 32px rgba(21,35,31,.14)}
body{font-family:Inter,-apple-system,"PingFang SC","Microsoft YaHei",sans-serif;color:#24332f;background:#f3f5f2}.topbar{background:#102a26;padding:0 24px}.topbar-left{gap:11px}.logo-mark{width:34px;height:34px;border-radius:9px;background:#d5a84c;color:#102a26;display:grid;place-items:center;font-size:17px;font-weight:800}.app-title{font-size:16px;font-weight:700;letter-spacing:.02em}.app-title small{font-size:11px;font-weight:400;color:#a9c2bb;margin-left:8px;letter-spacing:.08em}.project-selector{background:#1c3d37;color:#fff;border:1px solid #31524c;padding:7px 34px 7px 12px;border-radius:8px;min-width:230px}.btn-icon{background:#1c3d37;border:1px solid #31524c;color:#dce9e5;border-radius:8px}.btn-icon:hover{background:#2a554d;transform:translateY(-1px)}
.sidebar{background:#fbfcfa;border-right:1px solid #e1e7e3}.nav-item{gap:11px;padding:11px 14px;margin:3px 10px;font-size:13px;color:#566b65;border:0;border-radius:8px}.nav-item:hover{background:#eef3f0;color:var(--primary)}.nav-item.active{background:#e3f0ec;color:#0b5b4f;border:0;box-shadow:inset 3px 0 #0f6b5d;font-weight:650}.nav-icon{font-size:17px;width:22px;font-weight:700}.version-info{line-height:1.3}.system-dot{display:inline-block;width:7px;height:7px;border-radius:50%;background:#24a76b;box-shadow:0 0 0 3px #dff4e9;margin-right:6px}.version-info small{display:inline-block;margin-top:5px;margin-left:15px;color:#a4afa9}.content{padding:28px 32px 42px;max-width:1600px}.page-title{font-size:22px;color:#172923;letter-spacing:-.02em}.card,.stat-card{border:1px solid #e5eae7;box-shadow:var(--shadow)}
.dashboard-hero{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;margin-bottom:22px}.dashboard-eyebrow{font-size:12px;color:#6c7f79;margin-bottom:7px}.dashboard-title{font-size:26px;font-weight:760;color:#172923;letter-spacing:-.03em}.dashboard-meta{display:flex;align-items:center;gap:10px;margin-top:9px;color:#687a74;font-size:12px}.health-pill{padding:5px 9px;border-radius:999px;background:#e8f5ee;color:#15734d;font-weight:650}.hero-actions{display:flex;gap:8px;padding-top:6px}.btn-quiet{background:#fff;border:1px solid #d8e0dc;color:#40554f}.btn-quiet:hover{border-color:#0f6b5d;color:#0f6b5d}.kpi-grid{display:grid;grid-template-columns:1.25fr repeat(3,1fr);gap:14px;margin-bottom:18px}.kpi-card{background:#fff;border:1px solid #e3e9e5;border-radius:12px;padding:17px 18px;box-shadow:var(--shadow);position:relative;overflow:hidden}.kpi-card.primary{background:#153d36;color:#fff;border-color:#153d36}.kpi-label{font-size:12px;color:#71827d;margin-bottom:12px}.kpi-card.primary .kpi-label{color:#acc8c1}.kpi-value{font-size:28px;line-height:1;font-weight:760;letter-spacing:-.04em}.kpi-unit{font-size:13px;font-weight:500;margin-left:3px;color:#81918c}.kpi-card.primary .kpi-unit{color:#b8cec9}.kpi-foot{font-size:11px;color:#87958f;margin-top:10px}.kpi-card.primary .kpi-foot{color:#b9cec9}.kpi-accent{position:absolute;right:-18px;bottom:-25px;width:88px;height:88px;border:18px solid rgba(213,168,76,.18);border-radius:50%}.dashboard-grid{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(320px,.85fr);gap:16px;margin-bottom:16px}.section-card{background:#fff;border:1px solid #e3e9e5;border-radius:12px;box-shadow:var(--shadow);overflow:hidden}.section-head{display:flex;align-items:center;justify-content:space-between;padding:17px 18px;border-bottom:1px solid #edf0ee}.section-title{font-size:14px;font-weight:700;color:#233730}.section-note{font-size:11px;color:#82908b}.section-body{padding:16px 18px}.progress-row{padding:9px 0;cursor:pointer}.progress-row+.progress-row{border-top:1px solid #f0f2f1}.progress-main{display:flex;justify-content:space-between;align-items:center;margin-bottom:7px}.progress-name{font-size:13px;font-weight:650}.progress-stage{font-size:11px;color:#74837e}.progress-bar{height:7px;background:#e8ecea}.progress-fill{background:linear-gradient(90deg,#0f6b5d,#36a47f)!important}.progress-detail{display:flex;gap:14px;margin-top:7px;color:#82908b;font-size:10px}.risk-item{display:grid;grid-template-columns:9px 1fr auto;gap:10px;align-items:start;padding:11px 0}.risk-item+.risk-item{border-top:1px solid #f0f2f1}.risk-dot{width:8px;height:8px;border-radius:50%;margin-top:4px}.risk-title{font-size:12px;font-weight:650;color:#31443e}.risk-meta{font-size:10px;color:#87958f;margin-top:3px}.risk-action{font-size:11px;color:#0f6b5d;background:none;border:0;padding:0}.activity-row{display:grid;grid-template-columns:28px 1fr auto;gap:10px;align-items:start;padding:10px 0}.activity-row+.activity-row{border-top:1px solid #f0f2f1}.activity-icon{width:26px;height:26px;border-radius:7px;background:#eef4f1;display:grid;place-items:center;font-size:11px;color:#0f6b5d}.activity-title{font-size:12px;line-height:1.45}.activity-meta{font-size:10px;color:#8a9792;margin-top:3px}.activity-time{font-size:10px;color:#9aa5a1;white-space:nowrap}.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}.quick-action{border:1px solid #e2e8e4;background:#fbfcfb;border-radius:9px;padding:12px 10px;text-align:left;color:#40534d;font-size:12px;transition:.15s}.quick-action:hover{border-color:#8eb8ad;background:#f0f7f4;transform:translateY(-1px)}.quick-action strong{display:block;font-size:13px;color:#20352e;margin-bottom:3px}.quick-action span{font-size:10px;color:#86938f}
@media(max-width:1100px){.kpi-grid{grid-template-columns:repeat(2,1fr)}.dashboard-grid{grid-template-columns:1fr}.quick-grid{grid-template-columns:repeat(2,1fr)}}

/* ========== v2.2 全生产周期与云地双存 ========== */
.lifecycle-kpis{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:16px}.lifecycle-kpis>div{background:#fff;border:1px solid #e3e9e5;border-radius:10px;padding:15px 17px;display:flex;align-items:baseline;gap:9px}.lifecycle-kpis strong{font-size:24px;color:#17352e}.lifecycle-kpis span{font-size:11px;color:#75847f}.lifecycle-overview{margin-bottom:16px}.lifecycle-track{display:grid;grid-template-columns:repeat(8,minmax(92px,1fr));padding:20px 16px 18px;overflow-x:auto}.lifecycle-node{position:relative;min-width:92px;border:0;background:transparent;display:flex;flex-direction:column;align-items:center;color:#53655f;padding:0 5px}.lifecycle-node:before{content:"";position:absolute;top:17px;left:-50%;width:100%;height:2px;background:#dce4e0;z-index:0}.lifecycle-node:first-child:before{display:none}.lifecycle-node.passed:before,.lifecycle-node.active:before{background:#78a99c}.lifecycle-index{position:relative;z-index:1;width:36px;height:36px;border-radius:50%;display:grid;place-items:center;background:#fff;border:2px solid var(--stage-color);color:var(--stage-color);font-size:12px;font-weight:800}.lifecycle-node.passed .lifecycle-index{background:var(--stage-color);color:#fff}.lifecycle-node strong{font-size:12px;margin-top:8px}.lifecycle-node small{font-size:10px;color:#87958f;margin-top:2px}.lifecycle-node em{font-style:normal;font-size:10px;color:#0f6b5d;margin-top:4px}.lifecycle-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:16px}.lifecycle-table-wrap{overflow-x:auto}.lifecycle-table td{vertical-align:top}.lifecycle-name{display:flex;align-items:center;gap:8px;white-space:nowrap}.lifecycle-name span{width:8px;height:8px;border-radius:50%}.lifecycle-table td>small{display:block;font-size:10px;color:#87958f;margin-top:4px;white-space:nowrap}.required-types{display:flex;gap:4px;flex-wrap:wrap;max-width:270px}.required-types span{font-size:10px;border:1px solid #dce4e0;color:#75847f;border-radius:4px;padding:2px 5px;white-space:nowrap}.required-types span.done{border-color:#9fd0bd;background:#edf8f3;color:#14704f}.gate-modal-summary{display:flex;gap:10px;align-items:center;background:#f4f7f5;border:1px solid #e1e8e4;border-radius:8px;padding:12px;margin-bottom:16px}.gate-modal-summary div div{font-size:11px;color:#75847f;margin-top:3px}.lifecycle-stage-mark{width:10px;height:38px;border-radius:3px;flex:0 0 auto}

.storage-policy{display:grid;grid-template-columns:1fr 42px 1fr 42px 1fr;align-items:center;margin-bottom:16px}.storage-policy>div{background:#fff;border:1px solid #e2e8e4;border-radius:10px;padding:15px;display:grid;grid-template-columns:30px 1fr;column-gap:9px}.storage-policy>div>span{grid-row:1/3;width:28px;height:28px;border-radius:50%;background:#173d35;color:#fff;display:grid;place-items:center;font-size:11px;font-weight:700}.storage-policy strong{font-size:12px;color:#294039}.storage-policy small{font-size:10px;color:#82908b;margin-top:3px}.storage-policy>i{height:2px;background:#b8cbc5;position:relative}.storage-policy>i:after{content:"";position:absolute;right:0;top:-3px;border-left:6px solid #8ca9a1;border-top:4px solid transparent;border-bottom:4px solid transparent}.storage-status-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:12px}.storage-status-card{background:#fff;border:1px solid #e2e8e4;border-top:3px solid #94a3b8;border-radius:10px;padding:15px}.storage-status-card.healthy{border-top-color:#159464}.storage-status-card.warning{border-top-color:#d99a2b}.storage-status-card.pending{border-top-color:#64748b}.storage-status-head{display:flex;justify-content:space-between;gap:8px;align-items:center}.storage-status-head strong{font-size:12px}.storage-status-head span{font-size:10px;color:#65766f;background:#f0f4f2;border-radius:10px;padding:3px 7px}.storage-metric{font-size:25px;font-weight:750;color:#17352e;margin-top:15px}.storage-metric small{font-size:10px;font-weight:400;color:#84918d;margin-left:5px}.storage-status-card p{font-size:10px;color:#7d8b86;line-height:1.5;margin-top:8px}.storage-loading,.storage-warning,.storage-notice{background:#fff;border:1px solid #e2e8e4;border-radius:8px;padding:14px 16px;color:#667771;font-size:12px;margin-bottom:14px}.storage-warning{border-color:#f2cf86;background:#fffbeb;color:#8a6214}.storage-notice{border-color:#cbd9d4;background:#f5f8f7}.storage-rules{margin-top:16px}.storage-rule-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}.storage-rule-grid>div{padding:17px 18px;border-right:1px solid #edf0ee}.storage-rule-grid>div:last-child{border-right:0}.storage-rule-grid strong{font-size:12px;color:#294039;display:block;margin-bottom:5px}.storage-rule-grid span{font-size:10px;color:#81908b;line-height:1.55}
.storage-lan-banner{background:#eaf7f1;border:1px solid #9fd3bd;border-radius:9px;padding:13px 16px;margin-bottom:12px}.storage-lan-banner>div{display:flex;align-items:center;justify-content:space-between;gap:12px}.storage-lan-banner strong{font-size:13px;color:#155c45}.storage-lan-banner>div span{font-size:10px;color:#fff;background:#16845f;border-radius:10px;padding:3px 8px}.storage-lan-banner p{font-size:11px;color:#4e6f63;line-height:1.6;margin-top:7px}.storage-lan-banner code{display:inline-block;background:#fff;border:1px solid #bcdacf;border-radius:4px;padding:2px 6px;margin:0 6px 3px 0;color:#0f5f49}

.project-stage-tools{display:flex;justify-content:space-between;align-items:center;gap:10px;border-top:1px solid #edf0ee;padding:10px 0 14px;margin-top:-4px;color:#7d8b86;font-size:12px}.project-stage-tools>div{display:flex;gap:6px;flex-wrap:wrap}.project-stage-docs{display:grid;gap:8px}.project-stage-group{border:1px solid #e1e8e4;border-radius:8px;background:#fbfcfb;overflow:hidden}.project-stage-group.open{background:#fff}.project-stage-head{display:grid;grid-template-columns:minmax(240px,1fr) minmax(130px,auto) auto;gap:10px;align-items:center;padding:10px 12px}.project-stage-toggle{min-width:0;border:0;background:transparent;display:grid;grid-template-columns:18px 10px minmax(0,1fr);gap:10px;align-items:center;text-align:left;color:inherit;padding:0}.project-stage-chevron{color:#70827c;font-size:17px;line-height:1;transition:transform .15s}.project-stage-group.open .project-stage-chevron{transform:rotate(90deg)}.project-stage-dot{width:8px;height:34px;border-radius:3px;background:var(--stage-color)}.project-stage-title{min-width:0}.project-stage-title strong{display:block;font-size:13px;color:#233730;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.project-stage-title small{display:block;font-size:10px;color:#7f8d88;margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.project-stage-meta{text-align:right;white-space:nowrap}.project-stage-meta span{display:inline-block;font-size:11px;color:#586a64;background:#eef4f1;border-radius:999px;padding:4px 8px}.project-stage-meta small{display:block;font-size:10px;color:#9aa5a1;margin-top:3px}.project-stage-required{display:flex;gap:5px;flex-wrap:wrap;padding:0 12px 11px 50px}.project-stage-required span{font-size:10px;border:1px solid #dce4e0;color:#75847f;border-radius:4px;padding:2px 5px;background:#fff}.project-stage-required span.done{border-color:#9fd0bd;background:#edf8f3;color:#14704f}.project-doc-list{border-top:1px solid #edf0ee;background:#fff}.project-doc-row{display:grid;grid-template-columns:minmax(260px,1fr) minmax(150px,.4fr) auto;gap:12px;align-items:center;padding:10px 12px}.project-doc-row+.project-doc-row{border-top:1px solid #f0f2f1}.project-doc-main{display:grid;grid-template-columns:26px minmax(0,1fr);gap:9px;align-items:center;min-width:0}.project-doc-icon{width:26px;height:26px;border-radius:7px;background:#eef4f1;display:grid;place-items:center;font-size:12px}.project-doc-main strong{display:block;font-size:13px;color:#263a33;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.project-doc-main small,.project-doc-note small{display:block;font-size:10px;color:#899792;margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.project-doc-note{min-width:0}.project-doc-note span{font-size:11px;color:#52655f}.project-stage-empty{display:flex;justify-content:space-between;align-items:center;gap:10px;border-top:1px solid #edf0ee;padding:13px 14px 13px 50px;color:#8a9792;font-size:12px;background:#fff}

@media(max-width:1200px){.lifecycle-layout{grid-template-columns:1fr}.storage-status-grid{grid-template-columns:repeat(2,1fr)}.storage-rule-grid{grid-template-columns:repeat(2,1fr)}.storage-rule-grid>div:nth-child(2){border-right:0}.storage-rule-grid>div:nth-child(-n+2){border-bottom:1px solid #edf0ee}}
@media(max-width:768px){.lifecycle-kpis{grid-template-columns:repeat(2,1fr)}.lifecycle-track{grid-template-columns:repeat(8,100px)}.storage-policy{grid-template-columns:1fr}.storage-policy>i{width:2px;height:18px;margin:auto}.storage-policy>i:after{right:-3px;top:auto;bottom:0;border-top:6px solid #8ca9a1;border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:0}.storage-status-grid,.storage-rule-grid{grid-template-columns:1fr}.storage-rule-grid>div{border-right:0;border-bottom:1px solid #edf0ee}.storage-rule-grid>div:last-child{border-bottom:0}.project-stage-tools{align-items:flex-start;flex-direction:column}.project-stage-head{grid-template-columns:1fr auto}.project-stage-meta{text-align:left;grid-column:1/3}.project-stage-head>.action-btn{grid-column:2;grid-row:1}.project-stage-required,.project-stage-empty{padding-left:14px}.project-doc-row{grid-template-columns:1fr}.project-doc-row>.action-btns{justify-content:flex-start}}

/* ========== v2.3 筑协云设计管理：克制配色与紧凑图模文档 ========== */
:root{
  --primary:#315b55;
  --primary-light:#e9efed;
  --primary-dark:#24443f;
  --success:#3f6b61;
  --success-light:#e8efec;
  --warning:#8a6b3f;
  --warning-light:#f5f0e7;
  --info:#536d69;
  --info-light:#edf1f0;
  --gray-50:#f7f8f7;
  --gray-100:#eef0ef;
  --gray-200:#dfe3e1;
  --gray-300:#cbd1ce;
  --gray-400:#939d99;
  --gray-500:#697570;
  --gray-600:#4c5954;
  --gray-700:#34413c;
  --gray-800:#252e2b;
  --gray-900:#19211f;
  --radius:8px;
  --shadow:0 1px 2px rgba(25,33,31,.05);
  --shadow-md:0 12px 28px rgba(25,33,31,.14);
}
body{background:#f2f4f3;color:#252e2b}
body,.page-title,.dashboard-title,.kpi-value{letter-spacing:0}
.topbar{background:#202725}
.logo-mark{background:#eef1ef;color:#27332f;border-radius:6px}
.app-title small{color:#b7c0bd;letter-spacing:0}
.project-selector,.btn-icon{background:#2c3532;border-color:#46514d}
.btn-icon:hover{background:#3a4642}
.sidebar{background:#fafbfa}
.nav-item.active{background:#e8eeeb;color:#294f49;box-shadow:inset 3px 0 #315b55}
.system-dot{background:#4f7d70;box-shadow:none}
.card,.stat-card,.section-card,.kpi-card{border-radius:8px;box-shadow:var(--shadow)}
.kpi-card.primary{background:#293633;border-color:#293633}
.kpi-accent{display:none}
.progress-fill{background:#4b7169!important}
.btn-success,.btn-warning{background:#45665f;color:#fff}
.btn-success:hover,.btn-warning:hover{background:#34544d}
.badge-success{background:#e8efec;color:#3f655c}
.badge-info{background:#edf1f0;color:#536d69}
.badge-warning{background:#f5f0e7;color:#755a35}
.discipline-tag{background:#eef1ef;color:#48544f;border:1px solid #dfe4e1}
.discipline-dot{width:6px;height:6px;opacity:.8}
.filter-select,.filter-input,.form-input,.form-select,.form-textarea{border-color:#d4d9d7}
.login-overlay{background:#202725}
.login-card{border-radius:8px;padding:36px;box-shadow:0 20px 60px rgba(0,0,0,.24)}
.login-logo{font-size:40px}
.login-btn:hover{box-shadow:none}
.discipline-manager-note{font-size:12px;line-height:1.65;color:var(--gray-500);background:var(--gray-50);border:1px solid var(--gray-200);border-radius:6px;padding:10px 12px;margin-bottom:16px}

.archive-action-bar{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:10px;padding:8px 10px;background:#fff;border:1px solid var(--gray-200);border-radius:8px}
.pending-upload-panel{margin-bottom:10px;border:1px solid var(--gray-200);border-radius:8px;background:#fff;overflow:hidden}
.pending-upload-panel.has-pending{border-color:#f0b44d}
.pending-upload-head{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 12px;background:#f8fafc}
.pending-upload-panel.has-pending .pending-upload-head{background:#fff8e8}
.pending-upload-head>div{min-width:0;display:flex;align-items:baseline;gap:8px;flex-wrap:wrap}
.pending-upload-head strong{font-size:13px;color:var(--gray-700)}
.pending-upload-head small{font-size:11px;color:var(--gray-500)}
.pending-upload-head>span{font-size:11px;font-weight:600;color:#9a6400;white-space:nowrap}
.pending-upload-panel.is-clear .pending-upload-head>span{color:var(--success)}
.pending-upload-list{border-top:1px solid #f4d797}
.pending-upload-row{display:grid;grid-template-columns:minmax(220px,1fr) 96px 110px 150px 210px;align-items:center;gap:12px;padding:9px 12px;border-top:1px solid var(--gray-100)}
.pending-upload-row:first-child{border-top:0}
.pending-upload-header{background:#fffdf6;color:#9a6400;font-size:11px;font-weight:650}
.pending-upload-file{min-width:0}
.pending-upload-file strong{display:block;font-size:12px;overflow-wrap:anywhere}
.pending-upload-file small{display:block;margin-top:3px;font-size:10px;color:var(--gray-500)}
.pending-upload-file em{display:block;margin-top:3px;font-size:10px;font-style:normal;color:#9a6400;overflow-wrap:anywhere}
.pending-upload-cell{font-size:11px;color:var(--gray-500);overflow-wrap:anywhere}
.pending-archive-summary{padding:10px 12px;margin-bottom:14px;border:1px solid #f0d28c;border-radius:7px;background:#fff8e8}
.pending-archive-summary strong,.pending-archive-summary small{display:block;overflow-wrap:anywhere}
.pending-archive-summary small{margin-top:4px;color:var(--gray-500);font-size:11px}
.move-document-summary{padding:10px 12px;margin-bottom:14px;border:1px solid var(--gray-200);border-radius:7px;background:var(--gray-50)}
.move-document-summary strong,.move-document-summary small{display:block;overflow-wrap:anywhere}
.move-document-summary small{margin-top:4px;color:var(--gray-500);font-size:11px}
@media(max-width:700px){.pending-upload-header{display:none}.pending-upload-row{grid-template-columns:1fr;align-items:flex-start}.pending-upload-row .action-btns{width:100%;justify-content:flex-end}.pending-upload-cell{font-size:10px}}
.archive-action-title{font-size:12px;font-weight:650;color:var(--gray-700);margin-right:2px}
.archive-action-hint{font-size:11px;color:var(--gray-400)}
.archive-stage-panel{background:#fff;border:1px solid var(--gray-200);border-radius:8px;margin-bottom:10px;overflow:hidden}
.archive-stage-summary{min-height:50px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:7px 10px}
.archive-stage-summary-main{min-width:0;display:flex;align-items:center;gap:9px;border:0;background:transparent;color:inherit;text-align:left;padding:0}
.archive-stage-summary-main>span:last-child{min-width:0}
.archive-stage-summary-main strong{display:block;font-size:13px;color:var(--gray-800)}
.archive-stage-summary-main small{display:block;font-size:10px;color:var(--gray-500);margin-top:2px}
.archive-stage-summary-chevron{font-size:18px;color:var(--gray-500);transition:transform .15s}
.archive-stage-panel:not(.collapsed) .archive-stage-summary-chevron{transform:rotate(90deg)}
.archive-stage-summary-actions{display:flex;gap:6px;align-items:center;flex-shrink:0}
.archive-stage-body{border-top:1px solid var(--gray-100);padding:8px 10px 10px;background:#fafbfa}
.archive-stage-upload-row{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:7px}
.archive-filter-bar{gap:8px;margin-bottom:10px;padding:7px 9px;background:#fff;border:1px solid var(--gray-200);border-radius:8px}
.archive-filter-bar .filter-item{gap:5px}
.archive-filter-bar .filter-label{font-size:11px}
.archive-filter-bar .filter-select{padding:4px 8px;font-size:12px;min-height:28px}
.archive-discipline-manage{white-space:nowrap}

.project-stage-tools{padding:6px 0 8px;margin:0;border-top:0;font-size:11px}
.project-stage-docs{gap:5px}
.project-stage-group{border-radius:6px;background:#fff}
.project-stage-head{grid-template-columns:minmax(220px,1fr) minmax(120px,auto) auto;padding:6px 8px;gap:8px}
.project-stage-toggle{grid-template-columns:14px 4px minmax(0,1fr);gap:7px}
.project-stage-dot{width:3px;height:25px;background:#64736e}
.project-stage-title strong{font-size:12px}
.project-stage-title small{font-size:9px;margin-top:1px}
.project-stage-meta span{font-size:10px;padding:2px 6px;border-radius:4px}
.project-stage-meta small{font-size:9px;margin-top:1px}
.project-stage-required{padding:0 8px 6px 32px}
.project-stage-required span{font-size:9px;padding:1px 4px}
.project-doc-row{padding:7px 8px}
.project-stage-empty{padding:8px 9px 8px 32px}

@media(max-width:900px){
  .archive-stage-summary{align-items:flex-start;flex-direction:column}
  .archive-stage-summary-actions{width:100%;justify-content:flex-end}
  .archive-filter-bar{align-items:flex-start}
}

.manager-flow{margin-bottom:16px}
.manager-flow-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0;padding:0}
.manager-flow-step{min-height:86px;padding:15px 17px;border-right:1px solid #edf0ee;display:flex;flex-direction:column;justify-content:center}
.manager-flow-step:last-child{border-right:0}
.manager-flow-step strong{font-size:24px;color:#293f39;line-height:1}
.manager-flow-step span{font-size:12px;font-weight:650;color:#475b54;margin-top:8px}
.manager-flow-step small{font-size:10px;color:#899792;margin-top:3px}
.transfer-file-summary{padding:12px 14px;background:var(--gray-50);border:1px solid var(--gray-200);border-radius:7px;margin-bottom:12px}
.transfer-file-summary strong{display:block;font-size:13px;color:var(--gray-800)}
.transfer-file-summary small{display:block;font-size:11px;color:var(--gray-500);margin-top:4px}
.transfer-file-list{border:1px solid var(--gray-200);border-radius:7px;overflow:hidden}
.transfer-file-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;align-items:center;padding:11px 12px;background:#fff}
.transfer-file-row+.transfer-file-row{border-top:1px solid var(--gray-100)}
.transfer-file-row>div{min-width:0}.transfer-file-row strong{display:block;font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.transfer-file-row small{display:block;font-size:10px;color:var(--gray-400);margin-top:3px}
@media(max-width:768px){
  .manager-flow-grid{grid-template-columns:repeat(2,1fr)}
  .manager-flow-step:nth-child(2n){border-right:0}
  .manager-flow-step:nth-child(-n+3){border-bottom:1px solid #edf0ee}
}

/* ========== ICP备案号 ========== */
.icp-footer {
  text-align: center;
  padding: 10px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.icp-footer a {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: none;
}
.icp-footer a:hover {
  color: var(--primary);
}
