/* ============================================================
   腕间时光 wristtime — 高端品牌官网样式
   设计语言：深墨底色 + 香槟金点缀 + 大量留白 + 精致衬线标题
   ============================================================ */

/* 本地化字体栈（如需自托管字体，取消注释并放入 assets/fonts/）
@font-face {
  font-family: "WristSerif";
  src: url("../fonts/NotoSerifSC.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
*/
:root {
  --ink: #161616;            /* 主深墨色 */
  --ink-2: #1f1c17;          /* 次深底色 */
  --paper: #f7f4ef;          /* 暖白底 */
  --paper-2: #efe9df;        /* 次暖底 */
  --gold: #c9a96a;           /* 香槟金 */
  --gold-deep: #8a6d3b;      /* 深金 */
  --text: #2a241b;           /* 正文深褐 */
  --text-soft: #6b6354;      /* 次要文字 */
  --line: #e3dccd;           /* 分隔线 */
  --white: #ffffff;
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, "Times New Roman", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(26, 22, 15, 0.10);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(247, 244, 239, 0.95); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 38px; }
.nav-links a {
  position: relative;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 首屏 Hero ---------- */
.hero {
  position: relative;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
/* 背景图片：覆盖全屏，object-fit cover */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 暗色叠加层：保证文字可读，同时保留背景图质感 */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(201, 169, 106, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(22, 19, 15, 0.72) 0%, rgba(22, 22, 22, 0.80) 40%, rgba(20, 17, 13, 0.88) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 70%);
}
.hero-inner { position: relative; padding: 130px 24px 120px; }
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin: 0 0 22px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.hero-title .accent { color: var(--gold); margin: 0 6px; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #cfc7b6;
  max-width: 620px;
  margin: 0 0 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats {
  list-style: none;
  display: flex;
  gap: 56px;
  margin: 72px 0 0;
  padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stats span { font-size: 13px; letter-spacing: 0.08em; color: #9a9182; margin-top: 6px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: #1a1712;
  box-shadow: 0 12px 30px rgba(201, 169, 106, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 169, 106, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(201, 169, 106, 0.55);
}
.btn-ghost:hover { background: rgba(201, 169, 106, 0.12); transform: translateY(-3px); }

/* ---------- 通用区块 ---------- */
.section { padding: 110px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.section-head p { color: var(--text-soft); font-size: 17px; margin: 0; }

/* ---------- 关于我们 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.about-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink);
}
.about-card p { color: var(--text-soft); margin: 0; font-size: 15.5px; }

/* ---------- 主营业务 ---------- */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.biz-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 26px 32px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.biz-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.biz-card:hover::before { transform: scaleX(1); }
.biz-no {
  font-family: var(--serif);
  font-size: 40px;
  color: rgba(201, 169, 106, 0.35);
  line-height: 1;
  margin-bottom: 14px;
}
.biz-card h3 { font-family: var(--serif); font-size: 21px; margin: 0 0 12px; color: var(--ink); }
.biz-card p { color: var(--text-soft); margin: 0; font-size: 15px; }

/* ---------- 淘宝店铺 ---------- */
.shop-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
/* 手机区域：放大展示 */
.shop-phone {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
  width: 300px;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(145deg, #4a4a4a 0%, #2a2a2a 45%, #3a3a3a 100%);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.40),
    0 10px 25px rgba(0,0,0,0.20),
    inset 0 0 0 1px rgba(255,255,255,0.07);
}
.phone-screen {
  display: block;
  width: 100%;
  border-radius: 38px;
  background: #000;
  object-fit: cover;
  aspect-ratio: 9 / 19.5;
}
/* 右侧信息区：居中 */
.shop-info {
  text-align: center;
  max-width: 520px;
}
.shop-info h3 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 14px;
  color: var(--ink);
}
.shop-info p {
  color: var(--text-soft);
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.7;
}
/* CTA 区域：按钮 + 或 + 二维码 水平排列 */
.shop-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-divider {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
/* 内联二维码：小尺寸，文字在右侧 */
.qr-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.qr-inline img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 6px;
}
.qr-inline span {
  font-size: 13px;
  color: var(--gold-deep);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ---------- 联系我们 ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.contact-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 32px;
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-value,
.contact-link {
  font-size: 16px;
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}
.contact-link {
  color: var(--gold-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.contact-link:hover { border-color: var(--gold-deep); color: var(--gold); }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--ink); color: #b8b0a0; padding: 64px 0 28px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; height: 40px; }
.footer-brand p { font-family: var(--serif); color: var(--gold); margin: 12px 0 0; letter-spacing: 0.08em; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: #cfc7b6; transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 13px;
  color: #8a8275;
}

/* ---------- 滚动揭示动画 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-showcase { gap: 36px; }
  .phone-mockup { width: 240px; padding: 10px; border-radius: 42px; }
  .phone-screen { border-radius: 32px; }
  .shop-cta { flex-direction: column; gap: 16px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 244, 239, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    padding: 12px 0;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0s linear 0.35s, border-color 0.35s var(--ease);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    border-bottom-color: var(--line);
    transition: transform 0.35s var(--ease), visibility 0s, border-color 0.35s var(--ease);
  }
  .nav-links a { padding: 16px 24px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { padding: 96px 24px 84px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; margin-top: 54px; }
  .hero-stats strong { font-size: 28px; }
  .section { padding: 76px 0; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; max-width: 460px; }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact-value, .contact-link { text-align: left; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .biz-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* 尊重无障碍偏好 */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   新闻中心 / 新闻列表（强 SEO 语义化版式）
   ============================================================ */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* 子页 Hero（复用首屏视觉） */
.hero-subpage { min-height: 52vh; }
.hero-subpage .hero-inner { padding: 120px 24px 96px; }

.news-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: 34px; }
.news-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin: 0; color: var(--ink); }
.news-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.cat {
  background: var(--white); border: 1px solid var(--line); color: var(--text-soft);
  padding: 8px 16px; border-radius: 999px; font-size: 14px; cursor: pointer; font-family: inherit;
  transition: all .2s var(--ease);
}
.cat:hover { color: var(--gold-deep); border-color: var(--gold); }
.cat.active { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); border-color: transparent; }

.news-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 0; padding: 0; }
.news-item {
  display: flex; gap: 18px; padding: 18px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.news-item:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.news-thumb { width: 132px; min-width: 132px; height: 104px; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb--empty { display: grid; place-items: center; background: linear-gradient(135deg, rgba(201,169,106,.18), rgba(201,169,106,.06)); border: 1px solid var(--line); }
.news-thumb--empty span { font-size: 13px; color: var(--gold-deep); font-weight: 700; }
.news-body { display: flex; flex-direction: column; min-width: 0; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.news-tag { font-size: 12px; color: var(--gold-deep); border: 1px solid var(--line); padding: 2px 10px; border-radius: 999px; background: rgba(201,169,106,.10); }
.news-meta time { font-size: 13px; color: var(--text-soft); }
.news-head { font-family: var(--serif); font-size: 17px; line-height: 1.45; margin: 0 0 8px; }
.news-head a { color: var(--ink); transition: color .2s; }
.news-head a:hover { color: var(--gold-deep); }
.news-sum { font-size: 14px; color: var(--text-soft); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-more { margin-top: auto; padding-top: 10px; font-size: 13px; color: var(--gold-deep); font-weight: 600; }
.news-more:hover { color: var(--gold); }

/* 外层包裹（news.php 自带）；函数内 wwcw-pagination 已带 margin-top，外层不重复抢占 */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 0; flex-wrap: wrap; }
.pg {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px; border-radius: 10px; cursor: pointer; font-family: inherit;
  background: var(--white); border: 1px solid var(--line); color: var(--text-soft); font-size: 14px;
  transition: all .2s var(--ease);
}
.pg:hover:not(:disabled) { color: var(--gold-deep); border-color: var(--gold); }
.pg.active { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); border-color: transparent; font-weight: 700; }
.pg:disabled { opacity: .35; cursor: not-allowed; }

.home-news-foot { margin-top: 34px; text-align: center; }

/* ============================================================
   新闻详情页
   ============================================================ */
.article { padding-top: clamp(48px, 7vw, 90px); }
.article-inner { max-width: 820px; }
.breadcrumb { font-size: .88rem; color: var(--text-soft); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--gold-deep); }
.breadcrumb a:hover { color: var(--gold); }
.article-meta { display: flex; gap: 12px; align-items: center; margin: 0 0 14px; color: var(--text-soft); font-size: .92rem; }
.article-meta span { color: var(--gold-deep); border: 1px solid var(--line); padding: 2px 10px; border-radius: 999px; background: rgba(201,169,106,.10); }
.article-title { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.25; margin: 0 0 26px; color: var(--ink); }
.article-cover { margin: 0 0 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-cover img { width: 100%; height: auto; }
.article-body { font-size: 1.06rem; color: var(--text); }
.article-body p { margin: 0 0 20px; line-height: 1.9; }
.article-body strong { color: var(--ink); }
.article-foot { margin-top: 36px; }

/* 返回顶部 */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink);
  font-size: 22px; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); transform: translateY(10px);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* 新闻响应式 */
@media (max-width: 760px) {
  .news-list { grid-template-columns: 1fr; }
  .news-item { flex-direction: column; }
  .news-thumb { width: 100%; min-width: 0; height: 180px; }
  .news-toolbar { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   腕间时光 — WWCW 引擎补充样式
   ============================================================ */

/* **高亮**（引擎 bh_hl 输出 <span class="hl">） */
.hl {
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- 引擎默认页兜底（通常不渲染，防意外全裸） ---------- */
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); font-weight: 800; font-family: var(--serif); font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 18px; }
.brand-en { font-size: 10px; letter-spacing: .22em; color: var(--gold-deep); text-transform: uppercase; }
.nav-link {
  font-size: 15px; letter-spacing: .04em; color: var(--text);
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color .25s var(--ease), border-color .25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-deep); border-color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 22px; border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep)); color: var(--ink);
  font-size: 14px; font-weight: 600; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,169,106,.35); }
.site-footer .footer-desc { color: #b8b0a0; font-size: 14px; margin: 10px 0 0; max-width: 420px; }
.site-footer .footer-meta { color: #8a8275; font-size: 13px; }
.site-footer .footer-brand { display: flex; align-items: center; gap: 10px; }

/* 引擎新闻列表/详情兜底 */
.wwcw-news-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 0; padding: 0; }
.wwcw-news-row { display: flex; gap: 18px; padding: 18px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.wwcw-news-thumb { width: 132px; min-width: 132px; height: 104px; border-radius: 12px; overflow: hidden; background: var(--paper-2); display: block; }
.wwcw-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wwcw-news-thumb--empty { display: grid; place-items: center; background: linear-gradient(135deg, rgba(201,169,106,.18), rgba(201,169,106,.06)); border: 1px solid var(--line); }
.wwcw-news-thumb--empty span { font-size: 13px; color: var(--gold-deep); font-weight: 700; }
.wwcw-news-body { display: flex; flex-direction: column; min-width: 0; }
.wwcw-news-meta { display: flex; align-items: center; gap: 12px; margin: 0 0 8px; }
.wwcw-news-tag { font-size: 12px; color: var(--gold-deep); border: 1px solid var(--line); padding: 2px 10px; border-radius: 999px; background: rgba(201,169,106,.10); }
.wwcw-news-meta time { font-size: 13px; color: var(--text-soft); }
.wwcw-news-head-title { font-family: var(--serif); font-size: 17px; line-height: 1.45; margin: 0 0 8px; }
.wwcw-news-head-title a { color: var(--ink); transition: color .2s; }
.wwcw-news-head-title a:hover { color: var(--gold-deep); }
.wwcw-news-sum { font-size: 14px; color: var(--text-soft); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wwcw-news-more { margin-top: auto; padding-top: 10px; font-size: 13px; color: var(--gold-deep); font-weight: 600; }
.wwcw-news-head, .wwcw-kicker { font-family: var(--serif); }
.wwcw-news-title { font-family: var(--serif); color: var(--ink); }
.wwcw-news-desc { color: var(--text-soft); }
.wwcw-news-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.wwcw-cat { background: var(--white); border: 1px solid var(--line); color: var(--text-soft); padding: 8px 16px; border-radius: 999px; font-size: 14px; transition: all .2s var(--ease); }
.wwcw-cat:hover { color: var(--gold-deep); border-color: var(--gold); }
.wwcw-cat.active { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); border-color: transparent; }
.wwcw-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.wwcw-article-inner { max-width: 820px; }
.wwcw-breadcrumb { font-size: .88rem; color: var(--text-soft); margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wwcw-breadcrumb a { color: var(--gold-deep); }
.wwcw-article-title { font-family: var(--serif); color: var(--ink); }
.wwcw-article-body { font-size: 1.06rem; color: var(--text); }
.wwcw-article-body p { margin: 0 0 20px; line-height: 1.9; }
.wwcw-article-cover img { width: 100%; border-radius: var(--radius); }
.wwcw-btn { display: inline-flex; align-items: center; padding: 12px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.wwcw-btn-ghost { border: 1px solid var(--line); color: var(--text-soft); }

@media (max-width: 760px) {
  .wwcw-news-list { grid-template-columns: 1fr; }
  .wwcw-news-row { flex-direction: column; }
  .wwcw-news-thumb { width: 100%; min-width: 0; height: 180px; }
}
