
/* ---------- 侧栏分割线 ---------- */
.lof-divider {
  height: 1px;
  margin: 8px 14px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;   /* 位于 scroll-container(flex 列) 内时不被压缩为 0 高度，保证分割线可见 */
}
.lof-nav-group { display: block; padding: 0 8px; }

/* ---------- 覆盖面板 ---------- */
.lof-panel {
  position: fixed; z-index: 12; background: #f6f7f9;
  display: flex; flex-direction: column; overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
}

.lof-header {
  flex-shrink: 0; padding: 24px 36px 18px; background: #fff;
  border-bottom: 1px solid #eef0f3;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.lof-title { margin: 0; font-size: 20px; font-weight: 600; color: #0b0b0b; line-height: 28px; }
.lof-sub { margin-top: 6px; font-size: 13px; color: rgba(0,0,0,0.45); }
.lof-close {
  border: none; background: #f2f3f5; color: rgba(0,0,0,0.55);
  width: 32px; height: 32px; border-radius: 8px; font-size: 20px; line-height: 1;
  cursor: pointer; flex-shrink: 0; transition: background 0.15s, color 0.15s;
}
.lof-close:hover { background: #e7e9ec; color: rgba(0,0,0,0.8); }

.lof-body { flex: 1; overflow-y: auto; padding: 24px 36px 48px; }

/* ---------- KPI 卡片 ---------- */
.lof-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 26px; }
.lof-kpi { background: #fff; border: 1px solid #eef0f3; border-radius: 14px; padding: 18px 20px; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.lof-kpi-label { font-size: 13px; color: rgba(0,0,0,0.45); }
.lof-kpi-value { font-size: 26px; font-weight: 700; color: #0b0b0b; margin: 8px 0 6px; letter-spacing: -0.02em; }
.lof-kpi-delta { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.lof-kpi-delta.up { color: #10b981; }
.lof-kpi-delta.down { color: #ef4444; }
.lof-kpi-delta.flat { color: rgba(0,0,0,0.4); }

/* ---------- 区块 ---------- */
.lof-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 980px) { .lof-cols { grid-template-columns: 1fr; } }
.lof-section { background: #fff; border: 1px solid #eef0f3; border-radius: 14px; padding: 20px 22px; margin-bottom: 20px; box-shadow: 0 1px 2px rgba(15,23,42,0.04); }
.lof-section-title { font-size: 15px; font-weight: 600; color: #0b0b0b; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.lof-section-title .lof-tag-mini { font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.4); }

/* ---------- 柱状图 ---------- */
.lof-chart { display: flex; align-items: flex-end; gap: 14px; height: 168px; padding-top: 8px; }
.lof-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.lof-chart-bar { width: 60%; max-width: 42px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #4f8dff, #2b5cf6); transition: height 0.4s ease; }
.lof-chart-bar.alt { background: linear-gradient(180deg, #38d39f, #10b981); }
.lof-chart-val { font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.6); }
.lof-chart-x { font-size: 12px; color: rgba(0,0,0,0.42); }

/* ---------- 进度列表 ---------- */
.lof-rowlist { display: flex; flex-direction: column; gap: 16px; }
.lof-rowitem { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; }
.lof-rowitem__name { font-size: 14px; color: #0b0b0b; font-weight: 500; }
.lof-rowitem__meta { font-size: 12px; color: rgba(0,0,0,0.45); text-align: right; }
.lof-progress { grid-column: 1 / -1; height: 8px; border-radius: 999px; background: #eef0f3; overflow: hidden; margin-top: 4px; }
.lof-progress > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #4f8dff, #2b5cf6); }
.lof-progress.g > span { background: linear-gradient(90deg, #38d39f, #10b981); }

/* ---------- 待办 / 决策列表 ---------- */
.lof-list { display: flex; flex-direction: column; gap: 12px; }
.lof-list-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border: 1px solid #eef0f3; border-radius: 10px; background: #fbfcfe; }
.lof-list-item__body { flex: 1; min-width: 0; }
.lof-list-item__t { font-size: 13.5px; color: #0b0b0b; line-height: 1.5; }
.lof-list-item__s { font-size: 12px; color: rgba(0,0,0,0.42); margin-top: 3px; }
.lof-badge { flex-shrink: 0; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px; white-space: nowrap; }
.lof-badge.blue { color: #1d4ed8; background: #eff4ff; }
.lof-badge.green { color: #047857; background: #e8f8f1; }
.lof-badge.amber { color: #b45309; background: #fef3e2; }
.lof-badge.red { color: #b91c1c; background: #fdecec; }
.lof-badge.gray { color: rgba(0,0,0,0.5); background: #f1f2f4; }

/* ---------- 时间线 ---------- */
.lof-tl { display: flex; flex-direction: column; gap: 2px; }
.lof-tl-item { display: flex; gap: 12px; }
.lof-tl-rail { display: flex; flex-direction: column; align-items: center; }
.lof-tl-dot { width: 9px; height: 9px; border-radius: 50%; background: #2b5cf6; margin-top: 5px; flex-shrink: 0; }
.lof-tl-line { flex: 1; width: 2px; background: #eef0f3; }
.lof-tl-item:last-child .lof-tl-line { display: none; }
.lof-tl-c { padding-bottom: 16px; }
.lof-tl-name { font-size: 13.5px; font-weight: 600; color: #0b0b0b; }
.lof-tl-desc { font-size: 12.5px; color: rgba(0,0,0,0.5); line-height: 1.5; margin-top: 3px; }

/* ---------- 汇总小卡 ---------- */
.lof-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 22px; }
.lof-mini-card { background: #fff; border: 1px solid #eef0f3; border-radius: 12px; padding: 16px 18px; }
.lof-mini-card__v { font-size: 24px; font-weight: 700; color: #0b0b0b; }
.lof-mini-card__l { font-size: 12.5px; color: rgba(0,0,0,0.45); margin-top: 4px; }
.lof-mini-card.warn .lof-mini-card__v { color: #ef4444; }

/* ---------- 筛选 chips ---------- */
.lof-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.lof-chip { border: 1px solid #e6e8eb; background: #fff; color: rgba(0,0,0,0.6); font-size: 13px; padding: 6px 14px; border-radius: 999px; cursor: pointer; transition: all 0.15s; font-family: inherit; }
.lof-chip:hover { border-color: #b9c6ff; }
.lof-chip.active { background: #2b5cf6; border-color: #2b5cf6; color: #fff; }

/* ---------- 项目表 ---------- */
.lof-table { width: 100%; background: #fff; border: 1px solid #eef0f3; border-radius: 14px; overflow: hidden; border-collapse: separate; border-spacing: 0; }
.lof-table th { text-align: left; font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.42); padding: 14px 18px; background: #fafbfc; border-bottom: 1px solid #eef0f3; }
.lof-table td { padding: 14px 18px; font-size: 13.5px; color: #0b0b0b; border-bottom: 1px solid #f2f3f5; vertical-align: middle; }
.lof-table tr:last-child td { border-bottom: none; }
.lof-table tbody tr { cursor: pointer; transition: background 0.12s; }
.lof-table tbody tr:hover { background: #f7f9ff; }
.lof-table__proj { font-weight: 600; }
.lof-table__owner { display: inline-flex; align-items: center; gap: 8px; }
.lof-ava { width: 24px; height: 24px; border-radius: 50%; color: #fff; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lof-mini-progress { display: flex; align-items: center; gap: 8px; min-width: 120px; }
.lof-mini-progress .bar { flex: 1; height: 6px; border-radius: 999px; background: #eef0f3; overflow: hidden; }
.lof-mini-progress .bar > span { display: block; height: 100%; background: linear-gradient(90deg, #4f8dff, #2b5cf6); }
.lof-mini-progress .pct { font-size: 12px; color: rgba(0,0,0,0.5); width: 34px; text-align: right; }

/* ---------- 办公室 · 侧栏展开/收起 ---------- */
.lof-office-tree { display: flex; flex-direction: column; }
.lof-office-head { display: flex; align-items: center; }
.lof-nav-tail { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.lof-nav-trial { font-size: 12px; line-height: 18px; white-space: nowrap; color: rgba(0, 0, 0, 0.45); }
.lof-nav-chevron { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: rgba(0,0,0,0.35); transition: transform 0.2s ease; flex-shrink: 0; }
.lof-nav-chevron svg { width: 16px; height: 16px; display: block; }
.lof-office-tree.lof-expanded .lof-nav-chevron { transform: rotate(90deg); }
.lof-office-sub { display: none; flex-direction: column; gap: 2px; padding: 4px 10px 6px 28px; }
.lof-office-tree.lof-expanded .lof-office-sub { display: flex; }
.lof-subitem { display: flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px; cursor: pointer; color: rgba(0,0,0,0.82); font-size: 14px; line-height: 22px; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.lof-subitem:hover { background: rgba(0,0,0,0.045); }
.lof-subitem--active { background: #f2f3f5; color: rgba(0,0,0,0.94); font-weight: 500; }
.lof-subitem--active:hover { background: #f2f3f5; }

/* ============================================================
   CEO 办公室 · 今日摘要（CEO 助理）—— 对齐 Figma 12021:18617
   ============================================================ */
.lof-panel.lof-panel--assistant { background: #ffffff; }
.lof-panel.lof-panel--assistant .lof-header { display: none; }
.lof-panel.lof-panel--assistant .lof-body { padding: 0; overflow: hidden; }

.ceoa { display: flex; height: 100%; min-height: 0; }

/* 中间：助理对话列 */
.ceoa-main { flex: 1; min-width: 0; display: flex; flex-direction: column; min-height: 0; }
.ceoa-scroll { flex: 1; min-height: 0; overflow-y: auto; display: flex; justify-content: center; padding: 48px 40px 12px; }
.ceoa-footer { flex-shrink: 0; display: flex; justify-content: center; padding: 8px 40px 18px; }
.ceoa-col { width: 100%; max-width: 736px; }

.ceoa-head { margin-bottom: 26px; }
.ceoa-title { font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 30px; }
.ceoa-date { margin-top: 6px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 22px; }

.ceoa-greeting { margin-bottom: 26px; }
.ceoa-greeting__text { font-size: 16px; line-height: 26px; color: rgba(0,0,0,0.94); }
.ceoa-greeting__bar { display: flex; align-items: center; gap: 2px; margin-top: 14px; }
.ceoa-ico-btn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.5); cursor: pointer; transition: background 0.15s, color 0.15s; }
.ceoa-ico-btn:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.78); }
.ceoa-ico-btn svg { width: 18px; height: 18px; display: block; }
.ceoa-greeting__meta { margin-left: 8px; font-size: 12px; color: rgba(0,0,0,0.46); white-space: nowrap; }
.ceoa-greeting__meta:first-of-type { margin-left: 10px; }

.ceoa-options { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.ceoa-option { display: flex; align-items: center; gap: 10px; width: fit-content; max-width: 100%; padding: 9px 12px; border: 0; border-radius: 12px; background: rgba(0,0,0,0.03); color: rgba(0,0,0,0.82); font-family: inherit; font-size: 14px; line-height: 22px; text-align: left; cursor: pointer; transition: background 0.15s; }
.ceoa-option:hover { background: rgba(0,0,0,0.06); }
.ceoa-option__txt { flex: 1; min-width: 0; }
.ceoa-option__arrow { display: inline-flex; flex-shrink: 0; color: rgba(0,0,0,0.4); }
.ceoa-option__arrow svg { width: 16px; height: 16px; display: block; }

/* 输入框 */
.ceoa-composer { width: 100%; box-sizing: border-box; padding: 16px 10px 10px; border: 1px solid rgba(0,0,0,0.06); border-radius: 28px; box-shadow: 0 6px 12px rgba(0,0,0,0.03); background: #fff; }
.ceoa-composer__input { padding: 0 10px; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.28); }
.ceoa-composer__bar { display: flex; align-items: center; margin-top: 8px; }
.ceoa-composer__spacer { flex: 1; }
.ceoa-cbtn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 0; border-radius: 999px; background: transparent; color: rgba(0,0,0,0.6); cursor: pointer; transition: background 0.15s; }
.ceoa-cbtn:hover { background: rgba(0,0,0,0.05); }
.ceoa-cbtn svg { width: 20px; height: 20px; display: block; }
.ceoa-cbtn--send { background: #f5f5f5; color: rgba(0,0,0,0.5); margin-left: 4px; }
.ceoa-cbtn--send:hover { background: #ececec; color: rgba(0,0,0,0.7); }

.ceoa-disclaimer { margin-top: 12px; text-align: center; font-size: 12px; color: rgba(0,0,0,0.28); }

/* 右侧待办面板 */
.ceoa-side { width: 400px; flex-shrink: 0; box-sizing: border-box; padding: 24px 24px 24px 12px; display: flex; min-height: 0; }
.ceoa-todo { display: flex; flex-direction: column; width: 100%; min-height: 0; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; background: #fff; box-sizing: border-box; }
.ceoa-todo__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ceoa-todo__title { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.ceoa-todo__title b { color: #495DFF; font-weight: 500; }
.ceoa-todo__refresh { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border: 0; border-radius: 6px; background: transparent; color: rgba(0,0,0,0.45); cursor: pointer; transition: background 0.15s, transform 0.4s ease; }
.ceoa-todo__refresh:hover { background: rgba(0,0,0,0.05); }
.ceoa-todo__refresh.is-spin { transform: rotate(360deg); }
.ceoa-todo__refresh svg { width: 16px; height: 16px; display: block; }

.ceoa-seg { display: flex; gap: 4px; padding: 4px; border-radius: 20px; background: rgba(0,0,0,0.03); }
.ceoa-seg__btn { flex: 0 0 auto; height: 32px; padding: 0 16px; border: 0; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; line-height: 20px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.ceoa-seg__btn.is-active { background: #fff; color: rgba(0,0,0,0.94); font-weight: 500; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }

.ceoa-todo__list { flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; padding-top: 10px; margin: 0 -6px; }
.ceoa-item { padding: 10px 12px; border-radius: 12px; cursor: pointer; transition: background 0.15s; }
.ceoa-item:hover { background: rgba(0,0,0,0.025); }
.ceoa-item__top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.ceoa-tag { flex-shrink: 0; display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 999px; font-size: 12px; line-height: 1; }
.ceoa-tag--event { color: #0083D4; background: rgba(0,163,244,0.08); }
.ceoa-tag--meeting { color: #7A2AF3; background: rgba(122,42,243,0.08); }
.ceoa-item__title { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.82); line-height: 22px; }
.ceoa-item__desc { font-size: 14px; color: rgba(0,0,0,0.46); line-height: 22px; }

@media (max-width: 1180px) { .ceoa-side { width: 344px; } }
@media (max-width: 960px) {
  .ceoa { flex-direction: column; overflow-y: auto; }
  .ceoa-main { min-height: 0; }
  .ceoa-side { width: auto; padding: 0 20px 20px; }
  .ceoa-todo { max-height: 400px; }
}

/* ============================================================
   项目管理 · 产品能力路线图 —— 对齐 Figma 12021:20755
   ============================================================ */
.lof-panel.lof-panel--roadmap { background: #ffffff; }
.lof-panel.lof-panel--roadmap .lof-header { display: none; }
.lof-panel.lof-panel--roadmap .lof-body { padding: 0; }

.lpr { padding: 40px 40px 56px; }

/* 顶部：产品名 + 分段控件 */
.lpr-topbar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.lpr-title { font-size: 20px; font-weight: 600; color: #000; line-height: 30px; }
.lpr-seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 24px; background: rgba(0,0,0,0.03); }
.lpr-seg__btn { height: 32px; padding: 0 16px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; line-height: 20px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.lpr-seg__btn:hover { color: rgba(0,0,0,0.86); }
.lpr-seg__btn.is-active { background: #fff; color: rgba(0,0,0,0.82); font-weight: 600; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }

/* 工具行：季度 tab + 搜索 + 筛选 */
.lpr-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.lpr-quarters { display: flex; align-items: center; gap: 4px; }
.lpr-q { height: 32px; padding: 0 16px; border: 1px solid transparent; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.46); font-family: inherit; font-size: 14px; line-height: 20px; cursor: pointer; white-space: nowrap; transition: color 0.15s, border-color 0.15s; }
.lpr-q:hover { color: rgba(0,0,0,0.7); }
.lpr-q.is-active { border-color: #495DFF; color: #495DFF; font-weight: 500; }
.lpr-tools { display: flex; align-items: center; gap: 12px; }
.lpr-search { display: inline-flex; align-items: center; gap: 8px; width: 230px; height: 32px; padding: 0 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; box-sizing: border-box; }
.lpr-search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.82); }
.lpr-search input::placeholder { color: rgba(0,0,0,0.28); }
.lpr-search__ic { display: inline-flex; flex-shrink: 0; color: rgba(0,0,0,0.4); }
.lpr-search__ic svg { width: 16px; height: 16px; display: block; }
.lpr-filter { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.12); border-radius: 24px; background: #fff; color: rgba(0,0,0,0.82); font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s; }
.lpr-filter:hover { background: rgba(0,0,0,0.03); }
.lpr-filter svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.6); }

/* 分组 */
.lpr-groups { display: flex; flex-direction: column; gap: 24px; }
.lpr-group__head { display: flex; align-items: baseline; padding: 8px 0; }
.lpr-group__name { font-size: 16px; font-weight: 600; color: #000; line-height: 24px; }
.lpr-group__count { font-size: 14px; color: rgba(0,0,0,0.82); }
.lpr-cards { display: flex; flex-wrap: wrap; gap: 16px; }

/* 卡片 */
.lpr-card { display: flex; flex-direction: column; gap: 12px; width: 374px; max-width: 100%; box-sizing: border-box; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; background: #fff; cursor: pointer; transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s; }
.lpr-card:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 18px rgba(15,23,42,0.06); transform: translateY(-1px); }
.lpr-card__body { display: flex; flex-direction: column; gap: 4px; }
.lpr-card__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lpr-card__title { flex: 1; min-width: 0; font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.82); line-height: 22px; }
.lpr-stars { display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0; }
.lpr-stars svg { width: 12px; height: 12px; display: block; }
.lpr-star--on { color: #FFB200; }
.lpr-star--off { color: rgba(0,0,0,0.12); }
.lpr-card__desc { font-size: 12px; color: rgba(0,0,0,0.64); line-height: 18px; }
.lpr-card__owner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.lpr-ava { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 600; line-height: 1; flex-shrink: 0; box-shadow: 0 0 0 1px #fff; }
.lpr-owner-name { font-size: 12px; color: rgba(0,0,0,0.64); }
.lpr-ava-stack { display: inline-flex; }
.lpr-ava-stack .lpr-ava { margin-left: -5px; }
.lpr-ava-stack .lpr-ava:first-child { margin-left: 0; }

@media (max-width: 900px) { .lpr { padding: 28px 24px 40px; } .lpr-card { width: 100%; } }

/* 分段内容容器 / 占位 */
.lpr-content { display: block; }
.lpr-empty { display: flex; align-items: center; justify-content: center; min-height: 280px; color: rgba(0,0,0,0.4); font-size: 14px; border: 1px dashed rgba(0,0,0,0.12); border-radius: 16px; }

/* ===== 项目管理 · 共用元素（头像 / 状态标签）===== */
.pm-ava { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; font-size: 10px; font-weight: 600; line-height: 1; flex-shrink: 0; }
.pm-pill { display: inline-flex; align-items: center; height: 20px; padding: 0 8px; border-radius: 999px; font-size: 12px; line-height: 1; white-space: nowrap; }

/* ===== 路线图 ===== */
.ltl-months { display: flex; flex-direction: column; gap: 24px; }
.ltl-month { border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; background: #fff; overflow: hidden; }
.ltl-month__head { display: flex; align-items: center; gap: 12px; padding: 14px 24px; background: rgba(0,0,0,0.02); cursor: pointer; }
.ltl-month__flag { display: inline-flex; color: #495DFF; }
.ltl-month__flag svg { width: 18px; height: 18px; display: block; }
.ltl-month__name { font-size: 16px; font-weight: 600; color: #000; }
.ltl-badge { display: inline-flex; align-items: center; height: 22px; padding: 0 8px; border-radius: 999px; background: rgba(0,0,0,0.04); font-size: 12px; color: rgba(0,0,0,0.6); }
.ltl-badge--cur { background: rgba(73,93,255,0.1); color: #495DFF; }
.ltl-month__chev { margin-left: auto; display: inline-flex; color: rgba(0,0,0,0.4); transition: transform 0.2s; }
.ltl-month__chev svg { width: 18px; height: 18px; display: block; }
.ltl-month.is-open .ltl-month__chev { transform: rotate(180deg); }
.ltl-month__body { display: none; flex-direction: column; gap: 20px; padding: 16px 24px 24px; }
.ltl-month.is-open .ltl-month__body { display: flex; }
.ltl-sec { display: flex; flex-direction: column; gap: 10px; }
.ltl-sec__title { font-size: 15px; font-weight: 600; color: #000; }
.ltl-sec__title span { font-weight: 400; color: rgba(0,0,0,0.5); font-size: 13px; }
.ltl-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.ltl-card { display: flex; flex-direction: column; gap: 12px; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; background: #fff; cursor: pointer; transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s; }
.ltl-card:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 16px rgba(15,23,42,0.06); transform: translateY(-1px); }
.ltl-card__t { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.82); line-height: 22px; }
.ltl-card__owner { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: rgba(0,0,0,0.6); }

/* ===== 发布看板 ===== */
.lrk-groups { display: flex; flex-direction: column; gap: 28px; }
.lrk-group__title { font-size: 18px; font-weight: 600; color: #000; margin-bottom: 12px; }
.lrk-group__title span { font-size: 14px; font-weight: 400; color: rgba(0,0,0,0.5); }
.lrk-list { display: flex; flex-direction: column; gap: 16px; }
.lrk-card { border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; background: #fff; overflow: hidden; }
.lrk-card__head { display: flex; align-items: center; gap: 12px; padding: 16px 24px; cursor: pointer; }
.lrk-card__main { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-width: 0; }
.lrk-card__title { font-size: 16px; font-weight: 600; color: #000; }
.lrk-meta { font-size: 12px; color: rgba(0,0,0,0.6); }
.lrk-card__chev { margin-left: auto; display: inline-flex; color: rgba(0,0,0,0.4); transition: transform 0.2s; }
.lrk-card__chev svg { width: 18px; height: 18px; display: block; }
.lrk-card.is-open .lrk-card__chev { transform: rotate(180deg); }
.lrk-card__body { display: none; padding: 0 12px 12px; }
.lrk-card.is-open .lrk-card__body { display: block; }
.lrk-story { border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; overflow: hidden; }
.lrk-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.lrk-th { text-align: left; padding: 10px 16px; font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.6); background: #f7f7f8; border-bottom: 1px solid rgba(0,0,0,0.06); white-space: nowrap; }
.lrk-td { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.05); color: rgba(0,0,0,0.72); vertical-align: middle; }
.lrk-table tbody tr:last-child .lrk-td { border-bottom: 0; }
.lrk-td--name { color: rgba(0,0,0,0.82); max-width: 560px; }
.lrk-td--c { text-align: center; white-space: nowrap; }

/* ===== 评审页 · 共用头部 ===== */
.lpv-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.lpv-title { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.82); }
.lpv-switch { height: 28px; padding: 0 12px; border: 0; border-radius: 8px; background: rgba(73,93,255,0.08); color: #495DFF; font-family: inherit; font-size: 13px; cursor: pointer; }
.lpv-sub { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 8px; font-size: 12px; color: rgba(0,0,0,0.6); }
.lpv-actions { display: flex; gap: 12px; }
.lpv-btn { display: inline-flex; align-items: center; gap: 4px; height: 36px; padding: 0 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.82); font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.lpv-btn:hover { border-color: rgba(0,0,0,0.24); }
.lpv-btn svg { width: 16px; height: 16px; }
.lpv-btn--primary { background: #495DFF; border-color: #495DFF; color: #fff; }
.lpv-btn--primary:hover { background: #3a4ce0; }

/* ===== 规划评审 · 步骤条 ===== */
.lpv-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 20px; padding: 16px; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; overflow-x: auto; }
.lpv-step { position: relative; display: flex; align-items: center; gap: 8px; padding: 4px 20px 4px 10px; flex-shrink: 0; }
.lpv-step__num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.08); background: #fff; font-size: 14px; color: rgba(0,0,0,0.82); flex-shrink: 0; }
.lpv-step__body { display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.lpv-step__t { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.82); }
.lpv-step__d { font-size: 12px; color: rgba(0,0,0,0.46); }
.lpv-step__line { width: 40px; height: 1px; background: rgba(0,0,0,0.12); margin: 0 4px; align-self: center; }
.lpv-step--current .lpv-step__num { border-color: #495DFF; color: #495DFF; }
.lpv-step--current .lpv-step__t, .lpv-step--current .lpv-step__d { color: #495DFF; }
.lpv-step--wait .lpv-step__num { color: rgba(0,0,0,0.4); }
.lpv-step--wait .lpv-step__t { color: rgba(0,0,0,0.6); }

/* ===== 规划评审 · 统计卡 ===== */
.lpv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.lpv-stat { padding: 20px; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; background: #fff; }
.lpv-stat__h { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.6); }
.lpv-stat__h svg { width: 16px; height: 16px; color: rgba(0,0,0,0.4); }
.lpv-stat__v { margin: 8px 0 4px; font-size: 28px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 1.1; }
.lpv-stat__v i { font-size: 14px; font-weight: 400; color: rgba(0,0,0,0.64); font-style: normal; margin-left: 4px; }
.lpv-stat__sub { font-size: 12px; color: rgba(0,0,0,0.46); }
@media (max-width: 900px) { .lpv-stats { grid-template-columns: 1fr; } }

/* ===== 规划评审 · 清单表 ===== */
.lpv-listhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.lpv-listtitle { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.82); }
.lpv-tablewrap, .lpb-tablewrap { border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; overflow-x: auto; }
.lpv-table, .lpb-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.lpv-th, .lpb-th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.6); background: rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.06); white-space: nowrap; }
.lpv-td, .lpb-td { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.05); color: rgba(0,0,0,0.72); vertical-align: middle; }
.lpv-table tbody tr:last-child .lpv-td, .lpb-table tbody tr:last-child .lpb-td { border-bottom: 0; }
.lpv-td--c, .lpb-td--c { text-align: center; white-space: nowrap; }
.lpv-td--feat { font-weight: 500; color: rgba(0,0,0,0.86); min-width: 160px; }
.lpv-td--cust { max-width: 200px; color: rgba(0,0,0,0.64); }
.lpv-tag { display: inline-flex; align-items: center; height: 18px; padding: 0 8px; border-radius: 999px; font-size: 12px; line-height: 1; }
.lpv-prio { display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 8px; background: #f7f7f7; font-size: 12px; color: rgba(0,0,0,0.82); }
.lpv-link { color: #495DFF; cursor: pointer; }
.lpv-link:hover { text-decoration: underline; }
.lpv-pager { margin-top: 16px; text-align: right; font-size: 13px; color: rgba(0,0,0,0.46); }

/* ===== 发布评审 · 结论横幅 + 门禁 ===== */
.lpb-banner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding: 16px 20px; margin-bottom: 20px; border: 1px solid rgba(255,119,0,0.14); border-radius: 16px; background: linear-gradient(90deg, rgba(255,119,0,0.05), rgba(255,119,0,0)); }
.lpb-banner__ic { display: inline-flex; color: #FF7700; }
.lpb-banner__ic svg { width: 26px; height: 26px; }
.lpb-banner__t { font-size: 16px; font-weight: 600; color: #000; }
.lpb-banner__s { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.46); }
.lpb-gates { display: flex; gap: 32px; flex-wrap: wrap; margin-left: auto; padding-left: 24px; border-left: 1px solid #ffe6d1; }
.lpb-gate__h { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.lpb-gate__t { font-weight: 500; color: rgba(0,0,0,0.82); }
.lpb-gate__ic { display: inline-flex; }
.lpb-gate__ic svg { width: 16px; height: 16px; }
.lpb-gate__ic.is-ok { color: #04B545; }
.lpb-gate__ic.is-warn { color: #FF7700; }
.lpb-gate__m { margin-top: 4px; font-size: 13px; color: rgba(0,0,0,0.7); }
.lpb-gate__m b { color: rgba(0,0,0,0.9); }
.lpb-tabsrow { margin-bottom: 12px; }
.lpb-tabs { display: inline-flex; align-items: center; gap: 4px; }
.lpb-tab { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 16px; border: 1px solid transparent; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.46); font-family: inherit; font-size: 14px; cursor: pointer; transition: color 0.15s, border-color 0.15s; }
.lpb-tab svg { width: 15px; height: 15px; color: #FF7700; }
.lpb-tab:hover { color: rgba(0,0,0,0.7); }
.lpb-tab.is-active { border-color: #495DFF; color: #495DFF; font-weight: 500; }
.lpb-td--note { max-width: 420px; color: rgba(0,0,0,0.64); }

/* ---------- 作战中心（组织作战地图，对齐 Figma 291:18940）---------- */
.lwr { display: flex; flex-direction: column; gap: 16px; }
.lwr-cmd { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 24px; }
.lwr-cmd__title { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.82); }
.lwr-cmd__title svg { width: 18px; height: 18px; display: block; color: rgba(0,0,0,0.7); }
.lwr-cmd__divider { width: 1px; height: 14px; background: rgba(0,0,0,0.18); border-radius: 4px; }
.lwr-cmd__role { display: inline-flex; align-items: center; gap: 8px; }
.lwr-cmd__label { font-size: 12px; color: rgba(0,0,0,0.94); white-space: nowrap; }
.lwr-chip { display: inline-flex; align-items: center; height: 32px; padding: 0 16px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); background: #fff; font-size: 14px; line-height: 20px; color: rgba(0,0,0,0.46); white-space: nowrap; }
.lwr-chip--primary { border-color: #495DFF; color: #495DFF; font-weight: 500; }

.lwr-prodtabs { display: flex; align-items: center; gap: 20px; overflow-x: auto; border-bottom: 1px solid rgba(0,0,0,0.08); scrollbar-width: none; }
.lwr-prodtabs::-webkit-scrollbar { display: none; }
.lwr-ptab { position: relative; flex-shrink: 0; padding: 6px 0; border: 0; background: transparent; font-family: inherit; font-size: 12px; font-weight: 500; line-height: 18px; color: rgba(0,0,0,0.46); cursor: pointer; white-space: nowrap; transition: color 0.15s; }
.lwr-ptab:hover { color: rgba(0,0,0,0.7); }
.lwr-ptab.is-active { color: rgba(0,0,0,0.94); }
.lwr-ptab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: rgba(0,0,0,0.94); border-radius: 2px; }

.lwr-main { display: flex; align-items: flex-start; gap: 16px; }
@media (max-width: 900px) { .lwr-main { flex-direction: column; } }
.lwr-depts { flex: 0 0 260px; display: flex; flex-direction: column; gap: 4px; padding: 10px; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; box-sizing: border-box; }
.lwr-dept { display: flex; align-items: center; justify-content: space-between; gap: 8px; height: 40px; padding: 0 16px; border: 0; border-radius: 24px; background: transparent; font-family: inherit; font-size: 14px; line-height: 22px; color: rgba(0,0,0,0.82); cursor: pointer; text-align: left; transition: background 0.15s, color 0.15s; }
.lwr-dept:hover { background: rgba(0,0,0,0.03); }
.lwr-dept.is-active { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.94); font-weight: 500; }
.lwr-dept__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lwr-dept__count { flex-shrink: 0; font-size: 14px; color: rgba(0,0,0,0.46); }

.lwr-detail { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; background: #fff; box-sizing: border-box; }
.lwr-detail__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lwr-detail__title { font-size: 18px; font-weight: 600; color: rgba(0,0,0,0.82); line-height: 28px; }
.lwr-viewtoggle { display: inline-flex; gap: 4px; padding: 4px; border-radius: 20px; background: rgba(0,0,0,0.03); }
.lwr-viewbtn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 24px; border: 0; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.5); cursor: pointer; transition: background 0.15s, color 0.15s; }
.lwr-viewbtn:hover { color: rgba(0,0,0,0.78); }
.lwr-viewbtn.is-active { background: #fff; color: rgba(0,0,0,0.82); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lwr-viewbtn svg { width: 16px; height: 16px; display: block; }

.lwr-meta { display: flex; flex-direction: column; gap: 8px; }
.lwr-metarow { display: flex; align-items: flex-start; gap: 4px; font-size: 14px; line-height: 22px; }
.lwr-metarow__label { display: inline-flex; align-items: center; gap: 4px; color: rgba(0,0,0,0.82); flex-shrink: 0; }
.lwr-metarow__label svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.55); }
.lwr-metarow__text { color: rgba(0,0,0,0.64); }
.lwr-leads { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lwr-lead { display: inline-flex; align-items: center; gap: 4px; }
.lwr-lead__name { font-size: 14px; color: rgba(0,0,0,0.64); }
.lwr-tag { display: inline-flex; align-items: center; height: 18px; padding: 0 4px; margin-left: 2px; border-radius: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.08); font-size: 11px; line-height: 18px; color: rgba(0,0,0,0.46); }
.lwr-tag--lead { border: 0; padding: 0 8px; border-radius: 999px; background: rgba(81,85,246,0.12); color: #4343F5; }

.lwr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 12px; }
.lwr-gcard { display: flex; flex-direction: column; gap: 12px; padding: 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; background: #fff; }
.lwr-gcard__top { display: flex; flex-direction: column; gap: 8px; }
.lwr-gcard__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lwr-gcard__name { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.82); }
.lwr-gcard__count { display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 21px; background: rgba(0,0,0,0.03); font-size: 12px; color: rgba(0,0,0,0.64); flex-shrink: 0; }
.lwr-gcard__lead { display: inline-flex; align-items: center; font-size: 14px; color: rgba(0,0,0,0.64); }
.lwr-gcard__hr { height: 0; border-top: 1px dashed rgba(0,0,0,0.12); }
.lwr-gcard__meta { display: flex; flex-direction: column; gap: 8px; }
.lwr-gcard__line { font-size: 12px; line-height: 18px; color: rgba(0,0,0,0.46); }
.lwr-avastack { display: inline-flex; }
.lwr-avastack .lwr-ava { margin-left: -8px; }
.lwr-avastack .lwr-ava:first-child { margin-left: 0; }
.lwr-ava { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; font-size: 12px; font-weight: 500; line-height: 1; box-shadow: 0 0 0 1px #fff; flex-shrink: 0; }

/* 作战中心 · 组织图谱视图 */
.lwr-graph { position: relative; width: 100%; height: 620px; border-radius: 16px; overflow: hidden; }
.lwr-graph__stage { position: absolute; inset: 0; transform-origin: center center; transition: transform 0.2s ease; }
.lwr-graph__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.lwr-gnode { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; white-space: nowrap; cursor: default; transition: box-shadow 0.15s, border-color 0.15s; }
.lwr-gnode:hover { border-color: rgba(0,0,0,0.16); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.lwr-gnode--center { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.lwr-gnode__ava { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; font-size: 20px; font-weight: 500; line-height: 1; flex-shrink: 0; }
.lwr-gnode__info { display: flex; flex-direction: column; align-items: flex-start; }
.lwr-gnode__name { font-size: 18px; font-weight: 500; color: rgba(0,0,0,0.82); line-height: 26px; }
.lwr-gnode__lead { font-size: 14px; color: rgba(0,0,0,0.64); line-height: 20px; }
.lwr-gnode__cluster, .lwr-gnode .lwr-avastack { margin-top: 6px; }
.lwr-gnode__more { background: #F7F8FA; color: rgba(0,0,0,0.82); }
.lwr-graph__legend { position: absolute; right: 24px; bottom: 28px; display: flex; flex-direction: column; gap: 16px; }
.lwr-legend__item { display: flex; align-items: flex-start; gap: 8px; }
.lwr-legend__dot { width: 6px; height: 6px; border-radius: 2px; margin-top: 8px; flex-shrink: 0; }
.lwr-legend__title { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 22px; }
.lwr-legend__desc { font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; }
.lwr-graph__ctrls { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; }
.lwr-gctrl { display: inline-flex; align-items: center; padding: 8px; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; background: #fff; color: rgba(0,0,0,0.64); cursor: pointer; }
.lwr-gctrl:hover { background: rgba(0,0,0,0.03); }
.lwr-gctrl--group { padding: 0; gap: 0; }
.lwr-gzoom { display: inline-flex; align-items: center; justify-content: center; padding: 8px; border: 0; background: transparent; color: rgba(0,0,0,0.64); cursor: pointer; border-radius: 12px; }
.lwr-gzoom:hover { color: rgba(0,0,0,0.9); }
.lwr-gctrl--group .lwr-gzoom + .lwr-gzoom { border-left: 1px solid rgba(0,0,0,0.08); border-radius: 0 12px 12px 0; }
.lwr-gctrl svg, .lwr-gzoom svg { width: 16px; height: 16px; display: block; }

/* 作战中心 · 顶部分类页签 */
.lwr-cattabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 24px; background: rgba(0,0,0,0.03); margin-bottom: 20px; }
.lwr-cat { height: 32px; padding: 0 18px; border: 0; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; line-height: 20px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.lwr-cat:hover { color: rgba(0,0,0,0.86); }
.lwr-cat.is-active { background: #fff; color: rgba(0,0,0,0.94); font-weight: 600; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }

/* 组织管理 · 组织架构图 */
.lorg { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 8px 0 24px; }
.lorg-hint { align-self: center; margin-bottom: 20px; padding: 6px 14px; border-radius: 999px; background: rgba(73,93,255,0.06); color: #495DFF; font-size: 12px; }
.lorg-root { position: relative; }
.lorg-cols { position: relative; display: flex; align-items: flex-start; justify-content: center; gap: 24px; flex-wrap: wrap; padding-top: 24px; }
/* 竖线：总指挥卡 → 横向母线 */
.lorg-cols::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 24px; background: rgba(0,0,0,0.12); }
.lorg-col { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 24px; }
/* 竖线：横向母线 → 部门卡 */
.lorg-col::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 24px; background: rgba(0,0,0,0.12); }
/* 横向母线：逐列绘制，向两侧各延伸半个列间距(12px)跨越 gap 保持连续；首/末列只画到自身中心，左右端正好闭合于首/末部门卡上方 */
.lorg-col::after { content: ""; position: absolute; top: 0; left: -12px; right: -12px; height: 1px; background: rgba(0,0,0,0.12); }
.lorg-col:first-child::after { left: 50%; }
.lorg-col:last-child::after { right: 50%; }
.lorg-col__subs { display: flex; flex-direction: column; gap: 10px; }

.lorg-node { display: inline-flex; align-items: center; gap: 8px; width: 200px; box-sizing: border-box; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; background: #fff; cursor: pointer; text-align: left; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.lorg-node:hover { border-color: rgba(73,93,255,0.45); box-shadow: 0 6px 16px rgba(15,23,42,0.08); transform: translateY(-1px); }
.lorg-node .lwr-ava { width: 30px; height: 30px; font-size: 13px; }
.lorg-node__info { display: flex; flex-direction: column; min-width: 0; }
.lorg-node__name { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.86); line-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lorg-node__role { font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lorg-node--root { width: 240px; background: linear-gradient(135deg, #eef2ff, #ffffff); border-color: rgba(73,93,255,0.35); }
.lorg-node--dept { border-color: rgba(0,0,0,0.12); background: #fbfcff; }
.lorg-node--sub { width: 200px; }

/* 成员对话抽屉（右侧停靠，复用对话组合区） */
.lorg-chat { position: absolute; top: 0; right: 0; bottom: 0; width: 400px; max-width: 92%; display: flex; flex-direction: column; background: #fff; border-left: 1px solid rgba(0,0,0,0.08); box-shadow: -12px 0 32px rgba(15,23,42,0.08); transform: translateX(100%); transition: transform 0.22s ease; z-index: 5; }
.lorg-chat.is-open { transform: translateX(0); }
.lorg-chat__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid #eef0f3; }
.lorg-chat__who { display: flex; align-items: center; gap: 10px; }
.lorg-chat__who .lwr-ava { width: 36px; height: 36px; font-size: 14px; }
.lorg-chat__name { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.9); }
.lorg-chat__role { font-size: 12px; color: rgba(0,0,0,0.46); margin-top: 2px; }
.lorg-chat__close { border: 0; background: #f2f3f5; color: rgba(0,0,0,0.55); width: 30px; height: 30px; border-radius: 8px; font-size: 20px; line-height: 1; cursor: pointer; flex-shrink: 0; }
.lorg-chat__close:hover { background: #e7e9ec; }
.lorg-chat__ico { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(73,93,255,0.1); color: #495DFF; flex-shrink: 0; }
.lorg-chat__ico svg { width: 20px; height: 20px; }
.lorg-chat__ico--group { background: rgba(16,163,127,0.12); color: #10a37f; }
.lorg-chat__seg { display: flex; gap: 4px; margin: 12px 18px 0; padding: 4px; border-radius: 12px; background: rgba(0,0,0,0.03); }
.lorg-chat__segbtn { flex: 1; height: 30px; border: 0; border-radius: 9px; background: transparent; color: rgba(0,0,0,0.6); font-family: inherit; font-size: 13px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.lorg-chat__segbtn.is-active { background: #fff; color: rgba(0,0,0,0.9); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.lorg-chat__body { flex: 1; min-height: 0; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.lorg-chat__bubble { align-self: flex-start; max-width: 80%; padding: 10px 14px; border-radius: 14px 14px 14px 4px; background: #f4f5f7; color: rgba(0,0,0,0.82); font-size: 13.5px; line-height: 20px; }
.lorg-chat__bubble--me { align-self: flex-end; background: #2b5cf6; color: #fff; border-radius: 14px 14px 4px 14px; }
.lorg-chat__composer { border-top: 1px solid #eef0f3; padding: 12px 14px 14px; }
.lorg-chat__input { width: 100%; box-sizing: border-box; border: 0; outline: 0; resize: none; font-family: inherit; font-size: 14px; line-height: 20px; color: rgba(0,0,0,0.85); background: transparent; max-height: 96px; }
.lorg-chat__input::placeholder { color: rgba(0,0,0,0.3); }
.lorg-chat__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px; }
.lorg-chat__hint { font-size: 12px; color: rgba(0,0,0,0.4); }
.lorg-chat__send { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 0; border-radius: 999px; background: #2b5cf6; color: #fff; cursor: pointer; transition: background 0.15s; }
.lorg-chat__send:hover { background: #1e4bd8; }
.lorg-chat__send svg { width: 18px; height: 18px; display: block; }

/* 组织管理 · 工具条（概览统计 / 搜索 / 视图切换 / 添加成员） */
.lorg { align-items: stretch; padding: 4px 0 24px; }
.lorg-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.lorg-stats { display: flex; align-items: stretch; gap: 8px; flex-wrap: wrap; }
.lorg-stat { min-width: 96px; padding: 10px 16px; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; background: #fff; }
.lorg-stat__v { font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.9); line-height: 26px; }
.lorg-stat__l { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; }
.lorg-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lorg-search { display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; }
.lorg-search:focus-within { border-color: rgba(73,93,255,0.5); box-shadow: 0 0 0 3px rgba(73,93,255,0.12); }
.lorg-search svg { width: 16px; height: 16px; color: rgba(0,0,0,0.4); flex-shrink: 0; }
.lorg-search__input { border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.85); width: 190px; }
.lorg-search__input::placeholder { color: rgba(0,0,0,0.35); }
.lorg-vtoggle { display: inline-flex; padding: 3px; border-radius: 12px; background: rgba(0,0,0,0.04); }
.lorg-vbtn { display: inline-flex; align-items: center; gap: 5px; height: 32px; padding: 0 12px; border: 0; border-radius: 9px; background: transparent; color: rgba(0,0,0,0.6); font-family: inherit; font-size: 13px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.lorg-vbtn svg { width: 15px; height: 15px; }
.lorg-vbtn:hover { color: rgba(0,0,0,0.85); }
.lorg-vbtn.is-active { background: #fff; color: rgba(0,0,0,0.92); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.lorg-add { display: inline-flex; align-items: center; gap: 5px; height: 38px; padding: 0 16px; border: 0; border-radius: 12px; background: #2b5cf6; color: #fff; font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s; }
.lorg-add svg { width: 16px; height: 16px; }
.lorg-add:hover { background: #1e4bd8; }

/* 组织管理 · 视图容器 */
.lorg-view--tree { display: flex; flex-direction: column; align-items: center; }

/* 组织管理 · 成员卡片增强 */
.lorg-node { display: flex; flex-direction: column; align-items: stretch; gap: 8px; width: 224px; padding: 12px 14px; }
.lorg-node.is-dim { opacity: 0.32; }
.lorg-node__row { display: flex; align-items: center; gap: 8px; }
.lorg-node__name { display: inline-flex; align-items: center; gap: 6px; }
.lorg-node__more { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border: 0; border-radius: 7px; background: transparent; color: rgba(0,0,0,0.4); cursor: pointer; opacity: 0; transition: background 0.15s, color 0.15s, opacity 0.15s; }
.lorg-node__more svg { width: 16px; height: 16px; display: block; }
.lorg-node:hover .lorg-node__more { opacity: 1; }
.lorg-node__more:hover { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.75); }
.lorg-node__foot { display: flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px dashed rgba(0,0,0,0.08); }
.lorg-node__stat { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; color: rgba(0,0,0,0.5); white-space: nowrap; }
.lorg-node__stat svg { width: 13px; height: 13px; flex-shrink: 0; }
.lorg-node--root { width: 256px; }
.lorg-node--sub, .lorg-node--dept { width: 224px; }
.lorg-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; flex-shrink: 0; }
.lorg-dot.is-on { background: #22c55e; box-shadow: 0 0 0 2px rgba(34,197,94,0.16); }
.lorg-dot.is-off { background: rgba(0,0,0,0.22); }
.lorg-load { margin-left: auto; display: inline-flex; align-items: center; height: 18px; padding: 0 7px; border-radius: 6px; font-size: 11px; line-height: 1; white-space: nowrap; }
.lorg-load--light { background: rgba(34,197,94,0.12); color: #15803d; }
.lorg-load--mid { background: rgba(234,179,8,0.14); color: #a16207; }
.lorg-load--high { background: rgba(239,68,68,0.12); color: #b91c1c; }

/* 组织管理 · 名单视图 */
.lorg-list { border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; overflow: hidden; background: #fff; }
.lorg-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.lorg-th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.5); background: #fafbfc; border-bottom: 1px solid rgba(0,0,0,0.06); white-space: nowrap; }
.lorg-tr { cursor: pointer; transition: background 0.12s; }
.lorg-tr:hover { background: rgba(73,93,255,0.035); }
.lorg-td { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.05); color: rgba(0,0,0,0.8); vertical-align: middle; }
.lorg-table tbody tr:last-child .lorg-td { border-bottom: 0; }
.lorg-td--who { display: flex; align-items: center; gap: 8px; }
.lorg-td--who .lwr-ava { width: 28px; height: 28px; font-size: 12px; }
.lorg-tw { font-weight: 600; color: rgba(0,0,0,0.86); }
.lorg-td__mut { margin-left: 4px; color: rgba(0,0,0,0.55); }
.lorg-td--ops { white-space: nowrap; }
.lorg-op { height: 28px; padding: 0 12px; margin-right: 6px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 12.5px; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
.lorg-op:hover { border-color: rgba(0,0,0,0.24); color: rgba(0,0,0,0.9); }
.lorg-op--primary { border-color: rgba(43,92,246,0.4); color: #2b5cf6; }
.lorg-op--primary:hover { background: #2b5cf6; color: #fff; border-color: #2b5cf6; }
.lorg-empty { text-align: center; color: rgba(0,0,0,0.4); padding: 40px 16px; }

/* 组织管理 · 名单「部门」表头筛选 */
.lorg-th--dept { position: relative; }
.lorg-th__label { vertical-align: middle; }
.lorg-th__filter { margin-left: 5px; display: inline-flex; align-items: center; justify-content: center; height: 22px; padding: 0 3px; border: 0; border-radius: 6px; background: transparent; color: rgba(0,0,0,0.4); cursor: pointer; vertical-align: middle; transition: background 0.15s, color 0.15s; }
.lorg-th__filter svg { width: 13px; height: 13px; display: block; }
.lorg-th__filter svg:last-child { width: 11px; height: 11px; margin-left: -1px; }
.lorg-th__filter:hover { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.7); }
.lorg-th__filter.is-active { background: rgba(43,92,246,0.12); color: #2b5cf6; }
.lorg-fmenu { position: absolute; top: calc(100% + 4px); left: 8px; z-index: 14; min-width: 172px; padding: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; box-shadow: 0 12px 32px rgba(15,23,42,0.14); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.14s, transform 0.14s, visibility 0.14s; }
.lorg-fmenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.lorg-fmenu__item { display: flex; align-items: center; width: 100%; height: 34px; padding: 0 10px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.78); font-family: inherit; font-size: 13px; font-weight: 400; text-align: left; white-space: nowrap; cursor: pointer; transition: background 0.12s; }
.lorg-fmenu__item:hover { background: rgba(0,0,0,0.05); }
.lorg-fmenu__item.is-active { color: #2b5cf6; font-weight: 600; background: rgba(43,92,246,0.08); }

/* 组织管理 · 卡片浮层菜单 */
.lorg-menu { position: absolute; z-index: 12; min-width: 160px; padding: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; box-shadow: 0 12px 32px rgba(15,23,42,0.14); opacity: 0; transform: translateY(-4px); transition: opacity 0.14s, transform 0.14s; }
.lorg-menu.is-open { opacity: 1; transform: translateY(0); }
.lorg-menu__item { display: flex; align-items: center; gap: 9px; width: 100%; height: 36px; padding: 0 10px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.78); font-family: inherit; font-size: 13.5px; text-align: left; cursor: pointer; transition: background 0.12s; }
.lorg-menu__item:hover { background: rgba(0,0,0,0.05); }
.lorg-menu__item svg { width: 16px; height: 16px; color: rgba(0,0,0,0.5); flex-shrink: 0; }

/* 组织管理 · 弹窗（指派任务 / 添加成员） */
.lorg-modal { position: absolute; inset: 0; z-index: 20; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
.lorg-modal.is-open { opacity: 1; }
.lorg-modal__mask { position: absolute; inset: 0; background: rgba(15,23,42,0.32); }
.lorg-modal__card { position: relative; width: 460px; max-width: 92%; max-height: 88%; overflow-y: auto; padding: 22px; background: #fff; border-radius: 18px; box-shadow: 0 24px 64px rgba(15,23,42,0.24); transform: translateY(8px); transition: transform 0.2s; }
.lorg-modal.is-open .lorg-modal__card { transform: translateY(0); }
.lorg-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lorg-modal__title { font-size: 17px; font-weight: 600; color: rgba(0,0,0,0.9); }
.lorg-modal__close { border: 0; background: #f2f3f5; color: rgba(0,0,0,0.55); width: 30px; height: 30px; border-radius: 8px; font-size: 20px; line-height: 1; cursor: pointer; }
.lorg-modal__close:hover { background: #e7e9ec; }
.lorg-modal__who { display: flex; align-items: center; gap: 10px; padding: 12px; margin-bottom: 16px; border-radius: 12px; background: rgba(0,0,0,0.03); }
.lorg-modal__who .lwr-ava { width: 36px; height: 36px; font-size: 14px; }
.lorg-modal__wname { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.88); }
.lorg-modal__wrole { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.5); }
.lorg-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lorg-field--row { flex-direction: row; gap: 12px; }
.lorg-field__col { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lorg-field__label { font-size: 12.5px; color: rgba(0,0,0,0.55); }
.lorg-field__input { width: 100%; box-sizing: border-box; height: 40px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.12); border-radius: 10px; background: #fff; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.85); outline: 0; transition: border-color 0.15s, box-shadow 0.15s; }
.lorg-field__input:focus { border-color: rgba(73,93,255,0.5); box-shadow: 0 0 0 3px rgba(73,93,255,0.12); }
.lorg-field__ta { height: auto; padding: 10px 12px; resize: vertical; line-height: 20px; }
.lorg-select { position: relative; }
.lorg-radio { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.lorg-radio--prio { width: 100%; }
.lorg-radio__btn { height: 40px; padding: 0 16px; border: 1px solid rgba(0,0,0,0.12); border-radius: 10px; background: #fff; color: rgba(0,0,0,0.66); font-family: inherit; font-size: 13.5px; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
.lorg-radio--prio .lorg-radio__btn { flex: 1; padding: 0; }
.lorg-radio__btn.is-active { border-color: #2b5cf6; color: #2b5cf6; background: rgba(43,92,246,0.06); font-weight: 600; }
.lorg-check { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13.5px; color: rgba(0,0,0,0.7); cursor: pointer; }
.lorg-check input { width: 16px; height: 16px; accent-color: #2b5cf6; }
.lorg-modal__foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.lorg-btn { height: 40px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent; font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.lorg-btn--ghost { background: #fff; border-color: rgba(0,0,0,0.14); color: rgba(0,0,0,0.7); }
.lorg-btn--ghost:hover { border-color: rgba(0,0,0,0.28); }
.lorg-btn--primary { background: #2b5cf6; color: #fff; }
.lorg-btn--primary:hover { background: #1e4bd8; }

@media (max-width: 820px) {
  .lorg-toolbar { flex-direction: column; align-items: stretch; }
  .lorg-tools { justify-content: space-between; }
  .lorg-search__input { width: 130px; }
}

/* ============================================================
   组织指挥台（AI 原生入口）
   ============================================================ */
.loc-wrap { min-height: 520px; }
.loc-home { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; min-height: calc(100vh - 240px); }
.loc-hero { width: 100%; max-width: 760px; display: flex; flex-direction: column; align-items: center; padding: 8px 0; text-align: center; }
.loc-hero__logo { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #eef2ff, #f6f7ff); color: #495DFF; margin-bottom: 16px; }
.loc-hero__logo svg { width: 30px; height: 30px; }
.loc-hero__title { margin: 0; font-family: "Songti SC", "STSong", "PingFang SC", serif; font-size: 34px; font-weight: 700; color: rgba(0,0,0,0.92); letter-spacing: 0.01em; }
.loc-hero__sub { margin-top: 10px; font-size: 15px; color: rgba(0,0,0,0.5); }
.loc-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0 16px; }
.loc-chips--inline { justify-content: flex-start; margin: 12px 0 0; }
.loc-chip { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border: 1px solid rgba(0,0,0,0.1); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.78); font-family: inherit; font-size: 13.5px; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
.loc-chip svg { width: 15px; height: 15px; color: #495DFF; }
.loc-chip:hover { border-color: rgba(73,93,255,0.5); color: #495DFF; background: rgba(73,93,255,0.04); }

/* 固定输入框整体高度：无论展示底部「组织结构 / 知识库」行（智能体）还是顶部已选标签行（成员 / 群组），
   输入框外框高度保持一致，避免切换会话对象时页面跳动；输入框本身高度不变，只是上方内容随之变化。 */
.loc-composer { width: 100%; box-sizing: border-box; min-height: 167px; padding: 14px 14px 10px; border: 1px solid rgba(0,0,0,0.1); border-radius: 24px; background: #fff; box-shadow: 0 6px 24px rgba(15,23,42,0.06); }
.loc-input { width: 100%; box-sizing: border-box; border: 0; outline: 0; resize: none; font-family: inherit; font-size: 15px; line-height: 24px; color: rgba(0,0,0,0.85); background: transparent; min-height: 48px; max-height: 160px; }
.loc-input::placeholder { color: rgba(0,0,0,0.3); }
.loc-composer__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; }
.loc-composer__left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.loc-composer__right { display: flex; align-items: center; gap: 4px; }
.loc-pill { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 10px; border: 1px solid rgba(0,0,0,0.1); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 13px; cursor: pointer; transition: border-color 0.15s; }
.loc-pill:hover { border-color: rgba(0,0,0,0.22); }
.loc-pill > svg { width: 15px; height: 15px; color: rgba(0,0,0,0.5); }
.loc-pill > svg:last-child { width: 13px; height: 13px; }
.loc-pill__v { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 指挥台 · 下拉选择（编排智能体 / 范围）*/
.loc-pop { position: absolute; z-index: 30; width: 280px; max-width: 92%; padding: 6px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; box-shadow: 0 16px 40px rgba(15,23,42,0.16); opacity: 0; transform: translateY(-4px); transition: opacity 0.14s, transform 0.14s; }
.loc-pop.is-open { opacity: 1; transform: translateY(0); }
.loc-pop__hd { padding: 6px 10px 8px; font-size: 12px; color: rgba(0,0,0,0.4); }
.loc-pop__item { display: block; width: 100%; text-align: left; padding: 9px 10px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; transition: background 0.12s; }
.loc-pop__item:hover { background: rgba(0,0,0,0.04); }
.loc-pop__item.is-active { background: rgba(73,93,255,0.08); }
.loc-pop__name { font-size: 13.5px; font-weight: 600; color: rgba(0,0,0,0.85); }
.loc-pop__item.is-active .loc-pop__name { color: #495DFF; }
.loc-pop__desc { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.5); line-height: 17px; }
/* @ 提及浮层（成员 / 团队 / 智能体） */
.loc-pop--mention { width: 322px; padding: 0; overflow: hidden; }
.loc-mtabs { display: flex; gap: 4px; padding: 8px 8px 6px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.loc-mtab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; height: 30px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.55); font-family: inherit; font-size: 13px; cursor: pointer; transition: background 0.12s, color 0.12s; }
.loc-mtab svg { width: 15px; height: 15px; }
.loc-mtab:hover { background: rgba(0,0,0,0.04); }
.loc-mtab.is-active { background: rgba(73,93,255,0.1); color: #495DFF; font-weight: 600; }
.loc-mtab__n { font-style: normal; font-size: 11px; min-width: 15px; height: 15px; padding: 0 3px; border-radius: 8px; background: rgba(73,93,255,0.16); color: #495DFF; display: inline-flex; align-items: center; justify-content: center; }
.loc-mlist { max-height: 268px; overflow-y: auto; padding: 6px; }
.loc-mitem { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 8px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; transition: background 0.12s; }
.loc-mitem:hover, .loc-mitem.is-active { background: rgba(73,93,255,0.08); }
.loc-mitem__ico { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(73,93,255,0.1); color: #495DFF; }
.loc-mitem__ico svg { width: 17px; height: 17px; }
.loc-mitem__main { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.loc-mitem__name { font-size: 13.5px; font-weight: 600; color: rgba(0,0,0,0.85); }
.loc-mitem__sub { margin-top: 1px; font-size: 12px; color: rgba(0,0,0,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-mitem__tag { flex: none; font-size: 11px; color: rgba(0,0,0,0.5); background: rgba(0,0,0,0.05); border-radius: 6px; padding: 3px 7px; }
.loc-mempty { padding: 22px 12px; text-align: center; font-size: 12.5px; color: rgba(0,0,0,0.42); }
.loc-cbtn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: rgba(0,0,0,0.6); cursor: pointer; transition: background 0.15s, color 0.15s; }
.loc-cbtn:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.85); }
.loc-cbtn svg { width: 19px; height: 19px; }
.loc-cbtn--send { background: #2b5cf6; color: #fff; }
.loc-cbtn--send:hover { background: #1e4bd8; color: #fff; }
/* 成员 / 群组会话模式的左侧标识 */
.loc-composer__mode { display: inline-flex; align-items: center; gap: 5px; height: 32px; padding: 0 12px; border-radius: 999px; background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.6); font-size: 13px; }
.loc-composer__mode svg { width: 15px; height: 15px; color: rgba(0,0,0,0.45); }
/* 「更多」菜单 */
.loc-pop--more { width: 244px; }
.loc-moreitem { display: flex; align-items: center; gap: 10px; }
.loc-moreitem__ic { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: rgba(73,93,255,0.1); color: #495DFF; }
.loc-moreitem__ic svg { width: 17px; height: 17px; }
.loc-moreitem__body { min-width: 0; display: flex; flex-direction: column; }

/* composer 底栏（知识库 / 权限 / 文件夹）*/
.loc-composer__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.06); }
.loc-composer__footL, .loc-composer__footR { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.loc-foot-btn { display: inline-flex; align-items: center; gap: 5px; height: 30px; padding: 0 10px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.6); font-family: inherit; font-size: 13px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.loc-foot-btn:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.85); }
.loc-foot-btn svg { width: 15px; height: 15px; color: rgba(0,0,0,0.45); }
.loc-foot-btn svg:last-child { width: 13px; height: 13px; }

/* composer 上方：成员 / 群组 / 智能体 分类 + 置顶项 */
/* 分类 tab 固定在顶部；下方「置顶项 ↔ 推荐动作」这一行用等高（见 .loc-pins / .loc-recs）
   保证切换会话对象时不跳动，图标 / 标题 / 分类三部分位置恒定。 */
.loc-picker { width: 100%; margin: 20px 0 12px; }
/* 分类标签：直接复用首页「通用办公 / 业务智能体」统一组件（.lg-home-cat__tab）*/
.loc-tabs { display: inline-flex; align-items: center; gap: 22px; margin: 6px 0 12px; }
.loc-pins { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; box-sizing: border-box; height: 54px; overflow-x: auto; overflow-y: hidden; padding: 10px 6px 4px; scrollbar-width: none; -ms-overflow-style: none; }
.loc-pins::-webkit-scrollbar { display: none; }
/* 成员 / 群组 chip：参考「新建任务」快捷胶囊样式（单行药丸 + 描边） */
.loc-pin { position: relative; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: 32px; background: #fff; cursor: pointer; white-space: nowrap; box-shadow: 0 1px 2px rgba(0,0,0,0.02); transition: border-color 0.15s, background 0.15s; }
.loc-pin:hover { background: #fafafa; border-color: rgba(0,0,0,0.12); }
.loc-pin.is-active { background: #fff; border-color: rgba(0,0,0,0.22); }
.loc-pin.is-active .loc-pin__name { color: rgba(0,0,0,0.9); font-weight: 600; }
.loc-pin__check { width: 14px; height: 14px; margin-left: 2px; color: #6b74c4; flex-shrink: 0; }
.loc-pin__lead { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(0,0,0,0.55); }
.loc-pin__lead svg { width: 16px; height: 16px; }
.loc-pin__name { font-size: 14px; font-weight: 500; line-height: 22px; color: rgba(0,0,0,0.82); }
/* 未读数字徽标：传统红点，但用低饱和的柔和红，避免刺眼 */
.loc-pin__badge { position: absolute; top: -2px; right: -2px; width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 2px solid #fff; background: #495DFF; box-shadow: 0 1px 2px rgba(73,93,255,0.35); }

/* 选中人/群后的推荐动作 */
.loc-picker--rec { }
.loc-rechead { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.loc-recback { display: inline-flex; align-items: center; gap: 3px; height: 28px; padding: 0 10px 0 6px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 13px; cursor: pointer; flex-shrink: 0; }
.loc-recback:hover { border-color: rgba(0,0,0,0.24); }
.loc-recback svg { width: 15px; height: 15px; }
.loc-recwho { font-size: 13px; color: rgba(0,0,0,0.5); }
.loc-recwho b { color: rgba(0,0,0,0.85); font-weight: 600; }
.loc-recs { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; box-sizing: border-box; height: 54px; overflow-x: auto; overflow-y: hidden; padding: 2px 0; scrollbar-width: none; -ms-overflow-style: none; }
.loc-recs::-webkit-scrollbar { display: none; }
.loc-rec { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border: 1px solid rgba(0,0,0,0.1); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.78); font-family: inherit; font-size: 13.5px; white-space: nowrap; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
/* 选中成员/群组后进入输入框的可关闭标签（参考 WorkBuddy） */
.loc-selrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.loc-selchip { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 6px 0 10px; border-radius: 9px; background: #1e2330; color: #fff; font-size: 13px; font-weight: 500; max-width: 100%; }
.loc-selchip__ic { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-selchip__ic svg { width: 15px; height: 15px; color: rgba(255,255,255,0.85); }
.loc-selchip__t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-selchip__x { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; padding: 0; border: 0; border-radius: 6px; background: transparent; color: rgba(255,255,255,0.65); cursor: pointer; transition: background 0.15s, color 0.15s; }
.loc-selchip__x:hover { background: rgba(255,255,255,0.16); color: #fff; }

.loc-selchip__x svg { width: 13px; height: 13px; }
.loc-rec svg { width: 15px; height: 15px; color: #495DFF; }
.loc-rec:hover { border-color: rgba(73,93,255,0.5); color: #495DFF; background: rgba(73,93,255,0.04); }

.loc-foot { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 14px; }
.loc-foot__item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(0,0,0,0.5); }
.loc-foot__item svg { width: 15px; height: 15px; color: rgba(0,0,0,0.4); }
.loc-struct-entry { display: inline-flex; align-items: center; gap: 4px; height: 30px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.12); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 13px; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.loc-struct-entry:hover { border-color: rgba(73,93,255,0.45); color: #495DFF; }
.loc-struct-entry svg { width: 14px; height: 14px; }

/* 组织快照 */
.loc-snap { width: 100%; max-width: 980px; margin: 36px auto 0; }
.loc-snap__title { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(0,0,0,0.55); margin-bottom: 12px; }
.loc-snap__title svg { width: 15px; height: 15px; color: #495DFF; }
.loc-snap__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.loc-scard { padding: 18px 16px; border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; }
.loc-scard:hover { border-color: rgba(0,0,0,0.12); box-shadow: 0 6px 18px rgba(15,23,42,0.05); }
.loc-scard__t { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.5); }
.loc-scard__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.22); flex-shrink: 0; }
.loc-scard--warn .loc-scard__dot { background: #f59e0b; }
.loc-scard--info .loc-scard__dot { background: #2b5cf6; }
.loc-scard--ok .loc-scard__dot { background: #22c55e; }
.loc-scard__v { margin: 8px 0 4px; font-size: 24px; font-weight: 600; color: rgba(0,0,0,0.9); line-height: 1.15; }
.loc-scard__d { font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; }
.loc-disclaimer { margin-top: 28px; font-size: 12px; color: rgba(0,0,0,0.28); text-align: center; }
@media (max-width: 900px) { .loc-snap__cards { grid-template-columns: repeat(2, 1fr); } }

/* 指挥台 · 对话态 */
.loc-chat { display: flex; flex-direction: column; min-height: 540px; }
.loc-chat__bar { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 18px; }
.loc-back { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 12px 0 8px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 13px; cursor: pointer; }
.loc-back:hover { border-color: rgba(0,0,0,0.24); }
.loc-back svg { width: 16px; height: 16px; }
.loc-chat__title { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.82); }
/* 会话头部：与 XX 的对话（取代原「返回」按钮） */
.loc-chat__peer { display: inline-flex; align-items: center; gap: 9px; min-width: 0; }
.loc-chat__peer .lwr-ava { width: 30px; height: 30px; font-size: 13px; }
.loc-chat__peerico { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, #eef2ff, #f6f7ff); color: #495DFF; flex-shrink: 0; }
.loc-chat__peerico svg { width: 18px; height: 18px; }
/* 会话空态：引导文案 */
.loc-chatempty { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 6px 2px 2px; }
.loc-chatempty__hint { font-size: 13px; color: rgba(0,0,0,0.45); line-height: 20px; }
/* 会话推荐标签栏：常驻在输入框上方 */
.loc-chat__recbar { display: flex; align-items: center; flex-wrap: nowrap; gap: 10px; max-width: 900px; width: 100%; margin: 14px auto 0; padding: 2px 2px 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; }
.loc-chat__recbar::-webkit-scrollbar { display: none; }
.loc-chat__recbar .loc-rec { flex: 0 0 auto; }
/* 首页 ↔ 会话 转场动画 */
@keyframes loc-chat-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loc-chat-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(20px); } }
@keyframes loc-home-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.loc-chat--in { animation: loc-chat-in 0.34s cubic-bezier(0.22,0.61,0.36,1) both; }
.loc-chat--out { animation: loc-chat-out 0.22s ease both; }
.loc-home--in { animation: loc-home-in 0.34s cubic-bezier(0.22,0.61,0.36,1) both; }
.loc-chat__stream { flex: 1; display: flex; flex-direction: column; gap: 20px; max-width: 900px; width: 100%; margin: 0 auto; }
.loc-msg { display: flex; }
.loc-msg--me { justify-content: flex-end; }
.loc-bubble--me { max-width: 78%; padding: 10px 16px; border-radius: 16px 16px 4px 16px; background: #2b5cf6; color: #fff; font-size: 14px; line-height: 22px; }
.loc-ai { display: flex; gap: 12px; max-width: 90%; }
.loc-ai__ava { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, #eef2ff, #f6f7ff); color: #495DFF; }
.loc-ai__ava svg { width: 20px; height: 20px; }
.loc-ai__body { flex: 1; min-width: 0; }
/* 成员本人 IM 回话气泡 */
.loc-msg--peer { justify-content: flex-start; }
.loc-peer { display: flex; gap: 10px; max-width: 78%; }
.loc-peer .lwr-ava { width: 34px; height: 34px; font-size: 14px; flex-shrink: 0; }
.loc-peer__col { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.loc-peer__name { font-size: 12px; color: rgba(0,0,0,0.46); padding-left: 2px; }
.loc-peer__bubble { align-self: flex-start; padding: 10px 14px; border-radius: 4px 16px 16px 16px; background: #f2f4f7; color: rgba(0,0,0,0.86); font-size: 14px; line-height: 22px; word-break: break-word; }
.loc-peer__typing { display: inline-flex; align-items: center; gap: 5px; padding: 13px 14px; }
.loc-peer__typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.32); animation: loc-typing 1.2s infinite ease-in-out; }
.loc-peer__typing span:nth-child(2) { animation-delay: 0.18s; }
.loc-peer__typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes loc-typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.35; } 30% { transform: translateY(-4px); opacity: 0.9; } }
.loc-chat__composer { max-width: 900px; width: 100%; margin: 18px auto 0; }
/* 指挥台 · 对话态（二级页）：整页填满，输入框吸底常驻 */
.lof-body.is-chat { display: flex; flex-direction: column; overflow: hidden; }
.lof-body.is-chat .lpr { flex: 1; min-height: 0; display: flex; flex-direction: column; padding-top: 24px; padding-bottom: 18px; }
.lof-body.is-chat .lpr-content--war,
.lof-body.is-chat .loc-wrap,
.lof-body.is-chat .loc-chat { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.lof-body.is-chat .loc-chat__bar { flex-shrink: 0; margin-bottom: 14px; }
.lof-body.is-chat .loc-chat__stream { flex: 1; min-height: 0; overflow-y: auto; padding: 4px 4px 8px; }
.lof-body.is-chat .loc-chat__composer { flex-shrink: 0; margin: 0 auto; padding-top: 14px; }
.lof-body.is-chat .loc-chat__recbar { flex-shrink: 0; }

/* 指挥台 · AI 回答块 */
.loc-answer { border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; background: #fff; padding: 16px 18px; }
.loc-answer p { margin: 0 0 12px; font-size: 14px; line-height: 22px; color: rgba(0,0,0,0.82); }
.loc-answer p:last-child { margin-bottom: 0; }
.loc-answer b { color: rgba(0,0,0,0.94); }
.loc-tip { font-size: 13px; color: rgba(0,0,0,0.5); background: rgba(245,158,11,0.08); border-radius: 10px; padding: 10px 12px; }
.loc-answer__actions { display: flex; gap: 10px; margin-top: 14px; }
.loc-primary { height: 36px; padding: 0 18px; border: 0; border-radius: 10px; background: #2b5cf6; color: #fff; font-family: inherit; font-size: 14px; cursor: pointer; }
.loc-primary:hover { background: #1e4bd8; }
.loc-ghost { height: 36px; padding: 0 16px; border: 1px solid rgba(0,0,0,0.14); border-radius: 10px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 14px; cursor: pointer; }
.loc-ghost:hover { border-color: rgba(0,0,0,0.26); }

.loc-loadlist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.loc-load { display: flex; align-items: center; gap: 12px; }
.loc-load__n { flex: 0 0 200px; font-size: 13px; color: rgba(0,0,0,0.72); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-load__track { flex: 1; height: 8px; border-radius: 999px; background: rgba(0,0,0,0.05); overflow: hidden; }
.loc-load__track i { display: block; height: 100%; border-radius: 999px; }
.loc-load__v { flex: 0 0 auto; font-size: 12px; color: rgba(0,0,0,0.5); }

.loc-splitlist { display: flex; flex-direction: column; gap: 10px; }
.loc-split { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; }
.loc-split__t { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.85); }
.loc-split__r { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.5); }
.loc-split__who { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.loc-split__who .lwr-ava { width: 30px; height: 30px; font-size: 13px; }
.loc-split__name { font-size: 13px; font-weight: 600; color: rgba(0,0,0,0.82); }
.loc-split__mode { font-size: 11px; color: #495DFF; }

.loc-pcards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.loc-pcard { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; background: #fff; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.loc-pcard:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 4px 12px rgba(15,23,42,0.06); }
.loc-pcard .lwr-ava { width: 34px; height: 34px; font-size: 14px; flex-shrink: 0; }
.loc-pcard__info { flex: 1; min-width: 0; }
.loc-pcard__name { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.86); }
.loc-pcard__meta { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.5); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-pcard__ops { display: flex; gap: 6px; flex-shrink: 0; }
.loc-op { height: 28px; padding: 0 10px; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.7); font-family: inherit; font-size: 12.5px; cursor: pointer; }
.loc-op:hover { border-color: rgba(0,0,0,0.24); }
.loc-op--primary { border-color: rgba(43,92,246,0.4); color: #2b5cf6; }
.loc-op--primary:hover { background: #2b5cf6; color: #fff; }

.loc-doc { border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 16px 18px; background: #fbfcff; }
.loc-doc__h { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.86); margin-bottom: 12px; }
.loc-doc__h svg { width: 18px; height: 18px; color: #495DFF; }
.loc-doc__list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.loc-doc__list li { font-size: 13.5px; line-height: 21px; color: rgba(0,0,0,0.72); }

/* 会话摘要 / 近期进展 · 分区结构 */
.loc-sum { display: flex; flex-direction: column; gap: 14px; }
.loc-sum__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2px; }
.loc-sum__pill { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; border-radius: 999px; background: rgba(43,92,246,0.07); color: #2b5cf6; font-size: 12px; }
.loc-sum__pill svg { width: 13px; height: 13px; }
.loc-sum__sec { display: flex; flex-direction: column; gap: 8px; }
.loc-sum__t { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(0,0,0,0.82); }
.loc-sum__t::before { content: ""; width: 3px; height: 13px; border-radius: 2px; background: #2b5cf6; }
.loc-sum__ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.loc-sum__ul li { font-size: 13.5px; line-height: 21px; color: rgba(0,0,0,0.72); }
.loc-sum__ul li b { color: rgba(0,0,0,0.9); font-weight: 600; }
.loc-todo { display: flex; flex-direction: column; gap: 8px; }
.loc-todo__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 12px; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; background: #fff; }
.loc-todo__l { display: flex; align-items: center; gap: 9px; min-width: 0; }
.loc-todo__ck { flex-shrink: 0; width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid rgba(0,0,0,0.2); }
.loc-todo__ck.is-done { border-color: #22c55e; background: #22c55e; }
.loc-todo__tx { font-size: 13.5px; color: rgba(0,0,0,0.8); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-todo__ck.is-done + .loc-todo__tx { color: rgba(0,0,0,0.4); text-decoration: line-through; }
.loc-todo__who { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.55); }
.loc-todo__who .lwr-ava { width: 22px; height: 22px; font-size: 11px; }
.loc-todo__st { flex-shrink: 0; font-size: 11px; padding: 2px 8px; border-radius: 999px; }
.loc-todo__st--doing { color: #d97706; background: rgba(245,158,11,0.12); }
.loc-todo__st--todo { color: rgba(0,0,0,0.5); background: rgba(0,0,0,0.05); }
.loc-todo__st--done { color: #16a34a; background: rgba(34,197,94,0.12); }
.loc-prog { display: flex; flex-direction: column; gap: 10px; }
.loc-prog__row { display: flex; align-items: center; gap: 12px; }
.loc-prog__n { flex: 0 0 128px; font-size: 13px; color: rgba(0,0,0,0.74); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.loc-prog__track { flex: 1; height: 8px; border-radius: 999px; background: rgba(0,0,0,0.05); overflow: hidden; }
.loc-prog__track i { display: block; height: 100%; border-radius: 999px; background: #2b5cf6; }
.loc-prog__v { flex: 0 0 auto; font-size: 12px; color: rgba(0,0,0,0.5); min-width: 34px; text-align: right; }

/* 查看组织结构 · 抽屉 */
.lorg-struct { position: absolute; top: 0; right: 0; bottom: 0; width: 820px; max-width: 94%; display: flex; flex-direction: column; background: #fff; border-left: 1px solid rgba(0,0,0,0.08); box-shadow: -16px 0 40px rgba(15,23,42,0.1); transform: translateX(100%); transition: transform 0.24s ease; z-index: 8; }
.lorg-struct.is-open { transform: translateX(0); }
.lorg-struct__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid #eef0f3; flex-shrink: 0; }
.lorg-struct__title { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.9); }
.lorg-struct__close { border: 0; background: #f2f3f5; color: rgba(0,0,0,0.55); width: 30px; height: 30px; border-radius: 8px; font-size: 20px; line-height: 1; cursor: pointer; }
.lorg-struct__close:hover { background: #e7e9ec; }
.lorg-struct__body { flex: 1; overflow-y: auto; padding: 20px 24px 32px; }

/* ============================================================
   CFO 办公室 · AI 财务部（组织视图）—— 对齐 Figma 12021:20158
   ============================================================ */
.lof-panel.lof-panel--org { background: #fbfbfb; }
.lof-panel.lof-panel--org .lof-header { display: none; }
.lof-panel.lof-panel--org .lof-body { padding: 0; overflow-y: auto; }

.cfd { padding: 40px 40px 56px; }
.cfd-title { font-size: 20px; font-weight: 600; color: #000; line-height: 30px; margin-bottom: 20px; }

/* 分段控件 */
.cfd-seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 24px; background: rgba(0,0,0,0.03); margin-bottom: 24px; }
.cfd-seg__btn { height: 32px; padding: 0 16px; border: 0; border-radius: 8px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; line-height: 20px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.cfd-seg__btn:hover { color: rgba(0,0,0,0.86); }
.cfd-seg__btn.is-active { background: #fff; color: rgba(0,0,0,0.82); font-weight: 600; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }

/* 关系图容器 */
.cfd-org { border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 32px 32px 40px; background: transparent; }

/* 节点卡 */
.cfd-org-top { display: flex; flex-direction: column; align-items: center; }
.cfd-node { border-radius: 24px; box-sizing: border-box; text-align: center; }
.cfd-node--head { width: 480px; max-width: 100%; padding: 16px; background: #fff; border: 1px solid rgba(0,0,0,0.06); }
.cfd-node__title { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.cfd-node__sub { margin-top: 2px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 22px; }

/* 连接线 */
.cfd-connect { position: relative; height: 44px; }
.cfd-connect::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 22px; background: rgba(0,0,0,0.12); }
.cfd-connect::after { content: ""; position: absolute; top: 22px; left: 16.666%; right: 16.666%; height: 1px; background: rgba(0,0,0,0.12); }
.cfd-drop { position: absolute; top: 22px; width: 1px; height: 22px; background: rgba(0,0,0,0.12); }

/* 三个治理层 */
.cfd-layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cfd-node--layer { padding: 16px; background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.06); }

/* 智能体卡片区（3 列） */
.cfd-agents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; align-items: start; }
.cfd-agents-col { display: flex; flex-direction: column; gap: 20px; }

.cfd-card { display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; background: #fff; overflow: hidden; cursor: pointer; transition: box-shadow 0.15s, border-color 0.15s, transform 0.15s; }
.cfd-card:hover { border-color: rgba(41,112,255,0.32); box-shadow: 0 6px 18px rgba(15,23,42,0.06); transform: translateY(-1px); }
.cfd-card__top { display: flex; align-items: center; gap: 12px; padding: 16px; }
.cfd-card__icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 600; }
.cfd-card__info { min-width: 0; }
.cfd-card__name { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.cfd-card__meta { margin-top: 2px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 20px; }
.cfd-card__stats { display: flex; border-top: 1px solid rgba(0,0,0,0.05); }
.cfd-stat { flex: 1; padding: 12px 0; text-align: center; }
.cfd-stat__v { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 24px; }
.cfd-stat__l { margin-top: 2px; font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; }

/* 占位卡 */
.cfd-card--soon { align-items: center; justify-content: center; gap: 12px; padding: 36px 16px; min-height: 154px; border-style: dashed; border-color: rgba(0,0,0,0.12); cursor: default; }
.cfd-card--soon:hover { transform: none; box-shadow: none; border-color: rgba(0,0,0,0.12); }
.cfd-soon__ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.03); }
.cfd-soon__ic svg { width: 26px; height: 26px; display: block; }
.cfd-soon__t { font-size: 14px; color: rgba(0,0,0,0.28); }

@media (max-width: 1200px) { .cfd-agents { grid-template-columns: repeat(2, 1fr); } .cfd-layers { gap: 16px; } }
@media (max-width: 820px) {
  .cfd { padding: 28px 24px 40px; }
  .cfd-agents { grid-template-columns: 1fr; }
  .cfd-layers { grid-template-columns: 1fr; }
  .cfd-connect { display: none; }
  .cfd-node--head { width: 100%; }
}

/* ============================================================
   CFO · AI 财务部 · 功能 tab（驾驶舱/任务中心/产物中心/技能中心/组织知识）
   ============================================================ */
.cfd-view { margin-top: 4px; }
/* ============================================================
   CFO · AI 财务部 · 作战中心（组织树 · 灵基 Data cloud）
   ============================================================ */
.cfwar { display: flex; flex-direction: column; gap: 16px; }
/* 指挥链 */
.cfwar-chain { display: flex; align-items: center; gap: 12px; padding: 0 4px; flex-wrap: wrap; }
.cfwar-chain__brand { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #000000d1; line-height: 22px; }
.cfwar-chain__brand svg { width: 18px; height: 18px; display: block; color: #000000d1; }
.cfwar-chain__div { width: 1px; height: 14px; background: #0000001f; }
.cfwar-chain__person { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #000000d1; line-height: 22px; }
.cfwar-chain__av { width: 18px; height: 18px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: #2970ff; background: #f2f7ff; flex-shrink: 0; }
.cfwar-chain__role { display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 8px; border-radius: 999px; background: #f3f5ff; color: #495dff; font-size: 12px; line-height: 18px; }
.cfwar-chain__role svg { width: 12px; height: 12px; display: block; }
/* 主面板 */
.cfwar-panel { background: #fff; border: 1px solid #00000014; border-radius: 16px; padding: 20px; }
.cfwar-panel__hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cfwar-panel__title { font-size: 18px; font-weight: 600; color: #000000f0; line-height: 26px; }
.cfwar-panel__acts { display: inline-flex; gap: 8px; flex-shrink: 0; }
.cfwar-iconbtn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid #00000014; background: #fff; color: #00000075; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: background .2s cubic-bezier(.645,.045,.355,1), color .2s cubic-bezier(.645,.045,.355,1), border-color .2s cubic-bezier(.645,.045,.355,1); }
.cfwar-iconbtn svg { width: 16px; height: 16px; display: block; }
.cfwar-iconbtn:hover { background: #00000008; color: #000000a3; }
.cfwar-iconbtn.is-active { background: #0000000f; border-color: #00000014; color: #000000a3; }
/* 描述行 */
.cfwar-metas { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.cfwar-meta { display: flex; align-items: flex-start; gap: 6px; font-size: 13px; line-height: 20px; color: #000000a3; }
.cfwar-meta__ic { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: #00000075; display: inline-flex; }
.cfwar-meta__ic svg { width: 14px; height: 14px; display: block; }
.cfwar-meta__k { color: #000000a3; flex-shrink: 0; }
.cfwar-meta__v { color: #000000d1; }
.cfwar-owners { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cfwar-owner { display: inline-flex; align-items: center; gap: 4px; color: #000000d1; }
.cfwar-tag { display: inline-flex; align-items: center; height: 16px; padding: 0 4px; border-radius: 4px; font-size: 10px; line-height: 16px; background: #0000000f; color: #00000075; }
.cfwar-tag--lian { background: #f3f5ff; color: #495dff; }
.cfwar-tag--deputy { background: #0000000f; color: #00000075; }
/* 卡片网格 */
.cfwar-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.cfwar-grid + .cfwar-grid { margin-top: 16px; }
.cfwar-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #00000014; border-radius: 12px; padding: 16px; cursor: pointer; transition: border-color .2s cubic-bezier(.645,.045,.355,1), box-shadow .2s cubic-bezier(.645,.045,.355,1); }
.cfwar-card:hover { border-color: #b7c1ff; box-shadow: 0 1px 2px #0000000a, 0 1px 4px #0000000a; }
.cfwar-card__hd { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cfwar-card__name { font-size: 15px; font-weight: 600; color: #000000f0; line-height: 22px; }
.cfwar-card__count { flex-shrink: 0; height: 18px; padding: 0 6px; border-radius: 4px; background: #0000000f; color: #00000075; font-size: 10px; line-height: 18px; }
.cfwar-card__lead { margin-top: 8px; display: flex; align-items: center; gap: 4px; font-size: 13px; line-height: 20px; color: #000000d1; }
.cfwar-card__lead span.cfwar-card__leadk { color: #000000a3; }
.cfwar-card__list { margin: 12px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cfwar-card__li { position: relative; padding-left: 10px; font-size: 12px; line-height: 18px; color: #00000075; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cfwar-card__li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 3px; height: 3px; border-radius: 999px; background: #00000047; }
.cfwar-card__li b { font-weight: 400; color: #000000a3; }
.cfwar-avs { margin-top: 12px; display: flex; align-items: center; gap: 4px; }
.cfwar-av { width: 18px; height: 18px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; flex-shrink: 0; }
.cfwar-avs__more { margin-left: 2px; font-size: 10px; color: #00000075; }
@media (max-width: 900px) { .cfwar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cfwar-panel { padding: 16px; } }
@media (max-width: 560px) { .cfwar-grid { grid-template-columns: 1fr; } }

/* ---- 通用统计卡 ---- */
.cfck-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.cfck-stat { flex: 1 1 0; min-width: 180px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 20px 16px 20px 24px; }
.cfck-stat__hd { display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.cfck-stat__ic { width: 16px; height: 16px; color: rgba(0,0,0,0.64); display: inline-flex; }
.cfck-stat__ic svg { width: 16px; height: 16px; display: block; }
.cfck-stat__l { font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.64); }
.cfck-stat__v { font-size: 28px; font-weight: 500; line-height: 42px; color: rgba(0,0,0,0.94); }
.cfck-stat__v .cfck-unit { font-size: 14px; color: rgba(0,0,0,0.64); margin-left: 2px; }
.cfck-stat__s { font-size: 12px; color: rgba(0,0,0,0.46); }
.cfck-stat__s b { font-weight: 500; }

/* ---- 通用卡片 / 双列栅格 ---- */
.cfck-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.cfck-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 16px 18px; box-sizing: border-box; overflow: hidden; }
.cfck-card__hd { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cfck-card__t { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); }
.cfck-card__sub { font-size: 12px; color: rgba(0,0,0,0.46); margin-top: 2px; }
.cfck-more { font-size: 12px; color: #2563eb; cursor: pointer; }

/* ---- 驾驶舱：实时动态 ---- */
.cfck-feed { margin-top: 12px; display: flex; flex-direction: column; }
.cfck-feed__row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f2f3f5; cursor: pointer; font-size: 14px; }
.cfck-feed__row:last-child { border-bottom: none; }
.cfck-feed__t { color: rgba(0,0,0,0.46); font-size: 12px; width: 40px; flex-shrink: 0; }
.cfck-feed__tag { flex-shrink: 0; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 500; }
.cfck-feed__act { color: rgba(0,0,0,0.64); flex-shrink: 0; }
.cfck-feed__tgt { color: rgba(0,0,0,0.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- 驾驶舱：趋势/柱状图 ---- */
.cfck-chart { margin-top: 14px; }
.cfck-svg { width: 100%; height: 150px; display: block; }
.cfck-xaxis, .cfsk-xaxis { display: flex; justify-content: space-between; margin-top: 6px; font-size: 12px; color: rgba(0,0,0,0.46); }
.cfck-legend { display: flex; gap: 12px; }
.cfck-lg { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(0,0,0,0.64); }
.cfck-lg__bar { width: 10px; height: 10px; border-radius: 2px; background: linear-gradient(180deg,#599cff,rgba(89,156,255,.64)); }
.cfck-lg__line { width: 12px; height: 3px; border-radius: 2px; background: #08C787; }
.cfck-barchart { display: flex; gap: 8px; height: 210px; margin-top: 14px; }
.cfck-yaxis { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; padding-bottom: 22px; font-size: 12px; color: rgba(0,0,0,0.46); }
.cfck-bars { position: relative; flex: 1; display: flex; align-items: flex-end; gap: 8px; padding-bottom: 22px; }
.cfck-bar__col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; position: relative; }
.cfck-bar__fill { width: 60%; max-width: 20px; background: linear-gradient(180deg,#599cff,rgba(89,156,255,.64)); border-radius: 4px 4px 0 0; }
.cfck-bar__x { position: absolute; bottom: -22px; font-size: 12px; color: rgba(0,0,0,0.46); }
.cfck-svg--overlay { position: absolute; left: 0; top: 0; right: 0; bottom: 22px; width: 100%; height: calc(100% - 22px); pointer-events: none; }

/* ---- 驾驶舱：排名 ---- */
.cfck-rank { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.cfck-rank__row { display: flex; align-items: center; gap: 8px; }
.cfck-rank__no { width: 20px; text-align: center; font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.28); flex-shrink: 0; }
.cfck-rank__no.is-top { color: #2970FF; }
.cfck-rank__name { width: 120px; font-size: 14px; color: rgba(0,0,0,0.64); flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cfck-rank__bar { flex: 1; height: 12px; background: rgba(0,0,0,0.03); border-radius: 99px; overflow: hidden; }
.cfck-rank__bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(270deg,#599cff,rgba(89,156,255,.64)); }
.cfck-rank__v { width: 44px; text-align: right; font-size: 14px; color: rgba(0,0,0,0.46); flex-shrink: 0; }

/* ---- 驾驶舱：AI 对话场景 + 右侧对话侧栏 ---- */
.slchat-scenes { margin-top: 16px; }
.slchat-scene-grid { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.slchat-scene { display: flex; align-items: center; gap: 12px; text-align: left; padding: 14px 16px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; cursor: pointer; font-family: inherit; transition: border-color .15s, box-shadow .15s, transform .15s; }
.slchat-scene:hover { border-color: #2970FF; box-shadow: 0 6px 16px rgba(41,112,255,0.10); transform: translateY(-1px); }
.slchat-scene__ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(41,112,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.slchat-scene__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.slchat-scene__t { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); }
.slchat-scene__d { font-size: 12px; color: rgba(0,0,0,0.46); line-height: 1.5; }
.slchat-scene__go { color: rgba(0,0,0,0.28); font-size: 20px; flex-shrink: 0; }

.slchat { position: absolute; inset: 0; pointer-events: none; z-index: 60; }
.slchat-mask { position: absolute; inset: 0; background: rgba(16,24,40,0.28); opacity: 0; transition: opacity .2s; }
.slchat-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: 460px; max-width: 92%; background: #fff; box-shadow: -8px 0 30px rgba(16,24,40,0.14); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.slchat.is-open { pointer-events: auto; }
.slchat.is-open .slchat-mask { opacity: 1; }
.slchat.is-open .slchat-drawer { transform: translateX(0); }
.slchat-hd { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid rgba(0,0,0,0.06); flex-shrink: 0; }
.slchat-hd__ic { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,#EA580C,#F59E0B); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; }
.slchat-hd__t { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); }
.slchat-hd__s { font-size: 12px; color: rgba(0,0,0,0.46); }
.slchat-close { margin-left: auto; width: 30px; height: 30px; border: 0; background: transparent; border-radius: 8px; color: rgba(0,0,0,0.46); font-size: 16px; line-height: 1; cursor: pointer; flex-shrink: 0; }
.slchat-close:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.82); }
.slchat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 16px; background: #FAFBFC; }
.slchat-row { display: flex; gap: 10px; }
.slchat-row--me { flex-direction: row-reverse; }
.slchat-ava { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; }
.slchat-ava--ai { background: linear-gradient(135deg,#EA580C,#F59E0B); }
.slchat-ava--me { background: linear-gradient(135deg,#2970FF,#7F2AF3); }
.slchat-bubble { max-width: 80%; padding: 11px 14px; border-radius: 12px; font-size: 13px; line-height: 1.65; }
.slchat-bubble--ai { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-top-left-radius: 3px; color: rgba(0,0,0,0.86); }
.slchat-bubble--me { background: #2970FF; color: #fff; border-top-right-radius: 3px; }
.slchat-bubble b { font-weight: 600; }
.slchat-h { font-weight: 600; margin-bottom: 5px; }
.slchat-bubble ul { margin: 6px 0 0; padding-left: 18px; }
.slchat-bubble li { margin-bottom: 4px; }
.slchat-tip { margin-top: 8px; padding-top: 8px; border-top: 1px dashed rgba(0,0,0,0.1); color: rgba(0,0,0,0.5); font-size: 12px; }
.slchat-typing { display: inline-flex; gap: 4px; align-items: center; }
.slchat-typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.3); animation: slchatBlink 1.2s infinite; }
.slchat-typing i:nth-child(2) { animation-delay: .2s; }
.slchat-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes slchatBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.slchat-foot { padding: 12px 16px 14px; border-top: 1px solid rgba(0,0,0,0.06); flex-shrink: 0; }
.slchat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.slchat-chip { font-size: 12px; padding: 5px 10px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); background: #fff; color: rgba(0,0,0,0.64); cursor: pointer; font-family: inherit; }
.slchat-chip:hover { border-color: #2970FF; color: rgba(0,0,0,0.9); }
.slchat-input { display: flex; align-items: flex-end; gap: 8px; background: #F5F6F8; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 8px 8px 8px 14px; }
.slchat-input textarea { flex: 1; border: 0; background: transparent; resize: none; outline: 0; font-family: inherit; font-size: 13px; line-height: 1.5; max-height: 100px; color: rgba(0,0,0,0.86); }
.slchat-send { flex-shrink: 0; height: 32px; padding: 0 14px; border: 0; border-radius: 8px; background: #2970FF; color: #fff; font-family: inherit; font-size: 13px; cursor: pointer; }
.slchat-send:hover { background: #1f5fe0; }

/* ---- 任务中心 / 产物中心 表格 ---- */
.cft-stats, .cfa2-stats { margin-bottom: 16px; }
.cft-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 4px 0 16px; flex-wrap: wrap; }
.cft-listtitle { font-size: 20px; font-weight: 500; color: #0a0a0a; }
.cft-bar__r { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cft-filter { display: inline-flex; align-items: center; gap: 4px; height: 32px; padding: 0 12px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 999px; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.82); cursor: pointer; }
.cft-filter:hover { border-color: rgba(0,0,0,0.2); }
.cft-search { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; color: rgba(0,0,0,0.28); }
.cft-search input { border: 0; outline: 0; background: transparent; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.82); width: 150px; }
.cft-tablewrap { border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; overflow: hidden; background: #fff; }
.cft-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cft-table th { text-align: left; font-weight: 400; color: rgba(0,0,0,0.64); background: rgba(0,0,0,0.03); padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); white-space: nowrap; }
.cft-table td { padding: 14px 16px; color: rgba(0,0,0,0.82); border-bottom: 1px solid rgba(0,0,0,0.06); vertical-align: middle; }
.cft-table tbody tr:last-child td { border-bottom: none; }
.cft-table tbody tr { cursor: pointer; }
.cft-table tbody tr:hover { background: rgba(41,112,255,0.03); }
.cft-td--muted { color: rgba(0,0,0,0.46); white-space: nowrap; }
.cft-td--desc { color: rgba(0,0,0,0.82); }
.cft-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 12px; font-size: 12px; white-space: nowrap; }
.cft-pager { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 16px; font-size: 14px; color: rgba(0,0,0,0.46); }
.cft-pager__cur b { color: rgba(0,0,0,0.82); }
.cft-pager__btns { display: inline-flex; align-items: center; gap: 4px; }
.cft-pager__btns i { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; padding: 0 6px; border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; background: #fff; font-style: normal; cursor: pointer; color: rgba(0,0,0,0.64); }
.cft-pager__btns i.is-active { border-color: #2970FF; color: #2970FF; }
.cft-pager__size { border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; padding: 3px 8px; color: rgba(0,0,0,0.82); }

/* ---- 产物中心 ---- */
.cfa2-top { display: flex; gap: 16px; margin-bottom: 16px; align-items: stretch; flex-wrap: wrap; }
.cfa2-stats { flex: 1 1 460px; margin-bottom: 0; }
.cfa2-top5card { flex: 1 1 380px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 16px 18px; }
.cfa2-top5 { display: flex; align-items: flex-end; gap: 12px; height: 120px; margin-top: 12px; }
.cfa2-bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 6px; }
.cfa2-bar__fill { width: 60%; max-width: 40px; background: linear-gradient(180deg,#599cff,rgba(89,156,255,.64)); border-radius: 4px 4px 0 0; }
.cfa2-bar__x { font-size: 12px; color: rgba(0,0,0,0.64); white-space: nowrap; }
.cfa2-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.cfa2-chips { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.cfa2-chip { height: 32px; padding: 0 16px; border: 0; background: #fff; border-radius: 16px; font-family: inherit; font-size: 14px; color: rgba(0,0,0,0.46); cursor: pointer; }
.cfa2-chip.is-active { border: 1px solid #495dff; color: #495dff; font-weight: 500; }
.cfa2-ops { display: inline-flex; gap: 8px; }
.cfa2-ops i { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; color: rgba(0,0,0,0.46); cursor: pointer; }
.cfa2-ops i:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.82); }

/* ---- 技能中心 ---- */
.cfsk-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.cfsk-toggle { display: inline-flex; gap: 4px; padding: 4px; background: rgba(0,0,0,0.03); border-radius: 20px; }
.cfsk-toggle b { font-weight: 400; font-size: 14px; padding: 4px 14px; border-radius: 16px; color: rgba(0,0,0,0.64); cursor: pointer; }
.cfsk-toggle b.is-active { background: #fff; color: rgba(0,0,0,0.94); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.cfsk-linechart { display: flex; gap: 6px; margin-top: 14px; }
.cfsk-yaxis { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; height: 240px; font-size: 12px; color: rgba(0,0,0,0.46); }
.cfsk-plot { flex: 1; }
.cfsk-plot .cfck-svg { height: 240px; }
.cfsk-legend { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 12px; }
.cfsk-lg { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.64); }
.cfsk-lg i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.cfsk-rank { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.cfsk-row__hd { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.cfsk-row__name { font-size: 16px; color: rgba(0,0,0,0.94); }
.cfsk-row__agent { font-size: 12px; font-weight: 500; color: #6C7CA3; background: rgba(179,184,197,0.1); padding: 2px 8px; border-radius: 999px; }
.cfsk-row__v { margin-left: auto; font-size: 16px; color: rgba(0,0,0,0.46); }
.cfsk-row__bar { height: 12px; background: rgba(0,0,0,0.03); border-radius: 99px; overflow: hidden; }
.cfsk-row__bar i { display: block; height: 100%; border-radius: 99px; }

/* ---- 组织知识 ---- */
.cfkn-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
.cfkn-hd { margin-bottom: 8px; }
.cfkn-sub { font-size: 12px; color: rgba(0,0,0,0.64); margin-top: 2px; }
.cfkn-cats { display: flex; flex-direction: column; }
.cfkn-cat { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f2f3f5; cursor: pointer; }
.cfkn-cat:last-child { border-bottom: none; }
.cfkn-cat__ic { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.cfkn-cat__main { flex: 1; min-width: 0; }
.cfkn-cat__name { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); }
.cfkn-cat__desc { font-size: 14px; color: rgba(0,0,0,0.46); margin-top: 2px; }
.cfkn-cat__num { width: 54px; text-align: left; flex-shrink: 0; }
.cfkn-cat__num b { display: block; font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); }
.cfkn-cat__num span { font-size: 12px; color: rgba(0,0,0,0.46); }
.cfkn-cat__prog { width: 100px; flex-shrink: 0; }
.cfkn-cat__bar { height: 8px; background: rgba(0,0,0,0.03); border-radius: 99px; overflow: hidden; margin-bottom: 4px; }
.cfkn-cat__bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(270deg,#495dff,rgba(89,156,255,.64)); }
.cfkn-cat__prog span { font-size: 12px; color: rgba(0,0,0,0.46); }
.cfkn-flows { margin-top: 10px; }
.cfkn-flow { display: grid; grid-template-columns: 44px 16px 1fr; gap: 12px; }
.cfkn-flow__time { font-size: 14px; color: rgba(0,0,0,0.46); padding-top: 2px; }
.cfkn-flow__line { position: relative; display: flex; justify-content: center; }
.cfkn-flow__line::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,0.06); }
.cfkn-flow.is-last .cfkn-flow__line::before { bottom: 50%; }
.cfkn-flow__dot { position: relative; z-index: 1; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2px solid #2970FF; margin-top: 4px; }
.cfkn-flow__body { display: flex; gap: 12px; padding-bottom: 20px; }
.cfkn-flow__ava { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 500; }
.cfkn-flow__txt { min-width: 0; }
.cfkn-flow__l1 { font-size: 16px; color: rgba(0,0,0,0.94); }
.cfkn-flow__l1 b { font-weight: 500; }
.cfkn-flow__act { color: rgba(0,0,0,0.46); }
.cfkn-flow__l2 { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cfkn-flow__cat { font-size: 12px; color: rgba(0,0,0,0.64); border: 1px solid rgba(0,0,0,0.06); border-radius: 999px; padding: 1px 8px; }

@media (max-width: 1200px) {
  .cfck-grid, .cfsk-grid, .cfkn-grid { grid-template-columns: 1fr; }
  .cfck-stats { }
}

/* ---------- toast ---------- */
.lof-toast { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 200020; padding: 10px 20px; border-radius: 10px; font-size: 13px; background: rgba(11,11,11,0.86); color: #fff; box-shadow: 0 6px 24px rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.lof-toast.show { opacity: 1; }

/* ============================================================
   CEO 办公室 · 静态子页面通用样式（外部洞察 / 关键客户 / 灵基日记 / 日程助理）
   ============================================================ */
.lof-panel.lof-panel--ceopage { background: #fbfbfb; }
.lof-panel.lof-panel--ceopage .lof-header { display: none; }
.lof-panel.lof-panel--ceopage .lof-body { padding: 0; overflow-y: auto; }

/* ============================================================
   产品管理 · ABI 问数（对齐 Figma 419:21782 右侧主内容）
   ============================================================ */
.lof-panel.lof-panel--abi { background: #fbfbfb; }
.lof-panel.lof-panel--abi .lof-header { display: none; }
.lof-panel.lof-panel--abi .lof-body { padding: 0; overflow: hidden; }

/* ===== 组织全局页 · 当前系统风格（rgba token / 大圆角 / 弱阴影 / #495DFF）===== */
.lofx { padding: 40px 40px 56px; color: rgba(0,0,0,0.94); font-size: 14px; }
.lofx-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.lofx-title { font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 30px; }
.lofx-sub { margin-top: 6px; font-size: 14px; color: rgba(0,0,0,0.46); line-height: 22px; max-width: 860px; }
.lofx-seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 20px; background: rgba(0,0,0,0.03); flex-shrink: 0; }
.lofx-seg__btn { height: 32px; padding: 0 16px; border: 0; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; cursor: pointer; transition: background .15s, color .15s; }
.lofx-seg__btn.is-active { background: #fff; color: rgba(0,0,0,0.94); font-weight: 500; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }
.lofx-sec { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); margin: 30px 0 16px; display: flex; align-items: center; gap: 10px; }
.lofx-sec em { font-style: normal; font-weight: 400; font-size: 13px; color: rgba(0,0,0,0.46); }
.lofx-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.lofx-kpis--3 { grid-template-columns: repeat(3, 1fr); }
.lofx-kpi { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px 20px; }
.lofx-kpi__l { font-size: 13px; color: rgba(0,0,0,0.46); }
.lofx-kpi__v { font-size: 26px; font-weight: 600; color: rgba(0,0,0,0.94); margin: 10px 0 4px; letter-spacing: -0.01em; }
.lofx-kpi__d { font-size: 12px; color: rgba(0,0,0,0.46); }
.lofx-kpi__d.up { color: #00B42A; } .lofx-kpi__d.warn { color: #E28800; } .lofx-kpi__d.down { color: #F53F3F; }
@media (max-width: 1080px) { .lofx-kpis, .lofx-kpis--3 { grid-template-columns: repeat(2, 1fr); } }
.lofx-grid3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1160px) { .lofx-grid3 { grid-template-columns: repeat(4, 1fr); } }
.lofx-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px 20px; }
.lofx-dept { cursor: pointer; transition: box-shadow .15s, border-color .15s; }
.lofx-dept:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 18px rgba(15,23,42,0.06); }
.lofx-dept__h { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lofx-dept__ic { width: 32px; height: 32px; border-radius: 9px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex-shrink: 0; }
.lofx-dept__n { font-size: 15px; font-weight: 500; color: rgba(0,0,0,0.94); }
.lofx-tag { margin-left: auto; font-size: 12px; padding: 2px 10px; border-radius: 999px; }
.lofx-tag.run { color: #00B42A; background: rgba(0,180,42,0.08); }
.lofx-tag.wait { color: #E28800; background: rgba(226,136,0,0.08); }
.lofx-tag.risk { color: #F53F3F; background: rgba(245,63,63,0.08); }
.lofx-dept__stats { display: flex; gap: 20px; margin-bottom: 16px; }
.lofx-dept__stats > div { display: flex; flex-direction: column; }
.lofx-dept__stats b { font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-dept__stats span { font-size: 12px; color: rgba(0,0,0,0.46); margin-top: 3px; }
.lofx-prog__l { display: flex; justify-content: space-between; font-size: 12px; color: rgba(0,0,0,0.46); margin-bottom: 6px; }
.lofx-prog { height: 6px; border-radius: 999px; background: rgba(0,0,0,0.05); overflow: hidden; }
.lofx-prog > i { display: block; height: 100%; border-radius: 999px; background: #495DFF; }
.lofx-task { display: flex; flex-direction: column; gap: 12px; }
.lofx-taskrow { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 16px 22px; cursor: pointer; transition: box-shadow .15s, border-color .15s; }
.lofx-taskrow:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 18px rgba(15,23,42,0.06); }
.lofx-task__main { flex: 1; min-width: 0; }
.lofx-task__n { font-size: 15px; font-weight: 500; color: rgba(0,0,0,0.94); }
.lofx-task__meta { font-size: 12px; color: rgba(0,0,0,0.46); margin-top: 3px; line-height: 1.5; }
.lofx-strip { display: flex; align-items: center; margin-top: 12px; }
.lofx-nd { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; flex-shrink: 0; border: 1.5px solid transparent; }
.lofx-nd.done { background: rgba(0,180,42,0.12); color: #00B42A; }
.lofx-nd.agent { background: rgba(73,93,255,0.12); color: #495DFF; }
.lofx-nd.human { background: rgba(226,136,0,0.14); color: #E28800; border-color: #E28800; }
.lofx-nd.todo { background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.28); }
.lofx-nl { width: 22px; height: 2px; background: rgba(0,0,0,0.08); flex-shrink: 0; }
.lofx-human { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #E28800; background: rgba(226,136,0,0.08); border-radius: 999px; padding: 6px 14px; font-weight: 500; }
/* 人机协同长程任务 · 操作（对齐「待你处理·智能体推送」）*/
.lofx-taskrow--ops { cursor: default; align-items: center; }
.lofx-task__top { display: flex; align-items: center; gap: 8px; }
.lofx-task__desc { font-size: 12px; color: rgba(0,0,0,0.5); margin-top: 4px; line-height: 1.5; }
.lofx-pri { font-size: 11px; font-weight: 600; padding: 1px 8px; border-radius: 6px; flex-shrink: 0; line-height: 18px; }
.lofx-pri--urgent { color: #F53F3F; background: rgba(245,63,63,0.1); }
.lofx-pri--high { color: #E28800; background: rgba(226,136,0,0.1); }
.lofx-task__ops { flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.lofx-op { height: 32px; padding: 0 14px; border-radius: 8px; font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; transition: background .15s, border-color .15s; }
.lofx-op--primary { background: #495DFF; color: #fff; }
.lofx-op--primary:hover { background: #3a4be0; }
.lofx-op--outline { background: #fff; color: #495DFF; border-color: rgba(73,93,255,0.5); }
.lofx-op--outline:hover { background: rgba(73,93,255,0.06); }
.lofx-op--ghost { background: #f2f3f5; color: rgba(0,0,0,0.7); }
.lofx-op--ghost:hover { background: #e7e9ec; }
.lofx-op--status { background: rgba(226,136,0,0.09); color: #E28800; cursor: default; }
.lofx-op--done { background: rgba(0,180,42,0.1); color: #00B42A; cursor: default; }
/* 人工决策弹窗内容 */
.lofx-magent { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(0,0,0,0.6); margin-bottom: 12px; }
.lofx-magent > svg { color: #495DFF; flex-shrink: 0; }
.lofx-mtag { margin-left: auto; font-size: 11px; font-weight: 600; padding: 1px 8px; border-radius: 6px; line-height: 18px; }
.lofx-mtag--urgent { color: #F53F3F; background: rgba(245,63,63,0.1); }
.lofx-mtag--high { color: #E28800; background: rgba(226,136,0,0.1); }
.lofx-mintro { font-size: 13.5px; color: rgba(0,0,0,0.75); line-height: 1.6; margin-bottom: 16px; }
.lofx-mkv { display: flex; flex-direction: column; gap: 10px; }
.lofx-mkv__row { display: flex; gap: 12px; font-size: 13.5px; align-items: baseline; }
.lofx-mkv__k { width: 84px; flex-shrink: 0; color: rgba(0,0,0,0.45); }
.lofx-mkv__v { color: rgba(0,0,0,0.85); font-weight: 500; }
.lofx-mfiles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.lofx-mfile { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(0,0,0,0.7); background: #f7f8fa; border: 1px solid rgba(0,0,0,0.05); border-radius: 8px; padding: 5px 10px; }
.lofx-mfile i { font-style: normal; font-size: 10px; font-weight: 700; color: #495DFF; background: rgba(73,93,255,0.1); border-radius: 4px; padding: 1px 5px; }
.lofx-msuggest { display: flex; gap: 8px; align-items: flex-start; margin-top: 16px; padding: 12px 14px; background: rgba(73,93,255,0.05); border: 1px solid rgba(73,93,255,0.12); border-radius: 10px; font-size: 13px; color: rgba(0,0,0,0.75); line-height: 1.55; }
.lofx-msuggest > svg { color: #495DFF; flex-shrink: 0; margin-top: 1px; }
.lofx-tl { display: flex; flex-direction: column; }
.lofx-tl__item { display: flex; gap: 12px; }
.lofx-tl__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.lofx-tl__dot { width: 9px; height: 9px; border-radius: 50%; background: #495DFF; margin-top: 5px; flex-shrink: 0; }
.lofx-tl__line { flex: 1; width: 2px; background: rgba(0,0,0,0.06); margin: 3px 0; }
.lofx-tl__item:last-child .lofx-tl__line { display: none; }
.lofx-tl__c { padding-bottom: 18px; }
.lofx-tl__item:last-child .lofx-tl__c { padding-bottom: 0; }
.lofx-tl__t { font-size: 13.5px; color: rgba(0,0,0,0.82); line-height: 1.5; }
.lofx-tl__t b { font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-tl__s { font-size: 12px; color: rgba(0,0,0,0.4); margin-top: 3px; }
.lofx-2col { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 24px; align-items: start; }
@media (max-width: 1080px) { .lofx-2col { grid-template-columns: 1fr; } }
.lofx-col { min-width: 0; }
.lofx-chn { display: flex; flex-direction: column; }
.lofx-chn__row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.lofx-chn__row:last-child { border-bottom: none; }
.lofx-chn__ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(73,93,255,0.1); color: #495DFF; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.lofx-chn__b { flex: 1; min-width: 0; }
.lofx-chn__t { font-size: 13px; color: rgba(0,0,0,0.82); line-height: 1.55; }
.lofx-chn__t b { font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-chn__arrow { color: rgba(0,0,0,0.3); margin: 0 5px; }
.lofx-chn__s { font-size: 12px; color: rgba(0,0,0,0.4); margin-top: 2px; }
.lofx-agentwrap { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; margin-top: 20px; }
@media (max-width: 1200px) { .lofx-agentwrap { grid-template-columns: 1fr; } }
.lofx-deptgrps { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.lofx-deptgrp__h { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); margin-bottom: 14px; }
.lofx-deptgrp__ic { width: 28px; height: 28px; border-radius: 8px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.lofx-deptgrp__c { margin-left: auto; font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.46); }
.lofx-agrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1400px) { .lofx-agrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .lofx-agrid { grid-template-columns: 1fr; } }
.lofx-card--on { border-color: #495DFF !important; box-shadow: 0 0 0 3px rgba(73,93,255,0.12) !important; }
.lofx-adt-wrap { position: sticky; top: 0; }
.lofx-adt { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 20px; padding: 22px; }
.lofx-adt__hd { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.lofx-adt__ic { width: 44px; height: 44px; border-radius: 12px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 600; flex-shrink: 0; }
.lofx-adt__n { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-adt__role { font-size: 13px; color: rgba(0,0,0,0.46); margin-top: 2px; }
.lofx-adt__sec { margin-bottom: 16px; }
.lofx-adt__lb { font-size: 12px; color: rgba(0,0,0,0.46); margin-bottom: 6px; }
.lofx-adt__tx { font-size: 13.5px; color: rgba(0,0,0,0.82); line-height: 1.6; }
.lofx-perms { display: flex; flex-wrap: wrap; gap: 8px; }
.lofx-perm { font-size: 12px; color: #495DFF; background: rgba(73,93,255,0.08); border-radius: 8px; padding: 5px 10px; line-height: 1.4; }
.lofx-adt__kv { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px; margin-bottom: 18px; }
.lofx-adt__kv > div { display: flex; flex-direction: column; gap: 3px; }
.lofx-adt__kv span { font-size: 12px; color: rgba(0,0,0,0.46); }
.lofx-adt__kv b { font-size: 13.5px; font-weight: 500; color: rgba(0,0,0,0.82); }
.lofx-btn { width: 100%; height: 40px; border: 0; border-radius: 12px; background: #495DFF; color: #fff; font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .15s; }
.lofx-btn:hover { background: #3a4be0; }
.lofx-btn--ghost { background: #f2f3f5; color: rgba(0,0,0,0.7); }
.lofx-btn--ghost:hover { background: #e7e9ec; }
.lofx-adt__acts { display: flex; gap: 10px; }
.lofx-adt__acts .lofx-btn { width: auto; flex: 1; }
.lofx-acard__foot { margin-top: auto; padding: 12px 16px 14px; border-top: 1px dashed rgba(0,0,0,0.07); display: flex; justify-content: flex-end; }
.lofx-chatlink { display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(73,93,255,0.32); background: rgba(73,93,255,0.06); color: #495DFF; font-family: inherit; font-size: 12px; line-height: 1; padding: 6px 12px; border-radius: 999px; cursor: pointer; transition: background .15s, border-color .15s; }
.lofx-chatlink:hover { background: rgba(73,93,255,0.13); border-color: rgba(73,93,255,0.5); }
.lofx-chatlink svg { width: 13px; height: 13px; }

/* ===== Workflow 详情页（从组织概览待办进入 · 人-Agent 协作画布）===== */
.lofx-wf { display: flex; flex-direction: column; gap: 18px; }
.lofx-wf__top { display: flex; align-items: center; gap: 14px; }
.lofx-wf__back { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; background: #fff; font-family: inherit; font-size: 13px; color: rgba(0,0,0,0.7); cursor: pointer; flex-shrink: 0; }
.lofx-wf__back:hover { border-color: rgba(73,93,255,0.5); color: #495DFF; }
.lofx-wf__crumb { font-size: 12px; color: rgba(0,0,0,0.4); }
.lofx-wf__crumb b { color: rgba(0,0,0,0.75); font-weight: 500; }
.lofx-wf__layout { display: grid; grid-template-columns: 300px minmax(0,1fr) 300px; gap: 20px; align-items: start; }
@media (max-width: 1280px) { .lofx-wf__layout { grid-template-columns: 280px minmax(0,1fr); } .lofx-wf__right { grid-column: 1 / -1; } }
@media (max-width: 900px) { .lofx-wf__layout { grid-template-columns: 1fr; } }
.lofx-wf__col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.lofx-wf__card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px 20px; }
.lofx-wf__ctt { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.94); margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; }
.lofx-wf__ctt small { font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.4); }
/* AI 综合评估卡 */
.lofx-wf__score { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.lofx-wf__scoreic { width: 40px; height: 40px; border-radius: 50%; background: rgba(73,93,255,0.08); color: #495DFF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lofx-wf__scorev { margin-left: auto; font-size: 22px; font-weight: 650; color: #495DFF; letter-spacing: -0.02em; }
.lofx-wf__scorev small { font-size: 11px; font-weight: 400; color: rgba(0,0,0,0.4); display: block; text-align: right; }
.lofx-wf__sum { font-size: 13px; color: rgba(0,0,0,0.7); line-height: 1.6; }
/* 决策要素清单 */
.lofx-wf__chk { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 13px; }
.lofx-wf__chk:last-child { border-bottom: none; }
.lofx-wf__chkic { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lofx-wf__chkic.ok { background: rgba(0,180,42,0.12); color: #00B42A; }
.lofx-wf__chkic.warn { background: rgba(226,136,0,0.14); color: #E28800; }
.lofx-wf__chkic.risk { background: rgba(245,63,63,0.12); color: #F53F3F; }
.lofx-wf__chkb { flex: 1; min-width: 0; }
.lofx-wf__chkt { color: rgba(0,0,0,0.85); font-weight: 500; }
.lofx-wf__chks { font-size: 12px; color: rgba(0,0,0,0.45); margin-top: 2px; line-height: 1.5; }
/* 决策按钮 */
.lofx-wf__acts { display: flex; gap: 10px; }
.lofx-wf__act { flex: 1; height: 38px; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; border: 1px solid transparent; }
.lofx-wf__act--ok { background: #495DFF; color: #fff; }
.lofx-wf__act--ok:hover { background: #3a4be0; }
.lofx-wf__act--no { background: #fff; color: rgba(0,0,0,0.65); border-color: rgba(0,0,0,0.12); }
.lofx-wf__act--no:hover { background: #f7f8fa; }
.lofx-wf__done { text-align: center; font-size: 13px; color: #00B42A; background: rgba(0,180,42,0.08); border-radius: 10px; padding: 10px; font-weight: 500; }
/* 中部画布 */
.lofx-wf__canvas { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 22px; min-height: 480px; }
.lofx-wf__legend { display: flex; gap: 16px; margin-bottom: 18px; font-size: 12px; color: rgba(0,0,0,0.5); }
.lofx-wf__legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.lofx-wf__flow { display: flex; flex-direction: column; align-items: center; }
.lofx-wf__conn { width: 2px; height: 26px; background: rgba(0,0,0,0.1); position: relative; }
.lofx-wf__conn.done { background: rgba(0,180,42,0.35); }
.lofx-wf__conn::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border: 4px solid transparent; border-top-color: rgba(0,0,0,0.18); }
.lofx-wf__conn.done::after { border-top-color: rgba(0,180,42,0.4); }
.lofx-wf__node { width: 320px; max-width: 100%; border: 1.5px solid rgba(0,0,0,0.08); border-radius: 14px; padding: 14px 16px; background: #fff; position: relative; }
.lofx-wf__node.is-done { border-color: rgba(0,180,42,0.25); background: rgba(0,180,42,0.02); }
.lofx-wf__node.is-todo { border-style: dashed; border-color: rgba(0,0,0,0.14); background: rgba(0,0,0,0.015); opacity: 0.75; }
.lofx-wf__node.is-current { border-color: #495DFF; box-shadow: 0 0 0 4px rgba(73,93,255,0.12), 0 10px 26px rgba(73,93,255,0.14); animation: lofx-wf-pulse 2.2s ease-in-out infinite; }
@keyframes lofx-wf-pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(73,93,255,0.12), 0 10px 26px rgba(73,93,255,0.14); } 50% { box-shadow: 0 0 0 8px rgba(73,93,255,0.06), 0 10px 26px rgba(73,93,255,0.1); } }
.lofx-wf__fromtag { position: absolute; top: -11px; right: 12px; font-size: 10.5px; font-weight: 600; color: #fff; background: #495DFF; border-radius: 999px; padding: 2px 9px; }
.lofx-wf__nrow { display: flex; align-items: center; gap: 10px; }
.lofx-wf__nic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.lofx-wf__nic.ai { background: rgba(73,93,255,0.1); color: #495DFF; }
.lofx-wf__nic.human { background: rgba(226,136,0,0.12); color: #E28800; }
.lofx-wf__nt { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.9); }
.lofx-wf__ns { font-size: 12px; color: rgba(0,0,0,0.45); margin-top: 1px; }
.lofx-wf__nst { margin-left: auto; font-size: 11px; font-weight: 600; padding: 2px 9px; border-radius: 999px; flex-shrink: 0; }
.lofx-wf__nst.done { color: #00B42A; background: rgba(0,180,42,0.1); }
.lofx-wf__nst.current { color: #495DFF; background: rgba(73,93,255,0.1); }
.lofx-wf__nst.todo { color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.05); }
.lofx-wf__ndesc { font-size: 12.5px; color: rgba(0,0,0,0.55); line-height: 1.55; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(0,0,0,0.07); }
.lofx-wf__nacts { display: flex; gap: 8px; margin-top: 12px; }
.lofx-wf__nacts .lofx-wf__act { height: 34px; font-size: 13px; }
/* 分支 */
.lofx-wf__branch { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 560px; }
.lofx-wf__brcol { display: flex; flex-direction: column; align-items: center; }
.lofx-wf__brlbl { font-size: 11.5px; font-weight: 600; color: rgba(0,0,0,0.5); margin-bottom: 10px; display: inline-flex; align-items: center; gap: 6px; }
.lofx-wf__brlbl i { width: 8px; height: 8px; border-radius: 50%; }
.lofx-wf__branch .lofx-wf__node { width: 100%; }
/* 右侧：附件 + 问 AI */
.lofx-wf__file { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; margin-bottom: 8px; cursor: pointer; }
.lofx-wf__file:hover { border-color: rgba(73,93,255,0.4); }
.lofx-wf__file:last-child { margin-bottom: 0; }
.lofx-wf__file i { font-style: normal; font-size: 10px; font-weight: 700; color: #495DFF; background: rgba(73,93,255,0.1); border-radius: 5px; padding: 3px 6px; flex-shrink: 0; }
.lofx-wf__file span { font-size: 12.5px; color: rgba(0,0,0,0.78); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lofx-wf__file em { font-style: normal; font-size: 11px; color: rgba(0,0,0,0.35); flex-shrink: 0; }
.lofx-wf__ask { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.lofx-wf__askq { text-align: left; font-family: inherit; font-size: 12.5px; color: rgba(0,0,0,0.72); background: #f7f8fa; border: 1px solid rgba(0,0,0,0.05); border-radius: 10px; padding: 9px 12px; cursor: pointer; line-height: 1.5; }
.lofx-wf__askq:hover { border-color: rgba(73,93,255,0.4); color: #495DFF; background: rgba(73,93,255,0.04); }
.lofx-wf__chat { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.lofx-wf__msg { font-size: 12.5px; line-height: 1.6; border-radius: 10px; padding: 9px 12px; }
.lofx-wf__msg.q { background: rgba(73,93,255,0.08); color: rgba(0,0,0,0.85); align-self: flex-end; max-width: 92%; }
.lofx-wf__msg.a { background: #f7f8fa; color: rgba(0,0,0,0.75); align-self: flex-start; max-width: 96%; }
.lofx-wf__input { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 4px 4px 4px 12px; }
.lofx-wf__input input { flex: 1; min-width: 0; border: 0; outline: none; font-family: inherit; font-size: 12.5px; color: rgba(0,0,0,0.85); background: transparent; }
.lofx-wf__send { width: 30px; height: 30px; border: 0; border-radius: 8px; background: #495DFF; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.lofx-wf__send:hover { background: #3a4be0; }
.lofx-wf__send svg { width: 14px; height: 14px; }
.lofx-wf__scoreic svg { width: 18px; height: 18px; }
.lofx-wf__hint { font-size: 11px; color: rgba(0,0,0,0.35); margin-top: 8px; text-align: center; }

/* ===== 部门流程中心 ===== */
.dfw { display: flex; flex-direction: column; gap: 18px; }
.dfw-sec { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); }
.dfw-sec em { font-style: normal; font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.4); }
.dfw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 1080px) { .dfw-grid { grid-template-columns: 1fr; } }
.dfw-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px 20px; cursor: pointer; transition: box-shadow .15s, border-color .15s; }
.dfw-card:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 18px rgba(15,23,42,0.06); }
.dfw-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dfw-card__name { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); }
.dfw-card__top .lofx-tag { margin-left: auto; }
.dfw-card__desc { font-size: 12.5px; color: rgba(0,0,0,0.5); line-height: 1.55; margin-bottom: 10px; }
.dfw-card__owner { font-size: 12px; color: rgba(0,0,0,0.45); margin-bottom: 4px; }
.dfw-card__owner b { color: rgba(0,0,0,0.78); font-weight: 500; }
.dfw-card__co { margin-left: 10px; color: rgba(0,0,0,0.35); }
.dfw-card__stats { display: flex; align-items: center; gap: 22px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.05); }
.dfw-card__stats > div { display: flex; flex-direction: column; }
.dfw-card__stats b { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); }
.dfw-card__stats span { font-size: 11px; color: rgba(0,0,0,0.42); margin-top: 2px; }
.dfw-card__go { margin-left: auto; font-size: 12.5px; font-weight: 500; color: #495DFF; flex-shrink: 0; }

/* ===== 节点执行详情 · 审计浮窗 ===== */
.lofx-wf__node.has-audit { cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.lofx-wf__node.has-audit:hover { border-color: rgba(73,93,255,0.55); box-shadow: 0 6px 18px rgba(15,23,42,0.08); }
.lofx-wf__naudit { margin-top: 10px; font-size: 12px; font-weight: 500; color: #495DFF; display: flex; align-items: center; justify-content: flex-end; }
.lofx-amodal { width: min(1480px, calc(100vw - 44px)); height: calc(100vh - 44px); max-height: calc(100vh - 44px); }
.lofx-amodal__bd { padding: 22px 32px 26px; flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.lofx-audit__meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: rgba(0,0,0,0.45); margin-bottom: 20px; flex-wrap: wrap; flex-shrink: 0; }
.lofx-audit__meta b { font-size: 13.5px; color: rgba(0,0,0,0.8); font-weight: 500; }
.lofx-audit__meta .lofx-wf__nic { width: 28px; height: 28px; font-size: 11px; border-radius: 8px; }
.lofx-audit__meta .lofx-audit__stamp { margin-left: auto; font-size: 11.5px; color: #00B42A; background: rgba(0,180,42,0.08); border-radius: 999px; padding: 3px 11px; font-weight: 500; }
.lofx-audit__cols { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 32px; align-items: stretch; flex: 1; min-height: 0; }
@media (max-width: 860px) { .lofx-audit__cols { grid-template-columns: 1fr; overflow-y: auto; } }
.lofx-audit__col { display: flex; flex-direction: column; min-height: 0; min-width: 0; }
.lofx-audit__sec { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.85); margin-bottom: 14px; flex-shrink: 0; }
.lofx-audit__sec em { font-style: normal; font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.4); }
.lofx-audit__session { display: flex; flex-direction: column; gap: 14px; flex: 1; min-height: 0; overflow-y: auto; padding: 4px 8px 4px 2px; }
.lofx-audit__msg { display: flex; gap: 10px; align-items: flex-start; }
.lofx-audit__ava { width: 28px; height: 28px; border-radius: 8px; background: rgba(73,93,255,0.1); color: #495DFF; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.lofx-audit__bubble { flex: 1; min-width: 0; background: #f7f8fa; border-radius: 12px; padding: 11px 14px; font-size: 13px; color: rgba(0,0,0,0.75); line-height: 1.65; }
.lofx-audit__who { font-size: 12px; font-weight: 600; color: rgba(0,0,0,0.5); margin-bottom: 4px; }
.lofx-audit__time { font-weight: 400; color: rgba(0,0,0,0.3); margin-left: 8px; }
.lofx-audit__tool { font-size: 12px; color: #0d9488; background: rgba(13,148,136,0.07); border: 1px dashed rgba(13,148,136,0.3); border-radius: 9px; padding: 9px 13px; line-height: 1.55; margin-left: 38px; }
.lofx-audit__tabs { display: flex; gap: 8px; margin-bottom: 14px; flex-shrink: 0; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 0; }
.lofx-audit__tab { border: 0; background: transparent; font-family: inherit; font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.5); padding: 8px 14px 10px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.lofx-audit__tab:hover { color: rgba(0,0,0,0.8); }
.lofx-audit__tab.is-active { color: #495DFF; border-bottom-color: #495DFF; }
.lofx-audit__panel { display: none; flex: 1; min-height: 0; overflow-y: auto; padding-right: 6px; }
.lofx-audit__panel.is-active { display: block; }
.lofx-audit__form { border: 1px solid rgba(0,0,0,0.07); border-radius: 14px; padding: 18px 20px; background: #fff; }
.lofx-audit__formt { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.9); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.lofx-audit__form .lofx-mkv { gap: 12px; }
.lofx-audit__form .lofx-mkv__k { width: 112px; }
.lofx-audit__note { margin-top: 14px; font-size: 12.5px; color: rgba(0,0,0,0.5); line-height: 1.65; background: #f7f8fa; border-radius: 10px; padding: 11px 14px; }
.lofx-audit__bars { display: flex; flex-direction: column; gap: 14px; }
.lofx-audit__bar .lofx-audit__bart { display: flex; justify-content: space-between; font-size: 13px; color: rgba(0,0,0,0.7); margin-bottom: 6px; }
.lofx-audit__bar .lofx-audit__bart b { color: rgba(0,0,0,0.9); }
.lofx-audit__bar .lofx-audit__barbg { height: 7px; border-radius: 999px; background: rgba(0,0,0,0.05); overflow: hidden; }
.lofx-audit__bar .lofx-audit__barbg > i { display: block; height: 100%; border-radius: 999px; background: #495DFF; }
.lofx-audit__files { display: flex; flex-direction: column; gap: 10px; }
.lofx-audit__files .lofx-wf__file { padding: 12px 14px; }
.lofx-audit__conc { display: flex; gap: 8px; align-items: flex-start; margin-top: 16px; padding: 12px 14px; background: rgba(73,93,255,0.05); border: 1px solid rgba(73,93,255,0.12); border-radius: 12px; font-size: 13px; color: rgba(0,0,0,0.72); line-height: 1.6; flex-shrink: 0; }
.lofx-audit__conc > svg { color: #495DFF; flex-shrink: 0; margin-top: 1px; width: 14px; height: 14px; }

/* 智能体状态徽标：卡片右上角 + 详情头部 */
.lofx-abadge { font-size: 11px; line-height: 1.6; padding: 1px 8px; border-radius: 999px; margin-left: auto; align-self: flex-start; white-space: nowrap; }
.lofx-abadge--config, .lofx-adt__st--config { color: #E28800; background: rgba(226,136,0,0.10); }
.lofx-abadge--activate, .lofx-adt__st--activate { color: #722ED1; background: rgba(114,46,209,0.10); }
.lofx-adt__st { font-size: 12px; padding: 2px 10px; border-radius: 999px; margin-left: auto; align-self: flex-start; white-space: nowrap; }
.lofx-adt__st--onduty { color: #00B42A; background: rgba(0,180,42,0.08); }

/* 配置 / 激活 弹窗 */
.lofx-modal-mask { position: fixed; inset: 0; z-index: 300010; background: rgba(15,23,42,0.36); display: flex; align-items: center; justify-content: center; padding: 24px; font-family: -apple-system,BlinkMacSystemFont,"PingFang SC",sans-serif; animation: wka-fade-in .15s ease; }
.lofx-modal { width: 520px; max-width: calc(100vw - 40px); max-height: calc(100vh - 80px); background: #fff; border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.22); display: flex; flex-direction: column; overflow: hidden; }
.lofx-modal__hd { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px 14px; border-bottom: 1px solid #f0f1f3; flex-shrink: 0; }
.lofx-modal__t { font-size: 16px; font-weight: 600; color: #1a1a1a; }
.lofx-modal__x { border: 0; background: transparent; font-size: 22px; line-height: 1; color: rgba(0,0,0,0.4); cursor: pointer; padding: 0 4px; }
.lofx-modal__x:hover { color: rgba(0,0,0,0.7); }
.lofx-modal__bd { padding: 18px 22px; overflow-y: auto; }
.lofx-modal__ft { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 22px; border-top: 1px solid #f0f1f3; flex-shrink: 0; }
.lofx-fld { margin-bottom: 15px; }
.lofx-fld__l { font-size: 12.5px; color: rgba(0,0,0,0.5); margin-bottom: 6px; }
.lofx-in, .lofx-ta { width: 100%; box-sizing: border-box; border: 1px solid rgba(0,0,0,0.12); border-radius: 9px; padding: 9px 12px; font-family: inherit; font-size: 13.5px; color: rgba(0,0,0,0.85); background: #fff; }
.lofx-ta { resize: vertical; min-height: 62px; line-height: 1.55; }
.lofx-in:focus, .lofx-ta:focus { outline: none; border-color: #495DFF; box-shadow: 0 0 0 2px rgba(73,93,255,0.12); }
.lofx-fld__ro { font-size: 13.5px; color: rgba(0,0,0,0.85); padding: 9px 12px; background: #f7f8fa; border-radius: 9px; }
.lofx-mperms { display: flex; flex-direction: column; gap: 9px; }
.lofx-mperm { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(0,0,0,0.78); cursor: pointer; }
.lofx-mbtn { height: 38px; padding: 0 18px; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; border: 1px solid transparent; }
.lofx-mbtn--ghost { background: #f2f3f5; color: rgba(0,0,0,0.7); }
.lofx-mbtn--ghost:hover { background: #e7e9ec; }
.lofx-mbtn--primary { background: #495DFF; color: #fff; }
.lofx-mbtn--primary:hover { background: #3a4be0; }
.lofx-actstep { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid #f2f3f5; }
.lofx-actstep__ic { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: #eef1ff; color: #495DFF; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.lofx-actstep__tx { flex: 1; }
.lofx-actstep__tx b { display: block; font-size: 13.5px; color: rgba(0,0,0,0.85); font-weight: 600; }
.lofx-actstep__tx span { font-size: 12px; color: rgba(0,0,0,0.45); }
.lofx-actstep__ok { font-size: 12px; color: #00B42A; }
.lofx-actnote { margin-top: 14px; font-size: 12.5px; color: rgba(0,0,0,0.5); line-height: 1.6; background: #f7f8fa; border-radius: 9px; padding: 10px 12px; }
.lofx-gwrap { margin-bottom: 10px; }
.lofx-goal { display: flex; align-items: stretch; gap: 16px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 14px 18px; }
/* 左侧达成度评分列（锚点） */
.lofx-goal__score { width: 64px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
.lofx-goal__pct { font-size: 22px; font-weight: 650; color: rgba(0,0,0,0.88); letter-spacing: -0.02em; line-height: 1; }
.lofx-goal__pct small { font-size: 11px; font-weight: 500; color: rgba(0,0,0,0.35); margin-left: 1px; }
.lofx-goal__mini { height: 4px; border-radius: 999px; background: rgba(0,0,0,0.07); overflow: hidden; margin: 7px 0 5px; }
.lofx-goal__mini > i { display: block; height: 100%; border-radius: 999px; background: #495DFF; }
.lofx-goal__st { font-size: 11px; font-weight: 500; color: rgba(0,0,0,0.4); }
.lofx-goal[data-st="risk"] .lofx-goal__st { color: rgba(0,0,0,0.7); font-weight: 600; }
/* 竖分隔线 */
.lofx-goal__div { width: 1px; flex-shrink: 0; background: rgba(0,0,0,0.06); align-self: stretch; }
/* 右侧内容 */
.lofx-goal__main { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.lofx-goal__top { display: flex; align-items: center; gap: 10px; }
.lofx-goal__t { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.9); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lofx-goal__o { margin-left: auto; font-size: 12px; color: rgba(0,0,0,0.4); white-space: nowrap; flex-shrink: 0; }
.lofx-goal__m { font-size: 12px; color: rgba(0,0,0,0.45); margin-top: 6px; }
.lofx-lvl { font-size: 11px; font-weight: 600; padding: 2px 9px; border-radius: 6px; flex-shrink: 0; background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.55); }
.lofx-lvl.org { background: rgba(0,0,0,0.82); color: #fff; }
.lofx-children { margin: 10px 0 0 22px; border-left: 2px solid rgba(0,0,0,0.06); padding-left: 18px; }
.lofx-children .lofx-gwrap:last-child { margin-bottom: 0; }
/* 组织目标 · 两栏（承接树 + 目标洞察）*/
.lofx-goalwrap { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 24px; align-items: start; }
@media (max-width: 1200px) { .lofx-goalwrap { grid-template-columns: 1fr; } }
.lofx-goalmain { min-width: 0; }
.lofx-goalside { display: flex; flex-direction: column; gap: 16px; }
.lofx-ctt { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; }
.lofx-ctt__s { font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.4); }
.lofx-distbar { display: flex; height: 10px; border-radius: 999px; overflow: hidden; background: rgba(0,0,0,0.05); }
.lofx-distbar > i { display: block; height: 100%; }
.lofx-distrows { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.lofx-distrow { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(0,0,0,0.7); }
.lofx-distrow__l { flex: 1; }
.lofx-distrow b { font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lofx-gtrend { margin-top: 2px; }
.lofx-gsvg { width: 100%; height: 88px; display: block; }
.lofx-gx { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: rgba(0,0,0,0.4); }
.lofx-gfoot { margin-top: 12px; font-size: 12.5px; color: rgba(0,0,0,0.55); }
.lofx-gfoot b { font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.94); }
.lofx-gfoot .up { color: #00B42A; }
.lofx-flist { display: flex; flex-direction: column; gap: 14px; }
.lofx-frow__hd { display: flex; align-items: center; gap: 10px; }
.lofx-frow__t { flex: 1; min-width: 0; font-size: 13px; color: rgba(0,0,0,0.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lofx-frow__p { font-size: 13px; font-weight: 600; flex-shrink: 0; }
.lofx-frow__p.done { color: #00B42A; } .lofx-frow__p.on { color: #495DFF; } .lofx-frow__p.risk { color: #F53F3F; }
.lofx-frow__o { font-size: 11.5px; color: rgba(0,0,0,0.4); margin-top: 4px; }
.lofx-rank3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1080px) { .lofx-rank3 { grid-template-columns: 1fr; } }
.lofx-rk { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 4px 18px 12px; }
.lofx-rk__hd { display: flex; align-items: baseline; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.9); padding: 14px 0 10px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.lofx-rk__hd span { font-size: 11px; font-weight: 400; color: rgba(0,0,0,0.4); }
.lofx-rkrow { display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.lofx-rkrow + .lofx-rkrow { border-top: 1px solid rgba(0,0,0,0.04); }
.lofx-rkrow__i { width: 20px; height: 20px; flex-shrink: 0; border-radius: 6px; background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.4); font-size: 11.5px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.lofx-rkrow.is-top .lofx-rkrow__i { background: rgba(73,93,255,0.1); color: #495DFF; }
.lofx-rkrow__b { flex: 1; min-width: 0; }
.lofx-rkrow__t { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.lofx-rkrow__n { font-size: 13px; font-weight: 500; color: rgba(0,0,0,0.82); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lofx-rkrow__v { font-size: 12px; font-weight: 500; color: rgba(0,0,0,0.6); white-space: nowrap; flex-shrink: 0; }
.lofx-rkbar { height: 5px; border-radius: 999px; background: rgba(0,0,0,0.05); overflow: hidden; }
.lofx-rkbar > i { display: block; height: 100%; border-radius: 999px; background: rgba(0,0,0,0.18); }
.lofx-rkrow.is-top .lofx-rkbar > i { background: #495DFF; }
.lofx-rk__empty { font-size: 12px; color: rgba(0,0,0,0.4); padding: 20px 0; text-align: center; }
.lofx-cdgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1160px) { .lofx-cdgrid { grid-template-columns: repeat(2, 1fr); } }
.lofx-cd { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 18px 20px; cursor: pointer; transition: box-shadow .15s, border-color .15s; }
.lofx-cd:hover { border-color: rgba(73,93,255,0.4); box-shadow: 0 6px 18px rgba(15,23,42,0.06); }
.lofx-cd--on { border-color: #495DFF; box-shadow: 0 0 0 3px rgba(73,93,255,0.12); }
.lofx-cd__h { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lofx-cd__ic { width: 30px; height: 30px; border-radius: 8px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.lofx-cd__n { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.94); }
.lofx-cd__share { margin-left: auto; font-size: 12px; color: rgba(0,0,0,0.46); }
.lofx-cd__v { font-size: 24px; font-weight: 600; color: rgba(0,0,0,0.94); letter-spacing: -0.01em; }
.lofx-cd__v small { font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.4); }
.lofx-cd__mom { font-size: 12px; margin: 4px 0 14px; }
.lofx-cd__mom.up { color: #00B42A; } .lofx-cd__mom.down { color: #F53F3F; }
.lofx-cd__foot { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12px; color: rgba(0,0,0,0.46); }
.lofx-fchips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.lofx-fchip { height: 32px; padding: 0 16px; border: 1px solid rgba(0,0,0,0.1); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 13px; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.lofx-fchip:hover { border-color: rgba(73,93,255,0.4); }
.lofx-fchip.is-active { background: #495DFF; border-color: #495DFF; color: #fff; }
/* 组织 tab 隐藏「新建任务」(sticky-top) */
body.lingee-org-as-chat .session-sidebar__sticky-top { display: none !important; }
.abiq { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 0; box-sizing: border-box; background: radial-gradient(circle at 50% 42%, #ffffff 0%, #fbfbfb 62%); }
.abiq-topbar { position: absolute; top: 0; right: 0; height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 18px; z-index: 2; }
.abiq-topbtn { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; border-radius: 8px; color: rgba(0,0,0,0.6); cursor: pointer; transition: background 0.15s, color 0.15s; }
.abiq-topbtn:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.85); }
.abiq-topbtn svg { width: 18px; height: 18px; display: block; }

.abiq-hero { flex: 1; min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; padding: 56px 24px 40px; }
.abiq-hero__logo { width: 96px; height: 96px; display: block; margin-bottom: 16px; }
.abiq-hero__title { margin: 0 0 36px; text-align: center; font-family: "Songti SC", "STSong", "PingFang SC", serif; font-weight: 700; font-size: 40px; line-height: 1.28; color: rgba(0,0,0,0.94); letter-spacing: 0.01em; }

.abiq-composer-wrap { width: 714px; max-width: 92%; margin-bottom: 40px; display: flex; flex-direction: column; gap: 8px; padding: 2px 0 8px 2px; background: rgba(0,0,0,0.03); border-radius: 30px; box-sizing: border-box; }
.abiq-composer { display: flex; flex-direction: column; gap: 12px; padding: 16px 10px 10px; background: #fff; border-radius: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.abiq-composer__input { min-height: 24px; padding: 0 6px; font-size: 16px; line-height: 24px; color: rgba(0,0,0,0.28); outline: none; cursor: text; }
.abiq-composer__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.abiq-composer__left { display: flex; align-items: center; gap: 4px; }
.abiq-composer__right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.abiq-pill { display: inline-flex; align-items: center; gap: 4px; height: 34px; padding: 0 8px; border: 0; border-radius: 32px; background: transparent; color: rgba(0,0,0,0.82); font-family: inherit; font-size: 14px; line-height: 22px; cursor: pointer; transition: background 0.15s; }
.abiq-pill:hover { background: rgba(0,0,0,0.05); }
.abiq-pill svg { width: 16px; height: 16px; display: block; flex-shrink: 0; color: rgba(0,0,0,0.6); }
.abiq-pill span { white-space: nowrap; }
.abiq-cbtn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 28px; background: transparent; color: rgba(0,0,0,0.7); cursor: pointer; transition: background 0.15s, color 0.15s; }
.abiq-cbtn:hover { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.9); }
.abiq-cbtn svg { width: 20px; height: 20px; display: block; }
.abiq-cbtn--send { background: rgba(0,0,0,0.03); color: rgba(0,0,0,0.45); }
.abiq-cbtn--send:hover { background: #2b5cf6; color: #fff; }

.abiq-folder { display: inline-flex; align-self: flex-start; align-items: center; gap: 4px; margin-left: 8px; padding: 4px 12px; border-radius: 12px; color: rgba(0,0,0,0.64); font-size: 14px; line-height: 22px; cursor: pointer; transition: background 0.15s; }
.abiq-folder:hover { background: rgba(0,0,0,0.05); }
.abiq-folder__ic svg, .abiq-folder > svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.5); }
.abiq-folder__ic { display: inline-flex; }

.abiq-topic { align-self: center; flex: 0 0 auto; width: auto; display: inline-flex; flex-direction: row; align-items: center; flex-wrap: nowrap; white-space: nowrap; gap: 4px; height: 40px; padding: 0 20px; border: 1px solid rgba(0,0,0,0.08); background: #fff; border-radius: 32px; color: rgba(0,0,0,0.72); font-family: inherit; font-size: 14px; line-height: 22px; cursor: pointer; box-shadow: 0 1px 2px rgba(0,0,0,0.03); transition: box-shadow 0.15s, border-color 0.15s, color 0.15s; }
.abiq-topic span { white-space: nowrap; }
.abiq-topic:hover { border-color: rgba(43,92,246,0.35); color: rgba(0,0,0,0.88); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.abiq-topic svg { width: 16px; height: 16px; display: block; flex-shrink: 0; color: rgba(0,0,0,0.45); }

.abiq-disclaimer { flex-shrink: 0; text-align: center; padding: 0 0 18px; font-size: 12px; line-height: 18px; color: rgba(0,0,0,0.28); }

.ceopg { padding: 40px 40px 56px; max-width: 1280px; margin: 0 auto; box-sizing: border-box; }
.ceopg-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.ceopg-title { font-size: 20px; font-weight: 600; color: #060606; line-height: 30px; }
.ceopg-sub { margin-top: 6px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 22px; }
.ceopg-seg { display: flex; gap: 4px; padding: 4px; border-radius: 20px; background: rgba(0,0,0,0.03); flex-shrink: 0; }
.ceopg-seg__btn { height: 32px; padding: 0 16px; border: 0; border-radius: 16px; background: transparent; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.ceopg-seg__btn.is-active { background: #fff; color: rgba(0,0,0,0.94); font-weight: 600; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }
.ceopg-sectitle { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; margin: 4px 0 16px; }

/* 外部洞察专家 · 2x2 卡片 */
.ceoin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ceoin-card { border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 16px; }
.ceoin-tag { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; border-radius: 14px; font-size: 13px; font-weight: 500; width: fit-content; }
.ceoin-tag__ic { display: inline-flex; }
.ceoin-tag__ic svg { width: 16px; height: 16px; display: block; }
.ceoin-headline { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 26px; }
.ceoin-stats { display: flex; gap: 12px; }
.ceoin-stat { flex: 1; min-width: 0; }
.ceoin-stat__l { font-size: 12px; color: rgba(0,0,0,0.46); line-height: 18px; margin-bottom: 6px; }
.ceoin-stat__v { font-size: 22px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 1.1; }
.ceoin-stat__u { font-size: 13px; font-weight: 400; color: rgba(0,0,0,0.64); margin-left: 2px; }
.ceoin-boxes { display: flex; gap: 12px; }
.ceoin-box { flex: 1; min-width: 0; border-radius: 12px; padding: 12px 14px; }
.ceoin-box__h { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.ceoin-box__h svg { width: 16px; height: 16px; display: block; }
.ceoin-box__t { font-size: 13px; color: rgba(0,0,0,0.64); line-height: 20px; }
.ceoin-box--advice { background: linear-gradient(135deg, rgba(73,93,255,0.05), rgba(73,93,255,0.1)); }
.ceoin-box--advice .ceoin-box__h { color: #495DFF; }
.ceoin-box--window { background: linear-gradient(135deg, rgba(255,178,0,0.06), rgba(255,178,0,0.12)); }
.ceoin-box--window .ceoin-box__h { color: #E28800; }
.ceoin-foot { font-size: 12px; color: rgba(0,0,0,0.4); }
@media (max-width: 1080px) { .ceoin-grid { grid-template-columns: 1fr; } }

/* 关键客户 */
.ceocl-metrics { display: flex; gap: 16px; margin-bottom: 28px; }
.ceocl-metric { flex: 1; min-width: 0; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; background: #fff; }
.ceocl-metric__h { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.64); }
.ceocl-metric__h svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.4); }
.ceocl-metric__v { font-size: 28px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 1; }
.ceocl-metric__u { font-size: 14px; font-weight: 400; color: rgba(0,0,0,0.64); margin-left: 6px; }
.ceocl-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; }
.ceocl-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ceocl-tab { height: 32px; padding: 0 16px; display: inline-flex; align-items: center; border-radius: 16px; border: 0; background: #fff; color: rgba(0,0,0,0.64); font-family: inherit; font-size: 14px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.ceocl-tab.is-active { background: rgba(0,0,0,0.04); color: rgba(0,0,0,0.82); font-weight: 600; }
.ceocl-sort { display: inline-flex; align-items: center; gap: 4px; height: 34px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.08); border-radius: 999px; background: #fff; color: rgba(0,0,0,0.82); font-family: inherit; font-size: 14px; cursor: pointer; flex-shrink: 0; }
.ceocl-sort svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.4); }
.ceocl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ceocl-card { border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 16px 24px; background: #fff; cursor: pointer; transition: box-shadow 0.15s; }
.ceocl-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.ceocl-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.ceocl-card__name { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.ceocl-card__cat { font-size: 14px; color: rgba(0,0,0,0.64); line-height: 20px; margin-top: 2px; }
.ceocl-tier { flex-shrink: 0; display: inline-flex; align-items: center; height: 24px; padding: 1px 10px; border-radius: 12px; font-size: 12px; font-weight: 500; }
.ceocl-amt { margin: 14px 0; }
.ceocl-amt__label { font-size: 12px; color: rgba(0,0,0,0.46); }
.ceocl-amt__row { display: flex; align-items: flex-end; gap: 6px; margin-top: 4px; }
.ceocl-amt__v { font-size: 28px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 1; }
.ceocl-amt__u { font-size: 14px; color: rgba(0,0,0,0.64); }
.ceocl-kpis { display: flex; gap: 12px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 12px; }
.ceocl-kpi { flex: 1; }
.ceocl-kpi__l { font-size: 12px; color: rgba(0,0,0,0.46); }
.ceocl-kpi__v { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.94); margin-top: 2px; }
@media (max-width: 1180px) { .ceocl-grid { grid-template-columns: repeat(2, 1fr); } .ceocl-metrics { flex-wrap: wrap; } }
@media (max-width: 780px) { .ceocl-grid { grid-template-columns: 1fr; } }

/* 灵基日记 */
.ceodi { display: flex; gap: 24px; align-items: flex-start; }
.ceodi-left { flex: 1; min-width: 0; }
.ceodi-right { width: 420px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; }
.ceodi-daypart { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.94); margin: 8px 0 12px; }
.ceodi-tl { margin-bottom: 8px; }
.ceodi-item { display: flex; gap: 16px; padding-bottom: 16px; }
.ceodi-item__time { width: 44px; flex-shrink: 0; text-align: right; font-size: 14px; color: rgba(0,0,0,0.94); padding-top: 2px; }
.ceodi-item__rail { position: relative; width: 10px; flex-shrink: 0; display: flex; justify-content: center; }
.ceodi-dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2px solid rgba(0,0,0,0.28); margin-top: 5px; z-index: 1; }
.ceodi-item__rail::before { content: ""; position: absolute; top: 5px; bottom: -16px; width: 2px; background: rgba(0,0,0,0.06); left: 50%; transform: translateX(-50%); }
.ceodi-item:last-child .ceodi-item__rail::before { display: none; }
.ceodi-card { flex: 1; min-width: 0; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 16px; background: #fff; cursor: pointer; transition: box-shadow 0.15s; }
.ceodi-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.ceodi-badge { display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 999px; font-size: 12px; font-weight: 500; margin-bottom: 8px; }
.ceodi-card__title { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.ceodi-card__note { margin-top: 8px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 20px; background: rgba(0,0,0,0.03); border-radius: 8px; padding: 8px 12px; }
.ceodi-card__minutes { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 12px; color: rgba(0,0,0,0.46); background: rgba(0,0,0,0.03); border-radius: 8px; padding: 4px 8px; }
.ceodi-card__minutes svg { width: 14px; height: 14px; display: block; }
.ceodi-panel { border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; overflow: hidden; background: #fff; }
.ceodi-panel__head { padding: 12px 24px; background: rgba(0,0,0,0.02); font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); }
.ceodi-panel__body { padding: 20px 24px; }
.ceodi-stats { display: flex; justify-content: space-between; margin-bottom: 20px; }
.ceodi-stat { text-align: center; flex: 1; }
.ceodi-stat__l { font-size: 12px; color: rgba(0,0,0,0.64); margin-top: 2px; }
.ceodi-stat__v { font-size: 28px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 1.2; }
.ceodi-summary { font-size: 14px; color: rgba(0,0,0,0.82); line-height: 24px; white-space: pre-line; }
.ceodi-follow { display: flex; flex-direction: column; gap: 12px; }
.ceodi-follow__item { border-radius: 16px; background: rgba(0,0,0,0.02); padding: 12px; }
.ceodi-follow__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ceodi-follow__title { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.82); }
.ceodi-follow__ignore { border: 0; background: transparent; color: rgba(0,0,0,0.46); font-family: inherit; font-size: 14px; cursor: pointer; padding: 2px 6px; border-radius: 6px; }
.ceodi-follow__ignore:hover { background: rgba(0,0,0,0.05); }
.ceodi-follow__desc { margin-top: 4px; font-size: 14px; color: rgba(0,0,0,0.46); line-height: 22px; }
@media (max-width: 1180px) { .ceodi { flex-direction: column; } .ceodi-right { width: auto; } }

/* 日程助理 */
.ceosc { display: flex; gap: 24px; align-items: flex-start; }
.ceosc-left { flex: 1; min-width: 0; }
.ceosc-right { width: 460px; flex-shrink: 0; }
.ceosc-sumline { font-size: 14px; color: rgba(0,0,0,0.64); margin: -12px 0 20px; }
.ceosc-sumline b { color: rgba(0,0,0,0.82); font-weight: 600; }
.ceosc-date { font-size: 14px; font-weight: 600; color: rgba(0,0,0,0.94); margin: 12px 0; }
.ceosc-item { display: flex; gap: 16px; padding-bottom: 16px; }
.ceosc-item__time { width: 48px; flex-shrink: 0; text-align: right; font-size: 14px; color: rgba(0,0,0,0.94); padding-top: 2px; }
.ceosc-item__rail { position: relative; width: 10px; flex-shrink: 0; display: flex; justify-content: center; }
.ceosc-dot { width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2px solid rgba(0,0,0,0.28); margin-top: 5px; z-index: 1; }
.ceosc-item__rail::before { content: ""; position: absolute; top: 5px; bottom: -16px; width: 2px; background: rgba(0,0,0,0.06); left: 50%; transform: translateX(-50%); }
.ceosc-item:last-child .ceosc-item__rail::before { display: none; }
.ceosc-card { flex: 1; min-width: 0; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 16px; background: #fff; cursor: pointer; transition: box-shadow 0.15s; }
.ceosc-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.05); }
.ceosc-card--active { border-color: #495DFF; background: linear-gradient(136deg, rgba(255,255,255,0) 0%, rgba(41,112,255,0.04) 100%); }
.ceosc-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ceosc-status { display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 999px; font-size: 12px; }
.ceosc-status--todo { background: rgba(0,0,0,0.05); color: rgba(0,0,0,0.64); }
.ceosc-status--doing { background: #F3F5FF; color: #495DFF; }
.ceosc-time { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(0,0,0,0.64); }
.ceosc-time svg { width: 16px; height: 16px; display: block; }
.ceosc-card__title { font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); }
.ceosc-type { display: inline-flex; align-items: center; height: 24px; padding: 1px 8px; border-radius: 12px; font-size: 12px; margin-left: 8px; vertical-align: middle; }
.ceosc-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 14px; color: rgba(0,0,0,0.64); flex-wrap: wrap; }
.ceosc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.ceosc-meta svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.4); }
.ceosc-detail { border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; overflow: hidden; background: #fff; }
.ceosc-detail__head { padding: 12px 24px; background: rgba(0,0,0,0.02); font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); }
.ceosc-detail__body { padding: 20px 24px; }
.ceosc-dtitle { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); margin-bottom: 16px; line-height: 24px; }
.ceosc-dlist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.ceosc-drow { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(0,0,0,0.46); }
.ceosc-drow svg { width: 16px; height: 16px; display: block; color: rgba(0,0,0,0.4); flex-shrink: 0; }
.ceosc-drow b { color: rgba(0,0,0,0.82); font-weight: 500; }
.ceosc-insight { border-radius: 16px; padding: 16px; background: linear-gradient(-45deg, #fefaff 1%, #f5f9ff 100%); }
.ceosc-insight__h { display: flex; align-items: center; gap: 6px; color: #495DFF; font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.ceosc-insight__h svg { width: 18px; height: 18px; display: block; }
.ceosc-ins-grp { margin-bottom: 14px; }
.ceosc-ins-grp:last-child { margin-bottom: 0; }
.ceosc-ins-grp__t { font-size: 14px; font-weight: 500; color: rgba(0,0,0,0.94); margin-bottom: 4px; }
.ceosc-ins-grp__c { font-size: 14px; color: rgba(0,0,0,0.64); line-height: 24px; white-space: pre-line; }
.ceosc-sectitle { font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); margin: 20px 0 12px; }
.ceosc-file { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; padding: 12px 16px; margin-bottom: 12px; box-shadow: 0 3px 6px rgba(0,0,0,0.04); }
.ceosc-file__badge { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 8px; font-weight: 700; flex-shrink: 0; }
.ceosc-file__t { flex: 1; min-width: 0; font-size: 14px; color: rgba(0,0,0,0.82); }
.ceosc-file__dl { display: inline-flex; color: rgba(0,0,0,0.4); }
.ceosc-file__dl svg { width: 16px; height: 16px; display: block; }
@media (max-width: 1240px) { .ceosc { flex-direction: column; } .ceosc-right { width: auto; } }

/* ============================================================
   CFO 办公室 · CFO 助理（对话 + 财务看板双栏）
   ============================================================ */
.cfa { display: flex; height: 100%; min-height: 0; }
/* 左侧对话列 */
.cfa-chat { width: 548px; flex-shrink: 0; box-sizing: border-box; display: flex; flex-direction: column; min-height: 0; border-right: 1px solid rgba(0,0,0,0.06); }
.cfa-chat__scroll { flex: 1; min-height: 0; overflow-y: auto; padding: 40px 24px 8px; }
.cfa-chat__foot { flex-shrink: 0; padding: 8px 24px 12px; background: #fff; }
.cfa-chat__head { margin-bottom: 20px; }
.cfa-chat__title { font-size: 20px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 30px; }
.cfa-chat__sub { margin-top: 2px; font-size: 14px; color: rgba(0,0,0,0.46); line-height: 24px; }
.cfa-msg { border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 20px; margin-bottom: 16px; }
.cfa-msg__top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.cfa-msg__q { flex: 1; min-width: 0; font-size: 16px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 24px; }
.cfa-msg__time { flex-shrink: 0; display: inline-flex; align-items: center; gap: 4px; height: 24px; padding: 2px 6px; border-radius: 8px; background: rgba(0,0,0,0.03); font-size: 12px; color: rgba(0,0,0,0.46); }
.cfa-msg__time svg { width: 14px; height: 14px; display: block; }
.cfa-msg__body { font-size: 14px; color: rgba(0,0,0,0.82); line-height: 28px; }
.cfa-msg__body b { color: rgba(0,0,0,0.94); font-weight: 600; }
.cfa-sys-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.cfa-sys { display: flex; align-items: center; gap: 4px; padding: 16px; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; background: #fff; cursor: pointer; transition: box-shadow 0.15s; }
.cfa-sys:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.cfa-sys__info { flex: 1; min-width: 0; }
.cfa-sys__name { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; }
.cfa-sys__desc { margin-top: 2px; font-size: 14px; color: rgba(0,0,0,0.64); line-height: 22px; }
.cfa-tag-urgent { display: inline-flex; align-items: center; height: 24px; padding: 1px 8px; border-radius: 12px; background: rgba(255,85,34,0.08); color: #FF5522; font-size: 12px; font-weight: 400; }
.cfa-sys__num { flex-shrink: 0; text-align: right; }
.cfa-sys__num b { font-size: 24px; font-weight: 600; line-height: 28px; }
.cfa-sys__num span { display: block; font-size: 12px; color: rgba(0,0,0,0.64); }
.cfa-composer { box-sizing: border-box; padding: 16px 10px 10px; border: 1px solid rgba(0,0,0,0.06); border-radius: 28px; box-shadow: 0 6px 12px rgba(0,0,0,0.03); background: #fff; }
.cfa-composer__input { padding: 0 10px; font-size: 14px; line-height: 24px; color: rgba(0,0,0,0.28); }
.cfa-composer__bar { display: flex; align-items: center; margin-top: 8px; }
.cfa-composer__spacer { flex: 1; }
.cfa-disclaimer { margin: 12px 0 8px; text-align: center; font-size: 12px; color: rgba(0,0,0,0.28); }
/* 右侧看板 */
.cfa-dash { flex: 1; min-width: 0; min-height: 0; overflow-y: auto; }
.cfa-dash__inner { padding: 40px 24px 48px; display: flex; flex-direction: column; gap: 24px; }
.cfa-sec { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cfa-sec__title { font-size: 20px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 30px; }
.cfa-pill { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border: 1px solid rgba(0,0,0,0.08); border-radius: 999px; font-size: 12px; color: rgba(0,0,0,0.64); }
.cfa-stats { display: flex; gap: 12px; padding: 12px; background: rgba(0,0,0,0.02); border-radius: 24px; }
.cfa-stat { flex: 1; min-width: 0; padding: 8px 12px; }
.cfa-stat__l { font-size: 12px; color: rgba(0,0,0,0.64); }
.cfa-stat__v { margin: 6px 0 8px; font-size: 24px; font-weight: 600; color: rgba(0,0,0,0.94); line-height: 40px; }
.cfa-deltas { display: flex; gap: 8px; flex-wrap: wrap; }
.cfa-delta { font-size: 12px; }
.cfa-delta.is-up { color: #04B545; }
.cfa-delta.is-down { color: #F12234; }
.cfa-two { display: flex; gap: 24px; align-items: stretch; }
.cfa-two > .cfa-card { flex: 1; min-width: 0; }
.cfa-card { border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 16px 24px; background: #fff; }
.cfa-card__title { display: flex; align-items: baseline; gap: 8px; font-size: 16px; font-weight: 500; color: rgba(0,0,0,0.94); line-height: 24px; margin-bottom: 12px; }
.cfa-card__title span { font-size: 12px; font-weight: 400; color: rgba(0,0,0,0.46); }
.cfa-legend { display: flex; gap: 16px; margin-bottom: 12px; }
.cfa-lg { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(0,0,0,0.64); }
.cfa-lg::before { content: ""; width: 10px; height: 10px; border-radius: 3px; }
.cfa-lg--rev::before { background: #599CFF; }
.cfa-lg--prof::before { background: #74D70B; }
.cfa-lg--line::before { background: #FF7700; border-radius: 50%; width: 8px; height: 8px; }
.cfa-lg--bal::before { background: #599CFF; }
.cfa-lg--warn::before { background: #FF293B; }
.cfa-chart { position: relative; height: 180px; }
.cfa-chart__bars { display: flex; align-items: flex-end; justify-content: space-around; gap: 8px; height: 100%; padding-bottom: 22px; box-sizing: border-box; }
.cfa-bargrp { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; height: 100%; justify-content: flex-end; }
.cfa-bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.cfa-bar { width: 16px; border-radius: 4px 4px 0 0; }
.cfa-bar--rev { background: linear-gradient(180deg,#7EB2FF,#599CFF); }
.cfa-bar--prof { background: linear-gradient(180deg,#9EE85A,#74D70B); }
.cfa-bar__x { font-size: 12px; color: rgba(0,0,0,0.46); }
.cfa-chart__line { position: absolute; inset: 0 0 22px 0; width: 100%; height: calc(100% - 22px); pointer-events: none; }
.cfa-solv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cfa-solv { background: rgba(0,0,0,0.02); border-radius: 16px; padding: 14px 16px; }
.cfa-solv__l { font-size: 12px; color: rgba(0,0,0,0.64); }
.cfa-solv__v { margin: 4px 0 6px; font-size: 20px; font-weight: 500; color: rgba(0,0,0,0.94); }
.cfa-bank { display: flex; align-items: center; gap: 16px; }
.cfa-bank__v { font-size: 24px; font-weight: 600; color: rgba(0,0,0,0.94); }
.cfa-linechart { position: relative; }
.cfa-linechart svg { width: 100%; height: 170px; display: block; }
.cfa-safeline { position: absolute; right: 0; top: 78px; font-size: 12px; color: #FF293B; }
.cfa-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.cfa-row:last-child { border-bottom: 0; }
.cfa-row__l { display: flex; align-items: center; gap: 8px; min-width: 0; }
.cfa-row__name { font-size: 14px; color: rgba(0,0,0,0.82); }
.cfa-tag-overdue { flex-shrink: 0; display: inline-flex; align-items: center; height: 24px; padding: 0 8px; border-radius: 12px; background: rgba(255,41,59,0.08); color: #FF293B; font-size: 12px; }
.cfa-row__r { flex-shrink: 0; text-align: right; }
.cfa-row__amt { font-size: 14px; color: rgba(0,0,0,0.82); }
.cfa-row__due { margin-left: 16px; font-size: 14px; color: rgba(0,0,0,0.46); }
.cfa-aging { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cfa-aging__l { width: 64px; flex-shrink: 0; font-size: 14px; color: rgba(0,0,0,0.64); }
.cfa-aging__track { flex: 1; height: 12px; border-radius: 999px; background: rgba(0,0,0,0.04); overflow: hidden; }
.cfa-aging__fill { display: block; height: 100%; border-radius: 999px; }
.cfa-aging__amt { flex-shrink: 0; display: flex; align-items: center; gap: 16px; font-size: 14px; color: rgba(0,0,0,0.82); }
.cfa-aging__amt span { color: rgba(0,0,0,0.46); }
/* CFO助理：看板已拆到侧栏（经营绩效 / 资金动态），助理页只剩对话列 → 居中铺满 */
.cfa--solo { justify-content: center; }
.cfa--solo .cfa-chat { width: 100%; max-width: 880px; border-right: 0; }
/* 经营绩效 / 资金动态：独立内容页（复用看板卡片样式） */
.cfa-page { box-sizing: border-box; padding: 40px 24px 48px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 1280px) { .cfa-chat { width: 440px; } .cfa--solo .cfa-chat { width: 100%; } }
@media (max-width: 1080px) { .cfa { flex-direction: column; overflow-y: auto; } .cfa-chat { width: auto; border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.06); } .cfa--solo .cfa-chat { border-bottom: 0; } .cfa-two { flex-direction: column; } }
  
