/* ===== 中医药网 首页（人报）— 依据 Figma 01首页（人报）还原 ===== */
:root {
  --red: #DA261D;
  --red-deep: #CD0000;
  --ink: #191A24;
  --text-1: #1A1A1A;
  --text-2: #333333;
  --text-3: #666666;
  --text-4: #909090;
  --text-5: #999999;
  --border: #E3E3E3;
  --border-2: #CCCCCC;
  --border-3: #D9D9D9;
  --beige: #FCE4C2;
  --beige-border: #ECC388;
  --page-bg: #F7F7F7;
}

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

html, body {
  width: 100%;
  background: var(--page-bg);
  color: var(--text-2);
  font-family: "PingFang SC", "Microsoft YaHei", "微软雅黑", "Hiragino Sans GB", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 置顶专题入口 ===== */
.top-promo {
  display: block;
  position: relative;
  height: 150px;
  width: 100%;
  overflow: hidden;
  background: #CE0502;
  cursor: pointer;
}
.top-promo-bg {
  position: absolute;
  inset: 0;
  background: url("assets/top_promo_bg.png") center / cover no-repeat;
}
.top-promo-title {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "HYChangSongJ", "华文中宋", "SimSun", "宋体", serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: 0;
  background: linear-gradient(180deg, #FFEA5E 0%, #FFAF60 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* ===== 导航 ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #FFFFFF;
}
.nav-top { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10); }
.nav-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}
.brand img {
  width: 127px;
  height: 60px;
  object-fit: contain;
}
.search {
  display: flex;
  align-items: center;
  width: 382px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  font: 16px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text-2);
}
.search input::placeholder { color: var(--text-4); }
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
  height: 48px;
  border: 0;
  background: var(--red);
  color: #FFFFFF;
  font: 18px "Microsoft YaHei", sans-serif;
  cursor: pointer;
}
.icon-search { width: 18px; height: 18px; }

.nav-bottom {
  height: 56px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.20);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 56px;
}
.nav-link {
  position: relative;
  padding: 6px 8px;
  font: 18px "Microsoft YaHei", sans-serif;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.nav-link:hover {
  background: var(--red);
  color: #FFFFFF;
}
.nav-link.active {
  color: var(--red);
  font-weight: 700;
}
.nav-link.active:hover { color: #FFFFFF; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ===== 主 Banner ===== */
.hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.40) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 108px;
  padding-left: 40px;
  pointer-events: none;
}
.hero-title {
  color: #FFFFFF;
  font: 56px/78px "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
}
.hero-sub {
  margin-top: 12px;
  color: #FFFFFF;
  font: 32px/45px "PingFang SC", "Microsoft YaHei", sans-serif;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
}
.hero-dots.small { position: static; transform: none; gap: 8px; }
.dot {
  width: 32px;
  height: 6px;
  border: 0;
  padding: 0;
  border-radius: 4px;
  background: #FFFFFF;
  opacity: 0.5;
  cursor: pointer;
}
.dot.active { width: 32px; opacity: 1; }
.hero-dots.small .dot {
  width: 10px;
  height: 10px;
  background: #FFFFFF;
  opacity: 0.4;
}
.hero-dots.small .dot.active { opacity: 1; }

/* ===== 主体 ===== */
.page-main {
  padding-top: 30px;
  padding-bottom: 60px;
}
.panel {
  background: #FFFFFF;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}
.panel-title {
  font: 22px/32px "Microsoft YaHei", sans-serif;
  font-weight: 700;
  color: var(--text-2);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border-2);
  border-radius: 24px;
  font: 16px "PingFang SC", sans-serif;
  color: var(--text-3);
  transition: border-color .15s, color .15s;
}
.more img { width: 14px; height: 14px; }
.more:hover { border-color: var(--red); color: var(--red); }

/* 中医智库 */
.masters { padding-bottom: 41px; }
.master-grid {
  display: flex;
  gap: 23px;
  padding: 32px 24px 24px;
}
.master-card {
  position: relative;
  flex: 0 0 252px;
  width: 252px;
  height: 354px;
}
.master-photo {
  width: 252px;
  height: 252px;
  overflow: hidden;
  border-radius: 8px;
  background: #E1E1E1;
}
.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.master-info {
  position: absolute;
  top: 204px;
  left: 12px;
  right: 13px;
  padding: 15px 20px 0;
  height: 150px;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
  opacity: 0.9;
}
.master-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.master-name {
  font: 20px/27px "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: var(--text-1);
}
.master-role {
  font: 16px/22px "PingFang SC", sans-serif;
  color: var(--text-2);
}
.master-bio {
  margin-top: 12px;
  font: 14px/20px "PingFang SC", sans-serif;
  color: var(--text-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.master-card { cursor: pointer; }
.master-card .master-info { transition: background-color .2s ease, opacity .2s ease; }
.master-card .master-name,
.master-card .master-role,
.master-card .master-bio { transition: color .2s ease; }
.master-card:hover .master-info {
  background: var(--red);
  opacity: 1;
}
.master-card:hover .master-name { color: #FFFFFF; }
.master-card:hover .master-role { color: #E5E5E5; }
.master-card:hover .master-bio { color: #ECECEC; }

/* 权威公告 */
.notice {
  display: flex;
  margin-top: 30px;
  min-height: 450px;
}
.notice-left { flex: 0 0 800px; width: 800px; }
.notice-banner {
  position: relative;
  width: 800px;
  height: 450px;
  overflow: hidden;
}
.notice-slides, .notice-slide { position: absolute; inset: 0; }
.notice-slide { opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.notice-slide.active { opacity: 1; pointer-events: auto; }
.notice-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s;
}
.banner-arrow:hover { background: rgba(0, 0, 0, 0.5); }
.banner-arrow.prev { left: 14px; }
.banner-arrow.next { right: 14px; }
.notice-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 60px;
  background: rgba(3, 3, 3, 0.30);
}
.notice-caption .hero-dots.small .dot { cursor: pointer; }
.notice-caption p {
  font: 18px "PingFang SC", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-right {
  position: relative;
  flex: 1;
  padding: 28px 24px 0 40px;
}
.notice-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.notice-tabs {
  display: flex;
  align-items: baseline;
  gap: 36px;
}
.tab {
  position: relative;
  font: 20px "Microsoft YaHei", sans-serif;
  color: var(--text-2);
  cursor: pointer;
}
.tab.active { font: 24px "Microsoft YaHei", sans-serif; font-weight: 700; }
.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 3px;
  background: var(--red);
}
.news-list { margin-top: 20px; }
.news-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 43px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}
.dot-mark {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: #D8D8D8;
}
.news-list a {
  flex: 1;
  min-width: 0;
  font: 16px "PingFang SC", sans-serif;
  font-weight: 500;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list a:hover { color: var(--red); }
.news-list time {
  font: 14px Arial, sans-serif;
  color: var(--text-5);
}

/* 道地药材 / 中药饮片 */
.herbs-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.herbs { flex: 1; min-width: 0; padding-bottom: 24px; }
.herb-grid {
  display: grid;
  grid-template-columns: repeat(4, 144px);
  gap: 20px 20px;
  padding: 28px 24px 24px;
}
.herb-item {
  width: 144px;
  cursor: pointer;
}
.herb-item img {
  width: 144px;
  height: 81px;
  object-fit: cover;
}
.herb-item figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-top: -1px;
  background: #F5F0EA;
  border: 1px solid #E6E1DC;
  font: 16px/21px "Microsoft YaHei", sans-serif;
  color: #000000;
  text-align: center;
}
.herb-item:hover img { filter: brightness(.96); }

/* ===== 中药饮片页（参照 10中药饮片） ===== */
.slice-page-main { padding-top: 42px; padding-bottom: 40px; }
.slice-grid {
  display: grid;
  grid-template-columns: repeat(5, 252px);
  justify-content: space-between;
  row-gap: 35px;
}
.slice-item {
  width: 252px;
  cursor: pointer;
}
.slice-item img {
  width: 252px;
  height: 141px;
  object-fit: cover;
  border: 1px solid #D9D9D9;
}
.slice-item figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: -1px;
  background: #F5F0EA;
  border: 1px solid #E6E1DC;
  font: 400 16px/21px "Microsoft YaHei", sans-serif;
  color: #000000;
  text-align: center;
}
.slice-item:hover img { filter: brightness(.96); }
.herb-link, .slice-link { display: block; }
.herb-link .herb-item, .slice-link .slice-item { cursor: pointer; }
.slice-pagination { margin-top: 35px; }
.slice-pagination a {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
}
.slice-pagination a.page-btn { padding: 0 14px; }

/* ===== 中药材协会页（参照 16中药材协会） ===== */
.assoc-page-main { padding-top: 42px; padding-bottom: 40px; }
.assoc-grid {
  display: grid;
  grid-template-columns: repeat(3, 448px);
  justify-content: space-between;
  row-gap: 30px;
}
.assoc-card {
  display: block;
  width: 448px;
  background: #FFFFFF;
  border: 1px solid #E7E7E7;
  cursor: pointer;
  text-decoration: none;
}
.assoc-card-img {
  width: 400px;
  height: 225px;
  margin: 24px 24px 0;
  overflow: hidden;
  background: #D9D9D9;
}
.assoc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.assoc-card-title {
  margin: 27px 0 25px;
  text-align: center;
  font: 600 24px/34px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
}
.assoc-card:hover { border-color: var(--red); }
.assoc-card:hover .assoc-card-title { color: var(--red); }

/* 溯源 */
.trace {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 0;
  height: 120px;
  border: 1px solid var(--beige-border);
  background: var(--beige);
  overflow: hidden;
}
.trace-bg {
  position: absolute;
  inset: 0;
  background: url("assets/7abd198b82bc7011941a91316450cb09c1feed6a.png") center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}
.trace-copy { position: relative; z-index: 1; margin-left: 153px; }
.trace-search { position: relative; z-index: 1; margin-left: 141px; }
.trace-copy h2 {
  font: 36px/48px "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: #000000;
}
.trace-copy p {
  margin-top: 8px;
  font: 18px/24px "Microsoft YaHei", sans-serif;
  color: var(--text-3);
}
.trace-search {
  display: flex;
  align-items: center;
  height: 48px;
}
.trace-search input {
  width: 320px;
  height: 48px;
  border: 1px solid #B8945D;
  border-radius: 24px 0 0 24px;
  outline: 0;
  padding: 0 18px;
  background: #FFFFFF;
  font: 16px "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.trace-search input::placeholder { color: var(--text-4); }
.trace-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
  height: 48px;
  border: 0;
  border-radius: 0 24px 24px 0;
  background: var(--red);
  color: #FFFFFF;
  font: 18px "Microsoft YaHei", sans-serif;
  cursor: pointer;
}
.trace-btn img { width: 18px; height: 18px; }

/* 底部三卡片 */
.bottom-cards {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.bottom-card {
  flex: 1;
  min-width: 0;
  padding-bottom: 24px;
}
.bottom-cover {
  margin: 28px 24px 0;
  height: 224px;
  overflow: hidden;
  background: var(--border-3);
}
.bottom-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom-cover + .bottom-cover { margin-top: 20px; }
.bottom-card .news-list { margin: 20px 24px 0; padding: 0; }
.bottom-card .news-list li { height: 43px; }

/* ===== 页脚 ===== */
.site-footer {
  width: 100%;
  background: #ECECEC;
}
.footer-inner {
  display: flex;
  gap: 381px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  width: 200px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-label {
  font: 18px/24px "Microsoft YaHei", sans-serif;
  font-weight: 700;
  color: var(--text-2);
}
.footer-phone {
  margin: 8px 0 14px;
  font: 32px/38px "HarmonyOS Sans", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  color: var(--text-2);
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font: 16px/24px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.footer-row img { width: 24px; height: 24px; flex: 0 0 24px; }
.footer-links .footer-label { margin-bottom: 10px; }
.link-cols {
  display: flex;
  align-items: stretch;
  gap: 26px;
}
.link-col li {
  margin-bottom: 16px;
  font: 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.link-col a:hover { color: var(--red); }
.footer-bar {
  border-top: 1px solid rgba(153, 153, 153, 0.20);
  padding: 12px 20px;
  text-align: center;
}
.footer-bar p {
  font: 14px Arial, "Microsoft YaHei", sans-serif;
  color: var(--text-3);
}

/* ===== 栏目页通用 ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #1f1f1f;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 36px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 14px/20px "PingFang SC", sans-serif;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a:hover { color: #FFFFFF; }
.breadcrumb i { font-style: normal; opacity: 0.7; }
.page-hero-title {
  margin-top: 22px;
  font: 44px/60px "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
}
.page-hero-sub {
  margin-top: 8px;
  font: 20px/28px "PingFang SC", sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

/* 面包屑条 */
.crumb-bar {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}
.crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 60px;
  font: 14px/20px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-3);
}
.crumb a { color: var(--text-3); }
.crumb a:hover { color: var(--red); }
.crumb i { font-style: normal; color: var(--text-4); }

/* 栏目筛选条 */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}
.filter-tabs {
  display: flex;
  align-items: baseline;
  gap: 36px;
  padding: 20px 24px;
  position: relative;
  flex-wrap: wrap;
}
.filter-tabs::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -1px;
  width: 28px;
  height: 3px;
  background: var(--red);
}
.filter-tabs .tab { padding: 4px 0; }
.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
}
.filter-search select {
  height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 0 12px;
  font: 14px "Microsoft YaHei", sans-serif;
  color: var(--text-2);
  background: #FFFFFF;
  cursor: pointer;
}

/* 栏目页网格 */
.grid-page {
  display: grid;
  padding: 32px 0;
}
.grid-masters { grid-template-columns: repeat(5, 252px); justify-content: space-between; row-gap: 40px; }
.grid-herbs { grid-template-columns: repeat(auto-fill, 144px); gap: 20px; justify-content: start; }

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding-bottom: 16px;
}
.pagination a {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 4px;
  font: 16px "Microsoft YaHei", sans-serif;
  color: var(--text-2);
  cursor: pointer;
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination a.active { background: var(--red); border-color: var(--red); color: #FFFFFF; }
.pagination a.disabled { color: var(--text-4); cursor: default; }
.pagination a.disabled:hover { border-color: var(--border-2); color: var(--text-4); }
.pagination a.ellipsis {
  border: 0;
  min-width: auto;
  padding: 0;
  cursor: default;
  color: var(--text-4);
}
.pagination a.ellipsis:hover { color: var(--text-4); }

/* 溯源页（12-1溯源质检） */
.trace-page-main {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0 60px;
}

/* 产品溯源查询 banner */
.trace-banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  border: 1px solid var(--beige-border);
}
.trace-banner-bg {
  position: absolute;
  inset: 0;
  background: url("assets/7abd198b82bc7011941a91316450cb09c1feed6a.png") center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}
.trace-banner-title {
  position: relative;
  z-index: 1;
  font: 600 36px/48px "Microsoft YaHei", sans-serif;
  color: #000000;
}
.trace-banner-sub {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  font: 400 18px/24px "Microsoft YaHei", sans-serif;
  color: var(--text-3);
}
.trace-banner-search {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 600px;
  max-width: 100%;
  height: 48px;
  margin-top: 27px;
  background: #FFFFFF;
  border: 1px solid #B8945D;
  border-radius: 24px;
  overflow: hidden;
}
.trace-banner-icon {
  display: flex;
  align-items: center;
  padding-left: 21px;
  flex-shrink: 0;
}
.trace-banner-icon img { width: 18px; height: 18px; }
.trace-banner-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  background: transparent;
  font: 16px "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.trace-banner-search input::placeholder { color: var(--text-4); }
.trace-banner-search button {
  width: 110px;
  height: 48px;
  border: 0;
  border-radius: 0 24px 24px 0;
  background: var(--red);
  color: #FFFFFF;
  font: 700 18px "Microsoft YaHei", sans-serif;
  cursor: pointer;
}

/* 产品详情容器 */
.product-detail { width: 100%; margin-top: 20px; }

/* 粘性选项卡 */
.detail-tabs {
  position: sticky;
  top: 150px;
  z-index: 10;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  padding: 26px 40px 20px;
  background: #FFFFFF;
  border-bottom: 1px solid #E6E6E6;
}
.detail-tabs a {
  position: relative;
  font: 400 18px/30px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
  white-space: nowrap;
}
.detail-tabs a.active {
  font: 700 20px/30px "Source Han Sans CN", "PingFang SC", sans-serif;
}
.detail-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 80px;
  height: 3px;
  background: #B81010;
  border-radius: 2px;
}

/* 各内容区卡片 */
.detail-section {
  background: #FFFFFF;
  padding: 40px 40px;
  scroll-margin-top: 230px;
}
.detail-section + .detail-section { margin-top: 20px; }

/* 信息表格 */
.detail-table {
  width: 100%;
  border-collapse: collapse;
}
.detail-table th,
.detail-table td {
  border: 1px solid #D9DCE1;
  height: 54px;
  padding: 0 16px;
  font: 400 16px "PingFang SC", "Microsoft YaHei", sans-serif;
  vertical-align: middle;
}
.detail-table th {
  width: 200px;
  background: #F9F9F9;
  color: #6A6A6A;
  text-align: right;
  font-family: "Source Han Sans CN", "PingFang SC", sans-serif;
}
.detail-table td { color: #333333; text-align: left; }
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1B86F3;
  text-decoration: underline;
}
.download-link img { width: 22px; height: 22px; }

/* 溯源查询无结果（12-2 溯源未找到提醒） */
.trace-empty-card {
  margin-top: 20px;
  background: #FFFFFF;
}
.trace-empty-card .search-empty {
  padding: 60px 0;
}

/* 生产履历 时间轴 */
.trace-timeline { position: relative; width: 220px; }
.trace-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 14px;
  border-left: 1px dashed #8C8C8C;
}
.timeline-item { position: relative; padding-left: 34px; padding-bottom: 52px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #6DAD1A;
  border-radius: 50%;
}
.timeline-label {
  font: 500 20px/28px "PingFang SC", sans-serif;
  color: #000000;
}
.timeline-field {
  margin-top: 20px;
  font: 400 16px/21px "Microsoft YaHei", sans-serif;
  color: #333333;
}
.timeline-field + .timeline-field { margin-top: 21px; }
.timeline-field .k { color: #666666; }

/* 公司简介 长文本 */
.detail-text {
  width: 100%;
  font: 400 16px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #333333;
}
.detail-text p { margin: 0; }

/* 联系方式 */
.contact-list { width: 420px; display: flex; flex-direction: column; gap: 42px; }
.contact-row {
  display: flex;
  align-items: baseline;
  font: 400 16px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
}
.contact-k {
  width: 80px;
  flex-shrink: 0;
  color: #666666;
  font-family: "Microsoft YaHei", sans-serif;
}
.contact-phone {
  color: #000000;
  font: 700 20px "HarmonyOS Sans", "Microsoft YaHei", sans-serif;
}

/* 在线留言 表单 */
.message-form { width: 960px; max-width: 100%; margin: 0 auto; }
.message-row { display: flex; gap: 60px; }
.message-field { flex: 1; }
.message-field label {
  display: block;
  margin-bottom: 9px;
  font: 400 16px "Microsoft YaHei", sans-serif;
  color: #272536;
}
.message-field .req { color: #FF0000; }
.message-field input,
.message-field textarea {
  width: 100%;
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  outline: 0;
  background: #FFFFFF;
  font: 400 16px "Microsoft YaHei", sans-serif;
  color: #333333;
}
.message-field input { height: 48px; padding: 0 16px; }
.message-field textarea { height: 150px; padding: 12px 16px; resize: vertical; }
.message-field input::placeholder,
.message-field textarea::placeholder { color: #BEBEBE; font-size: 14px; }
.message-textarea-field { margin-top: 28px; }
.message-submit {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 48px;
  margin: 28px auto 0;
  border: 0;
  border-radius: 4px;
  background: #B81010;
  color: #FFFFFF;
  font: 700 18px "Microsoft YaHei", sans-serif;
  cursor: pointer;
}

/* 栏目页响应式 */
@media (max-width: 1300px) {
  .grid-masters { grid-template-columns: repeat(4, 252px); justify-content: space-between; }
}
@media (max-width: 1040px) {
  .grid-masters { grid-template-columns: repeat(3, 252px); justify-content: space-between; }
}
@media (max-width: 1024px) {
  .page-hero-title { font-size: 36px; line-height: 50px; }
}
@media (max-width: 800px) {
  .grid-masters { grid-template-columns: repeat(2, 252px); justify-content: space-between; }
  .slice-grid { grid-template-columns: repeat(2, 252px); justify-content: space-between; }
  .assoc-grid { grid-template-columns: repeat(2, 448px); justify-content: space-between; }
}
@media (max-width: 640px) {
  .page-hero { height: 160px; }
  .page-hero-inner { padding-top: 20px; }
  .page-hero-title { font-size: 28px; line-height: 40px; }
  .page-hero-sub { font-size: 16px; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .filter-tabs { gap: 24px; padding: 16px; }
  .filter-search { padding: 0 16px 16px; }
  .grid-masters { grid-template-columns: 252px; justify-content: center; }
  .grid-herbs { grid-template-columns: repeat(2, 144px); justify-content: center; }
  .slice-grid { grid-template-columns: 252px; justify-content: center; }
  .assoc-grid { grid-template-columns: 448px; justify-content: center; }
  .trace-banner { height: auto; padding: 24px 16px; }
  .trace-banner-search { width: 100%; flex-wrap: wrap; }
  .detail-tabs { gap: 24px; padding: 16px 20px 16px; overflow-x: auto; }
  .detail-section { padding: 20px 16px; }
  .detail-table th { width: 90px; }
  .detail-table th, .detail-table td { padding: 8px 10px; font-size: 13px; height: auto; }
  .message-row { flex-direction: column; gap: 20px; }
  .message-submit { width: 100%; }
}

/* ===== 响应式 ===== */
@media (max-width: 1440px) {
  .top-promo-title { font-size: 52px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 16px; }
  .master-grid { flex-wrap: wrap; }
  .herb-grid { grid-template-columns: repeat(4, 1fr); }
  .herb-item, .herb-item img { width: 100%; max-width: 144px; }
  .herb-item { margin: 0 auto; }
  .bottom-cards, .herbs-row { flex-wrap: wrap; }
  .bottom-card, .herbs { flex: 1 1 46%; min-width: 340px; }
  .notice { flex-wrap: wrap; }
  .notice-left, .notice-banner { flex-basis: 100%; width: 100%; }
  .footer-inner { gap: 120px; }
}

@media (max-width: 1280px) {
  .nav-links { gap: 12px; flex-wrap: wrap; justify-content: center; height: auto; padding: 8px 0; }
  .nav-link { font-size: 15px; padding: 6px 6px; }
  .nav-bottom { height: auto; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 16px 20px;
    gap: 12px;
  }
  .nav-links.open { display: flex; }
  .search { width: 300px; }
  .hero-title { font-size: 40px; line-height: 56px; }
  .hero-sub { font-size: 24px; line-height: 34px; }
  .trace { flex-direction: column; justify-content: center; gap: 12px; height: auto; padding: 24px 20px; }
  .trace-search { flex-direction: column; align-items: stretch; gap: 8px; }
  .trace-search input { width: 100%; border-radius: 24px; }
  .trace-btn { width: 100%; border-radius: 24px; }
  .master-grid { justify-content: center; }
  .master-card { flex: 0 0 252px; }
}

@media (max-width: 640px) {
  .nav-top-inner { height: 64px; }
  .brand img { height: 40px; width: 85px; }
  .search { width: 100%; }
  .search-btn { width: 88px; }
  .top-promo-title { font-size: 30px; line-height: 40px; white-space: normal; padding: 0 20px; }
  .hero { height: 260px; }
  .hero-inner { padding-top: 60px; padding-left: 20px; }
  .hero-title { font-size: 30px; line-height: 42px; }
  .hero-sub { font-size: 20px; line-height: 28px; }
  .panel-head { padding: 16px 16px 0; }
  .master-grid { padding: 16px; }
  .herb-grid { padding: 16px; grid-template-columns: repeat(2, 1fr); }
  .notice-caption { flex-direction: column; justify-content: center; gap: 4px; padding: 0 12px; }
  .notice-caption p { font-size: 14px; }
  .bottom-card, .herbs { min-width: 0; flex-basis: 100%; }
  .footer-inner { flex-direction: column; gap: 40px; padding: 40px 20px; }
  .footer-bar p { font-size: 12px; }
}

/* ===== 名医详情页（参照 05名医详细介绍） ===== */
.master-detail-main { padding-top: 40px; padding-bottom: 60px; }
.master-detail-photo {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #E1E1E1;
}
.master-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.master-detail-name {
  margin: 24px 0 0;
  text-align: center;
  font: 600 20px/27px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #1A1A1A;
}
.master-detail-role {
  margin: 8px 0 0;
  text-align: center;
  font: 400 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
}
.master-detail-content {
  margin-top: 24px;
  width: 1320px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font: 400 16px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #333333;
}
.master-detail-content p { margin: 0; }

/* ===== 资讯类统一详情页 ===== */
.news-detail-main { padding-top: 40px; padding-bottom: 60px; }
.news-detail-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* 左侧文章卡片 */
.news-article {
  flex: 0 0 1040px;
  background: #FFFFFF;
  padding: 37px 40px 35px;
}
.news-article-title {
  width: 700px;
  margin: 0 auto;
  text-align: center;
  font: 700 28px/42px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #000000;
}
.news-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 50px;
  font: 16px/21px "Microsoft YaHei", "PingFang SC", sans-serif;
}
.news-article-meta .meta-label { color: #6A6A6A; }
.news-article-meta .meta-value {
  color: var(--text-2);
  font-family: Arial, "Microsoft YaHei", sans-serif;
}
.news-article-meta .meta-divider {
  display: inline-block;
  width: 97px;
}
.news-divider {
  width: 960px;
  height: 0;
  margin: 24px auto 22px;
  border-top: 1px solid #C9C9C9;
}
.news-divider-bottom { margin-top: 22px; margin-bottom: 24px; }
.news-article-content {
  width: 960px;
  margin: 0 auto;
  font: 400 16px/32px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.news-article-content p { margin: 0; }

/* 药材详情页 - 主图与段落小标题 */
.herb-cover {
  display: block;
  width: 960px;
  height: auto;
  margin: 0 0 30px;
  border-radius: 2px;
}
.herb-section-title {
  margin: 30px 0 8px;
  font: 700 16px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #000000;
}
.herb-section-title:first-of-type { margin-top: 0; }

.news-pager {
  width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-pager .pager-item {
  display: flex;
  align-items: center;
  font: 16px/21px "Microsoft YaHei", sans-serif;
}
.news-pager .pager-label { color: var(--text-3); flex-shrink: 0; }
.news-pager .pager-prev a { color: var(--text-3); }
.news-pager .pager-next a { color: #000000; }
.news-pager a:hover { color: var(--red); }

/* 右侧推荐卡片 */
.news-aside {
  flex: 0 0 330px;
  background: #FFFFFF;
  padding: 26px 26px 30px;
}
.aside-title {
  position: relative;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}
.aside-title h2 {
  font: 700 20px/27px "Microsoft YaHei", sans-serif;
  color: #000000;
}
.aside-title .aside-title-line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 3px;
  background: var(--red);
}
.aside-list { margin-top: 31px; }
.aside-item {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 43px;
  border-bottom: 1px dashed var(--border);
}
.aside-item:last-child { border-bottom: none; }
.aside-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #8C8C8C;
  transform: rotate(45deg);
}
.aside-item a {
  flex: 1;
  font: 500 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aside-item a:hover { color: var(--red); }

/* 响应式 */
@media (max-width: 1440px) {
  .news-article { flex: 0 0 74%; }
  .news-aside { flex: 0 0 24%; }
  .news-article-title,
  .news-divider,
  .news-article-content,
  .news-pager { width: 100%; }
}
@media (max-width: 1024px) {
  .news-detail-layout { flex-direction: column; }
  .news-article { flex: 0 0 100%; }
  .news-aside { flex: 0 0 100%; }
}

/* ===== 中药饮片详情页：内容图片与小标题 ===== */
.news-article-image {
  display: block;
  width: 960px;
  max-width: 100%;
  height: auto;
  margin: 0 0 39px;
}
.news-section { margin-top: 16px; }
.news-section:first-of-type { margin-top: 0; }
.news-section-title {
  margin: 0 0 0 9px;
  font: 700 16px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #000000;
}
.news-section p { margin: 0; }

@media (max-width: 1440px) {
  .news-article-image { width: 100%; }
}

/* ===== 问诊咨询页（13问诊咨询） ===== */
.faq-page-main { padding-top: 40px; padding-bottom: 60px; }

/* 免责声明条 */
.faq-disclaimer {
  background: #FEF9ED;
  border: 1px solid #FEAE6D;
  padding: 22px 30px;
  color: #FF740A;
  font: 14px/28px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
}
.faq-disclaimer strong { font-weight: 700; }

/* 区块标题 */
.faq-section-title {
  margin: 40px 0 20px;
  font: 700 24px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #000000;
}

/* FAQ 列表 */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid #C2D0E3;
  cursor: pointer;
}
.faq-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px 20px 20px;
}
.faq-q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 18px/1 "Arial", sans-serif;
  background: #F8E7E6;
  border: 1px solid var(--red);
  color: var(--red);
}
.faq-q-text {
  flex: 1;
  font: 500 18px/26px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-2);
}
.faq-toggle {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #656565;
}
.faq-body {
  display: none;
  padding: 0 30px 20px 68px;
  font: 16px/32px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text-3);
}
.faq-body p { margin: 0; text-indent: 2em; }

/* 展开态：显示答案、Q 徽标实心红、箭头旋转 */
.faq-item.is-open .faq-body { display: block; }
.faq-item.is-open .faq-q-badge {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
}
.faq-item.is-open .faq-toggle { transform: rotate(180deg); }

/* ===== 搜索结果页（21搜索结果） ===== */
.search-main { padding-top: 40px; padding-bottom: 60px; }
.search-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* 左侧分类筛选 */
.search-filter {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.filter-category .filter-all {
  width: 100%;
  height: 100px;
  background: var(--red);
  border: none;
  font: 700 28px/42px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-category .filter-all:hover {
  background: var(--red-deep);
}
.filter-list {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  list-style: none;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 56px;
  padding: 0 30px;
  border-bottom: 1px solid #F0F0F0;
  position: relative;
}
.filter-item:last-child { border-bottom: none; }
.filter-item-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}
.filter-indicator {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #D8D8D8;
  transform: rotate(45deg);
}
.filter-item-active .filter-indicator { background: var(--red); }
.filter-item a {
  font: 400 16px/27px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.2s;
}
.filter-item:hover a,
.filter-item-active a { color: var(--red); }

/* 右侧搜索结果 */
.search-results {
  flex: 0 0 1040px;
}
.results-card {
  background: #FFFFFF;
  padding: 0 40px;
}
.results-list {
  margin: 0;
  padding: 32px 20px 0;
  list-style: none;
}
.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 42px;
  border-bottom: 1px dashed #E3E3E3;
  padding-bottom: 0;
}
.result-item:last-child { border-bottom: none; }
.result-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #D8D8D8;
  transform: rotate(45deg);
}
.result-title {
  flex: 1;
  font: 500 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1A1A1A;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.result-title:hover { color: var(--red); }
.result-date {
  flex-shrink: 0;
  font: 400 14px/16px Arial, sans-serif;
  color: #999999;
}

/* 无搜索结果 */
.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding: 60px 0;
}
.search-empty-icon {
  width: 60px;
  height: 60px;
}
.search-empty-text {
  font: 400 16px/21px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #000000;
  text-align: center;
}

/* 分页 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-bottom: 8px;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  font: 400 14px/20px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #7A7A7A;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.page-current {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.page-current:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
}
.page-nav {
  min-width: 45px;
  font-family: "Microsoft YaHei", sans-serif;
}
.page-ellipsis {
  min-width: 36px;
  height: 36px;
  background: none;
  border: none;
  font: 400 14px/20px "PingFang SC", sans-serif;
  color: #7A7A7A;
  cursor: default;
}

/* 响应式 */
@media (max-width: 1440px) {
  .search-filter { flex: 0 0 28%; }
  .search-results { flex: 0 0 70%; }
}
@media (max-width: 1024px) {
  .search-layout { flex-direction: column; }
  .search-filter { flex: 0 0 100%; }
  .search-results { flex: 0 0 100%; }
}

/* ===== 新闻列表页（20更多新闻 / 95:3487） ===== */
.news-page-main {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 42px 20px 70px;
}
.news-list-page {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 左侧栏目 */
.news-sidebar {
  width: 320px;
  flex-shrink: 0;
}
.news-sidebar .sidebar-header {
  height: 100px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 28px/37px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #FFFFFF;
}
.news-sidebar .sidebar-nav {
  background: #FFFFFF;
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}
.news-sidebar .sidebar-nav li {
  height: 56px;
  border-bottom: 1px solid #E8E8E8;
}
.news-sidebar .sidebar-nav li:last-child {
  border-bottom: none;
}
.news-sidebar .sidebar-nav li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 31px;
  font: 400 18px/25px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #000000;
  transition: all 0.2s;
}
.news-sidebar .sidebar-nav li a:hover,
.news-sidebar .sidebar-nav li.active a {
  color: var(--red);
  background: #FFF5F5;
}

/* 右侧新闻列表 */
.news-cards {
  flex: 1;
  min-width: 0;
}
.news-card {
  display: flex;
  gap: 42px;
  padding: 40px;
  background: #FFFFFF;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.news-card:last-of-type {
  margin-bottom: 0;
}
.news-card:hover {
  background: #FAFAFA;
}
.news-card-img {
  display: block;
  flex-shrink: 0;
  width: 320px;
  height: 180px;
  overflow: hidden;
  background: #D9D9D9;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.news-card:hover .news-card-img img {
  transform: scale(1.05);
}
.news-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.news-card-title {
  margin: 0 0 24px;
  font: 600 16px/21px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-title a { color: inherit; }
.news-card:hover .news-card-title a {
  color: var(--red);
}
.news-card-desc {
  margin: 0;
  font: 400 16px/26px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #666666;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.news-card-meta time {
  font: 400 16px/18px Arial, "Microsoft YaHei", sans-serif;
  color: #999999;
}
.news-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  transition: all 0.2s;
}
.news-arrow img {
  width: 14px;
  height: 14px;
}
.news-card:hover .news-arrow {
  border-color: var(--red);
  background: var(--red);
}
.news-card:hover .news-arrow img {
  filter: brightness(0) invert(1);
}
/* 查看详情圆形按钮（设计图 组 41610：正常态白底灰圈，hover 红底白箭头） */
.news-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url("assets/card-more.svg") center / 36px 36px no-repeat;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.2s;
}
.news-card-more:hover,
.news-card:hover .news-card-more {
  background-image: url("assets/card-more-hover.svg");
}

/* 分页（新闻页局部样式，覆盖全局 .pagination） */
.news-cards .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
  padding: 0;
}
.news-cards .pagination a {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  font: 400 14px/16px Arial, "Microsoft YaHei", sans-serif;
  color: #7A7A7A;
  cursor: pointer;
  transition: all 0.2s;
}
.news-cards .pagination a:hover {
  border-color: var(--red);
  color: var(--red);
}
.news-cards .pagination a.active,
.news-cards .pagination a.active:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
}
.news-cards .pagination a.nav-label {
  min-width: 45px;
  padding: 0 12px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
.news-cards .pagination a.ellipsis,
.news-cards .pagination a.ellipsis:hover {
  min-width: 36px;
  background: none;
  border: none;
  cursor: default;
  color: #7A7A7A;
}

/* 响应式 */
@media (max-width: 1024px) {
  .news-list-page { flex-direction: column; }
  .news-sidebar { width: 100%; }
  .news-sidebar .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
  }
  .news-sidebar .sidebar-nav li {
    width: 50%;
    border-bottom: 1px solid #E8E8E8;
    border-right: 1px solid #E8E8E8;
  }
  .news-sidebar .sidebar-nav li:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .news-card-img {
    width: 100%;
    height: 200px;
  }
  .news-card-title { margin-bottom: 12px; }
  .news-card-desc {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 480px) {
  .news-sidebar .sidebar-nav li { width: 100%; border-right: none !important; }
  .news-cards .pagination { flex-wrap: wrap; gap: 4px; }
}

/* ===== 中医博物馆页专属样式 ===== */
body { background: #F7F7F7; }

/* 面包屑 */
.breadcrumb {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.20);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  height: 60px;
}
.breadcrumb-icon {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  color: #B4B4B4;
}
.breadcrumb-text {
  font: 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
}
.breadcrumb-text .crumb { color: #999999; }
.breadcrumb-text .current { color: #333333; }

/* ===== 博物馆简介区 ===== */
.museum-intro {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: #FBFBFB;
  overflow: hidden;
}
.museum-intro-bg {
  position: absolute;
  inset: 0;
  background: url("assets/95-3373.jpg") center / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
}
.museum-intro-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
/* 左侧图片 */
.museum-photo {
  flex: 0 0 461px;
  width: 461px;
  height: 472px;
  overflow: hidden;
  background: transparent;
  position: relative;   /* 或 absolute，配合 top/right/bottom/left 精确定位 */
  top: 80px;
  left: 110px;
  z-index: 3;
}
.museum-photo img { width: 100%; height: 100%; object-fit: cover; }

/* 右侧米色卡片 */
.museum-card {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #FBF8F1;
  padding: 36px 40px 36px 143px;
  min-height: 514px;
}
/* 左侧竹子边框装饰（设计图 95:3268，金色竹竿） */
.museum-card-bamboo {
  position: absolute;
  left: -48px;
  top: -67px;
  width: 153px;
  height: 579.5px;
  pointer-events: none;
  z-index: 1;
}
/* 竖排标题 */
.museum-card-title {
  position: absolute;
  left: 20px;
  top: 36px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Kaiti SC", "STKaiti", "楷体", serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 60px;
  color: #654617;
  letter-spacing: 20px;
}
.museum-card-en {
  position: absolute;
  left: 111px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font: 14px "Helvetica", "Arial", sans-serif;
  color: #BE9455;
  letter-spacing: 1px;
}
/* 右侧金色竖条装饰 */
.museum-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 21px;
  width: 8px;
  height: 124px;
  background: #BE9455;
}
.museum-card-text {
  font: 18px/36px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #515151;
  text-align: justify;
}
.museum-card-text p { margin-bottom: 0; }
.museum-card-text p + p { margin-top: 0; }

/* ===== 交流互动 / 热点新闻区 ===== */
.museum-news {
  position: relative;
  width: 100%;
  padding: 70px 0 80px;
  background: #FFFCF8;
  overflow: hidden;
}
.museum-news::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 1118px;
  height: 680px;
  background: url("assets/95-3920.jpg") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.museum-news-inner { position: relative; z-index: 2; }

/* 标题 */
.museum-news-title {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.museum-news-title h2 {
  display: inline-block;
  position: relative;
  font: 36px/48px "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 700;
  color: #654617;
}
/* 标题两侧及底部装饰图 */
.museum-title-deco {
  position: absolute;
}
.museum-title-deco img {
  display: block;
  width: 100%;
  height: 100%;
}
.museum-title-deco.left {
  top: 50%;
  left: 50%;
  width: 140px;
  height: 48px;
  transform: translateY(-50%);
  margin-left: -212px;
}
.museum-title-deco.right {
  top: 50%;
  right: 50%;
  width: 143px;
  height: 36px;
  transform: translateY(-50%);
  margin-right: -212px;
}
.museum-title-deco.bottom {
  left: 50%;
  bottom: -4px;
  width: 159px;
  height: 16px;
  transform: translateX(-50%);
}

/* 内容布局 */
.museum-news-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* 博物馆热点新闻 二级分类 tab */
.museum-tabs {
  margin: 6px 0 20px;
  padding: 0 0 14px;
  justify-content: center;
  gap: 40px;
}
.museum-tabs .tab {
  font: 16px "Microsoft YaHei", sans-serif;
  color: #333;
  cursor: pointer;
  text-decoration: none;
}
.museum-tabs .tab.active { font-weight: 700; color: var(--red, #b4261e); }
.museum-tabs::after { left: 50%; transform: translateX(-50%); }


/* 左侧大图卡 */
.museum-feature {
  flex: 0 0 660px;
  width: 660px;
  position: relative;
  box-shadow: 0 3px 6px rgba(190, 148, 85, 0.20);
}
.museum-feature-img {
  width: 660px;
  height: 421px;
  overflow: hidden;
  background: #A5A5A5;
}
.museum-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.museum-feature-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.60);
  font: 16px/1 "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
}

/* 右侧新闻列表 */
.museum-list {
  flex: 1;
  min-width: 0;
  background: #FBF8F1;
  border: 1px solid #EDDBBC;
  padding: 24px 30px;
}
.museum-list ul { display: flex; flex-direction: column; }
.museum-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #D5BE9B;
}
.museum-list li:last-child { border-bottom: 0; }
.museum-date {
  flex: 0 0 70px;
  text-align: center;
  border-right: 1px solid #D0D0D0;
  padding-right: 16px;
}
.museum-date .day {
  font: 32px/1 "MiSans", "Arial", sans-serif;
  color: #C3A267;
}
.museum-date .month {
  margin-top: 4px;
  font: 14px/1 "MiSans", "Arial", sans-serif;
  color: #C3A267;
}
.museum-list-body { flex: 1; min-width: 0; }
.museum-list-body h4 {
  font: 16px/24px "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.museum-list-body p {
  margin-top: 4px;
  font: 16px/24px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 查看更多按钮 */
.museum-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  width: 219px;
  height: 53px;
  background: url("assets/museum-more.png") center / 100% 100% no-repeat;
  font: 18px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #945B06;
  transition: filter .15s;
}
.museum-more:hover {
  filter: brightness(1.05);
}

/* 页脚：复用 styles.css 默认样式 */
.site-footer { background: #ECECEC; }
.link-col a:hover { color: #DA261D; }

/* ===== 加工生产 / 产业动态页面样式 ===== */

/* 面包屑区域 */
.breadcrumb-bar {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font: 16px/22px "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #333333;
}

.breadcrumb-home {
  color: #333333;
}

.breadcrumb-home:hover {
  color: var(--red);
}

.breadcrumb-sep {
  margin: 0 8px;
  color: #999999;
}

.breadcrumb-current {
  color: #666666;
}

/* 主体内容布局 */
.processing-main {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 60px;
}

/* 左侧导航 */
.processing-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.sidebar-header {
  height: 100px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-header h2 {
  font: 700 28px/37px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #FFFFFF;
}

.sidebar-list {
  background: #FFFFFF;
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.sidebar-list li {
  height: 56px;
  border-bottom: 1px solid #E8E8E8;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  font: 400 18px/25px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #000000;
  transition: all 0.2s;
}

.sidebar-list li a:hover,
.sidebar-list li a.active {
  color: var(--red);
  background: #FFF5F5;
}

/* 右侧内容区 */
.processing-content {
  flex: 1;
  min-width: 0;
}

/* 内容卡片 */
.processing-card {
  display: flex;
  gap: 32px;
  padding: 40px;
  background: #FFFFFF;
  margin-bottom: 0;
  border-bottom: 1px solid #E8E8E8;
  transition: background 0.2s;
}

.processing-card:last-of-type {
  border-bottom: none;
}

.processing-card:hover {
  background: #FAFAFA;
}

.card-image {
  flex-shrink: 0;
  width: 320px;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.processing-card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.card-title {
  font: 700 20px/30px "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333333;
  margin: 0 0 14px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.processing-card:hover .card-title {
  color: var(--red);
}

.card-desc {
  font: 400 16px/26px "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #666666;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.card-date {
  font: 400 16px/18px Arial, "Microsoft YaHei", sans-serif;
  color: #999999;
}

.card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url("assets/card-more.svg") center / 36px 36px no-repeat;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.2s;
}

.card-more:hover,
.processing-card:hover .card-more {
  background-image: url("assets/card-more-hover.svg");
}

/* 分页 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-bottom: 60px;
}

.pagination .page-btn,
.pagination .page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #DEDEDE;
  background: #FFFFFF;
  font: 400 16px/16px Arial, "Microsoft YaHei", sans-serif;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination .page-btn {
  min-width: 45px;
}

.pagination .page-btn:hover,
.pagination .page-num:hover {
  border-color: var(--red);
  color: var(--red);
}

.pagination .page-num.active {
  background: var(--red);
  border-color: var(--red);
  color: #FFFFFF;
}

.pagination .page-ellipsis {
  font: 400 16px/16px Arial, sans-serif;
  color: #666666;
  padding: 0 4px;
}

/* 响应式 */
@media (max-width: 1440px) {
  .processing-main {
    gap: 30px;
  }
  .card-image {
    width: 280px;
  }
}

@media (max-width: 1024px) {
  .processing-main {
    flex-direction: column;
  }
  .processing-sidebar {
    width: 100%;
  }
  .sidebar-list {
    display: flex;
    flex-wrap: wrap;
  }
  .sidebar-list li {
    width: 50%;
    border-bottom: 1px solid #E8E8E8;
    border-right: 1px solid #E8E8E8;
  }
  .sidebar-list li:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .processing-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .card-image {
    width: 100%;
    height: 200px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-desc {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 480px) {
  .sidebar-list li {
    width: 100%;
    border-right: none !important;
  }
  .pagination {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ===== 政策公告页专属样式 ===== */
    /* ===== 政策公告列表页专属样式 ===== */
    body { background: #F7F7F7; }

    /* 面包屑 */
    .breadcrumb {
      width: 100%;
      height: 60px;
      background: #FFFFFF;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.20), 0 0 1px rgba(0, 0, 0, 0.20);
    }
    .breadcrumb-inner {
      display: flex;
      align-items: center;
      height: 60px;
    }
    .breadcrumb-icon {
      width: 14px;
      height: 14px;
      margin-right: 12px;
      color: #B4B4B4;
    }
    .breadcrumb-text {
      font: 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
    }
    .breadcrumb-text .crumb { color: #999999; }
    .breadcrumb-text .current { color: #333333; }

    /* 主体布局 */
    .policy-main {
      padding-top: 42px;
      padding-bottom: 82px;
    }
    .policy-layout {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    /* 左侧分类 */
    .policy-aside {
      flex: 0 0 320px;
      width: 320px;
    }
    .aside-header {
      height: 100px;
      background: #DA261D;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      font: 28px/1 "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 700;
      letter-spacing: 2px;
    }
    .aside-list {
      background: #FFFFFF;
    }
    .aside-item {
      position: relative;
      display: flex;
      align-items: center;
      height: 56px;
      padding: 0 30px;
      border-bottom: 1px solid #E8E8E8;
      font: 18px/1 "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: #000000;
      cursor: pointer;
      transition: background .15s, color .15s;
    }
    .aside-item:last-child { border-bottom: 0; }
    .aside-item.active {
      background: rgba(218, 38, 29, 0.08);
      color: #DA261D;
      font-weight: 700;
    }
    .aside-item.active::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: #DA261D;
    }
    .aside-item:hover:not(.active) {
      color: #DA261D;
    }

    /* 右侧内容 */
    .policy-content {
      flex: 1;
      min-width: 0;
      background: #FFFFFF;
      padding: 30px 40px 50px;
    }
    .policy-list { display: flex; flex-direction: column; }
    .policy-list li {
      position: relative;
      padding: 10px 0 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px dashed #E3E3E3;
    }
    .policy-list li:last-child { border-bottom: 0; }
    .policy-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 7px;
      height: 7px;
      border: 2px solid #D8D8D8;
      border-top: 0;
      border-left: 0;
    }
    .policy-list a {
      flex: 1;
      min-width: 0;
      font: 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 500;
      color: #1A1A1A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color .15s;
    }
    .policy-list a:hover { color: #DA261D; }
    .policy-list time {
      flex: 0 0 auto;
      font: 14px "Arial", sans-serif;
      color: #999999;
    }

    /* 分页 */
    .pagination {
      margin-top: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }
    .pagination a,
    .pagination span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      background: #FFFFFF;
      border: 1px solid #EEEEEE;
      font: 14px "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
      color: #7A7A7A;
      text-decoration: none;
      transition: border-color .15s, color .15s, background .15s;
    }
    .pagination a:hover {
      border-color: #DA261D;
      color: #DA261D;
    }
    .pagination .active {
      background: #DA261D;
      border-color: #DA261D;
      color: #FFFFFF;
      cursor: default;
    }
    .pagination .ellipsis {
      border: 0;
      background: transparent;
      padding: 0 4px;
    }
    .pagination .nav-btn {
      padding: 0 16px;
      font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    }

    /* 页脚：复用 styles.css 默认样式 */
    .site-footer { background: #ECECEC; }
    .link-col a:hover { color: #DA261D; }


    /* ===== 蓝皮书专题页专属样式 ===== */
    body { background: #FFFFFF; }

    /* 蓝底专题图 Banner */
    .bluebook-hero {
      position: relative;
      width: 100%;
      height: 580px;
      overflow: hidden;
      background: url("assets/4742a3c24ca4baef0bab716eca99da6abac87677.png") center / cover no-repeat #125FAD;
    }
    .bluebook-hero-inner {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-left: 240px;   
      justify-content: center;
      text-align: center;
    }
    .bluebook-title {
      font-family: "HYChangSongJ", "华文中宋", "SimSun", "宋体", serif;
      font-size: 68px;
      line-height: 1;
      color: #FFFFFF;
      letter-spacing: 2px;
    }
    .bluebook-sub {
      margin-top: 36px;
      font-family: "HYChangSongJ", "华文中宋", "SimSun", "宋体", serif;
      font-size: 48px;
      line-height: 1;
      color: #FFFFFF;
      letter-spacing: 1px;
    }

    /* 主体容器 */
    .bb-main { padding-bottom: 80px; }

    /* 章节标题模块 */
    .bb-section-title {
      position: relative;
      padding-top: 80px;
      padding-bottom: 24px;
      text-align: center;
    }
    .bb-section-title h2 {
      font-family: "HYChangSongJ", "华文中宋", "SimSun", "宋体", serif;
      font-size: 48px;
      font-weight: 400;
      color: #125FAD;
      line-height: 1;
    }
    .bb-section-title .sub {
      margin-top: 18px;
      font: 16px/26px "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #333333;
    }
    .bb-section-title::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: #4786C5;
    }
    .bb-section-title::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      transform: translateX(-50%);
      width: 200px;
      height: 4px;
      background: #125FAD;
      z-index: 2;
    }

    /* 要闻聚焦顶部小标题 */
    .bb-top-tabs {
      position: relative;
      padding-top: 60px;
      padding-bottom: 16px;
      text-align: center;
    }
    .bb-top-tabs .tabs {
      display: inline-flex;
      gap: 96px;
    }
    .bb-top-tabs .tab {
      font-family: "HYChangSongJ", "华文中宋", "SimSun", "宋体", serif;
      font-size: 48px;
      color: #125FAD;
      line-height: 1;
    }
    .bb-top-tabs::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: #4786C5;
    }
    .bb-top-tabs::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      transform: translateX(-50%);
      width: 200px;
      height: 4px;
      background: #125FAD;
      z-index: 2;
    }

    /* 要闻新闻卡 */
    .bb-news {
      margin-top: 60px;
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }
    .bb-news-cover {
      flex: 0 0 800px;
      width: 800px;
      height: 450px;
      overflow: hidden;
      background: #D9D9D9;
    }
    .bb-news-cover img { width: 100%; height: 100%; object-fit: cover; }
    .bb-news-body { flex: 1; min-width: 0; }
    .bb-news-body h3 {
      font: 24px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
      font-weight: 700;
      color: #1A1A1A;
    }
    .bb-news-body .desc {
      margin-top: 12px;
      font: 16px/26px "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #666666;
    }
    .bb-news-divider {
      margin: 20px 0 16px;
      height: 1px;
      background: #D0D0D0;
    }
    .bb-news-list { display: flex; flex-direction: column; }
    .bb-news-list li {
      position: relative;
      padding: 11px 0 11px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px dashed #E3E3E3;
    }
    .bb-news-list li:last-child { border-bottom: 0; }
    .bb-news-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) rotate(-45deg);
      width: 7px;
      height: 7px;
      border-right: 2px solid #D8D8D8;
      border-bottom: 2px solid #D8D8D8;
      border-radius: 1px;
    }
    .bb-news-list a {
      flex: 1;
      min-width: 0;
      font: 16px/22px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 500;
      color: #1A1A1A;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .bb-news-list a:hover { color: #cd0000; }
    .bb-news-list time {
      flex: 0 0 auto;
      font: 14px "Arial", sans-serif;
      color: #999999;
    }

    /* 产业蓝图与共识 */
    .bb-blueprint {
      margin-top: 60px;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }
    .bb-blueprint-cover {
      flex: 0 0 600px;
      width: 600px;
      height: 509px;
      overflow: hidden;
      background: #D9D9D9;
    }
    .bb-blueprint-cover img { width: 100%; height: 100%; object-fit: cover; }
    .bb-blueprint-list {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 33px;
      padding-top: 33px;
    }
    .bb-step-item {
      position: relative;
      padding-left: 70px;
      min-height: 137px;
    }
    .bb-step-num {
      position: absolute;
      left: 0;
      top: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #E0C189;
      display: flex;
      align-items: center;
      justify-content: center;
      font: 24px "Arial", sans-serif;
      color: #D69C32;
    }
    .bb-step-item h4 {
      font: 24px/32px "Microsoft YaHei", "PingFang SC", sans-serif;
      font-weight: 700;
      color: #1A1A1A;
    }
    .bb-step-item p {
      margin-top: 20px;
      font: 16px/26px "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #333333;
    }

    /* 区域布局与特色 */
    .bb-region-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .bb-region-card {
      position: relative;
      padding: 20px 30px;
      background: #FFFFFF;
      border-left: 5px solid #125FAD;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    }
    .bb-region-card h4 {
      font: 20px/27px "Microsoft YaHei", "PingFang SC", sans-serif;
      font-weight: 700;
      color: #1A1A1A;
    }
    .bb-region-card .desc {
      margin-top: 11px;
      font: 16px/26px "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #333333;
    }
    .bb-region-card .more-link {
      margin-top: 16px;
      display: inline-block;
      font: 16px/26px "Microsoft YaHei", "PingFang SC", sans-serif;
      color: #0578EC;
      text-decoration: underline;
    }

    /* 4 列赛道卡片 */
    .bb-track-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .bb-track-card {
      position: relative;
      padding: 86px 31px 30px;
      height: 260px;
      background: #FFFFFF;
      border: 1px solid #E7E7E7;
      border-radius: 12px;
      text-align: center;
      overflow: hidden;
    }
    .bb-track-num {
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 61px;
      height: 61px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 3px solid #125FAD;
      display: flex;
      align-items: center;
      justify-content: center;
      font: 32px "DIN Alternate", "Arial", sans-serif;
      font-weight: 700;
      color: #125FAD;
    }
    .bb-track-card h4 {
      font: 24px/34px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 600;
      color: #333333;
    }
    .bb-track-card p {
      margin-top: 14px;
      font: 18px/32px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 500;
      color: #666666;
    }

    /* 3 列项目大卡 */
    .bb-project-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .bb-project-card {
      padding: 24px;
      background: #FFFFFF;
      border: 1px solid #E7E7E7;
      border-radius: 12px;
    }
    .bb-project-cover {
      width: 100%;
      border-radius: 0;
      background: #D9D9D9;
    }
    .bb-project-cover img { width: 100%; height: auto; display: block; }
    .bb-project-card h4 {
      margin-top: 27px;
      font: 24px/34px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 600;
      color: #333333;
      text-align: center;
    }
    .bb-project-card p {
      margin-top: 14px;
      font: 18px/32px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 500;
      color: #666666;
      text-align: center;
    }

    /* 2 列战略横卡 */
    .bb-strat-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .bb-strat-card {
      display: flex;
      gap: 34px;
      padding: 24px;
      background: #FFFFFF;
      border: 1px solid #E7E7E7;
      border-radius: 12px;
      height: 183px;
    }
    .bb-strat-cover {
      flex: 0 0 240px;
      width: 240px;
      height: 135px;
      overflow: hidden;
      background: #D9D9D9;
    }
    .bb-strat-cover img { width: 100%; height: 100%; object-fit: cover; }
    .bb-strat-body { flex: 1; min-width: 0; padding-top: 0; }
    .bb-strat-body h4 {
      font: 24px/34px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 600;
      color: #333333;
    }
    .bb-strat-body p {
      margin-top: 5px;
      font: 18px/32px "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 500;
      color: #666666;
    }
    .bb-strat-body p .hl { color: #DA261D; }

    /* 页脚：复用 styles.css 中的默认样式 */
    .site-footer { background: #ECECEC; }
    .link-col a:hover { color: #125FAD; }
  