/* ============================================================
   正念官网全局样式
   主色：深红 #c8102e | 金色 #d4a017 | 深色 #1a1a1a
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Variables ── */
:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --gold: #d4a017;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
}

/* ============================================================
   顶部工具栏
   ============================================================ */
.topbar {
  background: #fff;
  border-bottom: none;
  font-size: 12px;
  color: #666;
  padding: 6px 0;
}
.topbar .container {
  padding-top: 10px;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding-right: 40px;
}
.topbar a { color: #666; }
.topbar a:hover { color: var(--red); }

/* Logo区域 */
.header-logo-bar {
  background: #fff;
  padding: 4px 0;
  margin-top: -10px;
}
.header-logo-bar .site-logo {
  margin-top: 30px;
}
.header-logo-bar .container {
  display: flex;
  align-items: center;
  padding-left: 40px;
  justify-content: space-between;
}
.header-logo-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-right: 60px;
  margin-top: 20px;
}
.header-company-name {
  font-family: 'Noto Serif SC', 'STSong', '宋体', serif;
  font-size: 26px;
  font-weight: 900;
  color: #9a7d3a;
  letter-spacing: 3px;
  white-space: nowrap;
  margin-top: 20px;
}
.topbar-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}
.topbar-lang a { color: #666; }
.topbar-lang a:hover { color: var(--red); }
.header-logo-bar .site-logo img {
  height: 79px;
  width: auto;
}

/* ============================================================
   Header / 导航
   ============================================================ */
.site-header {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 50px;
  gap: 0;
  padding-left: 80px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 24px;
}
.site-logo img { height: 50px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .en { font-size: 22px; font-weight: 700; color: var(--red); letter-spacing: 1px; }
.logo-text .cn { font-size: 11px; color: #666; }

/* 导航 */
.main-nav { flex: 1; display: flex; align-items: center; position: static; margin-left: 20px; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
  height: 70px;
}
.main-nav li { position: static; height: 100%; }
.main-nav li > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 13px;
  font-size: 15px;
  color: #555;
  font-weight: 700;
  font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
  transition: color .2s;
}
.main-nav li > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: transparent;
  transition: background .2s;
}
.main-nav li > a:hover::after,
.main-nav li.active > a:hover::after {
  background: var(--red);
}

/* 全宽下拉面板 */
.dropdown-panel {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1001;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  background: #fff;
}
.dropdown-panel.is-open { display: block; }
.dropdown-panel-inner {
  width: 100%;
  background: #fff;
}
.dropdown-panel-content {
  display: none;
  padding: 0 20px;
  height: 81px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}
.dropdown-panel-content.is-active {
  display: flex;
}
.dropdown-panel-content span { display: block; }
.dropdown-panel-content a {
  display: block;
  padding: 12px 32px;
  font-size: 15px;
  color: #555;
  white-space: nowrap;
  letter-spacing: 1px;
  font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.dropdown-panel-content a::before {
  content: '>';
  margin-right: 8px;
  opacity: .7;
  font-weight: 900;
}
.dropdown-panel-content a:hover {
  color: var(--red);
}

/* 购物车入口 */
.header-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #555;
  text-decoration: none;
  margin-right: 12px;
  flex-shrink: 0;
}
.header-cart-icon:hover { color: var(--red); }
.cart-nav-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  text-align: center;
  padding: 0 3px;
  display: none;
}
.cart-nav-badge.show { display: block; }

/* 搜索框 */
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  margin-right: 16px;
  flex-shrink: 0;
}
.search-label {
  font-size: 14px;
  color: #555;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  cursor: default;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  overflow: hidden;
  height: 28px;
  background: #fff;
}
.search-input-wrap input {
  border: none;
  outline: none;
  padding: 0 8px;
  font-size: 13px;
  width: 120px;
  background: #fff;
}
.search-input-wrap button {
  background: transparent;
  border: none;
  color: #888;
  padding: 0 8px;
  height: 100%;
  cursor: pointer;
  font-size: 14px;
  border-left: 1px solid #ddd;
}
.search-input-wrap button:hover {
  color: #888;
}

/* ============================================================
   容器
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   Banner 轮播
   ============================================================ */
.banner-section { position: relative; overflow: hidden; }
.banner-slider {
  display: flex;
  height: 420px;
  transition: transform 1.002s ease-out;
  will-change: transform;
}
.banner-slide {
  min-width: 0;
  flex-shrink: 0;
  height: 100%;
}
.banner-slide picture { display: block; width: 100%; height: 100%; }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 轮播点 */
.banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .3s;
}
.banner-dot.active { background: #fff; }
/* 轮播箭头 */
.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.3);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.banner-arrow:hover { background: rgba(0,0,0,.6); }
.banner-prev { left: 16px; }
.banner-next { right: 16px; }
/* 每栏目 banner 文字说明 */
.banner-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 5;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  white-space: nowrap;
  pointer-events: none;
}
.banner-caption h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 3px;
}
.banner-caption p {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.banner-btn {
  display: inline-block;
  padding: 8px 28px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  pointer-events: auto;
  transition: background .2s;
}
.banner-btn:hover { background: var(--red-dark); }
/* 内页栏目 banner 高度（比首页略低） */
.nav-banner--inner .banner-slider { height: 300px; }
.nav-banner--inner .banner-caption { bottom: 50px; }
.nav-banner--inner .banner-caption h2 { font-size: 26px; }
/* 广告横幅（加盟区） */
.promo-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #c8102e 100%);
  padding: 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/images/banner-pattern.png') repeat;
  opacity: .05;
}
.promo-banner-inner { position: relative; z-index: 1; }
.promo-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.promo-partners img { height: 40px; object-fit: contain; filter: brightness(10); opacity: .9; }
.promo-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  margin-bottom: 10px;
}
.promo-title span { color: var(--gold); }
.promo-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.promo-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
}
.promo-phone .label { font-size: 14px; color: rgba(255,255,255,.8); }
.promo-phone .number { font-size: 24px; font-weight: 700; color: var(--gold); letter-spacing: 2px; }
.promo-icon { font-size: 22px; }

/* ============================================================
   公司资讯展示区（首页，整体轮播）
   ============================================================ */
.company-news-section {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.company-news-carousel {
  position: relative;
  height: 390px;
  overflow: hidden;
}
.company-news-slider {
  display: flex;
  height: 100%;
  transition: transform 1.002s ease-out;
  will-change: transform;
}
.company-news-slide {
  display: flex;
  min-width: 0;
  flex-shrink: 0;
  height: 100%;
}
.company-news-slide-img {
  width: 58%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.company-news-slide-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.company-news-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-news-no-img { background: linear-gradient(135deg, #ddd, #eee); width: 100%; height: 100%; }
.company-news-slide-info {
  flex: 1;
  position: relative;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: #fff;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}
.company-news-slide-title {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0 0 10px;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}
.company-news-list-date-tag {
  font-size: 13px;
  color: #999;
  margin-bottom: 14px;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}
.company-news-slide-summary {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  text-indent: 2em;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}
.company-news-slide-footer {
  position: absolute;
  top: 80%;
  left: 24px;
  transform: translateY(-50%);
}
.cn-dots-fixed {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.company-news-slide-more {
  font-size: 13px;
  color: #666;
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}
.company-news-slide-more .more-arrow {
  font-size: 22px;
  line-height: 1;
  vertical-align: middle;
}
.cn-dots {
  display: flex;
  gap: 8px;
}
.cn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background .3s;
}
.cn-dot.is-active { background: var(--red); }
@media (max-width: 768px) {
  .company-news-slide { grid-template-columns: 1fr; }
  .company-news-slide-img { height: 200px; }
}

/* ============================================================
   特色文章（首页头条）
   ============================================================ */
.featured-article {
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--border);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.featured-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.featured-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .4s;
}
.featured-img-wrap:hover img { transform: scale(1.03); }
.featured-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 30px 16px 16px;
  color: #fff;
}
.featured-img-overlay .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.featured-img-overlay .date { font-size: 12px; margin-top: 6px; opacity: .8; }
.featured-content { }
.featured-content .date-tag {
  font-size: 12px;
  color: var(--red);
  margin-bottom: 10px;
}
.featured-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
  margin-bottom: 12px;
}
.featured-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-more {
  display: inline-block;
  padding: 6px 20px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  border-radius: 2px;
  transition: background .2s;
}
.btn-more:hover { background: var(--red-dark); }

/* ============================================================
   新闻双栏
   ============================================================ */
.news-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.news-col { }
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.section-title h2 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  padding-left: 12px;
  border-left: 3px solid var(--red);
}
.section-title .more-link {
  font-size: 12px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 2px;
}
.section-title .more-link:hover { text-decoration: underline; }
.news-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px dashed #eee;
  gap: 10px;
}
.news-list li:last-child { border-bottom: none; }
.news-list .news-title {
  flex: 1;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 90px);
}
.news-list .news-title:hover { color: var(--red); }
.news-list .news-date {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-list li::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   业务模块 2×2 Grid
   ============================================================ */
.biz-section {
  padding: 30px 0 40px;
}
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.biz-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  height: 220px;
  cursor: pointer;
}
.biz-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.biz-card:hover img { transform: scale(1.05); }
.biz-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 30px 20px 20px;
  color: #fff;
}
.biz-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.biz-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.biz-overlay-title-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: rgba(200,16,46,.85);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   页脚
   ============================================================ */
/* ── 页脚 ── */
.site-footer {
  background: #f2f2f2;
  color: #666;
  padding: 44px 0 0;
  font-size: 13px;
  border-top: 1px solid #ddd;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 36px;
  border-bottom: 1px solid #ddd;
}

/* 品牌区 */
.footer-brand {
  min-width: 180px;
  padding-right: 40px;
  flex-shrink: 0;
}
.footer-logo {
  height: 84px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-brand-en {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-brand-cn {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

/* 官方平台渠道 */
.footer-platforms {
  flex: 1;
  padding: 0 44px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.platforms-title {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}
.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform .2s;
}
.platform-btn:hover { transform: translateY(-2px); }
.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.platform-icon img { width: 26px; height: 26px; }
.platform-name { font-size: 11px; color: #888; }
/* 各平台品牌色 */
.pi-wechat      { background: #07C160; }
.pi-weibo       { background: #E6162D; }
.pi-douyin      { background: #161823; }
.pi-tmall       { background: #FF6010; }
.pi-taobao      { background: #FF5000; }
.pi-jd          { background: #CC0000; }
.pi-pdd         { background: #E02E24; }
.pi-xiaohongshu { background: #FE2C55; }

/* 联系我们 */
.footer-contact {
  min-width: 220px;
  padding-left: 44px;
  flex-shrink: 0;
}
.footer-hotline-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.footer-phone {
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}
.footer-contact p {
  color: #666;
  line-height: 2;
  font-size: 13px;
}

/* 版权栏 */
.footer-bottom {
  text-align: center;
  padding: 14px 0;
  font-size: 12px;
  color: #999;
  background: #e8e8e8;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #555; }
.footer-sep { margin: 0 8px; color: #bbb; }

/* ============================================================
   内页 Banner（茶园大图）
   ============================================================ */
.page-banner {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #2a4a2a center/cover no-repeat;
}
.page-banner picture { display: block; width: 100%; height: 100%; }
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   通用页面内容区
   ============================================================ */
.page-breadcrumb {
  background: #f5f5f5;
  padding: 10px 0;
  font-size: 16px;
  color: #555;
  font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}
.page-breadcrumb .container {
  padding-left: 50px;
}
.page-breadcrumb a { color: #555; font-size: 16px; font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif; font-weight: 400; }
.page-breadcrumb a:hover { color: var(--red); }
.page-breadcrumb span { margin: 0 6px; color: #555; font-size: 18px; }

.page-main {
  padding: 30px 0 50px;
  min-height: 400px;
}

/* 内容页侧栏布局 */
.content-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.sidebar-nav {
  border: 1px solid #eee;
  overflow: hidden;
}
.sidebar-nav .cat-title {
  background: var(--red);
  color: #fff;
  padding: 36px 20px 29px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.sidebar-nav .cat-title .en {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: .8;
  margin-top: 4px;
}
.sidebar-nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 18px;
  font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', sans-serif;
  font-weight: 400;
  transition: all .2s;
}
.sidebar-nav ul li a::after {
  content: '>';
  color: #ccc;
  font-size: 16px;
}
.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
  color: var(--red);
  background: #fef5f6;
}
.sidebar-nav ul li a.active::after {
  color: var(--red);
}

/* 文章详情 */
.article-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.article-header h1 { font-size: 22px; line-height: 1.5; color: #222; margin-bottom: 12px; }
.article-meta { display: flex; gap: 20px; font-size: 12px; color: #999; }
.article-body { font-size: 14px; line-height: 1.9; color: #444; }
.article-body p { margin-bottom: 16px; }
.article-body img { margin: 16px 0; border-radius: 4px; }
.article-body h2, .article-body h3 { color: #222; margin: 20px 0 10px; }

/* 新闻列表页 */
.news-list-page .news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
/* 左侧日期块 */
.news-item .date-block {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  padding-top: 4px;
}
.news-item .date-block .md {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  display: block;
}
.news-item .date-block .year {
  font-size: 12px;
  color: #999;
  display: block;
  margin-top: 4px;
}
.news-item .thumb {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.news-item .info { flex: 1; }
.news-item .info .title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.4;
  display: block;
}
.news-item .info .title:hover { color: var(--red); }
.news-item .info .summary {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item .info .meta {
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 13px;
  border-radius: 2px;
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .active { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================================
   联系页面
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form label { display: block; font-size: 13px; color: #555; margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .form-group { margin-bottom: 16px; }
.btn-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}
.btn-submit:hover { background: var(--red-dark); }
.contact-info .info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info .icon { color: var(--red); font-size: 20px; flex-shrink: 0; }
.contact-info .label { font-size: 13px; color: #999; margin-bottom: 4px; }
.contact-info .value { font-size: 14px; color: #333; }
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border: 1px solid #eee;
  margin-top: 20px;
}

/* ============================================================
   关于我们
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat-item { text-align: center; padding: 20px; border: 1px solid #eee; }
.stat-item .num { font-size: 36px; font-weight: 700; color: var(--red); }
.stat-item .unit { font-size: 16px; color: var(--red); }
.stat-item .label { font-size: 13px; color: #666; margin-top: 6px; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .main-nav li > a { padding: 0 9px; font-size: 14px; }
}
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 10px 0; }
  .main-nav { display: none; }
  .featured-grid,
  .news-grid,
  .biz-grid,
  .contact-grid,
  .about-intro,
  .content-layout { grid-template-columns: 1fr; }
  .promo-title { font-size: 22px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-main { flex-direction: column; gap: 28px; }
  .footer-platforms { border-left: none; border-right: none; padding: 0; }
  .footer-contact { padding-left: 0; }
}
