/* ============================================================
 * zd-theme-erp.css —— new.zdss.cn 视觉继承层
 * 设计令牌继承自 erp.zdss.cn 的 tokens.css
 * (Hallmark · warm-paper / Zhongding-red 体系)
 * 原则: 只改颜色/字体/质感，不改布局与操作；删除本文件引用即回滚
 * ============================================================ */

/* 中鼎红品牌梯度 → amis brand ramp（erp accent oklch(51% .18 24) 换算） */
:root, .amis-scope, .app-wrapper {
  --colors-brand-1: #4f2420;
  --colors-brand-2: #632824;
  --colors-brand-3: #7c2d28;
  --colors-brand-4: #96322c;
  --colors-brand-5: #b23b35;   /* 主色: 中鼎红 */
  --colors-brand-6: #c25a54;
  --colors-brand-7: #d17d78;
  --colors-brand-8: #e0a29e;
  --zd-font: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans SC", "Microsoft YaHei", -apple-system, sans-serif;
}

/* 暖纸底色（页面底，卡片仍为白） */
:root, .amis-scope {
  --body-bg: #f9f6f0;
  --light: #f9f6f0;
  --fonts-base-family: var(--zd-font);
}

body, .app-wrapper {
  font-family: var(--zd-font);
  background: #f9f6f0;
}

/* 链接与选中态跟随品牌色 */
a { color: #b23b35; }
::selection { background: #e0a29e; color: #2e2a26; }

/* 测试环境横幅 → erp 风格顶条（保留警示功能，提升质感） */
#zdss-test-banner {
  background: linear-gradient(90deg, #4f2420 0%, #7c2d28 55%, #b23b35 100%);
  font-family: var(--zd-font);
  letter-spacing: .04em;
  box-shadow: 0 1px 8px rgba(46, 42, 38, .28);
}
#zdss-test-banner::before {
  content: "试";
  display: inline-block;
  margin-right: 10px;
  width: 18px; height: 18px;
  line-height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  vertical-align: middle;
}

/* 头部导航贴合品牌墨色（zy-header 是壳层自有结构） */
.zy-header-container { background: #4f2420 !important; }
