@import url("/shared/platform-logos.css?v=20260603icon");

:root {
  --bg: #f4faf8;
  --line: #d8ebe7;
  --line-soft: #e8ecf4;
  --text: #0f1720;
  --muted: #5c6f78;
  --max: 1280px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 6% -8%, rgba(148, 163, 184, 0.08), transparent 55%),
    radial-gradient(820px 480px at 98% 0%, rgba(100, 116, 139, 0.06), transparent 50%),
    linear-gradient(180deg, #fcfffe 0%, var(--bg) 32%, #ecf5f3 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(8px); background: rgba(255, 255, 255, 0.92); border-bottom: 1px solid var(--line-soft); }
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: #2f3858; }
.brand-dot { width: 8px; height: 8px; border-radius: 999px; background: #8b5cf6; box-shadow: 0 0 12px rgba(139, 92, 246, 0.45); }
.brand-logo { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; display: none; }
.brand-logo.has-logo { display: inline-block; }
.menu { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; }
.menu-item { position: relative; }
.menu-item::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
.menu-toggle { border: 1px solid transparent; border-radius: 10px; background: transparent; color: inherit; padding: 8px 12px; cursor: pointer; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.menu-toggle:hover, .menu-item.open .menu-toggle { border-color: #ddd6fe; color: #6d28d9; background: #f8fafc; }
.caret { font-size: 11px; transition: transform .2s ease; }
.menu-item.open .caret { transform: rotate(180deg); }
.submenu { display: none; list-style: none; margin: 8px 0 0; padding: 8px; min-width: 172px; position: absolute; left: 0; top: 100%; border: 1px solid var(--line-soft); border-radius: 12px; background: #ffffff; box-shadow: 0 12px 40px rgba(91, 33, 182, 0.08); z-index: 60; }
.menu-item.open .submenu { display: block; }
.submenu a { display: block; padding: 8px 10px; border-radius: 8px; color: #586083; white-space: nowrap; font-size: 13px; }
.submenu a:hover { background: #f8fafc; color: #6d28d9; }
.user-actions { display: inline-flex; align-items: center; gap: 10px; }
.btn { height: 36px; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; color: #6d28d9; font-size: 13px; background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%); cursor: pointer; }
.user-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(20, 240, 255, 0.32);
  border-radius: 10px;
  background: rgba(9, 24, 42, 0.82);
  color: #dff8ff;
  font-size: 13px;
  text-decoration: none;
  box-sizing: border-box;
}
.logout-btn { border: 1px solid rgba(20, 240, 255, 0.32); border-radius: 10px; background: rgba(9, 24, 42, 0.82); color: #dff8ff; height: 34px; padding: 0 12px; cursor: pointer; font-size: 13px; font-family: inherit; }
main { padding: 22px 0 40px; }
.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 20, 41, .76);
  padding: 22px 24px;
}
.hero-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(72, 43, 15, .35), rgba(7, 18, 34, .72));
  padding: 26px 28px 28px;
  margin-bottom: 16px;
}
.hero-panel h1 { margin: 0 0 12px; font-size: 30px; line-height: 1.2; }
.hero-panel p { margin: 0; color: #cbe4f2; line-height: 1.65; max-width: 72ch; }
.hero-meta { margin-top: 10px; color: var(--muted); font-size: 12px; }
.kpi-grid {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 25, 46, .72);
  padding: 16px 18px 18px;
}
.kpi .k { color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.kpi .v { font-size: 22px; font-weight: 700; color: #e8f8ff; }
.section-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.stack { display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.stack > .blk:only-child { flex: 1 1 auto; }
aside.stack > .blk:first-child { flex: 1 1 auto; }
.blk {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 25, 46, .72);
  padding: 22px 24px 24px;
}
.blk h3 { margin: 0 0 14px; font-size: 17px; letter-spacing: 0.02em; }
.blk strong { display: block; margin-bottom: 8px; }
.blk p { margin: 0 0 12px; color: #b8d7e8; line-height: 1.75; }
.muted { color: var(--muted); font-size: 12px; }
.list { margin: 0; padding-left: 22px; }
.list li { margin: 10px 0; line-height: 1.65; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid rgba(20, 240, 255, .45);
  border-radius: 999px;
  color: #9eeefe;
  background: rgba(20, 240, 255, .12);
  padding: 4px 9px;
  font-size: 12px;
}
.timeline { margin: 0; padding-left: 16px; border-left: 1px solid var(--line); }
.timeline li { margin: 8px 0; color: #c7e3f1; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mini-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 25, 46, .72);
  padding: 18px 20px 20px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
}
.mini-card strong { display: block; margin-bottom: 8px; font-size: 15px; }
.mini-card p { margin: 0; color: #b8d7e8; line-height: 1.65; flex: 1 1 auto; }
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .menu { display: none; }
  .hero-panel h1 { font-size: 24px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .section-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ========== 爆款选题（浅色 + 薄荷绿，与流程页统一） ========== */
.tl-page {
  --tl-accent: #8b5cf6;
  --tl-accent-dim: rgba(139, 92, 246, 0.25);
  color: #0f1720;
}
.tl-upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .tl-upload-row { grid-template-columns: 1fr; }
}
.tl-upload-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(91, 33, 182, 0.2);
  background: #fafdfd;
  cursor: default;
}
.tl-upload-ico { font-size: 22px; flex-shrink: 0; }
.tl-upload-card strong { display: block; font-size: 14px; margin-bottom: 4px; color: #1e293b; }
.tl-upload-card p { margin: 0; font-size: 12px; color: #64748b; line-height: 1.5; }
.tl-upload-pill {
  margin-left: auto;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--tl-accent-dim);
  color: var(--tl-accent);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.tl-upload-pill input.tl-hidden-file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  width: 100%;
  height: 100%;
}
.tl-upload-card.tl-upload-card-stack {
  flex-wrap: wrap;
  align-items: flex-start;
}
.tl-upload-card-stack .tl-upload-head {
  flex: 1 1 140px;
  min-width: 0;
}
.tl-upload-card-stack .tl-upload-pill {
  margin-left: 0;
}
.tl-upload-ta {
  flex: 1 1 100%;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(91, 33, 182, 0.18);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  min-height: 72px;
  background: #fff;
  color: #0f1720;
}
.tl-gen-main:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  filter: none;
}
.tl-gen-main {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 55%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.26);
}
.tl-gen-main:hover {
  filter: brightness(1.06);
}
.tl-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
@media (max-width: 1100px) {
  .tl-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .tl-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tl-cat-card {
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  border-radius: 12px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(91, 33, 182, 0.12);
  background: #fafdfd;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 118px;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.tl-cat-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
}
.tl-cat-card.active {
  border-color: transparent;
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.2);
}
.tl-cat-ico { font-size: 18px; }
.tl-cat-title { font-weight: 700; font-size: 13px; color: #1e293b; }
.tl-cat-desc { font-size: 11px; color: #64748b; line-height: 1.45; flex: 1 1 auto; }
.tl-cat-count { font-size: 11px; color: #6d28d9; margin-top: 4px; font-weight: 600; }
.tl-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(91, 33, 182, 0.12);
  background: #fafdfd;
  margin-bottom: 12px;
}
.tl-search-ico { opacity: 0.65; }
.tl-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #0f1720;
  font-size: 14px;
}
.tl-search-input::placeholder {
  color: #94a3b8;
}
.tl-list-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}
.tl-muted {
  font-weight: 400;
  color: #64748b;
  font-size: 12px;
}
.tl-muted strong {
  color: #6d28d9;
}
.tl-list {
  border-radius: 12px;
  border: 1px solid rgba(91, 33, 182, 0.12);
  overflow: hidden;
  background: #fff;
}
.tl-row-wrap {
  border-bottom: 1px solid rgba(91, 33, 182, 0.08);
}
.tl-row-wrap:last-child {
  border-bottom: 0;
}
.tl-row-wrap.expanded {
  background: linear-gradient(180deg, rgba(250, 248, 255, 0.95) 0%, rgba(248, 250, 252, 0.85) 100%);
}
.tl-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 0;
}
.tl-row-wrap.expanded > .tl-row {
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}
.tl-row-num {
  flex: 0 0 auto;
  width: 26px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--tl-accent);
  padding-top: 2px;
}
.tl-row-main {
  flex: 1 1 auto;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  padding-right: 22px;
}
.tl-row-main:hover .tl-row-title {
  color: #6d28d9;
}
.tl-row-chevron {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.15s ease;
  pointer-events: none;
}
.tl-row-wrap.expanded .tl-row-chevron {
  transform: rotate(180deg);
  color: #6d28d9;
}
.tl-row-detail-panel {
  overflow: hidden;
}
.tl-row-detail-panel[hidden] {
  display: none !important;
}
.tl-detail-panel-inner {
  margin: 0 14px 14px 52px;
  padding: 16px 18px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  color: #0f1720;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.07);
}
.tl-row-title {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  color: #0f1720;
}
.tl-row-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.tl-plat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tl-plat-ico { font-size: 13px; }
.tl-dot { opacity: 0.45; }
.tl-stars {
  margin-left: 6px;
  letter-spacing: 1px;
  color: #e6c35c;
  font-size: 11px;
}
.tl-row-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 4px;
  padding-top: 2px;
  position: relative;
  z-index: 2;
}
.tl-ico-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: #f5f3ff;
  color: #6d28d9;
  -webkit-text-fill-color: currentColor;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(91, 33, 182, 0.08);
}
.tl-ico-btn .tl-ico-svg {
  display: block;
  flex-shrink: 0;
}
.tl-ico-btn-copy {
  color: #6d28d9;
  background: #ede9fe;
  border-color: rgba(124, 58, 237, 0.42);
}
.tl-ico-btn-fav {
  color: #94a3b8;
  background: #fff;
  border-color: rgba(100, 116, 139, 0.35);
}
.tl-ico-btn-fav .tl-ico-svg {
  fill: none;
}
.tl-ico-btn-fav.on {
  color: #ca8a04;
  background: #fef9c3;
  border-color: rgba(234, 179, 8, 0.5);
}
.tl-ico-btn-fav.on .tl-ico-svg {
  fill: currentColor;
}
.tl-ico-btn:hover {
  border-color: rgba(139, 92, 246, 0.55);
  color: #5b21b6;
  background: #ddd6fe;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.18);
}
.tl-ico-btn-fav:hover {
  color: #ca8a04;
  background: #fef9c3;
  border-color: rgba(234, 179, 8, 0.45);
}
.tl-ico-btn-copy:hover {
  color: #5b21b6;
  background: #ddd6fe;
  border-color: rgba(139, 92, 246, 0.55);
}
.tl-ico-btn.on {
  color: #e11d48;
  border-color: rgba(225, 29, 72, 0.4);
  background: #fff1f2;
}
.tl-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: min(92vw, 420px);
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.tl-toast.tl-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.tl-foot-hint {
  margin: 14px 0 0;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
}
.tl-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.tl-detail-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.14);
  color: #6d28d9;
  font-weight: 600;
}
.tl-detail-stars {
  color: #fbbf24;
  letter-spacing: 1px;
}
.tl-detail-sec {
  margin-bottom: 14px;
}
.tl-detail-sec h4 {
  margin: 0 0 6px;
  font-size: 12px;
  color: #6d28d9;
  font-weight: 700;
}
.tl-detail-sec p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}
.tl-detail-title-text {
  font-weight: 650;
  color: #0f1720;
}
.tl-detail-shoot {
  padding: 14px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(91, 33, 182, 0.1);
}
.tl-detail-dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.tl-detail-dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  align-items: start;
}
.tl-detail-dl dt {
  margin: 0;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
}
.tl-detail-dl dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #1e293b;
}
.tl-detail-comments {
  display: grid;
  gap: 8px;
}
.tl-detail-comment {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(91, 33, 182, 0.08);
}
.tl-detail-comment-user {
  display: block;
  font-size: 11px;
  color: #6d28d9;
  font-weight: 700;
  margin-bottom: 4px;
}
.tl-detail-comment p {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}
.tl-detail-foot {
  padding: 12px 0 0;
  margin-top: 4px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}
@media (max-width: 640px) {
  .tl-detail-panel-inner {
    margin-left: 14px;
    margin-right: 10px;
  }
}
.tl-detail-gen-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 55%, #7c3aed 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
}
.tl-detail-gen-copy:hover,
.tl-detail-gen-copy:focus-visible {
  filter: brightness(1.06);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-bottom: none !important;
}

/* ========== 浅色壳：流程与项目子页（蓝紫强调色 · 浅灰底） ========== */
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) {
  --text: #1a2b36;
  --muted: #5a7384;
  color: var(--text);
  background:
    radial-gradient(620px 300px at 53% 0%, rgba(154, 116, 255, 0.18), transparent 64%),
    radial-gradient(520px 300px at 6% 18%, rgba(98, 157, 255, 0.12), transparent 68%),
    linear-gradient(180deg, #fbfaff 0%, #f8fbff 100%);
  background-size: auto;
}
body[data-page-subtitle="账号包装方案"] > main.container,
body[data-page-subtitle="执行计划"] > main.container,
body[data-page-subtitle="语音对话"] > main.container,
body[data-page-subtitle="AI视频"] > main.container,
body[data-page-subtitle="爆款选题"] > main.container,
body[data-page-subtitle="使用说明"] > main.container {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}
body[data-page-subtitle="账号包装方案"] .topbar .container,
body[data-page-subtitle="执行计划"] .topbar .container,
body[data-page-subtitle="语音对话"] .topbar .container,
body[data-page-subtitle="AI视频"] .topbar .container,
body[data-page-subtitle="爆款选题"] .topbar .container,
body[data-page-subtitle="使用说明"] .topbar .container {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body[data-page-subtitle="账号包装方案"] > main.container,
  body[data-page-subtitle="执行计划"] > main.container,
  body[data-page-subtitle="语音对话"] > main.container,
  body[data-page-subtitle="AI视频"] > main.container,
  body[data-page-subtitle="爆款选题"] > main.container,
  body[data-page-subtitle="使用说明"] > main.container,
  body[data-page-subtitle="账号包装方案"] .topbar .container,
  body[data-page-subtitle="执行计划"] .topbar .container,
  body[data-page-subtitle="语音对话"] .topbar .container,
  body[data-page-subtitle="AI视频"] .topbar .container,
  body[data-page-subtitle="爆款选题"] .topbar .container,
  body[data-page-subtitle="使用说明"] .topbar .container {
    width: calc(100% - 32px);
  }
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .topbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  backdrop-filter: blur(10px);
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .brand {
  color: #12323a;
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .menu {
  color: #4a6570;
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .menu-toggle:hover,
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .menu-item.open .menu-toggle {
  border-color: rgba(124, 58, 237, 0.28);
  color: #5b21b6;
  background: rgba(139, 92, 246, 0.08);
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .submenu {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 14px 36px rgba(91, 33, 182, 0.08);
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .submenu a {
  color: #2c4a52;
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .submenu a:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #5b21b6;
}
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .btn,
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .user-link,
:is(
  body[data-page-subtitle="账号包装方案"],
  body[data-page-subtitle="我的IP方案"],
  body[data-page-subtitle="执行计划"],
  body[data-page-subtitle="爆款选题"],
  body[data-page-subtitle="历史记录"],
  body[data-page-subtitle="使用说明"],
  body[data-page-subtitle="IP诊断"],
  body[data-page-subtitle="深度学习"]
) .logout-btn {
  border-color: rgba(124, 58, 237, 0.22);
  background: #fff;
  color: #5b21b6;
}

.panel:has(.pkg-page),
.panel:has(.exec-page),
.panel:has(.tl-page) {
  padding: 22px 24px 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.panel:has(.tl-page) {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 18px 48px rgba(91, 33, 182, 0.05);
}
.panel:has(.ipp-page) {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.pkg-page {
  --pkg-mint: #8b5cf6;
  --pkg-mint-dark: #6d28d9;
  --pkg-ink: #17152f;
  --pkg-sub: #6f6b86;
  --pkg-line: rgba(139, 92, 246, 0.16);
  --pkg-card: #ffffff;
  color: var(--pkg-ink);
  max-width: 1280px;
  margin: 0 auto;
}
body[data-page-subtitle="账号包装方案"] .panel:has(.pkg-page) {
  margin: 10px auto 28px;
  padding: 28px 0 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.flow-main .pkg-page {
  padding: 26px 28px 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.flow-main .pkg-page::before {
  content: none;
}
.pkg-step-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--pkg-sub);
}
.pkg-step-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6d28d9;
  background: #ffffff;
  border: 1px solid #ddd6fe;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.12);
}
.pkg-step-crumb {
  font-weight: 800;
  color: #272246;
}
.pkg-title {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pkg-ink);
}
.pkg-title-ico {
  font-size: 36px;
  line-height: 1;
}
.pkg-desc {
  margin: 0 0 10px;
  color: var(--pkg-sub);
  line-height: 1.9;
  font-size: 14px;
  max-width: 780px;
}
.pkg-desc strong {
  color: var(--pkg-mint-dark);
  font-weight: 700;
}
.pkg-ind {
  color: var(--pkg-mint-dark);
  font-weight: 700;
}
.pkg-ind-muted {
  color: var(--pkg-sub);
  font-weight: 600;
}
.pkg-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2c3d44;
}
.pkg-label.sm {
  font-size: 12px;
  font-weight: 600;
  color: #4a5c64;
}
.pkg-label-plat {
  margin-top: 4px;
}
.pkg-req {
  color: #e11d48;
  font-weight: 700;
}
.pkg-form-card {
  margin-top: 24px;
  border: 1px solid var(--pkg-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 24px 26px 22px;
  box-shadow: 0 10px 32px rgba(91, 33, 182, 0.08);
}
.pkg-textarea {
  width: 100%;
  min-height: 138px;
  border-radius: 12px;
  border: 1px solid var(--pkg-line);
  background: #fff;
  color: var(--pkg-ink);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  margin-bottom: 18px;
  font-family: inherit;
}
.pkg-textarea::placeholder {
  color: #94a8b0;
}
.pkg-textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  background: #fff;
}
.pkg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .pkg-form-row {
    grid-template-columns: 1fr;
  }
}
.pkg-field {
  min-width: 0;
}
.pkg-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--pkg-line);
  background: #fff;
  color: var(--pkg-ink);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}
.pkg-input::placeholder {
  color: #94a8b0;
}
.pkg-input:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.12);
  background: #fff;
}
.pkg-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.pkg-plat {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: #fff;
  color: #3d525a;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pkg-plat:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: var(--pkg-mint-dark);
}
.pkg-plat.active {
  border-color: rgba(139, 92, 246, 0.48);
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  color: #6d28d9;
  box-shadow: 0 7px 18px rgba(139, 92, 246, 0.16);
}
.pkg-plat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  line-height: 0;
}
.pkg-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 22px 0 0;
}
.pkg-btn-primary {
  flex: 1 1 240px;
  border: 0;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 55%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pkg-btn-primary:hover {
  filter: brightness(1.04);
}
.pkg-btn-ico {
  font-size: 16px;
}
.pkg-regen {
  border: 0;
  background: transparent;
  color: var(--pkg-mint-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
}
.pkg-regen:hover {
  text-decoration: underline;
}
.pkg-flow-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}
.pkg-flow-jump-link:not(.primary) {
  margin-right: auto;
}
.pkg-flow-jump-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.22) !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.22) !important;
  background: #fff;
  color: var(--pkg-mint-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  overflow: visible;
}
.pkg-flow-jump-link.primary {
  border-color: rgba(139, 92, 246, 0.34);
  background: linear-gradient(135deg, #faf5ff 0%, #ecfdf9 100%);
}
.pkg-flow-jump-link:hover {
  border-color: rgba(139, 92, 246, 0.5) !important;
  border-bottom-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.12);
}
.pkg-regen-ico {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.25);
  font-size: 13px;
  line-height: 1;
  background: #fff;
}
.pkg-result-wrap {
  margin-top: 24px;
  border-radius: 14px;
  border: 1px solid var(--pkg-line);
  background: var(--pkg-card);
  overflow: hidden;
}
.pkg-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--pkg-line);
  background: #fff;
}
.pkg-result-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--pkg-ink);
}
.pkg-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pkg-toolbar-btn {
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--pkg-line);
  background: #fff;
  color: #3d525a;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.pkg-toolbar-btn:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: var(--pkg-mint-dark);
}
.pkg-toolbar-primary {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  color: var(--pkg-mint-dark);
}
.pkg-result-body {
  padding: 18px 18px 22px;
  min-height: 100px;
  background: #fff;
}
.pkg-placeholder {
  margin: 0;
  color: #7a8f97;
  font-size: 14px;
  line-height: 1.65;
}
.pkg-err-summary {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 72, 0.2);
  background: #fff1f2;
  color: #9f1239;
  font-size: 14px;
  line-height: 1.65;
}
.pkg-err-details {
  margin: 0 0 14px;
  border-radius: 10px;
  border: 1px solid var(--pkg-line);
  background: #fafdfd;
  padding: 0 12px;
}
.pkg-err-details summary {
  cursor: pointer;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
  list-style: none;
}
.pkg-err-details summary::-webkit-details-marker {
  display: none;
}
.pkg-err-pre {
  margin: 0 0 12px;
  padding: 10px 12px;
  max-height: 200px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.5;
  color: #475569;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  white-space: pre-wrap;
  word-break: break-word;
}
.pkg-muted-inline {
  font-size: 12px;
  color: #94a3b8;
  margin-left: 8px;
}
.pkg-opt-banner {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: var(--pkg-mint-dark);
  font-size: 13px;
  font-weight: 600;
}
.pkg-out {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pkg-sec-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.pkg-sec-ico {
  font-size: 18px;
  line-height: 1;
}
.pkg-sec-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--pkg-ink);
  flex: 1 1 auto;
}
.pkg-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--pkg-mint-dark);
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.22);
}
.pkg-ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.pkg-ref-card {
  border: 1px solid var(--pkg-line);
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: #fafdfd;
}
.pkg-video-plan-card {
  border-left: 3px solid rgba(124, 58, 237, 0.55);
  background: linear-gradient(180deg, #f8fffc 0%, #fafdfd 100%);
}
.pkg-ref-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--pkg-mint-dark);
  line-height: 1.35;
}
.pkg-ref-desc {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5c6f78;
  line-height: 1.65;
}
.pkg-ref-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pkg-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #8b5cf6 100%);
}
.pkg-ref-search {
  font-size: 12px;
  color: #5c6f78;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pkg-search-fav {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #2563eb;
  font-weight: 500;
}
.pkg-search-fav strong {
  font-weight: 800;
  color: #1d4ed8;
}
.pkg-nick-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-nick-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pkg-line);
}
.pkg-nick-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pkg-nick-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--pkg-mint-dark);
  margin-bottom: 0;
}
.pkg-nick-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pkg-nick-copy-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #7c3aed;
  cursor: pointer;
  font-family: inherit;
}
.pkg-nick-copy-btn:hover {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
}
.pkg-nick-copy-ico {
  display: block;
}
.pkg-nick-body {
  margin: 0;
  font-size: 13px;
  color: #5c6f78;
  line-height: 1.7;
}

.pkg-naming-box {
  border: 2px solid rgba(139, 92, 246, 0.42);
  border-radius: 14px;
  padding: 14px 16px 16px;
  background: linear-gradient(165deg, rgba(240, 253, 250, 0.95) 0%, #fafdfd 55%);
}
.pkg-naming-lead {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pkg-mint-dark);
  text-transform: none;
}
.pkg-naming-lead-plat {
  margin-top: 14px;
  padding-top: 4px;
}
.pkg-naming-ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.pkg-naming-ul:last-child {
  margin-bottom: 0;
}
.pkg-naming-li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
.pkg-naming-li:last-child {
  margin-bottom: 0;
}
.pkg-ns-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.pkg-ns-ico-do {
  color: #047857;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.28);
}
.pkg-ns-ico-dont {
  color: #b91c1c;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
}
.pkg-ns-line {
  flex: 1;
  min-width: 0;
}
.pkg-naming-plat {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(139, 92, 246, 0.22);
}
.pkg-naming-plat-row {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: #5c6f78;
}
.pkg-naming-plat-row:last-child {
  margin-bottom: 0;
}
.pkg-naming-plat-row strong {
  color: var(--pkg-mint-dark);
  font-weight: 800;
  margin-right: 6px;
}

.pkg-rich-block {
  font-size: 13px;
  color: #5c6f78;
  line-height: 1.75;
}
.pkg-rich-block p {
  margin: 0 0 12px;
}
.pkg-rich-block p:last-child {
  margin-bottom: 0;
}
.pkg-ul {
  margin: 6px 0 0;
  padding-left: 1.2em;
  color: #5c6f78;
  font-size: 13px;
  line-height: 1.65;
}
.pkg-plat-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pkg-plat-card {
  border: 1px solid var(--pkg-line);
  border-radius: 12px;
  padding: 12px 14px 10px;
  background: #fafdfd;
}
.pkg-plat-card-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--pkg-mint-dark);
}
.pkg-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pkg-spec-table td {
  padding: 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid rgba(91, 33, 182, 0.08);
}
.pkg-spec-table tr:last-child td {
  border-bottom: 0;
}
.pkg-td-asset {
  font-weight: 700;
  color: var(--pkg-ink);
  width: 34%;
}
.pkg-td-size {
  color: #6d28d9;
  font-weight: 600;
}
.pkg-tr-detail td {
  padding-top: 0;
  border-bottom: 1px solid rgba(91, 33, 182, 0.08);
}
.pkg-td-notes {
  padding: 0 0 10px;
  font-size: 12px;
  color: #5c6f78;
  line-height: 1.65;
}
.pkg-td-notes p {
  margin: 0 0 6px;
}
.pkg-prompt-pre {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(91, 33, 182, 0.15);
  max-height: 320px;
  overflow: auto;
}
.pkg-formula-bar {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.28);
  font-size: 14px;
  font-weight: 700;
  color: var(--pkg-mint-dark);
  line-height: 1.55;
  margin-bottom: 10px;
}
.pkg-formula-ol {
  margin: 0;
  padding-left: 1.25em;
  font-size: 13px;
  color: #5c6f78;
  line-height: 1.7;
}
.pkg-formula-ol li {
  margin-bottom: 6px;
}
.pkg-scheme-card {
  border: 1px solid var(--pkg-line);
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin-bottom: 14px;
  background: #fff;
}
.pkg-scheme-card:last-child {
  margin-bottom: 0;
}
.pkg-scheme-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--pkg-ink);
}
.pkg-bio-box {
  font-size: 13px;
  line-height: 1.75;
  color: #334155;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(91, 33, 182, 0.1);
  margin-bottom: 10px;
}
.pkg-analysis {
  margin-bottom: 10px;
}
.pkg-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pkg-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.pkg-chip-hl {
  color: #0f5132;
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.35);
}
.pkg-chip-seo {
  color: #4c1d95;
  background: rgba(167, 139, 250, 0.22);
  border-color: rgba(139, 92, 246, 0.35);
}
.pkg-sub-list {
  margin: 0;
  padding-left: 1.15em;
  font-size: 13px;
  color: #5c6f78;
  line-height: 1.75;
}
.pkg-sub-list li {
  margin-bottom: 8px;
}

/* 账号包装 AI 回复：对齐执行计划的浅色卡片风格 */
.pkg-result-wrap {
  margin-top: 26px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: #fff;
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.06);
}
.pkg-result-head {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  background: #fff;
}
.pkg-result-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  color: #17152f;
}
.pkg-result-body {
  padding: 22px 20px 26px;
  background: #fff;
}
.pkg-out {
  gap: 24px;
}
.pkg-out > section {
  padding: 20px 22px 22px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.05);
}
.pkg-sec-head {
  margin-bottom: 16px;
}
.pkg-sec-title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  color: #6d28d9;
}
.pkg-sec-ico {
  color: #7c3aed;
}
.pkg-ref-card,
.pkg-video-plan-card,
.pkg-naming-box,
.pkg-plat-card,
.pkg-scheme-card,
.pkg-bio-box,
.pkg-formula-bar {
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}
.pkg-video-plan-card {
  border-left: 1px solid rgba(139, 92, 246, 0.16);
}
.pkg-ref-title,
.pkg-nick-title,
.pkg-plat-card-title,
.pkg-scheme-title,
.pkg-td-asset {
  font-size: 15px;
  line-height: 1.45;
  color: #182136;
  font-weight: 900;
}
.pkg-ref-desc,
.pkg-ref-search,
.pkg-search-fav,
.pkg-nick-body,
.pkg-rich-block,
.pkg-ul,
.pkg-sub-list,
.pkg-formula-ol,
.pkg-td-notes,
.pkg-spec-table,
.pkg-bio-box,
.pkg-naming-li,
.pkg-naming-plat-row {
  font-size: 13px;
  line-height: 1.75;
  color: #475569;
}
.pkg-badge,
.pkg-pill,
.pkg-chip,
.pkg-chip-hl,
.pkg-chip-seo {
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: #f3efff;
  color: #6d28d9;
  font-weight: 800;
}
.pkg-formula-bar,
.pkg-naming-lead,
.pkg-naming-plat-row strong,
.pkg-search-fav strong,
.pkg-td-size,
.pkg-analysis strong {
  color: #6d28d9;
  font-weight: 900;
}
.pkg-prompt-pre {
  border-color: rgba(139, 92, 246, 0.16);
  background: #fbf8ff;
  color: #475569;
}
body[data-page-subtitle="账号包装方案"] .pkg-out > section:has(.pkg-video-plan-card) {
  width: auto;
  max-width: none;
}
body[data-page-subtitle="账号包装方案"] .pkg-out > section:has(.pkg-video-plan-card) .pkg-ref-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  align-items: stretch;
}
body[data-page-subtitle="账号包装方案"] .pkg-video-plan-card {
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  body[data-page-subtitle="账号包装方案"] .pkg-out > section:has(.pkg-video-plan-card) .pkg-ref-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}
@media (max-width: 720px) {
  body[data-page-subtitle="账号包装方案"] .pkg-out > section:has(.pkg-video-plan-card) {
    width: 100%;
  }
  body[data-page-subtitle="账号包装方案"] .pkg-out > section:has(.pkg-video-plan-card) .pkg-ref-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* ========== 执行计划（STEP 04 表单 · 浅色） ========== */
.exec-page {
  --ex-mint: #8b5cf6;
  --ex-deep: #6d28d9;
  --ex-line: rgba(91, 33, 182, 0.12);
  --ex-ink: #0f1720;
  --ex-sub: #5c6f78;
  color: var(--ex-ink);
  max-width: 860px;
  margin: 0 auto;
}
.exec-step-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}
.exec-step-tag {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6d28d9;
  background: #ffffff;
  border: 1px solid #ddd6fe;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.12);
}
.exec-step-crumb {
  font-weight: 600;
  color: var(--ex-sub);
}
.exec-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.exec-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ex-sub);
}
.exec-desc strong.exec-ind {
  color: var(--ex-deep);
  font-weight: 700;
}
.exec-desc strong.exec-ind-muted {
  color: #94a3b8;
  font-weight: 600;
}
.exec-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2c3d44;
}
.exec-req {
  color: #e11d48;
}
.exec-plats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.exec-plat {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--ex-line);
  background: #fff;
  color: #3d525a;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.exec-plat:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: var(--ex-deep);
}
.exec-plat.active {
  border-color: transparent;
  background: linear-gradient(135deg, #a78bfa 0%, var(--ex-mint) 92%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}
.exec-plat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  line-height: 0;
}
.exec-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .exec-row2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .panel:has(.exec-page) {
    padding: 20px 16px 22px;
  }
  .exec-hero {
    min-height: 0;
    padding: 6px 4px 10px;
  }
  .exec-hero-visual {
    display: none;
  }
  .exec-title {
    font-size: 32px;
  }
}
.exec-input,
.exec-textarea {
  width: 100%;
  border: 1px solid var(--ex-line);
  border-radius: 12px;
  background: #fafdfd;
  color: var(--ex-ink);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}
.exec-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.exec-input:focus,
.exec-textarea:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
  background: #fff;
}
.exec-input::placeholder,
.exec-textarea::placeholder {
  color: #94a8b0;
}
.exec-field {
  margin-bottom: 18px;
}
.exec-actions {
  margin-top: 22px;
}
.exec-flow-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}
.exec-flow-jump-link:not(.primary) {
  margin-right: auto;
}
.exec-flow-jump-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.22) !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.22) !important;
  background: #fff;
  color: var(--ex-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  overflow: visible;
}
.exec-flow-jump-link.primary {
  border-color: rgba(139, 92, 246, 0.34);
  background: linear-gradient(135deg, #faf5ff 0%, #ecfdf9 100%);
}
.exec-flow-jump-link:hover {
  border-color: rgba(139, 92, 246, 0.5) !important;
  border-bottom-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.12);
}
.exec-btn-primary {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, var(--ex-mint) 55%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.exec-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.exec-btn-secondary {
  margin-top: 10px;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid rgba(91, 33, 182, 0.2);
  background: #fff;
  color: #6d28d9;
}
.exec-result {
  margin-top: 22px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--ex-line);
  background: #fff;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ex-sub);
  box-shadow: 0 10px 36px rgba(91, 33, 182, 0.06);
}
.exec-result.exec-hidden {
  display: none !important;
}

/* —— 执行计划：浅色仪表盘（对齐参考图结构） —— */
.exec-dash {
  padding: 22px 20px 26px;
  background: #fff;
  color: var(--ex-ink);
}
.exec-dash--simple {
  padding: 22px 20px 26px;
}
.exec-dash-power {
  margin: 0 0 14px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}
.exec-dash-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ex-ink);
  letter-spacing: 0;
}
.exec-dash-context {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--ex-sub);
}
.exec-dash-overview {
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ex-line);
}
.exec-dash-overview-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ex-deep);
}
.exec-dash-kpi-global {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ex-line);
}
.exec-dash-kpi-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ex-ink);
}
.exec-dash-ogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
@media (max-width: 720px) {
  .exec-dash-ogrid {
    grid-template-columns: 1fr;
  }
}
.exec-dash-ocell {
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--ex-line);
  background: linear-gradient(180deg, #fbfffe 0%, #f6faf9 100%);
}
.exec-dash-ocell--full {
  grid-column: 1 / -1;
}
.exec-dash-oh {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ex-deep);
}
.exec-dash-op {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #3d525a;
}
.exec-dash-muted {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}
.exec-phase-one-design {
  margin-top: 24px;
  padding: 24px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  color: #475569;
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.08);
}
.exec-phase-one-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.exec-phase-one-badge {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.1);
}
.exec-phase-one-head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ex-ink);
  line-height: 1.35;
}
.exec-phase-one-head p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}
.exec-phase-one-goal {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}
.exec-phase-one-block {
  margin-top: 18px;
}
.exec-phase-one-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  color: #6d28d9;
}
.exec-phase-one-block h4 svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.exec-phase-one-tasks {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 18px;
  border-left: 2px solid rgba(124, 58, 237, 0.22);
}
.exec-phase-one-task {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 0 0 18px 12px;
}
.exec-phase-one-task::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}
.exec-phase-one-task-time {
  font-size: 12px;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1.5;
  word-break: keep-all;
}
.exec-phase-one-task-body h5 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ex-ink);
}
.exec-phase-one-task-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #475569;
}
.exec-phase-one-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
}
.exec-phase-one-weekly {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}
.exec-phase-one-week {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
}
.exec-phase-one-week strong {
  display: block;
  margin: 2px 0 0;
  font-size: 14px;
  color: #7c3aed;
  line-height: 1.5;
  font-weight: 900;
  white-space: nowrap;
}
.exec-phase-one-week-body {
  min-width: 0;
}
.exec-phase-one-week p,
.exec-phase-one-week em {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  font-style: normal;
}
.exec-phase-one-week p {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
  color: #182136;
}
.exec-phase-one-week em {
  color: #64748b;
}
.exec-phase-one-content-plan,
.exec-phase-one-kpi-block {
  padding: 16px 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}
.exec-phase-one-content-plan .exec-phase-one-frequency {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  color: #475569;
}
.exec-phase-one-frequency strong {
  color: #7c3aed;
  font-size: 18px;
  font-weight: 900;
}
.exec-phase-one-highlight {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #6d28d9;
  background: rgba(139, 92, 246, 0.12);
}
.exec-phase-one-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}
.exec-phase-one-pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  color: #5b21b6;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.18);
}
.exec-phase-one-times {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}
.exec-phase-one-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px 48px;
}
.exec-phase-one-kpi {
  min-width: 0;
  padding: 2px 0 6px;
}
.exec-phase-one-kpi-name {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #64748b;
}
.exec-phase-one-kpi strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.15;
  color: #7c3aed;
  font-weight: 900;
}
.exec-phase-one-kpi span,
.exec-phase-one-kpi em {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
  font-style: normal;
}
@media (max-width: 720px) {
  .exec-phase-one-task {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .exec-phase-one-week {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .exec-phase-one-weekly,
  .exec-phase-one-content-plan,
  .exec-phase-one-kpi-block {
    padding: 14px;
  }
  .exec-phase-one-week strong {
    white-space: normal;
  }
  .exec-phase-one-kpi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.exec-dash-phase {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ex-line);
}
.exec-phase-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.exec-phase-badge {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa 0%, var(--ex-mint) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}
.exec-phase-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--ex-ink);
  line-height: 1.35;
}
.exec-phase-meta {
  margin: 0 0 16px;
  font-size: 13px;
  color: #3d5a55;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.exec-phase-meta-ico {
  flex: 0 0 auto;
  margin-top: 1px;
}
.exec-subhd {
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ex-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.exec-subhd-ico {
  font-size: 15px;
  opacity: 0.9;
}
.exec-task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exec-task-block {
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(91, 33, 182, 0.1);
  background: #fafdfd;
}
.exec-task-day,
.exec-task-time {
  font-size: 12px;
  font-weight: 800;
  color: var(--ex-deep);
  margin-bottom: 8px;
}
.exec-task-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ex-ink);
}
.exec-task-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #475569;
}
.exec-task-dur {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
}
.exec-wk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exec-wk {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(139, 92, 246, 0.35);
  background: rgba(240, 253, 250, 0.65);
}
.exec-wk-week {
  font-size: 13px;
  font-weight: 800;
  color: var(--ex-deep);
  margin-bottom: 6px;
}
.exec-wk-obj {
  margin: 0 0 8px;
  font-size: 13px;
  color: #334155;
  line-height: 1.65;
}
.exec-wk-check {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: #64748b;
}
.exec-cp {
  margin-top: 4px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid var(--ex-line);
  background: #fff;
}
.exec-cp-freq {
  margin: 0 0 10px;
  font-size: 13px;
  color: #334155;
}
.exec-cp-highlight {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #5b21b6;
  background: rgba(167, 243, 208, 0.55);
  border: 1px solid rgba(139, 92, 246, 0.35);
}
.exec-cp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.exec-cp-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0f172a;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
}
.exec-cp-list {
  margin: 0 0 12px;
  padding-left: 1.2em;
  font-size: 13px;
  line-height: 1.65;
  color: #334155;
}
.exec-cp-list li {
  margin-bottom: 6px;
}
.exec-cp-times {
  margin: 0;
  font-size: 12px;
  color: #475569;
  line-height: 1.6;
}
.exec-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.exec-kpi-card {
  padding: 12px 12px 10px;
  border-radius: 12px;
  border: 1px solid var(--ex-line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.exec-kpi-name {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}
.exec-kpi-target {
  font-size: 20px;
  font-weight: 800;
  color: var(--ex-deep);
  margin-bottom: 4px;
}
.exec-kpi-base {
  font-size: 11px;
  color: #94a3b8;
}
.exec-kpi-note {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: #64748b;
}
.exec-dash-more {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--ex-line);
  background: #f8fafc;
}
.exec-dash-more summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ex-deep);
  font-size: 13px;
}
.exec-dash-more-body {
  margin-top: 12px;
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}
.exec-append-h {
  margin: 12px 0 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ex-deep);
}
.exec-append-h:first-child {
  margin-top: 0;
}
.exec-append-p {
  margin: 0 0 8px;
}
.exec-append-ol {
  margin: 0 0 8px;
  padding-left: 1.2em;
}
.exec-dash-simplecard {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--ex-line);
  background: #fafdfd;
}
.exec-dash-simplecard p {
  margin: 0 0 12px;
}
.exec-dash-simplecard p:last-child {
  margin-bottom: 0;
}
.exec-dash-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ex-line);
}
.exec-section-title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ex-ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.exec-line-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #7c3aed;
}
.exec-phase-one-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.exec-phase-one-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.exec-mind-grid,
.exec-card-grid,
.exec-review-grid,
.exec-phase-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.exec-mind-node,
.exec-info-card,
.exec-review-grid article,
.exec-alert-card,
.exec-success-card,
.exec-rest-card,
.exec-phase-checks article {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--ex-line);
  background: #fbfffe;
}
.exec-mind-node {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
}
.exec-mind-node h4,
.exec-info-card h4,
.exec-review-grid h4,
.exec-alert-card h4,
.exec-success-card h4,
.exec-rest-card h4,
.exec-phase-checks h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ex-deep);
}
.exec-mind-node p,
.exec-info-output,
.exec-review-grid p,
.exec-alert-card p,
.exec-success-card p,
.exec-rest-card p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.7;
  color: #475569;
}
.exec-mini-list {
  margin: 0;
  padding-left: 1.15em;
  font-size: 12px;
  line-height: 1.7;
  color: #475569;
}
.exec-mini-list li {
  margin-bottom: 4px;
}
.exec-info-output {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(139, 92, 246, 0.22);
}
.exec-stage-goal {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(20, 184, 166, 0.24);
  background: rgba(240, 253, 250, 0.74);
  font-size: 13px;
  line-height: 1.7;
  color: #334155;
}
.exec-phase-checks {
  margin-top: 14px;
}
.exec-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.exec-two-col--wide-left {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}
.exec-stack-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exec-schedule-section,
.exec-danger-section,
.exec-success-section {
  padding: 22px 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.06);
}
.exec-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.exec-schedule-col {
  min-width: 0;
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.86);
}
.exec-schedule-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.exec-schedule-head .exec-line-ico {
  margin-top: 2px;
}
.exec-schedule-head h4 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.35;
  color: #6d28d9;
}
.exec-schedule-head p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
  font-weight: 700;
}
.exec-schedule-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exec-schedule-item {
  min-width: 0;
}
.exec-schedule-time {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #7c3aed;
  font-variant-numeric: tabular-nums;
}
.exec-schedule-item h5 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.45;
  color: #182136;
}
.exec-schedule-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #475569;
}
.exec-danger-section {
  border-color: rgba(248, 113, 113, 0.26);
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}
.exec-danger-section .exec-section-title,
.exec-danger-section .exec-line-ico {
  color: #dc2626;
}
.exec-danger-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exec-danger-card {
  padding: 14px 16px 13px;
  border-radius: 14px;
  border: 1px solid rgba(248, 113, 113, 0.22);
  background: rgba(255, 255, 255, 0.9);
}
.exec-danger-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  color: #b91c1c;
}
.exec-danger-card p {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
}
.exec-danger-card p:last-child {
  margin-bottom: 0;
}
.exec-danger-solution {
  color: #047857 !important;
  font-weight: 700;
}
.exec-success-section {
  border-color: rgba(124, 58, 237, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}
.exec-success-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.exec-success-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(255, 255, 255, 0.9);
}
.exec-success-card h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #6d28d9;
}
.exec-success-standard {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #1f2937;
  font-weight: 800;
}
.exec-success-evidence {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}
.exec-alert-card {
  border-color: rgba(244, 114, 182, 0.28);
  background: #fffafb;
}
.exec-success-card {
  border-color: rgba(20, 184, 166, 0.24);
  background: #f8fffd;
}
.exec-success-section .exec-success-card {
  border-color: rgba(139, 92, 246, 0.18);
  background: rgba(255, 255, 255, 0.9);
}
.exec-success-section .exec-success-card h4 {
  color: #6d28d9;
}
.exec-success-section .exec-success-standard {
  color: #1f2937;
  font-size: 15px;
  font-weight: 800;
}
.exec-success-section .exec-success-evidence {
  color: #64748b;
  font-size: 12px;
}
@media (max-width: 900px) {
  .exec-schedule-grid,
  .exec-success-grid {
    grid-template-columns: 1fr;
  }
  .exec-schedule-section,
  .exec-danger-section,
  .exec-success-section {
    padding: 18px 16px 20px;
  }
}
.exec-dash-ocell--full .exec-dash-op {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.exec-phase-one-design {
  padding: 22px 22px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.06);
}
.exec-phase-one-head {
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}
.exec-phase-one-head h3 {
  font-size: 18px;
  font-weight: 900;
}
.exec-phase-one-head p {
  font-size: 13px;
  line-height: 1.55;
}
.exec-phase-one-goal {
  margin: 14px 0 18px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.75;
  background: #fbf8ff;
}
.exec-phase-one-task {
  grid-template-columns: 150px minmax(0, 1fr);
}
.exec-phase-one-task-body h5 {
  font-size: 16px;
  line-height: 1.45;
}
.exec-phase-one-task-body p {
  font-size: 13px;
  line-height: 1.75;
}
.exec-dash-section {
  margin-top: 24px;
  padding: 20px 22px 22px;
  border-top: 0;
  border-radius: 14px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.05);
}
.exec-section-title {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  color: #6d28d9;
}
.exec-schedule-section,
.exec-danger-section,
.exec-success-section {
  padding: 20px 22px 22px;
  border-radius: 14px;
  border-color: rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}
.exec-schedule-grid,
.exec-success-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.exec-schedule-col,
.exec-success-card,
.exec-danger-card {
  border-radius: 12px;
  border-color: rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.92);
}
.exec-schedule-head h4,
.exec-danger-card h4,
.exec-success-card h4 {
  font-size: 16px;
  line-height: 1.45;
  color: #6d28d9;
  font-weight: 900;
}
.exec-schedule-head p,
.exec-success-evidence {
  font-size: 13px;
  line-height: 1.6;
}
.exec-schedule-time {
  font-size: 13px;
}
.exec-schedule-item h5 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 900;
}
.exec-schedule-item p,
.exec-danger-card p {
  font-size: 13px;
  line-height: 1.75;
}
.exec-danger-section {
  border-color: rgba(139, 92, 246, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}
.exec-danger-section .exec-section-title,
.exec-danger-section .exec-line-ico {
  color: #6d28d9;
}
.exec-danger-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.exec-danger-card {
  padding: 15px 16px;
}
.exec-danger-solution {
  color: #5b21b6 !important;
  font-weight: 800;
}
.exec-success-standard,
.exec-success-section .exec-success-standard {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
}
@media (max-width: 720px) {
  .exec-phase-one-design,
  .exec-dash-section,
  .exec-schedule-section,
  .exec-danger-section,
  .exec-success-section {
    padding: 16px 14px 18px;
  }
  .exec-phase-one-task {
    grid-template-columns: 1fr;
  }
}
.exec-rest-purpose {
  color: #64748b;
}
.exec-day14-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.exec-day14-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 10px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--ex-line);
  background: #ffffff;
}
.exec-day14-list strong {
  font-size: 12px;
  color: var(--ex-deep);
}
.exec-day14-list span {
  font-size: 12px;
  line-height: 1.65;
  color: #334155;
}
.exec-day14-list em {
  grid-column: 2;
  font-style: normal;
  font-size: 11px;
  color: #7c3aed;
}
@media (max-width: 720px) {
  .exec-two-col,
  .exec-two-col--wide-left {
    grid-template-columns: 1fr;
  }
  .exec-day14-list li {
    grid-template-columns: 1fr;
  }
  .exec-day14-list em {
    grid-column: 1;
  }
}

/* 执行计划：顶部与平台按钮对齐「人设定制方案」视觉 */
body[data-page-subtitle="执行计划"] .panel:has(.exec-page) {
  margin: 10px auto 28px;
  padding: 26px 28px 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}
body[data-page-subtitle="执行计划"] .panel:has(.exec-page)::before {
  content: none;
}
body[data-page-subtitle="执行计划"] .exec-page {
  max-width: 100%;
}
body[data-page-subtitle="执行计划"] .exec-page > .exec-step-bar,
body[data-page-subtitle="执行计划"] .exec-page > .exec-title,
body[data-page-subtitle="执行计划"] .exec-page > .exec-desc {
  max-width: none;
}
body[data-page-subtitle="执行计划"] .exec-hero {
  min-height: 164px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 10px 2px;
}
body[data-page-subtitle="执行计划"] .exec-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}
body[data-page-subtitle="执行计划"] .exec-hero-visual {
  flex: 0 0 260px;
  height: 138px;
  position: relative;
  margin-right: 10px;
  filter: drop-shadow(0 18px 24px rgba(91, 33, 182, 0.18));
}
body[data-page-subtitle="执行计划"] .exec-v-calendar {
  position: absolute;
  left: 42px;
  top: 8px;
  width: 136px;
  height: 104px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), #f7f4ff 72%);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow:
    0 24px 42px rgba(124, 58, 237, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(7deg);
}
body[data-page-subtitle="执行计划"] .exec-v-calendar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 28px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(90deg, #c4b5fd 0%, #8b5cf6 100%);
  box-shadow: 0 9px 20px rgba(124, 58, 237, 0.18);
}
body[data-page-subtitle="执行计划"] .exec-v-ring {
  position: absolute;
  top: -10px;
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.45);
  z-index: 2;
}
body[data-page-subtitle="执行计划"] .exec-v-ring-a {
  left: 26px;
}
body[data-page-subtitle="执行计划"] .exec-v-ring-b {
  left: 94px;
}
body[data-page-subtitle="执行计划"] .exec-v-check {
  position: absolute;
  left: 25px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  box-shadow: 0 7px 14px rgba(124, 58, 237, 0.22);
  z-index: 2;
}
body[data-page-subtitle="执行计划"] .exec-v-check-a {
  top: 45px;
}
body[data-page-subtitle="执行计划"] .exec-v-check-b {
  top: 76px;
}
body[data-page-subtitle="执行计划"] .exec-v-line {
  position: absolute;
  left: 60px;
  height: 8px;
  border-radius: 999px;
  background: #e5ddff;
  z-index: 2;
}
body[data-page-subtitle="执行计划"] .exec-v-line-a {
  top: 47px;
  width: 68px;
}
body[data-page-subtitle="执行计划"] .exec-v-line-b {
  top: 61px;
  width: 45px;
  opacity: 0.75;
}
body[data-page-subtitle="执行计划"] .exec-v-line-c {
  top: 78px;
  width: 62px;
}
body[data-page-subtitle="执行计划"] .exec-v-line-d {
  top: 92px;
  width: 38px;
  opacity: 0.72;
}
body[data-page-subtitle="执行计划"] .exec-v-pie {
  position: absolute;
  right: 26px;
  bottom: 12px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    conic-gradient(#7c3aed 0 27%, #a78bfa 27% 73%, #ede9fe 73% 100%);
  box-shadow: 0 22px 36px rgba(124, 58, 237, 0.18);
  opacity: 0.95;
}
body[data-page-subtitle="执行计划"] .exec-v-pie::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
body[data-page-subtitle="执行计划"] .exec-v-chart {
  position: absolute;
  right: 2px;
  bottom: 6px;
  width: 46px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), #f5f3ff);
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow: 0 14px 24px rgba(91, 33, 182, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 8px 8px 7px;
}
body[data-page-subtitle="执行计划"] .exec-v-chart i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}
body[data-page-subtitle="执行计划"] .exec-v-chart i:nth-child(1) {
  height: 10px;
}
body[data-page-subtitle="执行计划"] .exec-v-chart i:nth-child(2) {
  height: 18px;
}
body[data-page-subtitle="执行计划"] .exec-v-chart i:nth-child(3) {
  height: 13px;
}
body[data-page-subtitle="执行计划"] .exec-v-spark {
  position: absolute;
  color: #a78bfa;
  font-weight: 900;
  text-shadow: 0 12px 22px rgba(124, 58, 237, 0.22);
  z-index: 3;
}
body[data-page-subtitle="执行计划"] .exec-v-spark-a {
  left: 16px;
  top: 46px;
  font-size: 22px;
}
body[data-page-subtitle="执行计划"] .exec-v-spark-b {
  right: 22px;
  top: 18px;
  font-size: 14px;
  opacity: 0.62;
}
body[data-page-subtitle="执行计划"] .exec-v-spark-c {
  left: 0;
  top: 82px;
  font-size: 13px;
  opacity: 0.7;
}
body[data-page-subtitle="执行计划"] .exec-step-bar {
  gap: 10px;
  margin-bottom: 20px;
  color: #6f6b86;
}
body[data-page-subtitle="执行计划"] .exec-step-tag {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6d28d9;
  background: #ffffff;
  border: 1px solid #ddd6fe;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.12);
}
body[data-page-subtitle="执行计划"] .exec-step-crumb {
  color: #272246;
  font-weight: 800;
}
body[data-page-subtitle="执行计划"] .exec-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 40px);
  color: #17152f;
}
body[data-page-subtitle="执行计划"] .exec-title span {
  font-size: 34px;
}
body[data-page-subtitle="执行计划"] .exec-desc {
  margin: 0 0 24px;
  color: #6f6b86;
  line-height: 1.85;
}
body[data-page-subtitle="执行计划"] #execPlanForm {
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 16px;
  background: #fff;
  padding: 24px 26px;
  box-shadow: 0 10px 32px rgba(91, 33, 182, 0.08);
}
body[data-page-subtitle="执行计划"] .exec-label {
  color: #25233d;
  font-size: 14px;
  font-weight: 700;
}
body[data-page-subtitle="执行计划"] .exec-plats {
  gap: 12px;
}
body[data-page-subtitle="执行计划"] .exec-plat {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: #fff;
  color: #3d525a;
}
body[data-page-subtitle="执行计划"] .exec-plat:hover {
  border-color: rgba(139, 92, 246, 0.45);
  color: #6d28d9;
}
body[data-page-subtitle="执行计划"] .exec-plat.active {
  border-color: rgba(139, 92, 246, 0.48);
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  color: #6d28d9;
  box-shadow: 0 7px 18px rgba(139, 92, 246, 0.16);
}
body[data-page-subtitle="执行计划"] .exec-input,
body[data-page-subtitle="执行计划"] .exec-textarea {
  border-color: rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #17152f;
  padding: 13px 16px;
}
body[data-page-subtitle="执行计划"] .exec-btn-primary {
  border-radius: 12px;
}
@media (max-width: 900px) {
  body[data-page-subtitle="执行计划"] .panel:has(.exec-page) {
    padding: 20px 16px 22px;
  }
  body[data-page-subtitle="执行计划"] .exec-hero {
    min-height: 0;
    padding: 6px 4px 10px;
  }
  body[data-page-subtitle="执行计划"] .exec-hero-visual {
    display: none;
  }
  body[data-page-subtitle="执行计划"] .exec-title {
    font-size: 30px;
  }
}

/* ========== 我的IP方案（还原设计图：白紫卡片 + 时间线） ========== */
body[data-page-subtitle="我的IP方案"] {
  background:
    radial-gradient(circle at 12% 5%, rgba(139, 92, 246, 0.08), transparent 28%),
    radial-gradient(circle at 88% 3%, rgba(167, 139, 250, 0.09), transparent 26%),
    linear-gradient(180deg, #f6f5ff 0%, #f3f6ff 100%);
}
body[data-page-subtitle="我的IP方案"] main.container {
  width: min(1180px, calc(100% - 48px));
  padding: 20px 0 28px;
}
.ipp-page {
  --ipp-line: rgba(124, 58, 237, 0.14);
  --ipp-ink: #17172f;
  --ipp-sub: #687086;
  --ipp-purple: #8b5cf6;
  --ipp-purple-dark: #7c3aed;
  --ipp-card: rgba(255, 255, 255, 0.94);
  color: var(--ipp-ink);
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 28px 34px 26px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 8%, rgba(139, 92, 246, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 251, 255, 0.96));
  box-shadow: 0 20px 54px rgba(91, 33, 182, 0.1);
}
.ipp-muted {
  color: #8b91a6;
  font-weight: 600;
}
.ipp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.ipp-head-main {
  flex: 1 1 auto;
  min-width: 0;
}
.ipp-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ipp-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.ipp-title-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 8px 18px rgba(139, 92, 246, 0.22);
}
.ipp-progress-banner {
  position: relative;
  width: min(560px, 100%);
  min-height: 138px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 0;
  padding: 25px 190px 20px 31px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #fbfaff 100%);
  box-shadow: 0 10px 30px rgba(91, 33, 182, 0.06);
}
.ipp-progress-banner::before {
  content: "✦";
  position: absolute;
  right: 30px;
  top: 30px;
  color: #b7a6ff;
  font-size: 22px;
  opacity: 0.78;
}
.ipp-progress-banner::after {
  content: "";
  position: absolute;
  right: 48px;
  bottom: 24px;
  width: 116px;
  height: 82px;
  background:
    radial-gradient(circle at 74% 16%, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 28% 42%, #c4b5fd 0 7px, transparent 8px),
    radial-gradient(ellipse at 58% 35%, rgba(255, 255, 255, 0.95) 0 27px, transparent 28px),
    radial-gradient(ellipse at 44% 67%, #8b5cf6 0 46px, transparent 47px);
  border-radius: 36px;
  filter: drop-shadow(0 18px 22px rgba(124, 58, 237, 0.2));
  opacity: 0.9;
}
.ipp-progress-banner[data-state="empty"],
.ipp-progress-banner[data-state="partial"],
.ipp-progress-banner[data-state="full"],
.ipp-progress-banner[data-state="busy"] {
  border-color: rgba(139, 92, 246, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #fbfaff 100%);
}
.ipp-progress-banner[data-state="busy"] {
  animation: ipp-banner-pulse 1.5s ease-in-out infinite;
}
@keyframes ipp-banner-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(13, 148, 136, 0);
  }
}
.ipp-progress-banner-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6d5dfc);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.24);
}
.ipp-progress-banner[data-state="empty"] .ipp-progress-banner-ico {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
}
.ipp-progress-banner[data-state="busy"] .ipp-progress-banner-ico {
  color: #fff;
  animation: ipp-ico-spin 1.2s linear infinite;
}
@keyframes ipp-ico-spin {
  to {
    transform: rotate(360deg);
  }
}
.ipp-progress-banner-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.ipp-progress-banner-label {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #1f2141;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ipp-progress-banner[data-state="empty"] .ipp-progress-banner-label {
  color: #1f2141;
}
.ipp-progress-banner[data-state="busy"] .ipp-progress-banner-label {
  color: #1f2141;
}
.ipp-progress-meta {
  margin: 0;
  font-size: 15px;
  color: #596176;
  font-weight: 800;
  line-height: 1.4;
}
.ipp-progress-meta strong {
  font-size: 24px;
  color: var(--ipp-purple-dark);
  font-weight: 900;
  margin: 0 5px;
}
.ipp-progress-banner[data-state="empty"] .ipp-progress-meta strong {
  color: var(--ipp-purple-dark);
}
.ipp-progress-hint {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #9aa1b4;
}
.ipp-progress-banner[data-state="empty"] .ipp-progress-hint {
  color: #9aa1b4;
}
.ipp-progress-banner[data-state="busy"] .ipp-progress-hint {
  color: #8b5cf6;
}
.ipp-progress-banner[data-state="full"] .ipp-progress-hint {
  color: #7c3aed;
}
.ipp-head,
.ipp-head-tools {
  overflow: visible;
}
.ipp-head-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 30;
  flex-shrink: 0;
}
.ipp-tool-btn {
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #33364f;
  position: relative;
  box-shadow: 0 6px 18px rgba(91, 33, 182, 0.06);
}
.ipp-tool-btn:hover {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.18);
}
.ipp-tool-btn[data-ipp-tip]::after {
  content: attr(data-ipp-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.94);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 200;
}
.ipp-tool-btn[data-ipp-tip]:hover::after,
.ipp-tool-btn[data-ipp-tip]:focus-visible::after {
  opacity: 1;
}
.ipp-tool-btn.ipp-tool-ai,
.ipp-tool-btn.ipp-tool-history,
.ipp-tool-btn.ipp-tool-reset,
.ipp-tool-btn.ipp-tool-settings {
  width: auto;
  min-width: 0;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.ipp-tool-label {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
.ipp-tool-ico {
  font-size: 16px;
  line-height: 1;
}
.ipp-tool-btn.ipp-tool-ai {
  color: #3b315e;
}
.ipp-tool-btn.ipp-tool-reset {
  color: #b45309;
  border-color: rgba(217, 119, 6, 0.22);
  background: #fffbeb;
}
.ipp-tool-btn.ipp-tool-reset:hover {
  background: #fef3c7;
}
.ipp-tool-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ipp-progress-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 16px 20px 34px 0;
}
.ipp-progress-bar {
  height: 9px;
  border-radius: 999px;
  background: #edf0fb;
  overflow: hidden;
  position: relative;
}
.ipp-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 58%, #a78bfa 100%);
  transition: width 0.35s ease;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.03), 0 5px 14px rgba(124, 58, 237, 0.2);
}
.ipp-progress-pct {
  text-align: right;
  min-width: 38px;
  font-size: 13px;
  font-weight: 900;
  color: #7561d8;
  margin-top: 0;
}
.ipp-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 46px;
  counter-reset: ipp-step;
}
.ipp-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0.08));
}
.ipp-step {
  position: relative;
  min-height: 74px;
  border: 1px solid rgba(124, 58, 237, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  padding: 16px 22px 16px 18px;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.035);
  counter-increment: ipp-step;
}
.ipp-step::before {
  content: counter(ipp-step);
  position: absolute;
  left: -46px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8fb0;
  font-size: 12px;
  font-weight: 900;
  background: #eef0fb;
  border: 1px solid #e1e5f5;
  z-index: 1;
}
.ipp-step.is-done::before {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.2);
}
.ipp-step-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ipp-step-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 22px rgba(91, 33, 182, 0.14);
}
.ipp-step-svg {
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(30, 20, 70, 0.08));
}
.ipp-step-body {
  flex: 1;
  min-width: 0;
}
.ipp-step-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--ipp-ink);
}
.ipp-step-summary {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ipp-sub);
}
.ipp-step-summary strong {
  color: #32364f;
  font-weight: 800;
}
.ipp-step-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  color: #7460cf;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.ipp-step-toggle:hover {
  text-decoration: underline;
}
.ipp-step-detail {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(124, 58, 237, 0.16);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ipp-sub);
}
.ipp-step.open .ipp-step-detail {
  display: block;
}
.ipp-super-cta {
  margin: 0 0 14px;
  font-size: 13px;
}
.ipp-super-cta-link {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}
.ipp-super-cta-link:hover {
  text-decoration: underline;
}
.ipp-foot-hint {
  margin: 20px 0 0;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.9);
  font-size: 12px;
  line-height: 1.65;
  color: #747b91;
  text-align: center;
}
@media (max-width: 860px) {
  body[data-page-subtitle="我的IP方案"] main.container {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }
  .ipp-page {
    padding: 20px 16px 22px;
    border-radius: 18px;
  }
  .ipp-head {
    flex-direction: column;
  }
  .ipp-head-tools {
    width: 100%;
    flex-wrap: wrap;
  }
  .ipp-progress-banner {
    padding-right: 24px;
  }
  .ipp-progress-banner::before,
  .ipp-progress-banner::after {
    display: none;
  }
  .ipp-progress-wrap {
    margin-right: 0;
  }
  .ipp-steps {
    padding-left: 34px;
  }
  .ipp-steps::before {
    left: 12px;
  }
  .ipp-step::before {
    left: -34px;
  }
  .ipp-step-top {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .ipp-step-toggle {
    margin-left: 64px;
  }
}

/* ========== 使用说明 / 历史记录：主区卡片浅色（与薄荷绿体系一致） ========== */
body[data-page-subtitle="使用说明"] .hero-panel::before,
body[data-page-subtitle="使用说明"] .kpi::before,
body[data-page-subtitle="使用说明"] .blk::before,
body[data-page-subtitle="历史记录"] .hero-panel::before,
body[data-page-subtitle="历史记录"] .kpi::before,
body[data-page-subtitle="历史记录"] .blk::before {
  display: none !important;
  content: none !important;
}
body[data-page-subtitle="使用说明"] .panel {
  background: #fff !important;
  border: none !important;
  box-shadow: 0 18px 48px rgba(91, 33, 182, 0.06) !important;
}
body[data-page-subtitle="历史记录"] .panel {
  background: #fff !important;
  border: 1px solid rgba(124, 58, 237, 0.16) !important;
  box-shadow: 0 18px 48px rgba(91, 33, 182, 0.06) !important;
}
body[data-page-subtitle="使用说明"] .hero-panel,
body[data-page-subtitle="历史记录"] .hero-panel {
  background: linear-gradient(180deg, #fff 0%, #f7fbfa 100%) !important;
  border: 1px solid rgba(91, 33, 182, 0.12) !important;
  color: #0f1720 !important;
}
body[data-page-subtitle="使用说明"] .hero-panel h1,
body[data-page-subtitle="历史记录"] .hero-panel h1 {
  color: #0f1720 !important;
}
body[data-page-subtitle="使用说明"] .hero-panel p,
body[data-page-subtitle="历史记录"] .hero-panel p {
  color: #5c6f78 !important;
}
body[data-page-subtitle="使用说明"] .hero-meta,
body[data-page-subtitle="历史记录"] .hero-meta {
  color: #64748b !important;
}
body[data-page-subtitle="使用说明"] .blk,
body[data-page-subtitle="历史记录"] .blk {
  background: #fafdfd !important;
  border: 1px solid rgba(91, 33, 182, 0.12) !important;
}
body[data-page-subtitle="使用说明"] .blk h3,
body[data-page-subtitle="历史记录"] .blk h3 {
  color: #0f1720 !important;
}
body[data-page-subtitle="使用说明"] .blk p,
body[data-page-subtitle="历史记录"] .blk p,
body[data-page-subtitle="使用说明"] .list li,
body[data-page-subtitle="历史记录"] .list li {
  color: #5c6f78 !important;
}
body[data-page-subtitle="使用说明"] .kpi,
body[data-page-subtitle="历史记录"] .kpi {
  background: #fff !important;
  border: 1px solid rgba(91, 33, 182, 0.1) !important;
}
body[data-page-subtitle="使用说明"] .kpi .k,
body[data-page-subtitle="历史记录"] .kpi .k {
  color: #64748b !important;
}
body[data-page-subtitle="使用说明"] .kpi .v,
body[data-page-subtitle="历史记录"] .kpi .v {
  color: #6d28d9 !important;
}
body[data-page-subtitle="使用说明"] .chip,
body[data-page-subtitle="历史记录"] .chip {
  border: 1px solid rgba(139, 92, 246, 0.35) !important;
  background: #f8fafc !important;
  color: #6d28d9 !important;
}
body[data-page-subtitle="使用说明"] .timeline,
body[data-page-subtitle="历史记录"] .timeline {
  border-left-color: rgba(91, 33, 182, 0.15) !important;
}
body[data-page-subtitle="使用说明"] .timeline li,
body[data-page-subtitle="历史记录"] .timeline li {
  color: #5c6f78 !important;
}

/* 历史记录：可点击卡片 + 详情弹层 */
body[data-page-subtitle="历史记录"] .hist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
body[data-page-subtitle="历史记录"] .hist-toolbar #historyTip {
  margin: 0;
}
body[data-page-subtitle="历史记录"] .hist-clear-all {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.38);
  background: #fff5f5;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
body[data-page-subtitle="历史记录"] .hist-clear-all:hover {
  background: #fee2e2;
}
body[data-page-subtitle="历史记录"] .hist-clear-all:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
body[data-page-subtitle="历史记录"] .history-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body[data-page-subtitle="历史记录"] .hist-card-wrap {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
body[data-page-subtitle="历史记录"] .hist-card-wrap .hist-card {
  flex: 1;
  min-width: 0;
}
body[data-page-subtitle="历史记录"] .hist-card-del {
  flex-shrink: 0;
  align-self: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: #fff5f5;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
body[data-page-subtitle="历史记录"] .hist-card-del:hover {
  background: #fee2e2;
}
body[data-page-subtitle="历史记录"] .hist-modal-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(91, 33, 182, 0.1);
  text-align: right;
}
body[data-page-subtitle="历史记录"] .hist-modal-del {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: #fff5f5;
  color: #b91c1c;
  font-weight: 600;
  cursor: pointer;
}
body[data-page-subtitle="历史记录"] .hist-card {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 14px;
  background: #fafdfd;
  padding: 14px 0;
  box-shadow: 0 8px 26px rgba(91, 33, 182, 0.05);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  font: inherit;
  color: inherit;
}
body[data-page-subtitle="历史记录"] .hist-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
  transform: translateY(-1px);
}
body[data-page-subtitle="历史记录"] .hist-card:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}
body[data-page-subtitle="历史记录"] .hist-card-topbar {
  display: none !important;
}
body[data-page-subtitle="历史记录"] .hist-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f1720;
  padding: 0 16px;
  margin-bottom: 8px;
}
body[data-page-subtitle="历史记录"] .hist-card-sum {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
  padding: 0 16px;
  margin-bottom: 10px;
  word-break: break-word;
}
body[data-page-subtitle="历史记录"] .hist-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 12px;
  color: #64748b;
}
body[data-page-subtitle="我的IP方案"] .ipp-muted,
.ipp-page .ipp-muted {
  color: #8b91a6;
  font-weight: 600;
}
body[data-page-subtitle="历史记录"] .hist-chip-sync {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.25);
}
@import url("/flow-async-generate-ui.css?v=20260518ui");

body[data-page-subtitle="历史记录"] .hist-chip.hist-status-running {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.35);
}
body[data-page-subtitle="历史记录"] .hist-chip.hist-status-done {
  background: rgba(139, 92, 246, 0.14);
  color: #6d28d9;
  border: 1px solid rgba(139, 92, 246, 0.32);
}
body[data-page-subtitle="历史记录"] .hist-chip.hist-status-failed {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
body[data-page-subtitle="历史记录"] .hist-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: #6d28d9;
}
body[data-page-subtitle="历史记录"] .hist-time {
  font-variant-numeric: tabular-nums;
}

.hist-modal[hidden] {
  display: none !important;
}
.hist-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 32px;
  box-sizing: border-box;
  overflow-y: auto;
  /* 独立层叠，避免与仪表盘卡片的 transform 合成层互相干扰 */
  isolation: isolate;
}
.hist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
}
.hist-modal-dialog--ip-plan-generate,
.hist-modal-dialog--execution-plan-generate,
.hist-modal-dialog--persona-generate {
  width: min(1100px, 100%);
}
.hist-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 40, 35, 0.18);
  border: 1px solid rgba(91, 33, 182, 0.12);
}
.hist-modal-x {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.95);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #475569;
}
.hist-modal-x:hover {
  background: #f1f5f9;
  color: #0f1720;
}
.hist-modal-title {
  margin: 0;
  padding: 18px 48px 8px 20px;
  font-size: 20px;
  font-weight: 800;
  color: #0f1720;
  border-bottom: 1px solid rgba(91, 33, 182, 0.08);
}
.hist-modal-meta {
  margin: 0;
  padding: 10px 20px;
  font-size: 13px;
  color: #64748b;
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}
.hist-modal-body {
  padding: 16px 20px 24px;
  overflow: auto;
  flex: 1;
  min-height: 120px;
  background: #fafdfd;
}
.hist-modal-pkg {
  margin: 0;
  padding: 0;
}
.hist-modal-pkg-inner {
  border: 0;
  padding: 0;
  background: transparent;
}
.hist-detail-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}
.hist-detail-dl dt {
  margin: 0;
  font-weight: 700;
  color: #6d28d9;
}
.hist-detail-dl dd {
  margin: 0;
}
.hist-detail-pre {
  margin: 0;
  padding: 12px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  max-height: 60vh;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.hist-modal-body .hist-rich {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
}
.hist-modal-body .hist-lead {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #0f172a;
}
.hist-modal-body .hist-tagline {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #6d28d9;
}
.hist-modal-body .hist-sub {
  font-size: 13px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #6d28d9;
}
.hist-modal-body .hist-ul {
  margin: 0;
  padding-left: 1.15em;
}
.hist-modal-body .hist-ul li {
  margin: 0.35em 0;
}
.hist-modal-body .hist-plan-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
}
.hist-modal-body .hist-phase {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}
.hist-modal-body .hist-ol {
  margin: 0;
  padding-left: 1.2em;
}
.hist-modal-body .hist-ol li {
  margin: 0.5em 0;
}
.hist-modal-body .hist-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.hist-modal-body .hist-img-cell {
  margin: 0;
}
.hist-modal-body .hist-img-cell img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  border: 1px solid #e2e8f0;
}
.hist-modal-body .hist-pre-muted {
  max-height: 28vh;
  font-size: 11px;
  opacity: 0.92;
}
.hist-modal-body p.hist-pre-wrap,
.hist-modal-body dd.hist-pre-wrap {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0 0 8px;
}
.hist-modal-body dd.hist-pre-wrap {
  margin: 0;
}

/* 历史记录 · 同行分析详情（与同行分析页同款结构化报告） */
body[data-page-subtitle="历史记录"] .hist-modal-dialog {
  width: min(1120px, 96vw);
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-regen {
  display: none !important;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-report-wrap,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-wf-wrap {
  background: #fff;
  border: 1px solid #e6eaf7;
  border-radius: 14px;
  padding: 18px 16px 22px;
  margin-bottom: 14px;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-title,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-h3,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-h4,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-subh {
  color: #141826;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-body,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-bullets,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-muted {
  color: #3d4558;
  font-size: 14px;
  line-height: 1.65;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-box-cyan {
  border: 1px solid #c5e8f0;
  background: #f0fbfd;
  border-radius: 10px;
  padding: 12px;
  margin: 8px 0;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-box-gold {
  border: 1px solid #f0e0b8;
  background: #fffbf0;
  border-radius: 10px;
  padding: 12px;
  margin: 8px 0;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-source-card,
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-learn-card {
  border: 1px solid #e6eaf7;
  background: #f8f9ff;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 8px 0;
}
body[data-page-subtitle="历史记录"] .hist-peer-report details.hist-peer-wf {
  margin-top: 12px;
  font-size: 13px;
}
body[data-page-subtitle="历史记录"] .hist-peer-report details.hist-peer-wf summary {
  cursor: pointer;
  color: #6d28d9;
  font-weight: 600;
  margin-bottom: 8px;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-wf-rich {
  white-space: normal;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-wf-rich .ai-rich-heading {
  color: #12323a;
  border-left-color: #8b5cf6;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-wf-rich .ai-rich-kv {
  grid-template-columns: minmax(110px, 0.22fr) 1fr;
}
body[data-page-subtitle="历史记录"] .hist-peer-report .peer-r-wf-rich .ai-rich-p {
  color: #3d4558;
}

.hist-modal-body .hist-page-view {
  margin: 0;
}
.hist-modal-body .hist-ipp-readonly .ipp-head-tools,
.hist-modal-body .hist-tl-readonly .tl-upload-row,
.hist-modal-body .hist-tl-readonly .tl-gen-main,
.hist-modal-body .hist-tl-readonly .tl-cat-grid,
.hist-modal-body .hist-tl-readonly .tl-search-wrap {
  display: none;
}
.hist-modal-body .hist-ipp-hint {
  margin: 6px 0 0;
  font-size: 13px;
}
.hist-modal-body .hist-ipp-readonly .ipp-step.open .ipp-step-detail {
  display: block;
}
.hist-modal-body .hist-detail-pre--light {
  background: #f8fafc;
  color: #334155;
  border: 1px solid rgba(91, 33, 182, 0.12);
}
.hist-modal-body .hist-modal-persona .pc-doc-wrap {
  max-width: none;
  margin: 0;
}
.hist-modal-body .hist-modal-persona .pc-doc-plan-table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}
.hist-modal-body .hist-modal-persona .pc-doc-lead,
.hist-modal-body .hist-modal-persona .pc-doc-h1,
.hist-modal-body .hist-modal-persona .pc-doc-h2,
.hist-modal-body .hist-modal-persona .pc-doc-h3,
.hist-modal-body .hist-modal-persona .pc-doc-h4,
.hist-modal-body .hist-modal-persona h1,
.hist-modal-body .hist-modal-persona h2,
.hist-modal-body .hist-modal-persona h3,
.hist-modal-body .hist-modal-persona h4,
.hist-modal-body .hist-modal-persona .pc-doc-script-title,
.hist-modal-body .hist-modal-persona .pc-doc-quote-type,
.hist-modal-body .hist-modal-persona .pc-doc-view-h,
.hist-modal-body .hist-modal-persona .pc-doc-plan-table th {
  color: #17152f !important;
  font-weight: 800 !important;
}

/* 账号包装：按设计稿还原整体布局 */
body[data-page-subtitle="账号包装方案"] {
  background:
    radial-gradient(circle at 8% -6%, rgba(139, 92, 246, 0.12), transparent 32%),
    linear-gradient(180deg, #fbfaff 0%, #f8fbff 58%, #f4fbff 100%);
}
body[data-page-subtitle="账号包装方案"] main.container {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}
body[data-page-subtitle="账号包装方案"] .panel:has(.pkg-page) {
  margin: 14px auto 28px;
  padding: 22px 26px 26px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
body[data-page-subtitle="账号包装方案"] .pkg-page {
  max-width: none;
  margin: 0;
  color: #17152f;
}
body[data-page-subtitle="账号包装方案"] .pkg-hero {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 6px 10px 12px;
}
body[data-page-subtitle="账号包装方案"] .pkg-hero-copy {
  flex: 1 1 auto;
  min-width: 0;
}
body[data-page-subtitle="账号包装方案"] .pkg-step-bar {
  gap: 10px;
  margin-bottom: 18px;
}
body[data-page-subtitle="账号包装方案"] .pkg-step-tag {
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}
body[data-page-subtitle="账号包装方案"] .pkg-step-crumb {
  color: #272246;
  font-weight: 800;
}
body[data-page-subtitle="账号包装方案"] .pkg-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.7vw, 40px);
  line-height: 1.18;
  color: #17152f;
}
body[data-page-subtitle="账号包装方案"] .pkg-title-ico {
  font-size: 34px;
}
body[data-page-subtitle="账号包装方案"] .pkg-desc {
  max-width: none;
  margin: 0;
  color: #6f6b86;
  font-size: 14px;
  line-height: 1.85;
}
body[data-page-subtitle="账号包装方案"] .pkg-desc strong,
body[data-page-subtitle="账号包装方案"] .pkg-ind {
  color: #6d28d9;
  font-weight: 700;
}
body[data-page-subtitle="账号包装方案"] .pkg-hero-art {
  flex: 0 0 230px;
  height: 132px;
  position: relative;
  margin-right: 16px;
  filter: drop-shadow(0 18px 24px rgba(91, 33, 182, 0.18));
}
body[data-page-subtitle="账号包装方案"] .pkg-art-card {
  position: absolute;
  right: 28px;
  top: 14px;
  width: 138px;
  height: 96px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), #f4f0ff 78%);
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: 0 22px 38px rgba(124, 58, 237, 0.15);
  transform: rotate(5deg);
}
body[data-page-subtitle="账号包装方案"] .pkg-art-top {
  position: absolute;
  left: 18px;
  top: 14px;
  width: 102px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #8b5cf6);
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.2);
}
body[data-page-subtitle="账号包装方案"] .pkg-art-avatar {
  position: absolute;
  left: 22px;
  top: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #8b5cf6 0 9px, transparent 10px),
    radial-gradient(ellipse at 50% 84%, #a78bfa 0 18px, transparent 19px),
    #ede9fe;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-line {
  position: absolute;
  left: 76px;
  height: 9px;
  border-radius: 999px;
  background: #ddd6fe;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-line-a {
  top: 43px;
  width: 44px;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-line-b {
  top: 62px;
  width: 35px;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-line-c {
  top: 80px;
  width: 49px;
  opacity: 0.74;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-spark,
body[data-page-subtitle="账号包装方案"] .pkg-art-star {
  position: absolute;
  color: #a78bfa;
  font-weight: 900;
  text-shadow: 0 12px 22px rgba(124, 58, 237, 0.22);
}
body[data-page-subtitle="账号包装方案"] .pkg-art-spark-a {
  left: 8px;
  top: 48px;
  font-size: 22px;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-spark-b {
  right: 6px;
  top: 34px;
  font-size: 14px;
  opacity: 0.65;
}
body[data-page-subtitle="账号包装方案"] .pkg-art-star {
  right: 0;
  bottom: 4px;
  font-size: 34px;
  color: #8b5cf6;
}
body[data-page-subtitle="账号包装方案"] .pkg-form-card {
  margin: 0 0 18px;
  padding: 22px 24px 18px;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(91, 33, 182, 0.08);
}
body[data-page-subtitle="账号包装方案"] .pkg-label {
  margin-bottom: 9px;
  color: #25233d;
  font-size: 14px;
  font-weight: 700;
}
body[data-page-subtitle="账号包装方案"] .pkg-textarea-wrap {
  position: relative;
  margin-bottom: 18px;
}
body[data-page-subtitle="账号包装方案"] .pkg-textarea {
  min-height: 120px;
  margin: 0;
  padding: 13px 16px 34px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  background: #fff;
}
body[data-page-subtitle="账号包装方案"] .pkg-char-count {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: #8a86a3;
  font-size: 12px;
}
body[data-page-subtitle="账号包装方案"] .pkg-plats {
  gap: 12px;
  margin-bottom: 18px;
}
body[data-page-subtitle="账号包装方案"] .pkg-plat {
  min-width: 116px;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: #fff;
  color: #3d525a;
  font-weight: 700;
}
body[data-page-subtitle="账号包装方案"] .pkg-plat.active {
  border-color: rgba(139, 92, 246, 0.48);
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  color: #6d28d9;
  box-shadow: 0 7px 18px rgba(139, 92, 246, 0.16);
}
body[data-page-subtitle="账号包装方案"] .pkg-form-row {
  gap: 14px 40px;
  margin-bottom: 18px;
}
body[data-page-subtitle="账号包装方案"] .pkg-input-wrap {
  position: relative;
}
body[data-page-subtitle="账号包装方案"] .pkg-input-wrap::before {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #7c6f9c;
  font-size: 15px;
  z-index: 1;
}
body[data-page-subtitle="账号包装方案"] .pkg-input-wrap-audience::before {
  content: "♧";
}
body[data-page-subtitle="账号包装方案"] .pkg-input-wrap-account::before {
  content: "♡";
}
body[data-page-subtitle="账号包装方案"] .pkg-input {
  height: 44px;
  padding-left: 40px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  background: #fff;
}
body[data-page-subtitle="账号包装方案"] .pkg-actions {
  gap: 24px;
  margin-bottom: 0;
}
body[data-page-subtitle="账号包装方案"] .pkg-btn-primary {
  min-height: 48px;
  border-radius: 10px;
  background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.28);
}
body[data-page-subtitle="账号包装方案"] .pkg-regen {
  min-width: 118px;
  justify-content: center;
  color: #7c3aed;
}
body[data-page-subtitle="账号包装方案"] .pkg-result-wrap {
  margin-top: 16px;
  border-radius: 12px;
  border-color: rgba(139, 92, 246, 0.13);
  background: #fff;
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.04);
}
body[data-page-subtitle="账号包装方案"] .pkg-result-head {
  min-height: 70px;
  padding: 14px 24px;
  background: #fff;
}
body[data-page-subtitle="账号包装方案"] .pkg-result-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1b1734;
  font-size: 18px;
}
body[data-page-subtitle="账号包装方案"] .pkg-result-ico {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #7c3aed;
  background: #f3e8ff;
}
body[data-page-subtitle="账号包装方案"] .pkg-toolbar-btn {
  min-height: 42px;
  border-radius: 9px;
  border-color: rgba(124, 58, 237, 0.45);
  color: #7c3aed;
  font-weight: 800;
  background: #fff;
}
body[data-page-subtitle="账号包装方案"] .pkg-toolbar-btn:hover {
  border-color: #7c3aed;
  color: #6d28d9;
  background: #faf5ff;
}
body[data-page-subtitle="账号包装方案"] .pkg-result-body {
  min-height: 110px;
  padding: 26px 24px 30px;
}
body[data-page-subtitle="账号包装方案"] .pkg-flow-jump {
  gap: 16px;
  margin-top: 28px;
}
body[data-page-subtitle="账号包装方案"] .pkg-flow-jump-link {
  min-height: 52px;
  border-radius: 12px;
}
@media (max-width: 900px) {
  body[data-page-subtitle="账号包装方案"] .panel:has(.pkg-page) {
    padding: 18px 16px 22px;
  }
  body[data-page-subtitle="账号包装方案"] .pkg-hero {
    min-height: 0;
    padding: 6px 4px 10px;
  }
  body[data-page-subtitle="账号包装方案"] .pkg-hero-art {
    display: none;
  }
  body[data-page-subtitle="账号包装方案"] .pkg-title {
    font-size: 30px;
  }
}

/* ========== 取消特定页面的 .panel 边框 ========== */
body[data-page-subtitle="语音对话"] .panel,
body[data-page-subtitle="AI视频"] .panel,
body[data-page-subtitle="爆款选题"] .panel {
  border: 0;
}

/* ========== 爆款选题90%宽度优化 ========== */
body[data-page-subtitle="爆款选题"] .tl-cat-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

body[data-page-subtitle="爆款选题"] .tl-cat-card {
  padding: 16px 14px 14px;
  min-height: 140px;
  gap: 6px;
}

body[data-page-subtitle="爆款选题"] .tl-cat-ico {
  font-size: 22px;
  margin-bottom: 2px;
}

body[data-page-subtitle="爆款选题"] .tl-cat-title {
  font-size: 15px;
  margin-bottom: 4px;
}

body[data-page-subtitle="爆款选题"] .tl-cat-desc {
  font-size: 12px;
  line-height: 1.5;
}

body[data-page-subtitle="爆款选题"] .tl-cat-count {
  font-size: 12px;
  margin-top: 6px;
}

body[data-page-subtitle="爆款选题"] .tl-row {
  padding: 16px 18px;
  gap: 16px;
}

body[data-page-subtitle="爆款选题"] .tl-row-num {
  width: 32px;
  font-size: 16px;
}

body[data-page-subtitle="爆款选题"] .tl-row-title {
  font-size: 15px;
  line-height: 1.5;
}

body[data-page-subtitle="爆款选题"] .tl-row-meta {
  margin-top: 8px;
  font-size: 13px;
}

body[data-page-subtitle="爆款选题"] .tl-detail-panel-inner {
  margin: 0 18px 18px 66px;
  padding: 20px 22px 22px;
}

body[data-page-subtitle="爆款选题"] .tl-detail-sec p {
  font-size: 14px;
  line-height: 1.7;
}

body[data-page-subtitle="爆款选题"] .tl-detail-dl dd {
  font-size: 14px;
  line-height: 1.65;
}

body[data-page-subtitle="爆款选题"] .tl-upload-card {
  padding: 16px 18px;
}

body[data-page-subtitle="爆款选题"] .tl-upload-card strong {
  font-size: 15px;
}

body[data-page-subtitle="爆款选题"] .tl-upload-card p {
  font-size: 13px;
}

body[data-page-subtitle="爆款选题"] .tl-gen-main {
  padding: 16px 20px;
  font-size: 16px;
  margin-bottom: 22px;
}

body[data-page-subtitle="爆款选题"] .tl-search-wrap {
  padding: 12px 16px;
  margin-bottom: 16px;
}

body[data-page-subtitle="爆款选题"] .tl-search-input {
  font-size: 15px;
}

body[data-page-subtitle="爆款选题"] .tl-list-head {
  font-size: 14px;
  margin-bottom: 12px;
}

@media (max-width: 1400px) {
  body[data-page-subtitle="爆款选题"] .tl-cat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  body[data-page-subtitle="爆款选题"] .tl-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-page-subtitle="爆款选题"] .tl-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body[data-page-subtitle="爆款选题"] .tl-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  body[data-page-subtitle="爆款选题"] .tl-detail-panel-inner {
    margin-left: 18px;
    margin-right: 14px;
  }
}
