/* ============================================================
   锦江酒店（中国区）· 东南亚加盟平台
   视觉规范：企业蓝为主色，辅以墨黑、暖灰、鎏金
   ============================================================ */
:root {
  --jj-red: #2B4C8C;          /* 企业蓝 */
  --jj-red-deep: #1E3A70;     /* 深蓝 */
  --jj-red-soft: #E8EEF8;     /* 浅蓝底 */
  --jj-gold: #B8925A;         /* 鎏金（高端线点缀） */
  --jj-gold-soft: #F6F0E6;    /* 浅金底 */
  --ink: #26262A;             /* 墨黑 */
  --ink-2: #4A4A52;           /* 次级文字 */
  --ink-3: #8A8A93;           /* 弱化文字 */
  --line: #E8E6E3;            /* 分隔线 */
  --bg: #FFFFFF;
  --bg-gray: #F7F6F4;         /* 浅灰底 */
  --radius: 14px;
  --shadow: 0 6px 24px rgba(38, 38, 42, .07);
  --shadow-lg: 0 14px 44px rgba(38, 38, 42, .12);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", Helvetica, Arial, sans-serif;
  --font-serif: "Songti SC", "STSong", "SimSun", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- 顶部导航 ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  transition: box-shadow .25s ease, background .25s ease;
}
/* 滚动后加深层级，让「已在内容区」这件事有反馈（不改变高度，避免布局跳动） */
.topbar.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 22px rgba(15,20,30,.09);
}
.nav { display: flex; align-items: center; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--jj-red) 0%, var(--jj-red-deep) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 20px; font-weight: 700; letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(43,76,140,.26);
}
.logo-text .cn { font-size: 17px; font-weight: 700; letter-spacing: 1px; color: var(--ink); }
.logo-text .en { font-size: 10px; color: var(--ink-3); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; gap: 18px; align-items: center; margin-left: auto; }
.nav-links > a,
.nav-item-drop > a {
  position: relative;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  white-space: nowrap; padding: 8px 0;
  transition: color .2s;
}
.nav-links > a::after,
.nav-item-drop > a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 2px; background: var(--jj-red);
  border-radius: 2px; transform: scaleX(0); transform-origin: right;
  transition: transform .25s ease;
}
.nav-links > a:hover,
.nav-item-drop > a:hover,
.nav-links > a.active { color: var(--jj-red); }
.nav-links > a:hover::after,
.nav-item-drop > a:hover::after,
.nav-links > a.active::after { transform: scaleX(1); transform-origin: left; }

/* CTA 按钮 */
.nav-cta {
  background: var(--jj-red); color: #fff !important;
  padding: 10px 20px !important; border-radius: 10px !important; border: none !important;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(43,76,140,.22);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.nav-cta:hover {
  background: var(--jj-red-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(43,76,140,.30);
}
.nav-cta::after { display: none !important; }

/* ---------- 语言切换入口 ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px; flex: none;
  margin-left: 18px; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px;
  background: #f8f8f8; font-size: 12px; font-weight: 600; line-height: 1;
}
.lang-switch .ls-sep { display: none; }
.lang-switch .ls-opt {
  color: var(--ink-3); transition: .2s;
  padding: 6px 11px; border-radius: 999px;
}
.lang-switch .ls-opt:hover { color: var(--jj-red); }
.lang-switch .ls-opt.on {
  background: var(--jj-red); color: #fff;
  box-shadow: 0 2px 6px rgba(43,76,140,.25);
}

/* ---------- 导航「品牌矩阵」下拉直链 ---------- */
.nav-item-drop { position: relative; }
.nav-item-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item-drop .drop-caret { font-size: 10px; line-height: 1; transition: transform .2s; opacity: .7; }
.nav-item-drop:hover .drop-caret { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 292px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 48px rgba(15,20,30,.14); padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: .2s; z-index: 120;
}
/* hover 与键盘焦点之外，还支持 JS 显式展开（触屏/键盘点击场景） */
.nav-item-drop.drop-open .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.nav-item-drop:hover .nav-drop,
.nav-item-drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-title {
  font-size: 11px; color: var(--ink-3); letter-spacing: 2px;
  padding: 8px 12px 6px; text-transform: uppercase;
}
/* 一个下拉里有多个分组时（如「加盟优势」含市场机遇 / 为什么选锦江），用细分隔线区隔 */
.nav-drop .nav-drop-title:not(:first-child) {
  margin-top: 6px; border-top: 1px solid var(--line); padding-top: 14px;
}
.nav-drop a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 10px;
  border-bottom: none !important; font-size: 14px;
  transition: background .15s;
}
.nav-drop a b { color: var(--ink); font-weight: 600; }
.nav-drop a span { font-size: 12px; color: var(--ink-3); }
.nav-drop a:hover { background: var(--jj-red-soft); }
.nav-drop a:hover b { color: var(--jj-red); }
.nav-drop a.nav-drop-cur { background: var(--jj-red-soft); }
.nav-drop a.nav-drop-cur b { color: var(--jj-red); }
.nav-drop a.nav-drop-all {
  flex-direction: row; justify-content: center; gap: 6px;
  color: var(--jj-red); font-weight: 600; font-size: 13px;
  border-top: 1px solid var(--line) !important; border-radius: 0 0 8px 8px;
  margin-top: 4px; padding-top: 12px;
}

/* ---------- 首屏 Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(43,76,140,.16), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(184,146,90,.12), transparent 60%),
    linear-gradient(180deg, #FFFDFB 0%, #FBF7F2 100%);
  padding: 88px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--jj-red-soft); color: var(--jj-red);
  border: 1px solid rgba(43,76,140,.22);
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--jj-red); }
.hero h1 {
  font-size: clamp(30px, 4.2vw, 46px); line-height: 1.28;
  font-weight: 800; letter-spacing: 1px;
}
.hero h1 .red { color: var(--jj-red); }
.hero h1 .serif { font-family: var(--font-serif); }
.hero-sub { margin: 22px 0 34px; color: var(--ink-2); font-size: 17px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 34px; border-radius: 999px; font-size: 15.5px; font-weight: 600;
  cursor: pointer; transition: .25s; border: 1.5px solid transparent;
}
.btn-primary { background: var(--jj-red); color: #fff; box-shadow: 0 8px 22px rgba(43,76,140,.3); }
.btn-primary:hover { background: var(--jj-red-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Hero 数据卡 */
.hero-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 30px 30px 24px; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--jj-red), var(--jj-red-deep));
}
.hero-card h3 { font-size: 15px; color: var(--ink-2); font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.stat { background: var(--bg-gray); border-radius: 10px; padding: 16px 14px; }
.stat .num { font-size: 26px; font-weight: 800; color: var(--jj-red); line-height: 1.2; }
.stat .num small { font-size: 14px; font-weight: 600; }
.stat .lbl { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.hero-card .note { font-size: 11.5px; color: var(--ink-3); margin-top: 14px; }

/* ---------- 通用 Section ---------- */
.section { padding: 84px 0; }
.section.gray { background: var(--bg-gray); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.kicker {
  color: var(--jj-red); font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: 1px; }
.section-head p { color: var(--ink-2); margin-top: 14px; font-size: 15.5px; }

/* ---------- 行业发展 时间轴 ---------- */
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--jj-red), var(--jj-red-deep));
}
.tl-item { position: relative; padding: 0 0 30px 18px; }
.tl-item::before {
  content: ""; position: absolute; left: -26px; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3.5px solid var(--jj-red);
}
.tl-item .year { font-weight: 800; color: var(--jj-red); font-size: 15px; letter-spacing: 1px; }
.tl-item h4 { font-size: 17px; font-weight: 700; margin: 2px 0 6px; }
.tl-item p { color: var(--ink-2); font-size: 14.5px; }

.industry-points { display: grid; gap: 16px; }
.ipoint {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 16px; box-shadow: var(--shadow);
}
.ipoint .ico {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--jj-red-soft); color: var(--jj-red);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.ipoint h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ipoint p { font-size: 14px; color: var(--ink-2); }

/* ---------- 痛点卡片 ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card {
  background: #fff; border-radius: var(--radius); padding: 28px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: .25s; position: relative; overflow: hidden;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(43,76,140,.3); }
.pain-card .pn {
  font-family: var(--font-serif); font-size: 44px; font-weight: 800;
  color: rgba(43,76,140,.1); position: absolute; top: 8px; right: 18px; line-height: 1;
}
.pain-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; padding-right: 34px; }
.pain-card p { font-size: 14px; color: var(--ink-2); }
.pain-card .jj-sol {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--jj-red); font-weight: 600;
}
.pain-card .jj-sol::before { content: "锦江方案 · "; font-weight: 400; color: var(--ink-3); }

/* 数据带 */
.databar { background: linear-gradient(120deg, var(--jj-red-deep), var(--jj-red)); color: #fff; padding: 46px 0; }
.databar .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.databar .num { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; font-family: var(--font-serif); }
.databar .num small { font-size: 15px; }
.databar .lbl { font-size: 13.5px; opacity: .82; margin-top: 4px; letter-spacing: 1px; }

/* ---------- 品牌对比 ---------- */
.vs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 40px; }
.vs-col { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.vs-col header { padding: 20px 26px; color: #fff; }
.vs-col.jj header { background: linear-gradient(120deg, var(--jj-red), var(--jj-red-deep)); }
.vs-col.local header { background: #55555C; }
.vs-col header h4 { font-size: 18px; font-weight: 700; }
.vs-col header p { font-size: 12.5px; opacity: .85; }
.vs-col ul { padding: 8px 26px 18px; }
.vs-col li {
  padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-2); position: relative;
}
.vs-col li:last-child { border-bottom: none; }
.vs-col li::before {
  position: absolute; left: 0; top: 13px; font-weight: 800;
}
.vs-col.jj li::before { content: "✓"; color: var(--jj-red); }
.vs-col.local li::before { content: "✕"; color: #999; }
.vs-col.local li { color: var(--ink-3); }

/* 品质趋势（消费者品质要求上升） */
.trend-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; align-items: stretch; }
.chart-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 24px 22px 16px;
}
.chart-title { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.chart-title span { font-size: 11.5px; font-weight: 400; color: var(--ink-3); }
.chart-card svg { width: 100%; height: auto; display: block; }
.trend-side { display: flex; flex-direction: column; }
.trend-side h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.signal-list { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.signal {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--jj-red);
  border-radius: var(--radius); padding: 14px 16px; display: flex; gap: 14px; align-items: flex-start;
}
.signal:nth-child(2) { border-left-color: var(--jj-gold); }
.signal:nth-child(3) { border-left-color: var(--ink); }
.sig-num { font-size: 24px; font-weight: 800; color: var(--jj-red); line-height: 1.1; min-width: 74px; }
.signal:nth-child(2) .sig-num { color: var(--jj-gold); }
.signal:nth-child(3) .sig-num { color: var(--ink); }
.sig-num span { font-size: 12px; font-weight: 600; color: var(--ink-3); }
.sig-txt { font-size: 13px; color: var(--ink-2); line-height: 1.75; }
.sig-txt b { color: var(--ink); display: block; margin-bottom: 2px; font-size: 13.5px; }
.trend-conclusion {
  margin-top: 12px; background: linear-gradient(135deg,#2B4C8C,#1E3A70); color: #fff;
  border-radius: var(--radius); padding: 14px 18px; font-size: 13px; line-height: 1.8;
}
.trend-conclusion b { font-size: 13.5px; }

/* 品牌矩阵 */
.brand-matrix { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 18px; }
.brand-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: .25s;
  display: flex; flex-direction: column;
}
.brand-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bt-head { height: 108px; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 0 18px; color: #fff; }
.bt-head .tier {
  position: absolute; top: 10px; right: 12px; font-size: 10.5px;
  background: rgba(255,255,255,.22); padding: 2px 9px; border-radius: 999px; letter-spacing: 1px;
}
.bt-head .bn { font-size: 19px; font-weight: 800; letter-spacing: 1px; }
.bt-head .be { font-size: 11px; opacity: .85; letter-spacing: .6px; margin-top: 2px; }
.bt-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.bt-body p { font-size: 13px; color: var(--ink-2); flex: 1; }
.bt-body .invest { font-size: 12.5px; color: var(--ink-3); margin-top: 10px; }
.bt-body .invest b { color: var(--jj-red); font-size: 14px; }
.bt-link {
  margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--jj-red);
  display: inline-flex; align-items: center; gap: 6px;
}
.bt-link::after { content: "→"; transition: .2s; }
.brand-tile:hover .bt-link::after { transform: translateX(4px); }

/* ---------- 加盟优势 ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.adv-card { overflow: hidden;
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--jj-red); box-shadow: var(--shadow); transition: .25s;
}
.adv-card:nth-child(even) { border-top-color: var(--jj-gold); }
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.adv-card .ico {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--jj-red), var(--jj-red-deep));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.adv-card:nth-child(even) .ico { background: linear-gradient(135deg, var(--jj-gold), #96713E); }
.adv-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--ink-2); }
.adv-card .kpi { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--jj-red); }

/* ---------- 投资测算 ---------- */
.calc-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.calc-form { padding: 40px 38px; background: #fff; }
.calc-form h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.calc-form .hint { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.field select, .field input[type=number] {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: var(--font-sans); color: var(--ink); background: #FCFBFA;
  outline: none; transition: .2s;
}
.field select:focus, .field input:focus { border-color: var(--jj-red); background: #fff; }
.range-note { font-size: 12px; color: var(--ink-3); margin-top: 6px; }
.calc-result {
  background: linear-gradient(160deg, #2A2226 0%, #3A2830 55%, #571E27 100%);
  color: #fff; padding: 40px 38px; display: flex; flex-direction: column;
}
.calc-result h3 { font-size: 18px; font-weight: 700; letter-spacing: 2px; margin-bottom: 24px; opacity: .92; }
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
.res-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 18px 16px; }
.res-item .k { font-size: 12.5px; opacity: .72; letter-spacing: 1px; }
.res-item .v { font-size: clamp(20px, 2.2vw, 27px); font-weight: 800; margin-top: 4px; color: #FFD9A0; font-family: var(--font-serif); }
.res-item .v small { font-size: 13px; font-weight: 400; color: #fff; opacity: .8; }
.res-item.hero-res { grid-column: 1 / -1; background: rgba(43,76,140,.32); border-color: rgba(255,255,255,.2); }
.res-item.hero-res .v { color: #fff; font-size: clamp(24px, 2.6vw, 32px); }
.calc-disclaimer { font-size: 11.5px; opacity: .6; margin-top: 22px; line-height: 1.6; }

/* ---------- 留资表单 ---------- */
.lead-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center;
}
.lead-info h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; margin-bottom: 16px; }
.lead-info p { color: var(--ink-2); margin-bottom: 22px; }
.lead-points li {
  display: flex; gap: 12px; align-items: flex-start; padding: 10px 0;
  font-size: 15px; color: var(--ink-2);
}
.lead-points li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--jj-red-soft); color: var(--jj-red); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 2px;
}
.lead-form {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 36px 34px; border-top: 5px solid var(--jj-red);
}
.lead-form h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.lead-form .sub { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px;
  background: #EDF7EE; color: #1D7A34; font-size: 14px; font-weight: 600;
}
.form-msg.show { display: block; }

/* ---------- 隐私协议勾选 + 本地协议弹窗 ---------- */
.privacy-check {
  margin: 4px 0 18px; padding: 12px 14px; border-radius: 10px;
  background: var(--bg-gray); border: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}
.privacy-check label { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
.privacy-check input[type=checkbox] {
  flex: none; width: 17px; height: 17px; margin-top: 3px;
  accent-color: var(--jj-red); cursor: pointer;
}
.privacy-check span { font-size: 13px; color: var(--ink-2); line-height: 1.65; }
.privacy-link { color: var(--jj-red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.privacy-check.err { background: var(--jj-red-soft); border-color: var(--jj-red); }
.privacy-check.err input[type=checkbox] { outline: 2px solid var(--jj-red); outline-offset: 2px; border-radius: 3px; }

.privacy-modal {
  position: fixed; inset: 0; z-index: 999; display: none;
  align-items: center; justify-content: center; padding: 24px;
}
.privacy-modal.open { display: flex; }
.privacy-mask { position: absolute; inset: 0; background: rgba(38, 38, 42, .55); }
.privacy-panel {
  position: relative; width: 100%; max-width: 660px; max-height: 82vh;
  display: flex; flex-direction: column; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.privacy-head {
  flex: none; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 26px; border-bottom: 1px solid var(--line); border-top: 5px solid var(--jj-red);
}
.privacy-head h4 { font-size: 17px; font-weight: 800; color: var(--ink); }
.privacy-x {
  flex: none; width: 32px; height: 32px; border: 0; border-radius: 50%;
  background: var(--bg-gray); color: var(--ink-2); font-size: 15px; cursor: pointer;
}
.privacy-x:hover { background: var(--jj-red-soft); color: var(--jj-red); }
.privacy-body { overflow-y: auto; padding: 22px 26px; }
.privacy-body .privacy-lead {
  font-size: 13.5px; color: var(--ink-2); background: var(--jj-red-soft);
  border-left: 3px solid var(--jj-red); border-radius: 0 8px 8px 0;
  padding: 12px 16px; margin-bottom: 20px; line-height: 1.75;
}
.privacy-body h5 { font-size: 14.5px; font-weight: 700; color: var(--jj-red); margin: 18px 0 7px; }
.privacy-body p { font-size: 13.5px; color: var(--ink-2); line-height: 1.85; }
.privacy-body b { color: var(--ink); font-weight: 700; }
.privacy-body .privacy-date { margin-top: 22px; font-size: 12.5px; color: var(--ink-3); }
.privacy-foot {
  flex: none; display: flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-top: 1px solid var(--line); background: var(--bg-gray);
}
.privacy-foot .btn { flex: 1; justify-content: center; }
.privacy-cancel {
  flex: none; border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  font-family: inherit; cursor: pointer;
}
.privacy-cancel:hover { border-color: var(--ink-3); color: var(--ink); }

/* ---------- 页脚 ---------- */
.footer { background: #232327; color: #B9B9C0; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: 1px; }
.footer p, .footer li { font-size: 13.5px; line-height: 2; }
.footer a:hover { color: #fff; }
.footer .logo-mark { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid #3A3A40; padding-top: 22px;
  font-size: 12px; color: #7C7C85; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ============ 品牌子页 ============ */
.brand-hero { position: relative; overflow: hidden; color: #fff; padding: 72px 0 64px; }
.brand-hero .container { position: relative; z-index: 2; }
.brand-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 26px 26px;
}
.bh-eyebrow { font-size: 13px; letter-spacing: 3px; opacity: .85; margin-bottom: 14px; }
.brand-hero h1 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; letter-spacing: 2px; }
.brand-hero .en { font-size: 15px; letter-spacing: 4px; opacity: .8; margin-top: 8px; text-transform: uppercase; }
.brand-hero .slogan {
  font-family: var(--font-serif); font-size: 19px; margin-top: 20px; opacity: .92;
}
.bh-stats { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.bh-stats .s .n { font-size: 26px; font-weight: 800; font-family: var(--font-serif); }
.bh-stats .s .l { font-size: 12.5px; opacity: .75; }

/* 产品展示 */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.show-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow); transition: .25s;
}
.show-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.show-visual { height: 210px; position: relative; }
.show-visual .tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.show-body { padding: 18px 20px 20px; }
.show-body h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.show-body p { font-size: 13.5px; color: var(--ink-2); }

/* 准入门槛 */
.threshold-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.th-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 28px 28px 22px;
}
.th-card h4 {
  font-size: 17px; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.th-card h4 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--jj-red); }
.th-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.th-table th {
  text-align: left; font-size: 12.5px; color: var(--ink-3); font-weight: 600;
  padding: 8px 0; border-bottom: 1px solid var(--line); letter-spacing: 1px;
}
.th-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); color: var(--ink-2); vertical-align: top; }
.th-table tr:last-child td { border-bottom: none; }
.th-table td.k { color: var(--ink); font-weight: 600; white-space: nowrap; padding-right: 18px; }
.th-table td b { color: var(--jj-red); }

.th-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 8px; }
.th-step {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 14px; text-align: center; position: relative; box-shadow: var(--shadow);
}
.th-step .no {
  width: 30px; height: 30px; margin: 0 auto 10px; border-radius: 50%;
  background: var(--jj-red); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.th-step h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.th-step p { font-size: 11.5px; color: var(--ink-3); line-height: 1.5; }

/* CTA 横幅 */
.cta-banner {
  background:
    radial-gradient(700px 300px at 90% 20%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(120deg, var(--jj-red-deep), var(--jj-red));
  color: #fff; padding: 56px 0; text-align: center;
}
.cta-banner h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: 1px; }
.cta-banner p { opacity: .85; margin: 12px 0 26px; }
.cta-banner .btn { background: #fff; color: var(--jj-red); box-shadow: 0 10px 26px rgba(0,0,0,.2); }
.cta-banner .btn:hover { transform: translateY(-2px); }

/* ============================================================
   图片占位组件（.img-ph）
   用法：将 <img src="..."> 直接放入 .img-ph 内即可替换占位样式
   ============================================================ */
.img-ph {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; text-align: center;
  background:
    repeating-linear-gradient(-45deg, rgba(38,38,42,.035) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #F5F3F0, #ECE8E2);
  border: 1.5px dashed #D3CCC4; color: #A39C93;
  overflow: hidden; transition: .25s;
}
.img-ph::before {
  content: ""; width: 36px; height: 36px; opacity: .8; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A39C93' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='7' width='19' height='13.5' rx='2.5'/%3E%3Cpath d='M8.5 7l1.6-2.6h3.8L15.5 7'/%3E%3Ccircle cx='12' cy='13.6' r='3.4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.img-ph .cap { font-size: 13px; font-weight: 700; letter-spacing: 1px; padding: 0 16px; }
.img-ph .dim { font-size: 11px; opacity: .75; letter-spacing: .5px; }
.img-ph > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.img-ph > img + .cap, .img-ph > img + .cap + .dim,
.img-ph > img ~ .dim { display: none; }

/* ---------- Hero 图片带 ---------- */
.hero-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.hero-gallery .img-ph { height: 235px; border-radius: var(--radius); }

/* ---------- 版块通栏图位 ---------- */
.section-band { height: 250px; border-radius: var(--radius); margin: -20px 0 48px; }

/* ---------- 为什么要加盟 ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: .25s;
  display: flex; flex-direction: column;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(43,76,140,.3); }
.why-card .img-ph { height: 170px; border: none; border-bottom: 1px solid var(--line); }
.why-body { padding: 22px 24px 26px; flex: 1; }
.why-body .no {
  font-family: var(--font-serif); font-size: 15px; font-weight: 800;
  color: var(--jj-gold); letter-spacing: 2px; margin-bottom: 6px;
}
.why-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-body p { font-size: 14px; color: var(--ink-2); }

/* ---------- 痛点卡（图片化） ---------- */
.pain-card { padding: 0; }
.pain-card .img-ph { height: 150px; border: none; border-bottom: 1px solid var(--line); }
.pc-body { padding: 22px 24px 26px; position: relative; }
.pc-body .pn {
  font-family: var(--font-serif); font-size: 44px; font-weight: 800;
  color: rgba(43,76,140,.1); position: absolute; top: 10px; right: 18px; line-height: 1;
}

/* ---------- 优势卡（图片化） ---------- */
.adv-card { overflow: hidden; padding: 0; }
.adv-card .img-ph { height: 150px; border: none; border-bottom: 1px solid var(--line); }
.adv-body { padding: 26px; }
.adv-body .ico {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--jj-red), var(--jj-red-deep));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.adv-card:nth-child(even) .adv-body .ico { background: linear-gradient(135deg, var(--jj-gold), #96713E); }

/* ---------- 品牌瓦片图片位 ----------
   用 16:10 比例（aspect-ratio）代替固定像素：与推荐上传尺寸 1200×750 完全一致，
   照片零裁切完整展示酒店外观，宽度随列数自适应（三列 ≈238px 高、单列更宽等比放大），
   不同断点下不会出现「横条压扁」或「裁掉主体」的失调感。 */
.brand-tile .img-ph {
  height: auto; aspect-ratio: 16 / 10;
  border: none; border-bottom: none;
}

/* ---------- 留资图位 ---------- */
.lead-info .img-ph { height: 225px; border-radius: var(--radius); margin-top: 26px; }

/* ---------- 品牌页顶部大图位 ---------- */
.brand-photo-band { margin-top: -44px; position: relative; z-index: 3; }
.brand-photo-band .img-ph { height: 300px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ============================================================
   集团简介页（about）— 品牌层级 / 品牌清单 / 三层架构
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tier-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 24px; box-shadow: var(--shadow);
  border-top: 4px solid var(--jj-red); transition: .25s;
}
.tier-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tier-card:nth-child(2) { border-top-color: var(--jj-gold); }
.tier-card:nth-child(3) { border-top-color: #6E8FC8; }
.tier-card:nth-child(4) { border-top-color: var(--ink-3); }
.tier-card .tn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-3); font-weight: 700;
}
.tier-card .tn::before { content: ""; width: 20px; height: 4px; border-radius: 2px; background: var(--jj-red); }
.tier-card:nth-child(2) .tn::before { background: var(--jj-gold); }
.tier-card:nth-child(3) .tn::before { background: #6E8FC8; }
.tier-card:nth-child(4) .tn::before { background: var(--ink-3); }
.tier-card h4 { font-size: 19px; font-weight: 800; margin: 10px 0 8px; letter-spacing: .5px; position: relative; z-index: 1; }
.tier-card p { font-size: 13px; color: var(--ink-2); line-height: 1.75; position: relative; z-index: 1; }
.tier-card::after {
  position: absolute; right: 8px; bottom: -16px; z-index: 0;
  font-size: 84px; font-weight: 800; line-height: 1; letter-spacing: -2px;
  color: rgba(43, 76, 140, .06); pointer-events: none;
}
.tier-card:nth-child(1)::after { content: "01"; }
.tier-card:nth-child(2)::after { content: "02"; color: rgba(184, 146, 90, .10); }
.tier-card:nth-child(3)::after { content: "03"; }
.tier-card:nth-child(4)::after { content: "04"; }

/* 品牌清单：图例 + 药丸墙；已开放东南亚加盟的品牌为蓝色可点 */
.bp-legend {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 32px; font-size: 12.5px; color: var(--ink-3);
}
.bp-legend i {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  margin-right: 7px; background: var(--line); vertical-align: 0;
}
.bp-legend .lg-open i { background: var(--jj-red); }
.brand-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; justify-content: center; }
.brand-pills span, .brand-pills a {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; color: var(--ink-2); box-shadow: var(--shadow);
  transition: .2s;
}
.brand-pills span b, .brand-pills a b { color: var(--ink); font-weight: 700; }
.brand-pills a {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--jj-red-soft); border-color: #C7D6EE;
}
.brand-pills a::before { content: "★"; color: var(--jj-gold); font-size: 12px; line-height: 1; }
.brand-pills a b { color: var(--jj-red-deep); }
.brand-pills a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--jj-red); }
.brand-pills + .section-band { margin-top: 40px; }

/* 三层架构（ESG 管控等）；.th-steps 默认 5 列，此处限为 3 列 */
.th-steps.cols3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- 汉堡按钮（≤1120px 生效，桌面端隐藏） ---------- */
.nav-toggle {
  display: none; flex: none; margin-left: 10px;
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4.5px;
  transition: background .2s, border-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--jj-red-soft); border-color: rgba(43,76,140,.32); }
.nav-toggle:focus-visible { outline: 2px solid var(--jj-red); outline-offset: 2px; }
.nt-bar {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .18s ease, background .2s;
}
/* 打开态：三条线收成 X（translateY 与 gap+bar 高度对齐） */
.nav-open .nav-toggle { background: var(--jj-red-soft); border-color: rgba(43,76,140,.32); }
.nav-open .nt-bar { background: var(--jj-red); }
.nav-open .nt-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nt-bar:nth-child(2) { opacity: 0; }
.nav-open .nt-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 抽屉背板遮罩 ----------
   放在 body 伪元素上而不是 header 内：.topbar 的 backdrop-filter 会创建包含块，
   fixed 元素放进去会改以 topbar 为基准定位。z-index 90 < topbar 的 100，遮住内容但不遮顶栏。 */
body.nav-open { overflow: hidden; }
body.nav-open::after {
  content: ""; position: fixed; inset: 0; z-index: 90;
  background: rgba(15,20,30,.42);
  animation: scrimIn .2s ease;
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 响应式导航：桌面横排 / ≤1120px 收进抽屉 ----------
   原实现在 ≤1020px 直接 .nav-links{display:none}，且没有替代入口——手机与 iPad
   用户因此完全无法进入子页面（集团简介 / 品牌页 / 企业资讯），只能靠 logo 回首页。
   这里补齐抽屉式导航；断点从 1020 提到 1120，是因为宁可早一点切抽屉，也好过把
   6 个一级项挤成难看的两行。 */
@media (max-width: 1120px) {
  .nav-toggle { display: flex; }
  .lang-switch { margin-left: auto; }

  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    margin-left: 0; padding: 6px 0 18px;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(15,20,30,.13);
    max-height: calc(100vh - 76px); overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .22s ease, visibility .22s;
  }
  .nav-open .nav-links {
    opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  }

  /* 一级项：整行大触摸目标（≥48px），去掉桌面端的下划线动效 */
  .nav-links > a,
  .nav-item-drop > a {
    padding: 15px 24px; font-size: 16px; font-weight: 600; color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-links > a::after,
  .nav-item-drop > a::after { display: none; }
  .nav-item-drop > a { justify-content: space-between; }
  .nav-item-drop:hover .drop-caret { transform: none; }
  .nav-item-drop.drop-open .drop-caret { transform: rotate(180deg); }

  /* 二级项：抽屉内再套一层折叠（点「品牌矩阵」才展开），
     避免一屏塞进 16 行、用户反而不知道从哪开始。 */
  .nav-item-drop { position: static; }
  .nav-drop,
  /* 桌面端的 drop-open 规则带 translateX(-50%) 且特异度更高——不在这里
     显式归零的话，展开的下拉会被位移出屏幕左缘（移动端必现，截图已复现） */
  .nav-item-drop.drop-open .nav-drop {
    position: static; transform: none; min-width: 0; margin: 0;
    padding: 0; background: var(--bg-gray);
    border: none; border-radius: 0; box-shadow: none;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-drop::before { display: none; }
  .nav-item-drop.drop-open .nav-drop { max-height: 72vh; overflow-y: auto; }
  .nav-drop a { padding: 13px 24px 13px 36px; border-radius: 0; }
  .nav-drop a b { font-size: 15px; }
  .nav-drop a span { font-size: 12.5px; }
  .nav-drop a.nav-drop-cur { background: rgba(43,76,140,.10); }
  .nav-drop-title { padding: 14px 24px 4px 36px; }
  .nav-drop .nav-drop-title:not(:first-child) { margin-top: 0; }
  .nav-drop a.nav-drop-all { padding: 13px 24px; border-radius: 0; }

  /* 主 CTA：贴底吸底的整宽行动条——抽屉内容再长，转化入口也始终可见，
     且实色背景能挡住下方滚过的菜单项 */
  .nav-links > a.nav-cta {
    position: sticky; bottom: 0; z-index: 2;
    margin: 16px 0 0; padding: 16px 24px !important;
    border-radius: 0 !important; border-bottom: none;
    justify-content: center; text-align: center;
    font-size: 16px;
  }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1020px) {
  .trend-wrap { grid-template-columns: 1fr; }
  .hero-grid, .industry-grid, .vs-layout, .calc-wrap, .lead-wrap, .threshold-grid { grid-template-columns: 1fr; }
  .brand-matrix { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .adv-grid, .showcase { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-gallery { grid-template-columns: 1fr; }
  .th-steps { grid-template-columns: repeat(2, 1fr); }
  .th-steps.cols3 { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .databar .row { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 640px) {
  .pain-grid, .adv-grid, .showcase, .brand-matrix { grid-template-columns: 1fr; }
  .tier-grid, .th-steps.cols3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .calc-form, .calc-result { padding: 28px 22px; }
  .lead-form .row2 { grid-template-columns: 1fr; }
  .privacy-modal { padding: 12px; }
  .privacy-head { padding: 16px 18px; }
  .privacy-body { padding: 18px; }
  .privacy-foot { padding: 14px 18px; flex-direction: column-reverse; }
  .privacy-foot .btn, .privacy-cancel { width: 100%; }
  .nav { height: 60px; }
  .logo-mark { width: 36px; height: 36px; font-size: 17px; }
  .logo-text .cn { font-size: 15px; letter-spacing: 1px; }
  .logo-text .en { display: none; }
  /* 顶栏矮了，锚点预留高度同步收窄；语言切换仍靠右与汉堡按钮同侧 */
  html { scroll-padding-top: 74px; }
  .nav-links { max-height: calc(100vh - 60px); }
  .lang-switch { padding: 2px; font-size: 11px; }
  .lang-switch .ls-opt { padding: 5px 9px; }
  .nav-toggle { width: 38px; height: 38px; margin-left: 8px; }
}

/* ---------- FAQ 手风琴（GEO：details/summary 语义化结构） ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: .2s;
}
.faq-item:hover { box-shadow: var(--shadow-lg); }
.faq-item summary {
  cursor: pointer; padding: 18px 54px 18px 24px; font-weight: 700; font-size: 16px;
  list-style: none; position: relative; color: var(--ink); line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 24px; font-weight: 700; transition: .2s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px dashed var(--line); color: var(--red); }
.faq-a { padding: 16px 24px 20px; color: #5B5B60; line-height: 1.9; font-size: 15px; }
.faq-a p + p { margin-top: 8px; }
/* FAQ 富文本回答（后台编辑器产出的受限 HTML 子集） */
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong, .faq-a b { color: #1F1F24; font-weight: 700; }
.faq-a a { color: var(--jj-red); text-decoration: underline; text-underline-offset: 3px; }
.faq-a ul, .faq-a ol { margin: 8px 0 4px 22px; }
.faq-a li { margin-bottom: 4px; }

/* 联系方式绑定区 */
.contact-bind {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 18px;
  padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); font-size: 14.5px; color: var(--ink2);
}
.contact-bind b { color: var(--red); font-weight: 800; }

/* ---------- 图片位已填充状态（后台图片库分配后） ---------- */
.img-ph.filled { border: none; background: #26262A; }
.img-ph.filled::before { display: none; }
.img-ph.filled .cap, .img-ph.filled .dim { display: none; }
/* 已填充图位的角标：横向小胶囊固定左上角。
   注意必须显式 bottom:auto —— 否则与 .show-visual .tag 的 top:12px 叠加，
   元素会被上下同时定位拉成通高竖条（历史 bug）。 */
.img-ph.filled .tag {
  position: absolute; left: 14px; top: 14px; bottom: auto; z-index: 2; margin: 0;
  background: rgba(20,36,64,.55); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 5px 13px; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(4,9,22,.3);
}

/* ============================================================
   企业资讯（News）— 首页区块 / 资讯列表页 / 资讯详情页
   ============================================================ */
.section.is-empty { display: none; }

.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px;
}
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: .25s;
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.news-thumb { display: block; aspect-ratio: 16 / 10; background: var(--bg-gray); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  font-size: 12.5px; color: var(--ink-3);
}
.news-tag {
  background: var(--jj-red-soft); color: var(--jj-red);
  border-radius: 999px; padding: 3px 11px; font-size: 12px; font-weight: 700;
}
.news-card h3 { font-size: 18.5px; line-height: 1.5; margin-bottom: 10px; }
.news-card h3 a:hover { color: var(--jj-red); }
.news-sum {
  color: var(--ink-2); font-size: 14.5px; line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-more {
  margin-top: auto; padding-top: 16px; color: var(--jj-red);
  font-weight: 700; font-size: 14.5px;
}
.news-more:hover { color: var(--jj-red-deep); }
.news-empty {
  margin-top: 30px; padding: 44px; text-align: center;
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--bg-gray); color: var(--ink-3); font-size: 15px;
}
.news-all { margin-top: 30px; text-align: center; }

/* 联系方式绑定区里的可点击链接（拨打 / WhatsApp / 邮件） */
.contact-bind a { border-bottom: 1px solid rgba(43, 76, 140, .35); }
.contact-bind a:hover { border-bottom-color: var(--jj-red); }

/* ---------- 资讯列表页 ---------- */
.news-hero { padding: 150px 0 60px; background: var(--bg-gray); border-bottom: 1px solid var(--line); }
.news-hero h1 { font-size: 40px; line-height: 1.35; margin: 12px 0 14px; }
.news-hero p { color: var(--ink-2); font-size: 16.5px; max-width: 760px; }
.news-list-section { padding: 64px 0 84px; }
.news-list-section .news-grid { margin-top: 0; }

/* ---------- 资讯详情页 ---------- */
.article { padding: 150px 0 78px; }
.article-wrap { width: min(820px, 92%); margin: 0 auto; }
.article-back { display: inline-block; color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }
.article-back:hover { color: var(--jj-red); }
.article-title { font-size: 36px; line-height: 1.4; margin-bottom: 16px; }
.article-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-3);
}
.article-cover { margin-top: 30px; border-radius: var(--radius); overflow: hidden; }
.article-cover img { width: 100%; }
.article-body { margin-top: 30px; }
.article-body p { font-size: 17px; line-height: 1.95; color: var(--ink-2); margin-bottom: 20px; }
.article-body p:first-child { color: var(--ink); font-size: 17.5px; }
/* 富文本正文（后台资讯编辑器产出的受限 HTML 子集） */
.article-body h3 { font-size: 22px; line-height: 1.5; color: var(--ink); margin: 34px 0 14px; }
.article-body h4 { font-size: 18px; line-height: 1.5; color: var(--ink); margin: 28px 0 12px; }
.article-body ul, .article-body ol { margin: 0 0 20px 26px; }
.article-body li { font-size: 17px; line-height: 1.9; color: var(--ink-2); margin-bottom: 8px; }
.article-body a { color: var(--jj-red); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong, .article-body b { color: var(--ink); font-weight: 700; }
/* 富文本内嵌图片：自适应宽度、圆角、不溢出容器 */
.article-body img, .faq-a img {
  max-width: 100%; height: auto; display: block;
  margin: 18px auto; border-radius: 10px;
  border: 1px solid var(--line);
}
.article-body img { box-shadow: 0 6px 18px rgba(31, 31, 36, .06); }
.article-cta {
  margin-top: 42px; padding: 30px 32px; border-radius: var(--radius);
  background: var(--bg-gray); border: 1px solid var(--line);
}
.article-cta h4 { font-size: 17px; margin-bottom: 10px; }
.article-cta p { color: var(--ink-2); font-size: 14.5px; margin-bottom: 16px; }
.article-related { padding: 0 0 84px; }
.article-related h2 { font-size: 24px; margin-bottom: 6px; }

@media (max-width: 980px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-hero { padding: 120px 0 44px; }
  .news-hero h1 { font-size: 30px; }
  .article { padding: 120px 0 60px; }
  .article-title { font-size: 27px; }
}
@media (max-width: 680px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: 25px; }
  .article-title { font-size: 23px; }
}

/* 页脚招商联系方式（每页可见，含可点击拨打 / WhatsApp / 邮件） */
.footer-contact {
  display: flex; flex-wrap: wrap; gap: 8px 30px; align-items: center;
  padding: 16px 0; margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px; color: rgba(255, 255, 255, .72);
}
.footer-contact b { color: #fff; font-weight: 700; }
.footer-contact a { border-bottom: 1px solid rgba(255, 255, 255, .35); }
.footer-contact a:hover { border-bottom-color: #fff; }

/* ============================================================
   404 错误页
   服务端在「页面类请求」找不到文件时返回本页（HTTP 状态码保持 404）。
   商务取向：不用插画，靠字体层级 + 企业蓝/鎏金 + 明确的下一步动作。
   注：本页由服务端在任意 URL 下返回，页内链接以 <base> 为基准（见 404.html 注释）。
   ============================================================ */
.e404 { padding: 92px 0 76px; background: linear-gradient(180deg, var(--bg-gray) 0%, #fff 58%); }
.e404-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: start; }
.e404-code {
  font-family: var(--font-serif); font-size: clamp(84px, 12vw, 146px); line-height: .92;
  font-weight: 700; letter-spacing: 6px; color: var(--jj-red);
}
.e404-rule { width: 54px; height: 3px; background: var(--jj-gold); margin: 24px 0 26px; }
.e404 h1 { font-size: clamp(23px, 2.8vw, 32px); font-weight: 800; letter-spacing: .5px; }
.e404-sub { color: var(--ink-2); font-size: 16px; margin-top: 16px; max-width: 460px; }
.e404-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.e404-note { margin-top: 26px; font-size: 13.5px; color: var(--ink-3); }
.e404-note b { color: var(--ink-2); font-weight: 600; }

.e404-panel-title {
  font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
}
.e404-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.e404-card {
  display: block; padding: 22px 22px 18px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s, border-color .22s;
}
.e404-card:hover { border-color: var(--jj-red); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.e404-card b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: .3px; }
.e404-card span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 8px; line-height: 1.62; }
.e404-card i { display: block; font-style: normal; font-size: 17px; line-height: 1; color: var(--jj-red); margin-top: 15px; }

.e404-facts { display: flex; flex-wrap: wrap; gap: 14px 46px; margin-top: 34px; }
.e404-facts .n { font-family: var(--font-serif); font-size: 27px; font-weight: 700; color: var(--jj-red); line-height: 1.25; }
.e404-facts .n small { font-size: 14px; font-weight: 600; margin-left: 1px; }
.e404-facts .t { font-size: 12.5px; color: var(--ink-3); letter-spacing: .3px; }

.e404-brands {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 62px; padding-top: 32px; border-top: 1px solid var(--line);
}
.e404-brands > span {
  font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink-3); margin-right: 6px;
}
.e404-pill {
  padding: 9px 19px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); transition: .2s;
}
.e404-pill:hover { border-color: var(--jj-red); color: var(--jj-red); }

@media (max-width: 1020px) {
  .e404 { padding: 68px 0 60px; }
  .e404-grid { grid-template-columns: 1fr; gap: 44px; }
  .e404-sub { max-width: none; }
}
@media (max-width: 640px) {
  .e404 { padding: 52px 0 48px; }
  .e404-code { letter-spacing: 3px; }
  .e404-links { grid-template-columns: 1fr; }
  .e404-brands { margin-top: 46px; }
  .e404-facts { gap: 14px 32px; }
}


/* ---------- s23 会员流量池：手机 mockup 溢出图带、向下延伸 ---------- */
.adv-card .img-ph.img-bleed { overflow: visible; }
.adv-card .img-ph.img-bleed > img {
  height: auto; bottom: auto; object-fit: cover; object-position: top center;
}
@media (max-width: 1079px) {
  .adv-card .img-ph.img-bleed > img { height: 100%; bottom: 0; }
}

/* ---------- 集团简介首屏：塔楼夜景背景墙（文字配色与夜景衔接） ---------- */
.hero.hero-photo {
  background: linear-gradient(180deg, #16264A, #0E1B36);
  color: #fff;
}
.hero.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/images/1789638439089-1cd1e2-about-hero-jj-tower.jpg") center 30%/cover no-repeat;
}
.hero.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,22,46,.92) 0%, rgba(12,22,46,.66) 44%, rgba(12,22,46,.14) 76%, rgba(12,22,46,.26) 100%),
    linear-gradient(180deg, rgba(12,22,46,.05) 0%, rgba(12,22,46,.50) 100%);
}
.hero.hero-photo .container { position: relative; z-index: 2; }
.hero.hero-photo .hero-tag {
  background: rgba(233,211,165,.14); color: #E9D3A5;
  border-color: rgba(233,211,165,.38);
}
.hero.hero-photo h1 { color: #fff; text-shadow: 0 2px 22px rgba(8,16,36,.55); }
.hero.hero-photo h1 .red { color: #E9D3A5; }
.hero.hero-photo .hero-sub { color: rgba(240,243,250,.88); }
.hero.hero-photo .btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.hero.hero-photo .btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.hero.hero-photo .hero-card {
  background: rgba(15,27,54,.72);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
}
.hero.hero-photo .hero-card::before { background: linear-gradient(90deg, #C9A25E, #96713E); }
.hero.hero-photo .hero-card h3 { color: rgba(255,255,255,.85); }
.hero.hero-photo .stat { background: rgba(255,255,255,.10); }
.hero.hero-photo .stat .num { color: #EFCF92; }
.hero.hero-photo .stat .lbl { color: rgba(255,255,255,.78); }

/* ---------- 首页首屏：塔楼夜景照片带（仅文字区铺图，下方图片画廊保持浅底） ---------- */
.hero.hero-photo-band { padding-top: 0; }
.hero-band {
  position: relative; overflow: hidden; color: #fff;
  padding: 84px 0 64px;
  background: linear-gradient(180deg, #16264A, #0E1B36);
}
.hero-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/images/1789630947469-60c53d-about-hero-tower.jpg") center 40%/cover no-repeat;
}
.hero-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,22,46,.90) 0%, rgba(12,22,46,.62) 44%, rgba(12,22,46,.12) 76%, rgba(12,22,46,.24) 100%),
    linear-gradient(180deg, rgba(12,22,46,.05) 0%, rgba(12,22,46,.46) 100%);
}
.hero-band .container { position: relative; z-index: 2; }
.hero-band .hero-tag {
  background: rgba(233,211,165,.14); color: #E9D3A5;
  border-color: rgba(233,211,165,.38);
}
.hero-band h1 { color: #fff; text-shadow: 0 2px 22px rgba(8,16,36,.55); }
.hero-band h1 .red { color: #E9D3A5; }
.hero-band .hero-sub { color: rgba(240,243,250,.88); }
.hero-band .btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.hero-band .btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.hero-band .hero-card {
  background: rgba(15,27,54,.72);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-band .hero-card::before { background: linear-gradient(90deg, #C9A25E, #96713E); }
.hero-band .hero-card h3 { color: rgba(255,255,255,.85); }
.hero-band .stat { background: rgba(255,255,255,.10); }
.hero-band .stat .num { color: #EFCF92; }
.hero-band .stat .lbl { color: rgba(255,255,255,.78); }
.hero-band .note { color: rgba(255,255,255,.60); }

/* ---------- 企业资讯首屏：锦江都城酒店夜景背景墙（蓝金调压暗，文字配色衔接照片） ---------- */
.news-hero.news-hero-photo {
  background: #12151D; color: #fff;
  border-bottom: none; position: relative; overflow: hidden;
}
.news-hero.news-hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/images/1789638439103-e5f15c-news-hero-keitou-tower.jpg") center 45%/cover no-repeat;
}
.news-hero.news-hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(13,16,24,.94) 0%, rgba(13,16,24,.78) 40%, rgba(13,16,24,.18) 74%, rgba(13,16,24,.26) 100%),
    linear-gradient(180deg, rgba(13,16,24,.08) 0%, rgba(13,16,24,.14) 55%, rgba(13,16,24,.58) 100%);
}
.news-hero.news-hero-photo .container { position: relative; z-index: 2; }
.news-hero.news-hero-photo .kicker { color: #E9C88A; }
.news-hero.news-hero-photo h1 {
  color: #fff; text-shadow: 0 2px 22px rgba(6,8,14,.65);
}
.news-hero.news-hero-photo p { color: rgba(248,246,240,.88); }

/* ---------- 首页背景墙延伸：照片铺满整个首屏（含下方图片画廊） ---------- */
.hero.hero-photo-band {
  padding-top: 84px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #16264A, #0E1B36); color: #fff;
}
.hero.hero-photo-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/images/1789638805594-7aa7eb-index-hero-shanghai-sunrise.jpg") center 32%/cover no-repeat;
}
.hero.hero-photo-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,22,46,.90) 0%, rgba(12,22,46,.62) 44%, rgba(12,22,46,.12) 76%, rgba(12,22,46,.24) 100%),
    linear-gradient(180deg, rgba(12,22,46,.05) 0%, rgba(12,22,46,.52) 100%);
}
.hero.hero-photo-band .hero-band { background: none; overflow: visible; padding: 0; }
.hero-band::before, .hero-band::after { content: none; }
.hero.hero-photo-band .hero-band,
.hero.hero-photo-band > .container { position: relative; z-index: 2; }
.hero.hero-photo-band .hero-gallery .img-ph { box-shadow: 0 16px 44px rgba(4,9,22,.5); }

/* ---------- 锦江都城品牌页首屏：中式建筑实景背景墙 ---------- */
.brand-hero.brand-hero-photo { background: linear-gradient(180deg, #1A1210, #241812); }
.brand-hero.brand-hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/images/1789633175148-830b3e-brand-metropolo-hero.jpg") center 30%/cover no-repeat;
}
.brand-hero.brand-hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 1; background-size: auto;
  background-image:
    linear-gradient(90deg, rgba(18,12,10,.90) 0%, rgba(18,12,10,.62) 44%, rgba(18,12,10,.14) 76%, rgba(18,12,10,.22) 100%),
    linear-gradient(180deg, rgba(18,12,10,.38) 0%, rgba(18,12,10,.08) 45%, rgba(18,12,10,.52) 100%);
}
.brand-hero.brand-hero-photo h1,
.brand-hero.brand-hero-photo .slogan { text-shadow: 0 2px 20px rgba(10,5,4,.6); }
.brand-hero.brand-hero-photo .bh-stats .s {
  background: rgba(20,14,11,.55); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 12px 18px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.brand-hero.brand-hero-photo .bh-stats .s .n { color: #EFCF92; }

/* ---------- 锦江之星品牌页首屏：蓝调夜景背景墙（复用 brand-hero-photo 机制，深蓝压暗） ---------- */
.brand-hero.brand-hero-photo.hero-img-jji::before {
  background-image: url("/assets/images/1789633806659-265f92-brand-jinjianginn-hero.jpg");
  background-position: center 36%;
}
.brand-hero.brand-hero-photo.hero-img-jji::after {
  background-image:
    linear-gradient(90deg, rgba(10,18,38,.90) 0%, rgba(10,18,38,.62) 44%, rgba(10,18,38,.14) 76%, rgba(10,18,38,.24) 100%),
    linear-gradient(180deg, rgba(10,18,38,.30) 0%, rgba(10,18,38,.06) 45%, rgba(10,18,38,.52) 100%);
}
.brand-hero.brand-hero-photo.hero-img-jji .bh-stats .s { background: rgba(12,20,40,.55); }

/* ---------- 麗枫品牌页首屏：暖调客房背景墙（复用 brand-hero-photo 机制，暖棕灰压暗） ---------- */
.brand-hero.brand-hero-photo.hero-img-lavande::before {
  background-image: url("/assets/images/1789633967389-b601af-brand-lavande-hero.jpg");
  background-position: center 45%;
}
.brand-hero.brand-hero-photo.hero-img-lavande::after {
  background-image:
    linear-gradient(90deg, rgba(26,22,28,.90) 0%, rgba(26,22,28,.62) 44%, rgba(26,22,28,.14) 76%, rgba(26,22,28,.24) 100%),
    linear-gradient(180deg, rgba(26,22,28,.28) 0%, rgba(26,22,28,.06) 45%, rgba(26,22,28,.50) 100%);
}
.brand-hero.brand-hero-photo.hero-img-lavande .bh-stats .s { background: rgba(28,24,30,.55); }

/* ---------- 七天品牌页首屏：蓝黄调大堂背景墙（复用 brand-hero-photo 机制，深蓝压暗） ---------- */
.brand-hero.brand-hero-photo.hero-img-7days::before {
  background-image: url("/assets/images/1789634100806-9073ae-brand-7days-hero.jpg");
  background-position: center 40%;
}
.brand-hero.brand-hero-photo.hero-img-7days::after {
  background-image:
    linear-gradient(90deg, rgba(12,20,32,.90) 0%, rgba(12,20,32,.62) 44%, rgba(12,20,32,.14) 76%, rgba(12,20,32,.24) 100%),
    linear-gradient(180deg, rgba(12,20,32,.28) 0%, rgba(12,20,32,.06) 45%, rgba(12,20,32,.52) 100%);
}
.brand-hero.brand-hero-photo.hero-img-7days .bh-stats .s { background: rgba(14,22,34,.55); }

/* ---------- 云居品牌页首屏：禅意三联实景背景墙（复用 brand-hero-photo 机制，暖深棕压暗） ---------- */
.brand-hero.brand-hero-photo.hero-img-yunju::before {
  background-image: url("/assets/images/1789634260981-d3c08b-brand-yunju-hero.jpg");
  background-position: center 40%;
}
.brand-hero.brand-hero-photo.hero-img-yunju::after {
  background-image:
    linear-gradient(90deg, rgba(28,25,20,.90) 0%, rgba(28,25,20,.62) 44%, rgba(28,25,20,.14) 76%, rgba(28,25,20,.24) 100%),
    linear-gradient(180deg, rgba(28,25,20,.28) 0%, rgba(28,25,20,.06) 45%, rgba(28,25,20,.52) 100%);
}
.brand-hero.brand-hero-photo.hero-img-yunju .bh-stats .s { background: rgba(30,27,22,.55); }

/* ---------- 暻阁品牌页首屏：蓝调夜景航拍背景墙（复用 brand-hero-photo 机制，深蓝轻压暗） ---------- */
.brand-hero.brand-hero-photo.hero-img-jingge::before {
  background-image: url("/assets/images/1789634404019-b3b0e2-brand-jingge-hero.jpg");
  background-position: center 45%;
}
.brand-hero.brand-hero-photo.hero-img-jingge::after {
  background-image:
    linear-gradient(90deg, rgba(8,14,30,.86) 0%, rgba(8,14,30,.56) 44%, rgba(8,14,30,.10) 76%, rgba(8,14,30,.20) 100%),
    linear-gradient(180deg, rgba(8,14,30,.24) 0%, rgba(8,14,30,.04) 45%, rgba(8,14,30,.48) 100%);
}
.brand-hero.brand-hero-photo.hero-img-jingge .bh-stats .s { background: rgba(10,16,32,.55); }

/* ---------- 导航下拉可达性修复 ---------- */
/* 问题：.nav-drop 用 top: calc(100% + 10px)，与标题之间留了 10px 空隙。
   指针穿过空隙时已离开 .nav-item-drop 的盒子（空隙不属于任何可悬停元素）→
   祖先 :hover 立即丢失，而面板的 pointer-events:none 不可过渡、立即生效
   （opacity/visibility 那 0.2s 过渡还在，视觉上面板还在、实际已点不动），
   表现为「鼠标老是选不到品牌/二级项」。
   修法：在面板自己头顶补一条同样宽的透明「桥」，把空隙纳入可悬停范围。
   注意：桥必须挂在 .nav-drop 上而不是 .nav-item-drop 上——导航项间距仅 ~100px，
   挂在导航项上就得左右各外扩 ~150px 才能盖住 292px 宽的面板，相邻项的桥会
   大面积重叠、DOM 靠后的项把 hover 抢走（实测：品牌矩阵的下拉刚展开就关）。
   挂在面板上则只在展开时可见，天敌为零。桥高 10px 正好等于空隙、不侵入导航行。 */
@media (min-width: 1121px) {
  .nav-drop::after {
    content: ""; position: absolute;
    left: 0; right: 0; top: -10px; height: 10px;
  }
}

/* ============================================================
   资讯标签（Tags）：列表页 / 归档页 / 卡片角标 / 详情页标签行
   数据来自后台「资讯标签管理」：一篇文章可挂多个标签，标签 chip 全部可点，
   指向该标签的归档页（/news/tag/<key>.html 与 /zh/news/tag/<key>.html）。
   ============================================================ */

/* ---------- 卡片与详情页里的标签 chip（a 与 span 共用同一套样式） ---------- */
a.news-tag, span.news-tag {
  display: inline-block; background: var(--jj-red-soft); color: var(--jj-red);
  border-radius: 999px; padding: 3px 11px; font-size: 12px; font-weight: 700;
}
a.news-tag:hover { background: var(--jj-red); color: #fff; }
.news-card-meta { flex-wrap: wrap; row-gap: 6px; }
.article-tags { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
a.news-tag-detail { font-size: 12.5px; padding: 4px 13px; }

/* ---------- 资讯列表页顶部「按标签浏览」条 ---------- */
.news-tagbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 0 0 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line);
}
.news-tagbar-t { font-size: 13.5px; font-weight: 700; color: var(--ink-2); margin-right: 4px; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600;
  transition: border-color .18s, color .18s, background .18s;
}
.tag-pill:hover { border-color: var(--jj-red); color: var(--jj-red); }
.tag-pill .tag-count { font-style: normal; font-size: 11.5px; color: var(--ink-3); font-weight: 700; }
.tag-pill:hover .tag-count { color: var(--jj-red); }
.tag-pill-all { border-color: var(--jj-red); color: var(--jj-red); background: var(--jj-red-soft); }
.tag-pill-all:hover { background: var(--jj-red); color: #fff; }

/* ---------- 标签列表页（/news-tags.html） ---------- */
.tag-grid-head { font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; }
.tag-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 16px;
}
.tag-card {
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 18px 20px; box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.tag-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--jj-red); }
.tag-card-name { font-size: 16.5px; font-weight: 800; color: var(--ink); }
.tag-card-count { font-size: 12.5px; color: var(--jj-red); font-weight: 700; }
.tag-card-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.tag-back { margin-top: 30px; }

/* ---------- 标签归档页（/news/tag/<key>.html） ---------- */
.tag-hero-desc:empty { display: none; }
.tag-hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.tag-hero-count { font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.tag-hero-link { font-size: 13.5px; font-weight: 700; color: var(--jj-red); }
.tag-hero-link:hover { color: var(--jj-red-deep); text-decoration: underline; }
.tag-siblings { padding: 0 0 84px; }
.tag-siblings h2 { font-size: 19px; margin-bottom: 16px; }
.tag-bar { display: flex; flex-wrap: wrap; gap: 8px; }

@media (max-width: 720px) {
  .tag-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tag-card { padding: 14px 15px; }
  .tag-card-name { font-size: 15px; }
}

/* ============================================================
   品牌矩阵（集团简介 · 官方四层级规划：奢华尊选 / 高端甄选 / 精品优选 / 舒适智选）
   左侧层级标签 + 右侧 logo 横排；已开放东南亚加盟的品牌金底高亮可点
   ============================================================ */
.logo-matrix { margin: 26px 0 34px; border-top: 1px solid var(--line); }
.tier-row {
  display: grid; grid-template-columns: 128px 1fr; gap: 18px; align-items: center;
  padding: 24px 4px; border-bottom: 1px solid var(--line);
}
.tier-label b {
  display: block; font-size: 14px; font-weight: 800; letter-spacing: .08em;
  color: var(--ink-2);
}
.tier-label i {
  display: block; font-style: normal; font-size: 13px;
  color: var(--ink-3); margin-top: 4px;
}
.tier-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 20px 34px; row-gap: 22px;
}
.tm-cell {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 6px 4px; border-radius: 8px; position: relative;
  transition: transform .18s, background .18s, box-shadow .18s;
}
.tm-cell img { max-width: 128px; max-height: 52px; object-fit: contain; display: block; }
a.tm-cell { cursor: pointer; }
a.tm-cell:hover {
  transform: translateY(-3px);
  background: #FBF5EA; box-shadow: 0 10px 24px rgba(43,76,140,.12);
}
/* 开放加盟品牌：不用卡片底（与裸 logo 混排突兀），改为下方细金线标记 */
.tm-cell.open::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -4px; width: 24px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #B8925A, #D9B87E);
}
@media (max-width: 860px) {
  .tier-row { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
  .tier-label b { display: inline; margin-right: 10px; }
  .tier-label i { display: inline; margin-top: 0; }
  .tier-logos { gap: 14px 20px; }
  .tm-cell { height: 42px; }
  .tm-cell img { max-width: 104px; max-height: 42px; }
}
