/* ============================================================
   企业AI应用平台 · 设计系统
   高端商务 / 科技极简 / 轻量化智能风
   主色: 深空蓝  辅助: 浅科技青 · 微光银灰  点缀: 鎏金
   ============================================================ */
:root {
  --primary: #123C8C;
  --primary-deep: #0A2A66;
  --primary-darker: #061B45;
  --cyan: #35C9D6;
  --cyan-light: #7FE3EA;
  --silver: #8C98A8;
  --gold: #F0A83B;
  --gold-light: #FFC86E;
  --bg: #F5F8FC;
  --bg-white: #FFFFFF;
  --text: #1C2B44;
  --text-sub: #5A6B85;
  --line: #E3EAF4;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(10, 42, 102, .08);
  --shadow-hover: 0 16px 44px rgba(10, 42, 102, .16);
  --grad-blue: linear-gradient(135deg, #123C8C 0%, #0A2A66 60%, #061B45 100%);
  --grad-cyan: linear-gradient(135deg, #35C9D6, #123C8C);
  --grad-gold: linear-gradient(135deg, #FFC86E, #F0A83B);
  --font: "Microsoft YaHei", "PingFang SC", "Source Han Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; border-radius: 999px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--grad-gold); color: #3A2405; box-shadow: 0 6px 18px rgba(240, 168, 59, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(240, 168, 59, .45); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-light); background: rgba(53,201,214,.08); }
.btn-ghost { background: rgba(18,60,140,.06); color: var(--primary); }
.btn-ghost:hover { background: rgba(18,60,140,.12); }
.btn-blue { background: var(--grad-cyan); color: #fff; box-shadow: 0 6px 18px rgba(18,60,140,.28); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(18,60,140,.38); }
.btn-lg { padding: 14px 34px; font-size: 16px; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(10,42,102,.08); }
.header-inner { display: flex; align-items: center; gap: 16px; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; flex: none; }
.logo-mark { display: grid; place-items: center; }
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { font-size: 16px; font-weight: 800; color: var(--primary-deep); line-height: 1.1; white-space: nowrap; }
.logo-text small { font-size: 9px; font-weight: 600; letter-spacing: 2px; color: var(--silver); }
.logo-text.light { color: #fff; }
.logo-text.light small { color: rgba(255,255,255,.55); }
.main-nav { display: flex; gap: 0; margin-left: auto; flex-wrap: nowrap; overflow: hidden; }
.main-nav a {
  padding: 5px 8px; border-radius: 6px; font-size: 12.5px; color: var(--text-sub);
  font-weight: 500; transition: all .2s; white-space: nowrap;
}
.main-nav a:hover { color: var(--primary); background: rgba(18,60,140,.05); }
.main-nav a.active { color: var(--primary); background: rgba(53,201,214,.12); font-weight: 700; }
.header-actions { display: flex; gap: 6px; align-items: center; flex: none; }
.header-actions .btn-ghost { padding: 6px 12px; font-size: 12px; }
.header-actions .btn-primary { padding: 6px 12px; font-size: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary-deep); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- 通用区块 ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-white); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--cyan);
  text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before, .section-tag::after { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.section-tag::after { background: linear-gradient(90deg, var(--cyan), transparent); }
.section-title { font-size: 34px; font-weight: 800; color: var(--primary-deep); letter-spacing: 1px; }
.section-desc { margin-top: 14px; color: var(--text-sub); font-size: 16px; }

/* ---------- 首页 Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-blue);
  padding: 110px 0 130px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,227,234,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,227,234,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb.o1 { width: 340px; height: 340px; right: -80px; top: -100px; background: radial-gradient(circle, rgba(53,201,214,.35), transparent 65%); animation: float 9s ease-in-out infinite; }
.hero-orb.o2 { width: 260px; height: 260px; left: -60px; bottom: -60px; background: radial-gradient(circle, rgba(240,168,59,.18), transparent 65%); animation: float 11s ease-in-out infinite reverse; }
.hero-orb.o3 { width: 180px; height: 180px; right: 26%; bottom: 10%; background: radial-gradient(circle, rgba(127,227,234,.22), transparent 65%); animation: float 7s ease-in-out infinite 1s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 18px;
  border: 1px solid rgba(127,227,234,.4); border-radius: 999px;
  color: var(--cyan-light); font-size: 13.5px; letter-spacing: 1px; margin-bottom: 26px;
  background: rgba(53,201,214,.08);
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1) } 50% { opacity: .5; transform: scale(.7) } }
.hero h1 { font-size: 48px; line-height: 1.28; font-weight: 800; letter-spacing: 1px; }
.hero h1 .grad { background: linear-gradient(90deg, var(--cyan-light), var(--gold-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin: 22px 0 36px; font-size: 17px; color: rgba(255,255,255,.78); max-width: 560px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-points .pt { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.72); }
.hero-points .pt svg { flex: none; }

/* Hero 右侧: AI 中心枢纽示意（动画占位） */
.hero-visual { position: relative; height: 420px; }
.hub-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 150px; height: 150px; border-radius: 28px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(127,227,234,.45);
  backdrop-filter: blur(6px); display: grid; place-items: center; text-align: center;
  animation: coreGlow 4s ease-in-out infinite; z-index: 3;
}
@keyframes coreGlow { 0%,100% { box-shadow: 0 0 40px rgba(53,201,214,.25) } 50% { box-shadow: 0 0 70px rgba(53,201,214,.5) } }
.hub-core .t { font-size: 17px; font-weight: 800; color: #fff; }
.hub-core .s { font-size: 10px; letter-spacing: 2px; color: var(--cyan-light); margin-top: 4px; }
.hub-ring { position: absolute; left: 50%; top: 50%; border: 1px dashed rgba(127,227,234,.28); border-radius: 50%; transform: translate(-50%,-50%); animation: spin 26s linear infinite; }
.hub-ring.r1 { width: 250px; height: 250px; }
.hub-ring.r2 { width: 360px; height: 360px; animation-direction: reverse; animation-duration: 40s; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg) } }
.hub-node {
  position: absolute; width: 92px; height: 92px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; gap: 4px;
  text-align: center; font-size: 12.5px; color: #fff; font-weight: 600;
  backdrop-filter: blur(4px); z-index: 4; padding: 8px;
}
.hub-node small { font-size: 10px; color: var(--cyan-light); font-weight: 400; }
.hub-node.n1 { left: 50%; top: 0; transform: translateX(-50%); animation: bob 5s ease-in-out infinite; }
.hub-node.n2 { right: 0; top: 50%; transform: translateY(-50%); animation: bob 6s ease-in-out infinite .6s; }
.hub-node.n3 { left: 50%; bottom: 0; transform: translateX(-50%); animation: bob 5.5s ease-in-out infinite 1.2s; }
.hub-node.n4 { left: 0; top: 50%; transform: translateY(-50%); animation: bob 6.5s ease-in-out infinite .3s; }
@keyframes bob { 0%,100% { margin-top: 0 } 50% { margin-top: -12px } }
.hub-line { position: absolute; left: 50%; top: 50%; transform-origin: 0 0; height: 1px; background: linear-gradient(90deg, rgba(127,227,234,.55), transparent); z-index: 2; }

/* ---------- 数据统计条 ---------- */
.stats-band { background: var(--bg-white); border-bottom: 1px solid var(--line); padding: 42px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .num { font-size: 40px; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.stat-item .num .suffix { color: var(--gold); font-size: 26px; }
.stat-item .label { color: var(--text-sub); font-size: 14px; margin-top: 4px; }

/* ---------- 四大核心板块 ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.product-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(53,201,214,.5); }
.product-card::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 170px; height: 170px;
  border-radius: 50%; background: radial-gradient(circle, rgba(53,201,214,.12), transparent 70%);
}
.product-card .icon-wrap {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(18,60,140,.07); margin-bottom: 22px;
}
.product-card h3 { font-size: 21px; font-weight: 800; color: var(--primary-deep); margin-bottom: 10px; }
.product-card .en { font-size: 11px; letter-spacing: 2px; color: var(--silver); text-transform: uppercase; }
.product-card p { color: var(--text-sub); font-size: 14.5px; margin-bottom: 18px; }
.product-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.product-card .tag {
  font-size: 12px; padding: 4px 12px; border-radius: 999px;
  background: rgba(53,201,214,.1); color: #12808A; font-weight: 600;
}
.product-card .more { font-size: 14px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.product-card .more:hover { color: var(--cyan); }

/* ---------- 亮点价值 ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-item {
  text-align: center; padding: 40px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(245,248,252,.6));
  border: 1px solid var(--line); transition: all .3s;
}
.value-item:hover { border-color: rgba(240,168,59,.5); transform: translateY(-4px); }
.value-item .num-badge {
  width: 46px; height: 46px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--grad-cyan); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 18px; box-shadow: 0 6px 16px rgba(18,60,140,.25);
}
.value-item h4 { font-size: 17px; font-weight: 800; color: var(--primary-deep); margin-bottom: 10px; }
.value-item p { font-size: 13.5px; color: var(--text-sub); }

/* ---------- 产品详情页 ---------- */
.page-hero {
  background: var(--grad-blue); color: #fff; position: relative; overflow: hidden;
  padding: 76px 0 68px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,227,234,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,227,234,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 20%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--cyan-light); }
.page-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: 1px; }
.page-hero .slogan { margin-top: 12px; font-size: 17px; color: var(--cyan-light); }
.page-hero .desc { margin-top: 16px; max-width: 760px; color: rgba(255,255,255,.75); font-size: 15px; }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.module-grid.two { grid-template-columns: repeat(2, 1fr); }
.module-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: all .3s; position: relative;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(53,201,214,.45); }
.module-card .m-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(18,60,140,.08), rgba(53,201,214,.12)); margin-bottom: 20px;
}
.module-card h3 { font-size: 18.5px; font-weight: 800; color: var(--primary-deep); margin-bottom: 10px; }
.module-card p { font-size: 14px; color: var(--text-sub); }
.module-card .demo-hint {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-size: 12.5px; color: var(--silver); display: flex; align-items: center; gap: 6px;
}
.module-card .demo-hint .badge {
  font-size: 11px; padding: 2px 10px; border-radius: 999px; font-weight: 600;
  background: rgba(240,168,59,.14); color: #B07414;
}

/* 功能演示动效占位 */
.demo-strip {
  margin-top: 22px; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--grad-blue); padding: 16px 18px; position: relative;
}
.demo-strip .flow { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.demo-strip .chip {
  flex: none; padding: 6px 14px; border-radius: 8px; font-size: 12px; color: #EAF6FF;
  background: rgba(255,255,255,.09); border: 1px solid rgba(127,227,234,.3);
  animation: chipFlow 7s linear infinite;
}
@keyframes chipFlow {
  0% { opacity: .25 } 12% { opacity: 1; border-color: var(--cyan); color: #fff }
  55% { opacity: 1 } 70%, 100% { opacity: .25 }
}
.demo-strip .chip:nth-child(2) { animation-delay: 1.1s }
.demo-strip .chip:nth-child(3) { animation-delay: 2.2s }
.demo-strip .chip:nth-child(4) { animation-delay: 3.3s }
.demo-strip .chip:nth-child(5) { animation-delay: 4.4s }
.demo-strip .chip:nth-child(6) { animation-delay: 5.5s }
.demo-strip .arrow { color: var(--cyan); flex: none; animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0); opacity: .5 } 50% { transform: translateX(4px); opacity: 1 } }

/* 行业网格（RPA） */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 26px 22px; transition: all .3s; position: relative; overflow: hidden;
}
.industry-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-cyan); transform: scaleY(0); transform-origin: top; transition: transform .3s;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-card:hover::before { transform: scaleY(1); }
.industry-card h4 { font-size: 16.5px; font-weight: 800; color: var(--primary-deep); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.industry-card h4 .cube { width: 10px; height: 10px; border-radius: 3px; background: var(--grad-gold); flex: none; }
.industry-card p { font-size: 13px; color: var(--text-sub); }

/* ---------- 解决方案 ---------- */
.solution-row {
  display: grid; grid-template-columns: 340px 1fr 300px; gap: 0;
  background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 22px; transition: all .3s;
}
.solution-row:hover { box-shadow: var(--shadow-hover); border-color: rgba(53,201,214,.4); }
.solution-row .s-ind {
  background: var(--grad-blue); color: #fff; padding: 34px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.solution-row .s-ind .en { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.5); text-transform: uppercase; }
.solution-row .s-ind h3 { font-size: 21px; font-weight: 800; }
.solution-row .s-body { padding: 30px 32px; }
.solution-row .s-body .combo { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.solution-row .s-body .combo span {
  font-size: 12.5px; font-weight: 600; color: var(--primary); background: rgba(18,60,140,.07);
  padding: 5px 14px; border-radius: 999px;
}
.solution-row .s-body .goal { font-size: 14px; color: var(--text-sub); }
.solution-row .s-effect {
  border-left: 1px dashed var(--line); padding: 30px 26px; display: flex;
  flex-direction: column; justify-content: center; gap: 8px; background: #FAFCFE;
}
.solution-row .s-effect .cap { font-size: 12px; letter-spacing: 2px; color: var(--silver); }
.solution-row .s-effect .val { font-size: 18px; font-weight: 800; color: var(--gold); line-height: 1.5; }

/* ---------- 案例卡片 ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .3s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.case-card .case-cover {
  height: 150px; position: relative; overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0A2A66, #123C8C 55%, #1B55B8);
}
.case-card .case-cover::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,227,234,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,227,234,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: coverPan 14s linear infinite;
}
@keyframes coverPan { to { background-position: 34px 34px } }
.case-card .case-cover .industry-tag {
  position: relative; z-index: 2; padding: 7px 20px; border-radius: 999px;
  border: 1px solid rgba(127,227,234,.5); color: var(--cyan-light);
  font-size: 13.5px; font-weight: 700; letter-spacing: 1px; background: rgba(6,27,69,.4);
}
.case-card .case-body { padding: 26px 28px; }
.case-card .case-body h3 { font-size: 18px; font-weight: 800; color: var(--primary-deep); display: flex; align-items: baseline; gap: 10px; }
.case-card .case-body h3 small { font-size: 12px; color: var(--silver); font-weight: 500; }
.case-card .row { display: flex; gap: 10px; margin: 14px 0; font-size: 13.5px; }
.case-card .row .k { flex: none; color: var(--silver); }
.case-card .row .v { color: var(--text-sub); }
.case-card .metrics { display: flex; gap: 14px; margin-top: 16px; }
.case-card .metric {
  flex: 1; text-align: center; padding: 12px 8px; border-radius: var(--radius-sm);
  background: rgba(53,201,214,.07); border: 1px solid rgba(53,201,214,.18);
}
.case-card .metric .mv { font-size: 20px; font-weight: 800; color: var(--primary); }
.case-card .metric .ml { font-size: 11.5px; color: var(--text-sub); }

/* ---------- 价格 ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: 18px;
  padding: 40px 34px; display: flex; flex-direction: column; position: relative;
  transition: all .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-card.highlight {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--primary), var(--gold)) border-box;
  box-shadow: 0 20px 50px rgba(18,60,140,.18);
}
.price-card .pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #3A2405; font-size: 12px; font-weight: 800;
  padding: 5px 18px; border-radius: 999px; letter-spacing: 1px;
}
.price-card .plan-name { font-size: 20px; font-weight: 800; color: var(--primary-deep); }
.price-card .plan-target { font-size: 13px; color: var(--silver); margin-top: 4px; }
.price-card .price-line { margin: 24px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.price-card .price { font-size: 36px; font-weight: 800; color: var(--primary); }
.price-card .unit { font-size: 13px; color: var(--silver); }
.price-card ul { list-style: none; margin: 22px 0 30px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-sub); padding: 7px 0; }
.price-card li svg { flex: none; margin-top: 4px; }

/* ---------- 关于我们 ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  aspect-ratio: 4/3; border-radius: 18px; position: relative; overflow: hidden;
  background: var(--grad-blue); border: 1px solid rgba(127,227,234,.25);
  display: grid; place-items: center;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(127,227,234,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,227,234,.08) 1px, transparent 1px);
  background-size: 40px 40px; animation: coverPan 20s linear infinite;
}
.about-visual .stack { position: relative; z-index: 2; display: grid; gap: 14px; width: 74%; }
.about-visual .layer {
  background: rgba(255,255,255,.08); border: 1px solid rgba(127,227,234,.35);
  border-radius: 12px; padding: 14px 20px; color: #EAF6FF; font-size: 14px; font-weight: 600;
  backdrop-filter: blur(4px); display: flex; justify-content: space-between; align-items: center;
  animation: bob 6s ease-in-out infinite;
}
.about-visual .layer:nth-child(2) { animation-delay: .8s }
.about-visual .layer:nth-child(3) { animation-delay: 1.6s }
.about-visual .layer small { color: var(--cyan-light); font-size: 11px; font-weight: 400; }
.about-text h3 { font-size: 24px; font-weight: 800; color: var(--primary-deep); margin-bottom: 16px; }
.about-text p { color: var(--text-sub); font-size: 15px; margin-bottom: 14px; }
.about-points { margin-top: 22px; display: grid; gap: 12px; }
.about-points .ap { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.about-points .ap svg { flex: none; margin-top: 4px; }

/* ---------- 咨询表单 ---------- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; align-items: start;
}
.contact-side h3 { font-size: 26px; font-weight: 800; color: var(--primary-deep); margin-bottom: 14px; }
.contact-side p { color: var(--text-sub); font-size: 15px; margin-bottom: 26px; }
.contact-side .item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.contact-side .item .ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(53,201,214,.1);
}
.contact-side .item .t { font-size: 14px; color: var(--silver); }
.contact-side .item .v { font-size: 15.5px; font-weight: 700; color: var(--primary-deep); }
.contact-side .item.wechat-qr { flex-direction: column; gap: 12px; }
.contact-side .item.wechat-qr > .ic { align-self: flex-start; }
.contact-side .item.wechat-qr .t { margin-bottom: 0; }
.contact-side .qr-box {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  margin-top: 4px;
}
.contact-side .qr-box img {
  width: 160px; height: 160px; object-fit: contain;
  border-radius: 12px; border: 1px solid var(--line);
  background: #fff; padding: 8px; box-shadow: 0 4px 16px rgba(10,42,102,.08);
}
.contact-side .qr-box .qr-tip {
  font-size: 12px; color: var(--silver);
}
.form-card {
  background: var(--bg-white); border: 1px solid var(--line); border-radius: 18px;
  padding: 40px 38px; box-shadow: var(--shadow);
}
.form-card h3 { font-size: 20px; font-weight: 800; color: var(--primary-deep); margin-bottom: 6px; }
.form-card .form-sub { font-size: 13px; color: var(--silver); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-item { display: flex; flex-direction: column; gap: 7px; }
.form-item.full { grid-column: 1 / -1; }
.form-item label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-item label .req { color: #E05A4E; margin-left: 2px; }
.form-item input, .form-item select, .form-item textarea {
  font-family: var(--font); font-size: 14px; padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #FAFCFE; color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-item textarea { min-height: 96px; resize: vertical; }
.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(53,201,214,.14); background: #fff;
}
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.form-msg { font-size: 13.5px; }
.form-msg.ok { color: #129077; }
.form-msg.err { color: #E05A4E; }
.form-note { grid-column: 1/-1; font-size: 12px; color: var(--silver); }

/* CTA 横幅 */
.cta-banner {
  background: var(--grad-blue); border-radius: 20px; color: #fff;
  padding: 56px 60px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner::before {
  content: ""; position: absolute; right: -70px; top: -90px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(240,168,59,.22), transparent 65%);
}
.cta-banner h3 { font-size: 28px; font-weight: 800; position: relative; }
.cta-banner p { margin-top: 10px; color: rgba(255,255,255,.72); font-size: 15px; position: relative; }
.cta-banner .actions { position: relative; display: flex; gap: 16px; }

/* 占位提示 */
.placeholder-note {
  margin-top: 40px; padding: 16px 22px; border-radius: var(--radius-sm);
  background: rgba(240,168,59,.08); border: 1px dashed rgba(240,168,59,.45);
  color: #9A6A15; font-size: 13px; display: flex; gap: 10px; align-items: flex-start;
}

/* toast */
.toast {
  position: fixed; top: 84px; left: 50%; transform: translateX(-50%) translateY(-16px);
  background: var(--primary-deep); color: #fff; padding: 12px 26px; border-radius: 999px;
  font-size: 14px; box-shadow: 0 12px 34px rgba(6,27,69,.35); opacity: 0;
  transition: all .35s; z-index: 300; pointer-events: none; border: 1px solid rgba(127,227,234,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--primary-darker); color: rgba(255,255,255,.66); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px 44px; }
.footer-brand p { font-size: 13.5px; margin-top: 16px; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13.5px; padding: 5px 0; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--cyan-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 12.5px; color: rgba(255,255,255,.35); }

/* 进入动画 */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .module-grid, .module-grid.two { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 1fr; }
  .solution-row .s-effect { border-left: none; border-top: 1px dashed var(--line); }
  .main-nav a { font-size: 12px; padding: 5px 7px; }
}

@media (max-width: 900px) {
  .main-nav a { font-size: 11.5px; padding: 5px 6px; }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { gap: 10px; height: 52px; }
  .logo-text { font-size: 14px; }
  .logo-text small { font-size: 8px; letter-spacing: 1px; }
  .logo-mark svg { width: 22px; height: 22px; }

  .main-nav {
    position: absolute; top: 52px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 16px;
    display: none; box-shadow: var(--shadow); z-index: 200;
  }
  .main-nav a { font-size: 14px; padding: 10px 12px; border-radius: 8px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { padding: 5px 10px; font-size: 11px; }

  .hero { padding: 50px 0 60px; }
  .hero h1 { font-size: 28px; letter-spacing: 0.5px; }
  .hero-sub { font-size: 14px; margin: 16px 0 24px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn-lg { padding: 12px 24px; font-size: 15px; }
  .hero-points { margin-top: 30px; gap: 16px; flex-wrap: wrap; }
  .hero-points .pt { font-size: 12px; }
  .hero-kicker { font-size: 12px; padding: 5px 12px; margin-bottom: 18px; }

  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: 24px; }
  .section-desc { font-size: 14px; }
  .section-tag { font-size: 11px; letter-spacing: 1.5px; }

  .stats-band { padding: 28px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item .num { font-size: 30px; }
  .stat-item .num .suffix { font-size: 20px; }

  .product-grid, .module-grid, .module-grid.two, .industry-grid,
  .case-grid, .pricing-grid, .value-grid, .form-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .product-grid { gap: 16px; }
  .product-card { padding: 24px 20px; }
  .product-card h3 { font-size: 17px; }

  .module-grid { gap: 16px; }
  .module-card { padding: 24px 20px; }

  .page-hero { padding: 50px 0 44px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero .slogan { font-size: 14px; }
  .page-hero .desc { font-size: 13px; }

  .solution-row { grid-template-columns: 1fr; }
  .solution-row .s-ind { padding: 24px 20px; }
  .solution-row .s-ind h3 { font-size: 17px; }
  .solution-row .s-body { padding: 20px; }
  .solution-row .s-effect { border-left: none; border-top: 1px dashed var(--line); padding: 20px; }

  .cta-banner { padding: 30px 22px; flex-direction: column; gap: 20px; text-align: center; }
  .cta-banner h3 { font-size: 22px; }
  .cta-banner .actions { justify-content: center; }

  .price-card { padding: 28px 22px; }
  .price-card .price { font-size: 30px; }

  .contact-wrap { grid-template-columns: 1fr; gap: 24px; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }

  .about-grid { gap: 30px; }
  .about-visual { aspect-ratio: 16/10; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 28px; }
  .footer-brand p { font-size: 13px; }
  .footer-bottom { padding: 16px 0; text-align: center; }

  .case-grid { gap: 16px; }
  .case-card .case-body { padding: 20px; }
  .case-card h3 { font-size: 16px; }

  .value-grid { gap: 16px; }
  .value-item { padding: 28px 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- 后台管理页面 ---------- */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.admin-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.admin-stat-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-blue);
}
.admin-stat-card.new::before { background: linear-gradient(180deg, #E05A4E, #D44838); }
.admin-stat-card.processed::before { background: linear-gradient(180deg, #35C9D6, #123C8C); }
.admin-stat-card.ignored::before { background: linear-gradient(180deg, #8C98A8, #5A6B85); }
.asc-num {
  font-size: 36px; font-weight: 800; color: var(--primary);
  line-height: 1; margin-bottom: 8px;
}
.admin-stat-card.new .asc-num { color: #E05A4E; }
.admin-stat-card.processed .asc-num { color: var(--cyan); }
.admin-stat-card.ignored .asc-num { color: var(--silver); }
.asc-label { font-size: 14px; color: var(--text-sub); }

.admin-toolbar {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.admin-filter {
  display: flex; flex-direction: column; gap: 6px;
}
.admin-filter label {
  font-size: 12px; color: var(--text-sub); font-weight: 500;
}
.admin-filter select,
.admin-filter input {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #fff;
  color: var(--text);
  min-width: 180px;
  transition: border-color .2s ease;
  font-family: var(--font);
}
.admin-filter select:focus,
.admin-filter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 60, 140, .1);
}
.btn-sm { padding: 9px 20px; font-size: 14px; }

.admin-table-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
  overflow: hidden;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.admin-table thead {
  background: linear-gradient(135deg, #F5F8FC, #E8EEF8);
}
.admin-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
  white-space: nowrap;
  border-bottom: 2px solid var(--line);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tbody tr { transition: background .15s ease; }
.admin-table tbody tr:hover { background: rgba(18, 60, 140, .03); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table .at-company { font-weight: 600; color: var(--primary); max-width: 200px; }
.admin-table .at-demand { max-width: 220px; color: var(--text-sub); }
.admin-table .at-actions { white-space: nowrap; }
.admin-table .admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-sub);
  font-size: 15px;
}

.as-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.as-badge.new { background: rgba(224, 90, 78, .12); color: #E05A4E; }
.as-badge.processed { background: rgba(53, 201, 214, .12); color: #123C8C; }
.as-badge.ignored { background: rgba(140, 152, 168, .15); color: var(--silver); }

.as-status-sel {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12.5px;
  background: #fff;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font);
  transition: border-color .2s ease;
}
.as-status-sel:hover { border-color: var(--primary); }
.as-status-sel:focus { outline: none; border-color: var(--primary); }

.as-del {
  padding: 5px 12px;
  margin-left: 8px;
  border: 1px solid rgba(224, 90, 78, .3);
  border-radius: 8px;
  background: rgba(224, 90, 78, .06);
  color: #E05A4E;
  font-size: 12.5px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font);
}
.as-del:hover {
  background: #E05A4E;
  color: #fff;
  border-color: #E05A4E;
}

/* 后台管理 - 移动端适配 */
@media (max-width: 768px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .admin-stat-card { padding: 18px 20px; }
  .asc-num { font-size: 28px; }
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .admin-filter select, .admin-filter input { min-width: 100%; }
  .admin-table { font-size: 12.5px; }
  .admin-table th, .admin-table td { padding: 10px 12px; }
  .admin-table .at-company { max-width: 140px; }
  .admin-table .at-demand { max-width: 120px; }
}
@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .asc-num { font-size: 24px; }
  .admin-table-wrap { font-size: 12px; }
  .admin-table th:nth-child(5),
  .admin-table td:nth-child(5),
  .admin-table th:nth-child(6),
  .admin-table td:nth-child(6) { display: none; }
}

/* ---------- 演示动效按钮 ---------- */
.demo-hint .badge.demo-btn {
  cursor: pointer;
  background: linear-gradient(135deg, #123C8C, #35C9D6);
  color: #fff;
  border: none;
  padding: 5px 12px;
  transition: all .2s ease;
  user-select: none;
}
.demo-hint .badge.demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(18, 60, 140, .35);
}
.demo-hint .badge.demo-btn:active { transform: translateY(0); }

/* ---------- 演示弹窗 ---------- */
.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, .65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: dmFade .25s ease;
}
@keyframes dmFade { from { opacity: 0; } to { opacity: 1; } }
.demo-modal {
  background: #fff;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 42, 102, .4);
  animation: dmIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes dmIn {
  from { transform: translateY(30px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.dm-head {
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #F5F8FC, #EAF3FF);
}
.dm-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dm-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #35C9D6, #123C8C);
  box-shadow: 0 0 0 4px rgba(53, 201, 214, .15);
  animation: dmPulse 1.6s infinite ease;
}
@keyframes dmPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53,201,214,.15); }
  50% { box-shadow: 0 0 0 8px rgba(53,201,214,.25); }
}
.dm-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(18,60,140,.08);
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
}
.dm-close:hover { background: var(--primary); color: #fff; }
.dm-body {
  padding: 22px 28px;
  overflow-y: auto;
  flex: 1;
  background: #FAFCFF;
}
.dm-foot {
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
}
.dm-tip {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-sub);
}
.dm-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-sub);
  font-size: 15px;
}
.dm-stage { animation: dmFade .4s ease; }
.dm-sub {
  font-size: 13px;
  color: var(--primary);
  background: rgba(18,60,140,.06);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-weight: 500;
  display: inline-block;
}

/* ---- 通用：卡片、表格 ---- */
.dm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(18,60,140,.04);
}
.dm-card h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dm-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dm-tbl.sm { font-size: 12px; }
.dm-tbl th {
  background: var(--bg);
  padding: 8px 10px;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--line);
}
.dm-tbl td {
  padding: 7px 10px;
  border-bottom: 1px dashed var(--line);
  color: var(--text);
}
.dm-tbl .green { color: #1a8c58; font-weight: 600; }
.dm-tbl .no { color: var(--silver); }
.row-in { animation: rowIn .4s ease; }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---- 流程 ---- */
.dm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(53,201,214,.08), rgba(18,60,140,.08));
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.dm-flow .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--line);
  transition: all .3s ease;
  min-width: 100px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
}
.dm-flow .step i { font-size: 22px; }
.dm-flow .step.active {
  border-color: var(--primary);
  background: var(--grad-blue);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(18,60,140,.3);
}
.dm-flow .arr {
  color: var(--silver);
  transition: all .3s ease;
  font-weight: 700;
}
.dm-flow .arr.active { color: var(--cyan); transform: scale(1.3); }

/* ============== OA · 智能人事 ============== */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dm-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dm-log { font-size: 12.5px; line-height: 1.9; max-height: 180px; overflow-y: auto; }
.dm-log .ok { color: #1a8c58; font-weight: 700; margin-right: 4px; }
.dm-log .dotl {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: blk 1s infinite; margin-right: 6px;
}
@keyframes blk { 0%,100%{opacity:.3;} 50%{opacity:1;} }
.dm-cv-list { display: flex; flex-direction: column; gap: 8px; }
.dm-cv {
  padding: 8px 10px;
  border-radius: 8px;
  animation: rowIn .4s ease;
  border: 1px solid var(--line);
}
.dm-cv.pass { border-color: rgba(26,140,88,.3); background: rgba(26,140,88,.05); }
.dm-cv.rej { border-color: rgba(224,90,78,.3); background: rgba(224,90,78,.05); opacity: .8; }
.cv-h { display: flex; align-items: center; gap: 8px; font-size: 12.5px; margin-bottom: 4px; }
.cv-name { font-weight: 700; }
.cv-edu { color: var(--text-sub); font-size: 11.5px; }
.cv-match { margin-left: auto; background: var(--grad-blue); color: #fff; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.dm-cv.rej .cv-match { background: #8C98A8; }
.cv-r { font-size: 12px; color: #1a8c58; font-weight: 500; }
.dm-cv.rej .cv-r { color: #E05A4E; }

/* ============== OA · 考勤 ============== */
.clock-row {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 6px;
  animation: rowIn .4s ease;
  font-size: 12.5px;
}
.clock-row.good { background: rgba(26,140,88,.05); border-color: rgba(26,140,88,.2); }
.clock-row.bad { background: rgba(224,90,78,.05); border-color: rgba(224,90,78,.2); }
.cr-n { font-weight: 700; min-width: 52px; }
.cr-t { flex: 1; color: var(--text-sub); }
.cr-s { padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.clock-row.good .cr-s { background: #1a8c58; color: #fff; }
.clock-row.bad .cr-s { background: #E05A4E; color: #fff; }
.abn-empty { color: var(--text-sub); font-size: 13px; padding: 10px 0; }
.abn-item { padding: 6px 10px; border-radius: 6px; margin-bottom: 6px; font-size: 12.5px; }
.abn-item.red { background: rgba(224,90,78,.08); color: #C23A2E; }
.abn-item.green { background: rgba(26,140,88,.08); color: #1a8c58; }
.abn-item.blue { background: rgba(53,201,214,.1); color: #123C8C; }
.rep-sum {
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(53,201,214,.1);
  border-radius: 6px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

/* ============== OA · 报销 ============== */
.dm-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.dm-row > * {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.dm-arrow {
  flex: 0 0 30px !important;
  min-width: 30px !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  font-weight: 700;
  animation: arrFloat 1.4s infinite ease;
}
@keyframes arrFloat {
  0%,100% { transform: translateX(0); opacity: .5; }
  50% { transform: translateX(6px); opacity: 1; }
}
.iu-title, .aichk-title, .ap-title, .ld-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.iu-tip { font-size: 11.5px; color: var(--text-sub); margin-bottom: 8px; }
.inv-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: rgba(240,168,59,.1);
  font-size: 12px;
  animation: cvIn .4s ease both;
}
@keyframes cvIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}
.inv-ic { font-size: 18px; }
.inv-t { flex: 1; }
.inv-a { font-weight: 700; color: var(--primary); }
.ai-row {
  padding: 5px 8px;
  border-radius: 6px;
  margin-bottom: 5px;
  font-size: 12px;
  animation: rowIn .3s ease;
}
.ai-row.ok { background: rgba(26,140,88,.08); color: #1a8c58; }
.ai-row.err { background: rgba(224,90,78,.08); color: #C23A2E; }
.ai-row .ocr { color: var(--primary); font-size: 11px; margin-left: 6px; }
.ai-row .warn { color: #C23A2E; font-size: 11px; margin-left: 6px; }
.ap-flow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ap-n {
  padding: 6px 10px;
  border-radius: 6px;
  background: #F0F2F5;
  color: var(--text-sub);
  font-weight: 500;
  transition: all .3s ease;
}
.ap-n.active {
  background: var(--grad-cyan);
  color: #fff;
  animation: rowIn .4s ease;
}
.ap-ok {
  padding: 8px 10px;
  background: rgba(26,140,88,.1);
  color: #1a8c58;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
}
.ld-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12.5px;
}

/* ============== OA · 行政 ============== */
.dm-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.adm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: all .3s ease;
  transform: translateY(8px);
  opacity: .3;
}
.adm-card.pop { opacity: 1; transform: none; box-shadow: var(--shadow); border-color: rgba(53,201,214,.5); }
.adm-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
}
.adm-card h4 { font-size: 14px; color: var(--primary); margin-bottom: 8px; }
.adm-card ul { list-style: none; font-size: 12px; line-height: 1.9; color: var(--text-sub); }
.adm-card li.ok { color: #1a8c58; font-weight: 600; }
.dm-remind {
  background: linear-gradient(135deg, rgba(240,168,59,.12), rgba(240,168,59,.04));
  border: 1px solid rgba(240,168,59,.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.dm-remind h5 { color: var(--primary); margin-bottom: 10px; font-size: 13px; }
.rm-row {
  padding: 8px 10px;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 12.5px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s ease;
}
.rm-row.in { opacity: 1; transform: none; }
.rm-t {
  display: inline-block;
  width: 60px;
  font-weight: 700;
  color: var(--gold);
}

/* ============== OA · 数据看板 ============== */
.dm-board { display: flex; flex-direction: column; gap: 16px; }
.bd-row1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bd-numcard {
  background: linear-gradient(135deg, #fff, #F0F7FF);
  border: 1px solid rgba(18,60,140,.12);
  border-radius: var(--radius-sm);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.bd-numcard::before {
  content: ""; position: absolute; right: -20px; top: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(18,60,140,.06);
}
.bd-label { font-size: 12px; color: var(--text-sub); margin-bottom: 6px; }
.bd-v { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.bd-numcard.b2 .bd-v { color: #F0A83B; }
.bd-numcard.b3 .bd-v { color: #35C9D6; }
.bd-numcard.b4 .bd-v { color: #1a8c58; }
.bd-s { font-size: 11.5px; color: var(--text-sub); margin-top: 4px; }
.bd-row2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
.bd-chart, .bd-pie {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.bd-chart h5, .bd-pie h5 { font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.bars { display: flex; flex-direction: column; gap: 8px; }
.bar { display: grid; grid-template-columns: 50px 1fr 40px; align-items: center; gap: 10px; }
.bar .lbl { font-size: 12px; color: var(--text-sub); }
.bar .bg {
  height: 18px;
  background: #F0F2F5;
  border-radius: 4px;
  overflow: hidden;
}
.bar .fg {
  height: 100%;
  background: var(--grad-cyan);
  border-radius: 4px;
  transition: width 1s cubic-bezier(.2,.8,.2,1);
}
.bar .v { font-size: 12px; font-weight: 700; color: var(--primary); text-align: right; }
.pie {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: #F0F2F5;
  margin: 0 auto 12px;
  transition: background 1s ease;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}
.lgd { list-style: none; display: grid; gap: 4px; font-size: 12px; }
.lgd li { display: flex; align-items: center; gap: 6px; }
.dc { display: inline-block; width: 12px; height: 12px; border-radius: 3px; }
.dc.c1 { background: #123C8C; }
.dc.c2 { background: #35C9D6; }
.dc.c3 { background: #F0A83B; }
.dc.c4 { background: #8C98A8; }

/* ============== RPA ============== */
.rpa-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 14px;
}
.rpa-source, .rpa-robot, .rpa-target {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.rpa-source h5, .rpa-target h5 { font-size: 13px; color: var(--primary); margin-bottom: 10px; }
.flist { display: flex; flex-direction: column; gap: 6px; }
.fi {
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--bg);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}
.fi.done { background: rgba(26,140,88,.1); color: #1a8c58; text-decoration: line-through; opacity: .7; }
.rpa-head {
  padding: 10px 14px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 13px;
}
.rpa-log {
  height: 220px;
  overflow-y: auto;
  background: #0C1B33;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 11.5px;
  line-height: 1.8;
  color: #C3D4F0;
}
.rpa-log .r-wait { color: #F0A83B; }
.rpa-log .t { color: #7FE3EA; margin-right: 8px; }
.r-line { animation: rowIn .3s ease; }

/* ============== Growth · 市场分析 ============== */
.gmk-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; }
.gmk-src, .gmk-report {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.gmk-src h5, .gmk-report .gr-title { font-size: 13px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.gmk-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  animation: rowIn .3s ease;
}
.chip .ok { color: #1a8c58; font-weight: 700; }
.gr-empty {
  color: var(--gold);
  padding: 40px 0;
  text-align: center;
  animation: blk 1s infinite;
  font-size: 14px;
}
.gr-title {
  font-size: 15px;
  background: var(--grad-blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.gr-sec {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
  line-height: 1.8;
}
.gr-sec:last-child { border-bottom: none; }
.gr-sec .hl { color: #E05A4E; font-weight: 700; }
.gr-sec .tag {
  display: inline-block;
  padding: 2px 8px;
  margin: 2px 4px 2px 0;
  background: rgba(53,201,214,.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
}

/* ============== Growth · 物料 ============== */
.mat-wrap {
  display: grid;
  grid-template-columns: 1fr 40px 1.5fr;
  gap: 12px;
  align-items: start;
}
.mat-in, .mat-out {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.mat-arrow {
  text-align: center;
  color: var(--cyan);
  font-weight: 700;
  font-size: 22px;
  padding: 30px 0;
  animation: arrFloat 1.4s infinite ease;
}
.mat-in label { font-size: 12px; color: var(--text-sub); display: block; margin-bottom: 8px; }
.mi-box {
  padding: 10px 12px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text);
}
.mat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.mat-out h5 { font-size: 13px; color: var(--primary); margin-bottom: 4px; }
.mat-card {
  background: linear-gradient(135deg, #F5F8FC, #E8EEF8);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0;
  transform: scale(.9);
  animation: cardIn .4s ease forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: none; }
}
.mc-img {
  height: 90px;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
}
.mc-t { padding: 8px 10px 2px; font-weight: 700; font-size: 13px; }
.mc-s { padding: 0 10px; font-size: 11.5px; color: var(--text-sub); }
.mc-btns {
  padding: 8px 10px;
  display: flex;
  gap: 8px;
  border-top: 1px dashed var(--line);
  margin-top: 6px;
}
.mc-btns a {
  padding: 3px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  color: var(--primary);
  cursor: pointer;
}
.mc-btns a:hover { background: var(--primary); color: #fff; }

/* ============== Growth · 多平台发布 ============== */
.post-wrap { display: flex; flex-direction: column; gap: 10px; }
.ch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 12px;
  align-items: center;
  animation: rowIn .35s ease;
}
.ch-h { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.ch-ic { font-size: 22px; }
.ch-name { font-weight: 700; color: var(--primary); }
.ch-state {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.ch-state.wait { background: #F0F2F5; color: var(--silver); }
.ch-state.run { background: rgba(240,168,59,.15); color: var(--gold); }
.ch-state.ok { background: rgba(26,140,88,.1); color: #1a8c58; }
.ch-bar {
  height: 8px;
  background: #F0F2F5;
  border-radius: 4px;
  overflow: hidden;
}
.ch-fg {
  height: 100%;
  background: var(--grad-cyan);
  border-radius: 4px;
  transition: width .4s ease;
}
.ch-desc { font-size: 12px; color: var(--text-sub); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ============== Growth · 投放 ============== */
.ad-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 14px;
}
.ad-in, .ad-out {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.ad-in h5, .ad-out h5 { font-size: 13px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.ad-tag { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ad-tag span {
  padding: 5px 10px;
  background: rgba(240,168,59,.12);
  color: var(--gold);
  border: 1px solid rgba(240,168,59,.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.ad-num {
  padding: 12px;
  background: linear-gradient(135deg, rgba(53,201,214,.1), rgba(18,60,140,.08));
  border-radius: 8px;
  font-size: 13px;
}
.ad-num .hl {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 4px;
}
.ad-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.ak {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ak .lbl { font-size: 11px; color: var(--text-sub); }
.ak b { font-size: 20px; font-weight: 800; color: var(--primary); }
.trend {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}
.trend.up { background: rgba(26,140,88,.1); color: #1a8c58; }
.trend.dn { background: rgba(224,90,78,.1); color: #E05A4E; }
.ad-curve {
  height: 200px;
  position: relative;
  background: linear-gradient(180deg, #F7FAFF 0%, #fff 100%);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cv-leg {
  position: absolute; top: 10px; right: 12px;
  font-size: 11px;
  color: var(--text-sub);
  z-index: 2;
}
.cv-leg span { display: inline-block; width: 14px; height: 3px; border-radius: 2px; margin-right: 4px; vertical-align: middle; }
.cv-a { background: var(--grad-cyan); }
.cv-b { background: #8C98A8; }
.ad-curve svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.ad-curve .p {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #123C8C;
  transform: translate(-50%, 50%);
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(18,60,140,.2);
  animation: rowIn .5s ease both;
}
.ad-curve .p2 {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8C98A8;
  transform: translate(-50%, 50%);
  z-index: 1;
  opacity: .6;
}

/* ============== Growth · 线索 ============== */
.lead-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 14px; }
.lead-scan, .lead-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.lead-scan h5, .lead-list h5 { font-size: 13px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.scan-bar {
  position: relative;
  height: 200px;
  background: linear-gradient(180deg, rgba(18,60,140,.04), rgba(53,201,214,.04));
  border-radius: 8px;
  border: 1px dashed var(--line);
  overflow: hidden;
  margin-bottom: 10px;
}
.scan-line {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #35C9D6, transparent);
  box-shadow: 0 0 20px #35C9D6;
  animation: scan 2s infinite linear;
}
@keyframes scan {
  0% { top: 0; }
  50% { top: calc(100% - 3px); }
  100% { top: 0; }
}
.scan-src { font-size: 11.5px; color: var(--text-sub); }
.pbar {
  width: 120px;
  height: 8px;
  background: #F0F2F5;
  border-radius: 4px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  overflow: hidden;
}
.pf {
  height: 100%;
  background: var(--grad-cyan);
  border-radius: 4px;
  transition: width .6s ease;
}
.lv {
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11.5px;
}
.lv.red { background: rgba(224,90,78,.12); color: #E05A4E; }
.lv.gold { background: rgba(240,168,59,.15); color: var(--gold); }
.lv.silver { background: #F0F2F5; color: var(--silver); }
.rem { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ============== Staff · 数字员工 ============== */
.stf-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 14px; align-items: start; }
.stf-avatar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  position: sticky;
  top: 0;
}
.stf-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #123C8C, #35C9D6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 12px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--line), 0 8px 20px rgba(18,60,140,.2);
  animation: staffBreath 2.4s infinite ease;
}
@keyframes staffBreath {
  0%,100% { box-shadow: 0 0 0 1px var(--line), 0 8px 20px rgba(18,60,140,.2), 0 0 0 0 rgba(53,201,214,.4); }
  50% { box-shadow: 0 0 0 1px var(--line), 0 8px 20px rgba(18,60,140,.2), 0 0 0 12px rgba(53,201,214,0); }
}
.stf-n { font-size: 16px; font-weight: 800; color: var(--primary); }
.stf-desc {
  font-size: 12px;
  color: var(--text-sub);
  margin: 8px 0 14px;
  line-height: 1.6;
}
.stf-kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 12px;
}
.stf-kpi span { display: flex; justify-content: space-between; }
.stf-kpi b { color: var(--primary); }
.stf-chat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 360px;
  max-height: 500px;
  overflow-y: auto;
}
.stf-title {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.chat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: chatIn .4s ease forwards;
}
@keyframes chatIn { to { opacity: 1; transform: none; } }
.chat-row.u { flex-direction: row-reverse; }
.ch-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.chat-row.u .ch-av { background: linear-gradient(135deg, #F0A83B, #D5942D); }
.ch-bubble {
  padding: 8px 12px;
  border-radius: 14px;
  background: #F0F4FA;
  font-size: 13px;
  line-height: 1.65;
  max-width: 80%;
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-row.u .ch-bubble {
  background: var(--grad-cyan);
  color: #fff;
  border-top-right-radius: 4px;
}
.chat-row.a .ch-bubble { border-top-left-radius: 4px; }
.ch-bubble .hl { color: #E05A4E; font-weight: 700; }
.chat-row.a .ch-bubble .hl { color: var(--gold); }

/* ============== KB ============== */
.kb-wrap, .kbc-wrap, .kbs-wrap, .kba-wrap, .kbsd-wrap { display: flex; flex-direction: column; gap: 14px; }
.kb-drop {
  border: 2px dashed var(--cyan);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: rgba(53,201,214,.04);
}
.kd-ic { font-size: 42px; margin-bottom: 8px; }
.kd-t { font-size: 15px; font-weight: 700; color: var(--primary); }
.kd-s { font-size: 12px; color: var(--text-sub); margin-top: 6px; }
.kb-prog {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.kf-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 90px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12.5px;
}
.kf-row:last-child { border-bottom: none; }
.kf-name small { color: var(--text-sub); font-weight: 400; }
.kf-pbar { height: 8px; background: #F0F2F5; border-radius: 4px; overflow: hidden; }
.kf-pg { height: 100%; background: var(--grad-cyan); transition: width .4s ease; }
.kf-st { font-size: 11.5px; text-align: right; }

/* KB chat */
.kbc-inp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(18,60,140,.06);
}
.kbc-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.kbc-inp input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
}
.kbc-thinking {
  padding: 12px 14px;
  background: rgba(53,201,214,.08);
  border-radius: 12px;
  font-size: 13px;
  color: var(--primary);
}
.kb-src { font-weight: 600; }
.kb-src-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.kb-src-list span {
  padding: 4px 8px;
  background: rgba(18,60,140,.08);
  border-radius: 6px;
  font-size: 11px;
  color: var(--primary);
  animation: rowIn .3s ease;
}
.kbc-out {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  line-height: 1.85;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(18,60,140,.08);
  animation: rowIn .4s ease;
}
.kb-ans .hl { color: #E05A4E; font-weight: 700; }
.kb-link {
  display: inline-block;
  padding: 4px 10px;
  background: var(--grad-cyan);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

/* KB 搜索 */
.kbs-in {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
}
.kbs-in .ic { color: var(--primary); }
.kbs-in input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  color: var(--text);
}
.kbs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 4px;
  font-size: 12.5px;
  align-items: center;
}
.kbs-tags .tg {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.kbs-tags .tg.on {
  background: var(--grad-blue);
  color: #fff;
  border-color: var(--primary);
}
.kbs-results { display: flex; flex-direction: column; gap: 10px; }
.kbs-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(-6px);
  animation: rowIn .4s ease forwards;
}
.kbs-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.kbs-title { font-weight: 700; color: var(--primary); font-size: 14px; }
.kbs-score {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--grad-cyan);
}
.kbs-desc { font-size: 12.5px; color: var(--text-sub); line-height: 1.7; }

/* KB 权限 */
.kba-users, .kba-matrix, .kba-ver {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.kba-users h5, .kba-matrix h5, .kba-ver h5 { font-size: 13px; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.kba-dept {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.kba-dept:last-child { border-bottom: none; }
.kba-dept .d {
  padding: 4px 10px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
}
.kba-dept .u {
  padding: 4px 10px;
  background: #F0F2F5;
  color: var(--silver);
  border-radius: 6px;
  font-size: 12px;
}
.kba-dept .u.on {
  background: rgba(26,140,88,.1);
  color: #1a8c58;
  font-weight: 500;
}
.v-list { display: flex; flex-direction: column; gap: 6px; }
.v-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 140px;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12.5px;
}
.v-tag {
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
}
.v-tag.cur { background: rgba(53,201,214,.15); color: var(--primary); }
.v-tag.old { background: #F0F2F5; color: var(--silver); }
.v-row a {
  padding: 2px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11.5px;
  color: var(--primary);
  margin-right: 4px;
  cursor: pointer;
}
.v-row a:hover { background: var(--primary); color: #fff; }

/* KB 安全 */
.kbsd-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px;
  background: linear-gradient(135deg, rgba(18,60,140,.06), rgba(26,140,88,.06));
  border-radius: var(--radius);
}
.sd-n {
  text-align: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 140px;
  animation: rowIn .4s ease;
}
.sd-ic {
  font-size: 28px;
  margin-bottom: 6px;
}
.sd-n b { display: block; margin-bottom: 6px; color: var(--primary); }
.sd-d { font-size: 11.5px; color: var(--text-sub); line-height: 1.6; }
.sd-ar {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--primary);
  font-weight: 700;
  padding: 0 4px;
}
.sd-ar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: lineSlide 1.2s infinite linear;
}
@keyframes lineSlide {
  0% { transform: translateX(-10px); opacity: .3; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(10px); opacity: .3; }
}
.kbsd-log {
  background: #0C1B33;
  color: #C3D4F0;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}
.kbsd-log h5 { color: #fff; margin-bottom: 10px; font-size: 13px; }
.sd-row {
  display: grid;
  grid-template-columns: 80px 1.3fr 2fr 80px;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  animation: rowIn .4s ease;
}
.sd-t { color: #7FE3EA; }
.sd-u { color: #FFC86E; }
.sd-st {
  text-align: center;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  width: fit-content;
}
.sd-st.ok { background: rgba(26,140,88,.3); color: #6BE7A6; }
.sd-st.rej { background: rgba(224,90,78,.3); color: #FF8A7B; }
.sd-st.warn { background: rgba(240,168,59,.25); color: #FFC86E; }

/* ============== OA · 智能人事：权限分配 & 绩效考核 ============== */
.perm-loading, .kpi-empty {
  font-size: 13px;
  color: var(--gold);
  padding: 20px 8px;
  text-align: center;
  animation: blk 1.2s infinite;
}
.perm-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(53,201,214,.08), rgba(18,60,140,.06));
  border-radius: 8px;
  margin-bottom: 10px;
}
.pu-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pu-info { font-size: 12.5px; line-height: 1.6; }
.pu-info b { color: var(--primary); font-size: 14px; }
.pu-info small { color: var(--text-sub); font-size: 11.5px; }

.perm-list { display: flex; flex-direction: column; gap: 6px; }
.pl-row {
  display: grid;
  grid-template-columns: 1.2fr 90px 1.3fr;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  animation: rowIn .35s ease;
}
.pl-mod { font-weight: 600; color: var(--text); }
.pl-tag {
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}
.pl-tag.ok { background: rgba(26,140,88,.12); color: #1a8c58; }
.pl-tag.warn { background: rgba(240,168,59,.15); color: var(--gold); }
.pl-tag.no { background: #F0F2F5; color: var(--silver); }
.pl-scope { font-size: 11.5px; color: var(--text-sub); }
.perm-sum {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(26,140,88,.1);
  color: #1a8c58;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  animation: rowIn .4s ease;
}

/* 绩效考核 */
.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(18,60,140,.08), rgba(26,140,88,.06));
  border-radius: 8px;
  margin-bottom: 12px;
}
.kh-info { font-size: 13px; line-height: 1.6; flex: 1; }
.kh-info b { color: var(--primary); font-size: 15px; }
.kh-info small { color: var(--text-sub); font-size: 11.5px; }
.kh-score { text-align: center; }
.ks-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ks-lv { font-size: 11.5px; color: var(--text-sub); margin-top: 2px; }

.kpi-dim { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.kd-row {
  display: grid;
  grid-template-columns: 120px 70px 1fr 50px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  padding: 6px 4px;
}
.kd-name { font-weight: 600; color: var(--text); }
.kd-w { font-size: 11px; color: var(--text-sub); text-align: right; }
.kd-bar {
  height: 12px;
  background: #F0F2F5;
  border-radius: 6px;
  overflow: hidden;
}
.kd-fg {
  height: 100%;
  background: linear-gradient(90deg, #35C9D6, #123C8C);
  border-radius: 6px;
  transition: width .8s cubic-bezier(.2,.8,.2,1);
}
.kd-v { text-align: right; font-weight: 700; color: var(--primary); font-size: 12px; }

.kpi-summary {
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(240,168,59,.1), rgba(240,168,59,.04));
  border: 1px solid rgba(240,168,59,.25);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.8;
  animation: rowIn .4s ease;
}
.ks-tit {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 13px;
}
.k-lv-s {
  display: inline-block;
  padding: 1px 8px;
  background: var(--grad-cyan);
  color: #fff;
  border-radius: 4px;
  margin: 0 2px;
}

/* ============== RPA · 行业定制：进出口外贸 / 生产制造 / 建材加工 ============== */

/* 通用三列布局 */
.trade-grid, .factory-grid, .glass-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.trade-grid { grid-template-columns: 1fr 1fr; }
.factory-grid { grid-template-columns: 1fr 1fr 1fr; }
.glass-grid { grid-template-columns: 240px 1fr 240px; }

.trade-col, .factory-col, .glass-col {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
}
.trade-col h5, .factory-col h5, .glass-col h5 {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  letter-spacing: 0.5px;
}

/* 流程图节点 */
.flow-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 14px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(53,201,214,.06), rgba(18,60,140,.04));
  border-radius: 10px;
  flex-wrap: wrap;
}
.fc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--text-sub);
  transition: all .4s ease;
  min-width: 60px;
}
.fc-node.active {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(18,60,140,.2);
}
.fc-node.active .fc-ic { transform: scale(1.2); }
.fc-ic { font-size: 18px; transition: transform .4s; }
.fc-lab { white-space: nowrap; }
.fc-arrow {
  color: var(--silver);
  font-weight: 700;
  font-size: 14px;
  transition: all .4s;
}
.fc-arrow.active {
  color: var(--primary);
  animation: arrowPulse .6s ease;
}

/* 进出口外贸：提单 & 报关单 */
.trade-card {
  font-size: 11.5px;
}
.trade-paper {
  background: #fafbfc;
  border: 1px dashed var(--silver);
  border-radius: 6px;
  padding: 10px 12px;
  line-height: 1.9;
}
.tp-title {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--primary);
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.tp-row { display: flex; gap: 6px; }
.tp-row span { color: var(--text-sub); min-width: 110px; }
.tp-row b { color: var(--text); font-weight: 500; }

.declare-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.df-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 11.5px;
  transition: all .3s;
}
.df-lab { color: var(--text-sub); }
.df-val { color: var(--silver); font-weight: 500; }
.df-val.filled {
  color: var(--primary);
  font-weight: 600;
  background: rgba(53,201,214,.1);
  padding: 1px 6px;
  border-radius: 3px;
  animation: fillIn .4s ease;
}
@keyframes fillIn {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); }
}

/* AI 校验报告 */
.trade-check-wrap { margin-top: 14px; }
.check-list {
  max-height: 140px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 8px;
}
.check-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 11.5px;
  margin-bottom: 3px;
  animation: rowIn .35s ease;
}
.check-item.ok { background: rgba(26,140,88,.08); color: #1a8c58; }
.check-item.warn { background: rgba(240,168,59,.12); color: #b8860b; }
.check-item.info { background: rgba(18,60,140,.08); color: var(--primary); }
.ci-icon { flex-shrink: 0; }
.ci-text { line-height: 1.5; }
.check-summary {
  padding: 10px 12px;
  background: rgba(26,140,88,.1);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.7;
}
.cs-ok { font-weight: 700; color: #1a8c58; margin-bottom: 4px; }
.cs-det { color: var(--text-sub); font-size: 11px; }

/* 生产制造：语音填报 */
.mic-card { text-align: center; padding: 14px 10px; }
.mic-icon { font-size: 32px; margin-bottom: 8px; }
.wave-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-bottom: 8px;
}
.wave {
  width: 5px;
  background: var(--grad-blue);
  border-radius: 3px;
  animation: waveBar 1s ease-in-out infinite;
}
.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: .1s; }
.wave:nth-child(3) { animation-delay: .2s; }
.wave:nth-child(4) { animation-delay: .3s; }
.wave:nth-child(5) { animation-delay: .4s; }
.wave:nth-child(6) { animation-delay: .5s; }
.wave:nth-child(7) { animation-delay: .4s; }
.wave:nth-child(8) { animation-delay: .3s; }
.wave:nth-child(9) { animation-delay: .2s; }
.wave:nth-child(10) { animation-delay: .1s; }
@keyframes waveBar {
  0%, 100% { height: 4px; }
  50% { height: 30px; }
}
.mic-status {
  font-size: 11.5px;
  color: var(--primary);
  background: rgba(53,201,214,.1);
  padding: 6px 10px;
  border-radius: 5px;
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
  font-weight: 500;
}
.entry-form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ef-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 11.5px;
}
.ef-lab { color: var(--text-sub); }
.ef-val { color: var(--silver); font-weight: 500; }
.ef-val.filled {
  color: var(--primary);
  font-weight: 600;
  background: rgba(53,201,214,.1);
  padding: 1px 6px;
  border-radius: 3px;
  animation: fillIn .4s ease;
}

/* 库存预警 */
.stock-board { display: flex; flex-direction: column; gap: 6px; }
.sb-item {
  display: grid;
  grid-template-columns: 1fr 80px 60px;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 11.5px;
  border-left: 3px solid var(--primary);
  transition: all .3s;
}
.sb-item.ok { border-left-color: #1a8c58; }
.sb-item.warn { border-left-color: var(--gold); }
.sb-item.danger { border-left-color: #e74c3c; animation: sbFlash 1s infinite; }
@keyframes sbFlash {
  50% { background: rgba(231,76,60,.1); }
}
.sb-name { font-weight: 600; color: var(--text); }
.sb-stock { text-align: right; font-weight: 700; color: var(--primary); }
.sb-rate {
  text-align: center;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}
.sb-item.ok .sb-rate { background: rgba(26,140,88,.12); color: #1a8c58; }
.sb-item.warn .sb-rate { background: rgba(240,168,59,.15); color: #b8860b; }
.sb-item.danger .sb-rate { background: rgba(231,76,60,.15); color: #e74c3c; }

.alert-bar {
  margin-top: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(240,168,59,.12), rgba(231,76,60,.08));
  border: 1px solid rgba(240,168,59,.3);
  border-radius: 8px;
  animation: rowIn .4s ease;
}
.ab-title { font-weight: 700; color: #b8860b; font-size: 12px; margin-bottom: 6px; }
.ab-suggest { font-size: 11px; color: var(--text-sub); line-height: 1.6; }

/* 工单派发 */
.order-box { min-height: 100px; }
.ob-empty { color: var(--silver); text-align: center; padding: 30px 10px; font-size: 12px; }
.ob-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  animation: rowIn .4s ease;
}
.ob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.ob-no { font-weight: 700; font-size: 12px; color: var(--primary); }
.ob-type { font-size: 11px; padding: 2px 6px; border-radius: 3px; background: rgba(240,168,59,.15); color: #b8860b; font-weight: 600; }
.ob-body { display: flex; flex-direction: column; gap: 3px; }
.ob-row { display: flex; justify-content: space-between; font-size: 11.5px; }
.ob-row span { color: var(--text-sub); }
.ob-row b { color: var(--text); font-weight: 600; }
.dispatch-log {
  margin-top: 10px;
  max-height: 90px;
  overflow-y: auto;
  background: #1a1a2e;
  color: #a8d8ea;
  border-radius: 6px;
  padding: 8px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 11px;
  line-height: 1.7;
}
.dl-line { animation: rowIn .3s ease; }
.dl-t { color: #f0a83b; margin-right: 6px; }

/* 建材加工：玻璃切割 */
.glass-card { font-size: 11.5px; }
.gi-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
}
.gi-row:last-of-type { border-bottom: none; margin-bottom: 10px; }
.gi-row span { color: var(--text-sub); }
.gi-row b { color: var(--text); font-weight: 600; }
.gi-btn {
  text-align: center;
  padding: 10px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  cursor: default;
  transition: all .3s;
}
.gi-btn.computing { background: var(--gold); animation: computePulse 0.8s infinite; }
@keyframes computePulse {
  50% { opacity: 0.7; }
}

.svg-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.glass-svg { width: 100%; max-width: 500px; height: auto; }
.glass-piece {
  fill: #35C9D6;
  fill-opacity: 0.5;
  stroke: #123C8C;
  stroke-width: 0.5;
  stroke-opacity: 0.4;
  animation: pieceIn .3s ease;
}
@keyframes pieceIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; }
}
.glass-waste {
  fill: rgba(231,76,60,.25);
  stroke: #e74c3c;
  stroke-width: 1;
  stroke-dasharray: 4,2;
}
.cut-line {
  stroke: #f0a83b;
  stroke-width: 1.2;
  stroke-dasharray: 4,3;
  animation: cutDraw .3s ease;
}
@keyframes cutDraw {
  from { stroke-dashoffset: 100; opacity: 0; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
.svg-dim {
  fill: var(--text-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.cut-frame {
  animation: dashMove 20s linear infinite;
}
@keyframes dashMove {
  to { stroke-dashoffset: -18; }
}
.svg-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-sub);
}
.leg-item { display: flex; align-items: center; gap: 4px; }
.swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.swatch-glass { background: #35C9D6; opacity: 0.7; }
.swatch-waste { background: rgba(231,76,60,.3); border: 1px dashed #e74c3c; }
.swatch-cut { background: #f0a83b; }

/* 玻璃结果报告 */
.gr-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 8px;
}
.gr-empty {
  text-align: center;
  color: var(--silver);
  padding: 30px 10px;
  font-size: 12px;
}
.gr-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 11.5px;
}
.gr-row span { color: var(--text-sub); }
.gr-row b { color: var(--text); font-weight: 600; }
.gr-row.hi {
  background: linear-gradient(90deg, rgba(53,201,214,.08), transparent);
  margin: 0 -6px;
  padding: 7px 6px;
  border-radius: 4px;
}
.gr-row.hi b { color: var(--primary); font-weight: 700; }
.gr-num { font-size: 14px; }
.gr-util {
  font-size: 16px !important;
  color: #1a8c58 !important;
  font-weight: 800 !important;
}
.gr-save {
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(26,140,88,.1);
  border-radius: 6px;
  font-size: 11.5px;
  color: #1a8c58;
  animation: rowIn .4s ease;
}

/* 箭头脉冲 */
@keyframes arrowPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); color: var(--gold); }
  100% { transform: scale(1); }
}

/* 行业卡片中的演示按钮 */
.ind-demo { margin-top: 12px; }

/* 响应式 - 演示弹窗 */
@media (max-width: 900px) {
  .dm-grid, .dm-grid3, .rpa-wrap, .gmk-wrap, .lead-wrap, .stf-wrap, .ad-wrap,
  .dm-admin-grid, .bd-row1, .bd-row2, .mat-wrap,
  .kf-row, .v-row, .sd-row { grid-template-columns: 1fr; }
  .mat-wrap { grid-template-columns: 1fr; }
  .mat-arrow { display: none; }
  .dm-admin-grid { grid-template-columns: repeat(2, 1fr); }
  .bd-row1 { grid-template-columns: repeat(2, 1fr); }
  .dm-row > * { min-width: 100%; }
  .dm-arrow { display: none; }
  .dm-head, .dm-body, .dm-foot { padding-left: 16px; padding-right: 16px; }
  .stf-avatar { position: static; }
  .kba-wrap { grid-template-columns: 1fr; }
  /* 权限分配 & 绩效小屏适配 */
  .pl-row { grid-template-columns: 1fr 80px; }
  .pl-scope { grid-column: 1 / -1; font-size: 11px; }
  .kd-row { grid-template-columns: 1fr 1fr; }
  .kd-bar, .kd-v { grid-column: 1 / -1; }
  .kd-w { text-align: left; }
  .kd-v { text-align: left; }
  .kpi-header { flex-direction: column; align-items: flex-start; }
  /* 行业定制演示 - 小屏 */
  .trade-grid, .factory-grid, .glass-grid { grid-template-columns: 1fr; }
  .trade-col, .factory-col, .glass-col { padding: 10px; }
  .fc-node { min-width: 50px; padding: 6px 8px; font-size: 11px; }
  .fc-lab { font-size: 10.5px; }
  .fc-ic { font-size: 15px; }
  .fc-arrow { font-size: 12px; }
  .glass-svg { max-width: 100%; }
  .sb-item { grid-template-columns: 1fr 70px 50px; font-size: 11px; }
  .dispatch-log { max-height: 70px; }
  .flow-chart { gap: 2px; padding: 8px; }
}
@media (max-width: 560px) {
  .dm-admin-grid { grid-template-columns: 1fr; }
  .bd-row1 { grid-template-columns: 1fr 1fr; }
  .ad-kpis { grid-template-columns: 1fr; }
  .mat-grid { grid-template-columns: 1fr; }
  .ch-card { grid-template-columns: 1fr; }
  .ch-desc { display: none; }
  .kbsd-flow { flex-direction: column; }
  .sd-ar { transform: rotate(90deg); }
  .ks-num { font-size: 28px; }
  /* 行业定制演示 - 超小屏 */
  .fc-node { min-width: 44px; padding: 5px 6px; font-size: 10px; }
  .fc-lab { display: none; }
  .tp-row { font-size: 11px; }
  .tp-row span { min-width: 90px; }
  .df-row, .ef-row { font-size: 11px; padding: 4px 6px; }
  .gr-row { font-size: 11px; }
  .gr-num { font-size: 13px; }
}
