/* =========================================================
   传池白酒企业官网 · 样式表
   设计语言：中国传统色（酒红 + 鎏金 + 深棕 + 宣纸白 + 墨黑）
   字体：标题衬线 / 正文无衬线
   ========================================================= */

:root {
  --wine: #7A1F1F;        /* 主色·酒红 */
  --wine-deep: #5C1414;   /* 深酒红（渐变/悬浮） */
  --gold: #C9A063;        /* 辅助·鎏金 */
  --gold-light: #E2C893;  /* 浅金（hover） */
  --brown: #3A2A1E;       /* 深棕（页脚/深色底） */
  --paper: #F7F2E9;       /* 宣纸白（主背景） */
  --paper-2: #EFE7D8;     /* 次背景 */
  --ink: #1E1A17;         /* 墨黑 */
  --text: #33302B;        /* 正文暖灰黑 */
  --text-soft: #6B635A;   /* 辅助文字 */
  --celadon: #5B7B6F;     /* 窑变青（极少量点缀） */

  --serif: "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --deco: "Trajan Pro", Georgia, "Times New Roman", serif;

  --maxw: 1200px;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(30, 26, 23, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* 章节标题 */
.section { padding: 96px 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}
.section-title .en {
  display: block;
  font-family: var(--deco);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  margin: 18px auto 0;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 680px;
  margin: 18px auto 48px;
  font-size: 0.95rem;
}

/* ============ 顶部导航 ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(30,26,23,0.55), rgba(30,26,23,0));
}
.nav.scrolled {
  background: linear-gradient(180deg, var(--wine), var(--wine-deep));
  box-shadow: 0 4px 20px rgba(30,26,23,0.25);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo .seal {
  width: 38px; height: 38px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold);
  background: rgba(201,160,99,0.08);
}
.logo .name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; letter-spacing: 2px; }
.logo .name small { display:block; font-family: var(--deco); font-size: 0.55rem; letter-spacing: 3px; color: var(--gold-light); font-weight: 400; }

.nav-menu { display: flex; gap: 34px; }
.nav-menu a {
  position: relative;
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  letter-spacing: 1px;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-menu a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-light); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }

/* 移动端菜单 */
.mobile-menu {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, var(--wine), var(--brown));
  z-index: 998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: #fff; font-family: var(--serif); font-size: 1.4rem; letter-spacing: 3px; }
.mobile-menu a:hover { color: var(--gold-light); }

/* ============ 首屏 Banner ============ */
.banner { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.banner-track { height: 100%; }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1s var(--ease);
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,26,23,0.78), rgba(92,20,20,0.45));
}
.slide .slide-inner { position: relative; z-index: 3; width: 100%; }
.slide .tag {
  display: inline-block;
  font-family: var(--deco); letter-spacing: 4px;
  color: var(--gold); font-size: 0.85rem; margin-bottom: 18px;
  border: 1px solid rgba(201,160,99,0.5); padding: 4px 14px; border-radius: 30px;
}
.slide h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.2;
  letter-spacing: 4px; text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.slide h1 .accent { color: var(--gold-light); }
.slide p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 22px 0 34px; max-width: 560px; }
.btn {
  display: inline-block;
  font-family: var(--serif);
  padding: 13px 36px; border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown); font-weight: 700; letter-spacing: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 6px 20px rgba(201,160,99,0.35);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(201,160,99,0.5); }
.btn.ghost {
  background: transparent; color: var(--gold-light);
  border: 1px solid var(--gold); box-shadow: none;
}
.btn.ghost:hover { background: rgba(201,160,99,0.12); }

.banner-ctrl { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 12px; }
.banner-ctrl button {
  width: 12px; height: 12px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s;
}
.banner-ctrl button.active { background: var(--gold); width: 30px; border-radius: 6px; }
.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(30,26,23,0.3); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.4rem; cursor: pointer; transition: 0.3s;
}
.banner-arrow:hover { background: var(--wine); }
.banner-arrow.prev { left: 24px; }
.banner-arrow.next { right: 24px; }

/* ============ 关于传池 ============ */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--ink); margin-bottom: 22px; letter-spacing: 2px; }
.about-text h2 .bar { color: var(--wine); }
.about-text p { color: var(--text); margin-bottom: 16px; }
.about-text .lead { font-size: 1.05rem; color: var(--wine); font-weight: 600; }
.about-figure { position: relative; }
.about-figure .photo {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(201,160,99,0.25), transparent 60%),
    linear-gradient(135deg, var(--brown), var(--ink));
  box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--gold-light);
  font-family: var(--serif); font-size: 1.4rem; letter-spacing: 6px;
  position: relative; overflow: hidden;
}
.about-figure .photo::after {
  content: "传池 · 厂区"; position: absolute; bottom: 18px; right: 20px;
  font-size: 0.8rem; letter-spacing: 2px; color: rgba(255,255,255,0.6);
}
.about-figure .stamp {
  position: absolute; top: -22px; right: -14px;
  width: 92px; height: 92px; border: 2px solid var(--gold);
  border-radius: 8px; display: grid; place-items: center; text-align: center;
  font-family: var(--serif); color: var(--wine); background: var(--paper);
  transform: rotate(8deg); font-size: 0.9rem; line-height: 1.3; font-weight: 700;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.stat { text-align: center; padding: 28px 12px; background: #fff; border-radius: var(--radius); border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.stat .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--wine); }
.stat .num .en { font-family: var(--deco); font-size: 1rem; color: var(--gold); }
.stat .label { color: var(--text-soft); margin-top: 6px; letter-spacing: 1px; }

/* ============ 产品中心 ============ */
.products { background: var(--paper-2); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  border: 1px solid transparent;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(122,31,31,0.18); }
.product-card .thumb {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: var(--paper-2);
}
.product-card .thumb img.litpic-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; z-index:1; }
.product-card .thumb img.litpic-img[src$="not_adv.jpg"] { display: none; }
.product-card .body { padding: 20px; }
.product-card .body h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: 4px; }
.product-card .body .meta { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.product-card .body .desc { color: var(--text-soft); font-size: 0.88rem; margin: 10px 0 14px; }
.product-card .body .more { color: var(--wine); font-size: 0.88rem; font-weight: 600; }
.product-card .body .more::after { content: " →"; }

/* ============ 酿造工艺（深色） ============ */
.craft { background: var(--ink); color: #fff; position: relative; }
.craft .section-title { color: #fff; }
.craft .section-title::after { background: linear-gradient(90deg, var(--gold), var(--wine)); }
.craft .section-sub { color: rgba(255,255,255,0.65); }
.craft-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 24px; }
.step { text-align: center; padding: 30px 14px; border: 1px solid rgba(201,160,99,0.25); border-radius: var(--radius); background: rgba(255,255,255,0.03); transition: 0.35s var(--ease); }
.step:hover { background: rgba(201,160,99,0.1); border-color: var(--gold); transform: translateY(-6px); }
.step .idx { font-family: var(--deco); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.step .ico { font-size: 1.8rem; margin: 12px 0; }
.step h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 1px; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ============ 资质荣誉 ============ */
.honor { background: var(--paper); }
.honor-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 12px; }
.honor-item { aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(160deg, #fff, var(--paper-2)); border: 1px solid rgba(201,160,99,0.3); display: grid; place-items: center; text-align: center; padding: 16px; box-shadow: var(--shadow); transition: 0.35s var(--ease); }
.honor-item:hover { transform: translateY(-6px); border-color: var(--wine); }
.honor-item .medal { font-size: 2rem; margin-bottom: 10px; }
.honor-item .t { font-family: var(--serif); color: var(--wine); font-size: 0.95rem; }
.honor-item .y { color: var(--text-soft); font-size: 0.78rem; margin-top: 6px; }

/* ============ 新闻动态（首页区块） ============ */
.news { background: var(--paper-2); }
.news-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.news-feature { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.news-feature .cover { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--wine), var(--brown)); display: grid; place-items: center; color: var(--gold-light); font-family: var(--serif); letter-spacing: 4px; }
.news-feature .info { padding: 24px; }
.news-feature .info .date { font-family: var(--deco); color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.news-feature .info h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin: 8px 0; }
.news-feature .info p { color: var(--text-soft); font-size: 0.92rem; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-row { display: flex; gap: 16px; padding: 16px; background: #fff; border-radius: var(--radius); border-left: 3px solid var(--gold); box-shadow: var(--shadow); transition: 0.3s; }
.news-row:hover { transform: translateX(4px); }
.news-row .d { font-family: var(--deco); color: var(--wine); font-size: 1.4rem; line-height: 1; min-width: 52px; }
.news-row .d small { display: block; font-size: 0.7rem; color: var(--text-soft); }
.news-row .t { font-family: var(--serif); color: var(--ink); font-size: 1.02rem; }
.news-row .t span { display: block; color: var(--text-soft); font-size: 0.82rem; font-family: var(--sans); margin-top: 4px; }

/* ============ 页脚 ============ */
.footer { background: var(--brown); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h5 { font-family: var(--serif); color: var(--gold-light); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 2px; }
.footer p, .footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 2; }
.footer a:hover { color: var(--gold-light); }
.footer .qr { width: 110px; height: 110px; background: #fff; border-radius: 6px; display: grid; place-items: center; color: var(--brown); font-size: 0.75rem; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding: 22px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

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

/* ============ 响应式 ============ */
@media (max-width: 1199px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-wall { grid-template-columns: repeat(4, 1fr); }
  .craft-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 56px 0; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .banner { height: 70vh; min-height: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-steps { grid-template-columns: repeat(2, 1fr); }
  .honor-wall { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .slide h1 { font-size: 2rem; }
  .banner-arrow { display: none; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .craft-steps, .honor-wall, .stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ 首页落地页：品牌简述 + 栏目入口卡片 ============ */
.brand-intro { background: var(--paper); text-align: center; }
.brand-intro .lead-text { max-width: 780px; margin: 0 auto; font-family: var(--serif); font-size: 1.18rem; color: var(--wine); line-height: 2.1; letter-spacing: 1px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: feat; }
.feature-card {
  position: relative; display: block; padding: 42px 30px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(201,160,99,0.18); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.feature-card::before {
  counter-increment: feat; content: "0" counter(feat);
  position: absolute; top: 16px; right: 22px;
  font-family: var(--deco); font-size: 1.5rem; color: rgba(201,160,99,0.4);
}
.feature-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 44px rgba(122,31,31,0.16); }
.feature-card .fc-ico {
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--gold-light); font-size: 1.5rem; margin-bottom: 18px;
}
.feature-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; letter-spacing: 1px; }
.feature-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }
.feature-card .fc-more { display: inline-block; margin-top: 16px; color: var(--wine); font-weight: 600; font-size: 0.88rem; }
.feature-card .fc-more::after { content: " →"; }

/* ============ 栏目内页通用：页头 + 面包屑 ============ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 52px;
  background: linear-gradient(160deg, var(--wine), var(--brown));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 18%, rgba(201,160,99,0.28), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .en { font-family: var(--deco); letter-spacing: 5px; color: var(--gold-light); font-size: 0.85rem; display: block; margin-bottom: 10px; text-transform: uppercase; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: 3px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.breadcrumb { background: var(--paper-2); padding: 14px 0; font-size: 0.85rem; color: var(--text-soft); letter-spacing: 1px; }
.breadcrumb a { color: var(--wine); }
.breadcrumb span { margin: 0 8px; color: rgba(107,99,90,0.5); }
/* 内容页：固定导航预留高度，避免面包屑被导航盖住（与产品页 page-hero 等效） */
.page-article .breadcrumb { margin-top: var(--nav-h); }
/* 详情页已带 page-hero 时，导航高度由 page-hero 预留，面包屑不再额外留白 */
.page-article .page-hero + .breadcrumb { margin-top: 0; }

/* 单页正文排版 */
.single-content { padding: 72px 0; background: var(--paper); }
.single-content .prose { max-width: 900px; margin: 0 auto; }
.single-content .prose h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin: 40px 0 16px; letter-spacing: 1px; position: relative; padding-left: 18px; }
.single-content .prose h2::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 2px; background: linear-gradient(var(--wine), var(--gold)); }
.single-content .prose p { color: var(--text); margin-bottom: 16px; font-size: 1.02rem; }
.single-content .prose .lead { font-size: 1.12rem; color: var(--wine); font-weight: 600; }
.single-content .prose ul, .single-content .prose ol { margin: 0 0 18px 22px; }
.single-content .prose li { margin-bottom: 8px; }
.single-content .prose .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.single-content .prose .info-card { background: #fff; border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); border-top: 3px solid var(--gold); text-align: center; }
.single-content .prose .info-card .card-icon { font-size: 1.9rem; margin-bottom: 10px; }
.single-content .prose .info-card h3 { font-family: var(--serif); color: var(--wine); font-size: 1.15rem; margin-bottom: 8px; }
.single-content .prose .info-card p { font-size: 0.88rem; color: var(--text-soft); margin: 0; }
.single-content .prose .figure { display: none; }

/* ============ 列表 / 详情页 ============ */
.list-page { padding: 56px 0 84px; background: var(--paper-2); }
.article-detail { padding: 48px 0 84px; background: var(--paper); }
.article-detail .prose { max-width: 920px; margin: 0 auto; font-size: 1.05rem; line-height: 2; color: var(--text); background: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(30,26,23,.12); padding: 44px 56px; }
.article-detail .prose h2, .article-detail .prose h3 { font-family: var(--serif); color: var(--ink); margin: 28px 0 12px; }
.article-detail .prose p { margin-bottom: 16px; }
.article-detail .prose .figure { display: none; }
.article-back { display: inline-block; margin: 30px 0 0; color: var(--wine); font-weight: 600; }
.article-back::before { content: "← "; }

/* 产品详情页 hero */
.product-hero { display: grid; grid-template-columns: 380px 1fr; gap: 44px; align-items: start; margin-bottom: 48px; background: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(30,26,23,.12); padding: 36px; }
.product-hero-img { position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; background: var(--paper-2); }
.product-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.product-hero-img img[src$="not_adv.jpg"] { display: none; }
.product-hero-info { padding-top: 6px; }
.product-hero-info .ey-en { display: block; font-family: var(--deco); color: var(--gold); letter-spacing: 3px; font-size: .95rem; margin-bottom: 8px; }
.product-hero-title { font-family: var(--serif); font-size: 2.1rem; color: var(--ink); line-height: 1.25; margin-bottom: 14px; }
.product-hero-price { font-family: var(--deco); color: var(--wine); font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.product-hero-desc { color: var(--text-soft); font-size: 1rem; line-height: 1.9; margin-bottom: 28px; }
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; padding: 22px; }
  .product-hero-img { max-width: 360px; }
  .product-hero-title { font-size: 1.7rem; }
  .article-detail .prose { padding: 30px 22px; }
}

/* 产品列表网格（复用 .product-grid） */
.list-page .product-grid { margin-top: 4px; }

/* 分页 */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span, .pagination em { padding: 8px 15px; border-radius: var(--radius); background: #fff; color: var(--text); font-size: 0.9rem; box-shadow: var(--shadow); font-style: normal; }
.pagination .active, .pagination .current { background: var(--wine); color: #fff; }
.pagination a:hover { background: var(--gold); color: var(--brown); }

/* 联系我们 */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 24px; }
.contact-info p { margin-bottom: 14px; line-height: 1.9; }
.contact-info .ci-label { color: var(--wine); font-weight: 600; font-family: var(--serif); margin-right: 6px; }
.contact-form { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 6px; color: var(--text-soft); font-size: 0.9rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid rgba(122,31,31,0.2); border-radius: var(--radius); margin-bottom: 18px; font-family: var(--sans); font-size: 0.95rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { width: 100%; text-align: center; cursor: pointer; border: none; }

/* 响应式补充 */
@media (max-width: 1199px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .single-content .prose .card-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .single-content .prose .card-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   新闻列表页 · 对标 lqhnt.com 大气款式
   ========================================================= */

/* 全屏大图横幅 */
.cc-banner {
  position: relative;
  height: 550px;
  margin-top: var(--nav-h);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2b1810 0%, #4a1a1a 40%, #7A1F1F 100%);
}
.cc-banner-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(201,160,99,.22), transparent 50%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='xMidYMax slice'><path d='M0,320 C200,260 500,300 800,270 C1000,250 1100,290 1200,280 L1200,400 L0,400Z' fill='rgba(0,0,0,0.25)'/><path d='M0,360 C300,320 700,360 1200,330 L1200,400 L0,400Z' fill='rgba(0,0,0,0.35)'/></svg>") no-repeat bottom center / cover;
  opacity: .9;
}
.cc-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><text x='50%' y='55%' font-family='serif' font-size='160' fill='rgba(201,160,99,0.04)' text-anchor='middle' dominant-baseline='middle'>酒</text></svg>") repeat;
  background-size: 220px;
  opacity: .6;
}
.cc-banner-text {
  position: relative; z-index: 2;
  text-align: center;
}
.cc-banner-text span {
  display: block;
  font-family: var(--deco);
  font-size: 90px;
  font-weight: 900;
  letter-spacing: 14px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 80%);
  mask-image: linear-gradient(to bottom, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 80%);
}
.cc-banner-text p {
  font-family: var(--serif);
  font-size: 40px;
  color: #fff;
  letter-spacing: 10px;
  margin-top: -14px;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.cc-arrow-down {
  display: block; width: 50px; height: 50px;
  margin: 24px auto 0;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  animation: cc-bounce 2s infinite;
}
.cc-arrow-down svg { width: 100%; height: 100%; }
@keyframes cc-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* 覆盖式栏目导航 */
.cc-submenu {
  margin-top: -80px;
  position: relative; z-index: 10;
}
.cc-submenu .container {
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,.08);
}
.cc-submenu ul {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.cc-submenu li { list-style: none; }
.cc-submenu li a {
  display: flex; align-items: center; gap: 10px;
  height: 90px; line-height: 90px;
  padding: 0 34px;
  color: var(--text-soft);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  transition: color .3s ease;
}
.cc-submenu li a::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 3px;
  background: var(--wine);
  transform: translateX(-50%);
  transition: width .3s ease;
}
.cc-submenu li:hover a,
.cc-submenu li.active a { color: var(--wine); }
.cc-submenu li:hover a::after,
.cc-submenu li.active a::after { width: 100%; }
.cc-submenu .cc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* 新闻主体 */
.cc-news { padding: 80px 0 100px; background: var(--paper); }

/* 占位图 */
.cc-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--wine) 0%, var(--brown) 100%);
  color: var(--gold-light);
  gap: 12px;
}
.cc-ph-seal {
  width: 92px; height: 92px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 46px; font-weight: 900;
  border: 3px solid var(--gold); border-radius: 8px;
  background: rgba(0,0,0,.15);
}
.cc-ph-text {
  font-family: var(--serif); font-size: 18px; letter-spacing: 6px;
  opacity: .8;
}

/* 头条大图 */
.cc-featured {
  display: flex; align-items: center;
  margin-bottom: 44px;
  padding: 34px 36px 44px;
  border-bottom: 1px solid rgba(58,42,30,.12);
  border-radius: 18px;
  transition: background .35s ease, box-shadow .35s ease;
}
.cc-news-list .cc-featured { grid-column: 1 / -1; }
.cc-featured .cc-feat-img {
  flex: none;
  width: 460px; height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(58,42,30,.18);
}
.cc-featured .cc-feat-img img,
.cc-featured .cc-feat-img .cc-img-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cc-featured:hover { background: var(--wine); box-shadow: 0 14px 32px rgba(122,31,31,.28); border-bottom-color: transparent; }
.cc-featured:hover .cc-meta,
.cc-featured:hover .cc-meta-time { color: rgba(255,255,255,.82); }
.cc-featured:hover .cc-icon-date { color: var(--gold-light); }
.cc-featured:hover .cc-tag { background: var(--gold-light); color: var(--wine); }
.cc-featured:hover .cc-feat-img img,
.cc-featured:hover .cc-feat-img .cc-img-placeholder { transform: scale(1.05); }
.cc-featured .cc-feat-text {
  flex: 1;
  padding-left: 48px;
  min-width: 0;
}
.cc-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-soft);
}
.cc-icon-date {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cc-icon-date svg { width: 100%; height: 100%; }
.cc-meta-time { letter-spacing: 1px; }
.cc-tag {
  display: inline-block;
  height: 26px; line-height: 26px;
  padding: 0 12px;
  background: var(--wine);
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.cc-featured .cc-name {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 18px;
  transition: color .3s ease;
}
.cc-featured:hover .cc-name { color: #fff; }
.cc-featured:hover .cc-dec { color: rgba(255,255,255,.85); }
.cc-featured .cc-dec {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 42px; line-height: 42px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color .3s ease, gap .3s ease;
}
.cc-btn i {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  transition: background .3s ease, transform .3s ease;
}
.cc-btn i svg { width: 14px; height: 14px; }
.cc-featured:hover .cc-btn { color: #fff; gap: 16px; }
.cc-featured:hover .cc-btn i { background: var(--gold-light); }

/* 卡片列表 */
.cc-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cc-news-list .cc-news-item {
  display: flex; align-items: center;
  min-height: 100%;
  background: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
  transition: background .35s ease, box-shadow .35s ease;
}
.cc-news-list .cc-news-item:hover {
  background: var(--wine);
  box-shadow: 0 14px 32px rgba(122,31,31,.28);
}
.cc-card-time {
  flex: none;
  width: 170px;
  padding: 0 36px;
  text-align: center;
  color: var(--text-soft);
  transition: color .35s ease;
}
.cc-card-time .cc-icon-date {
  width: 26px; height: 26px;
  margin: 0 auto;
  color: var(--gold);
}
.cc-card-time > span {
  display: block;
  font-size: 15px;
  margin: 18px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(58,42,30,.12);
  transition: color .35s ease, border-color .35s ease;
}
.cc-card-time > p {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: var(--wine);
  transition: color .35s ease;
}
.cc-news-list .cc-news-item:hover .cc-card-time { color: rgba(255,255,255,.9); }
.cc-news-list .cc-news-item:hover .cc-card-time > span { border-color: rgba(255,255,255,.25); }
.cc-news-list .cc-news-item:hover .cc-card-time > p { color: #fff; }
.cc-news-list .cc-news-item:hover .cc-icon-date { color: var(--gold-light); }
.cc-card-text {
  flex: 1;
  padding: 34px;
  border-left: 1px solid rgba(58,42,30,.1);
  min-width: 0;
  transition: border-color .35s ease;
}
.cc-news-list .cc-news-item:hover .cc-card-text { border-color: rgba(255,255,255,.12); }
.cc-card-text .cc-name {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .35s ease;
}
.cc-card-text .cc-dec {
  font-size: 14px;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .35s ease;
}
.cc-news-list .cc-news-item:hover .cc-card-text .cc-name,
.cc-news-list .cc-news-item:hover .cc-card-text .cc-dec,
.cc-news-list .cc-news-item:hover .cc-btn { color: #fff; }
.cc-news-list .cc-news-item:hover .cc-btn i { background: var(--gold-light); }

/* 响应式 */
@media (max-width: 1199px) {
  .cc-banner { height: 480px; border-radius: 0 0 40px 40px; }
  .cc-banner-text span { font-size: 76px; letter-spacing: 10px; }
  .cc-banner-text p { font-size: 34px; }
  .cc-submenu { margin-top: -70px; }
  .cc-submenu .container { border-radius: 20px 20px 0 0; }
  .cc-submenu li a { height: 76px; line-height: 76px; padding: 0 26px; font-size: 16px; }
  .cc-featured .cc-feat-img { width: 400px; height: 260px; }
  .cc-featured .cc-feat-text { padding-left: 36px; }
  .cc-featured .cc-name { font-size: 22px; }
  .cc-card-time { width: 150px; padding: 0 26px; }
  .cc-card-time > p { font-size: 44px; }
  .cc-card-text { padding: 26px; }
}
@media (max-width: 991px) {
  .cc-news-list { gap: 20px; }
  .cc-card-time { width: 130px; padding: 0 18px; }
  .cc-card-time > p { font-size: 40px; }
  .cc-card-text { padding: 22px; }
  .cc-card-text .cc-name { font-size: 17px; }
}
@media (max-width: 768px) {
  .cc-banner { height: 420px; border-radius: 0 0 32px 32px; }
  .cc-banner-text span { font-size: 58px; letter-spacing: 6px; }
  .cc-banner-text p { font-size: 28px; margin-top: -8px; }
  .cc-arrow-down { width: 42px; height: 42px; padding: 12px; }
  .cc-submenu { margin-top: -50px; }
  .cc-submenu .container { border-radius: 16px 16px 0 0; }
  .cc-submenu ul { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; }
  .cc-submenu li { flex: none; }
  .cc-submenu li a { height: 64px; line-height: 64px; padding: 0 18px; font-size: 15px; white-space: nowrap; }
  .cc-news { padding: 50px 0 70px; }
  .cc-featured { display: block; margin-bottom: 32px; padding-bottom: 32px; }
  .cc-featured .cc-feat-img { width: 100%; height: 240px; margin-bottom: 22px; }
  .cc-featured .cc-feat-text { padding-left: 0; }
  .cc-featured .cc-name { font-size: 20px; margin-bottom: 12px; }
  .cc-featured .cc-dec { margin-bottom: 18px; }
  .cc-news-list { grid-template-columns: 1fr; gap: 18px; }
  .cc-card-time { width: 110px; padding: 0 14px; }
  .cc-card-time .cc-icon-date { width: 22px; height: 22px; }
  .cc-card-time > span { margin: 14px 0 8px; padding-bottom: 8px; font-size: 14px; }
  .cc-card-time > p { font-size: 36px; }
  .cc-card-text { padding: 18px; }
  .cc-card-text .cc-name { font-size: 16px; margin-bottom: 10px; }
  .cc-card-text .cc-dec { margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .cc-banner { height: 360px; }
  .cc-banner-text span { font-size: 46px; }
  .cc-banner-text p { font-size: 24px; }
  .cc-featured .cc-feat-img { height: 200px; }
  .cc-news-list .cc-news-item { display: block; }
  .cc-card-time {
    width: 100%; padding: 14px 18px;
    display: flex; align-items: center; gap: 10px; text-align: left;
  }
  .cc-card-time .cc-icon-date { margin: 0; }
  .cc-card-time > span { margin: 0 0 0 6px; padding-bottom: 0; border: none; }
  .cc-card-time > p { font-size: 16px; font-weight: 500; color: var(--wine); }
  .cc-card-time > p::before { content: "-"; margin-right: 4px; }
  .cc-card-text { border-left: none; border-top: 1px solid rgba(58,42,30,.1); }
}

/* 防 [data-time] 原始时间戳闪现（JS 格式化后置 opacity:1） */
[data-time] { opacity: 0; transition: opacity .25s ease; }
