/* /news/ 共用样式 — 2026-06-24 */

.news-bottom-nav {
  margin: 32px 0 0;
  border-top: 2px solid #e2231a;
  background: #f8f9fa;
  padding: 18px 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  border-radius: 0 0 8px 8px;
}
.news-bottom-nav .news-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.news-bottom-nav a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding: 4px 10px;
  font-size: 0.88rem;
  border-radius: 4px;
  margin: 2px;
}
.news-bottom-nav a:hover { background: #e2231a; color: #fff; }
.news-bottom-nav .news-nav-home {
  font-weight: 700;
  color: #e2231a;
  margin-right: 14px;
  font-size: 0.95rem;
}
.news-bottom-nav .news-nav-cats {
  display: inline-block;
  margin: 6px 0;
  padding: 4px 0;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
}
.news-bottom-nav .news-nav-cats a.active { background: #e2231a; color: #fff; }
.news-bottom-nav .news-nav-other {
  margin-top: 8px;
  display: block;
  font-size: 0.85rem;
  color: #888;
}

/* 京东单品卡片 */
.jd-single-wrap {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 16px;
}
.jd-single-h2 {
  margin: 24px 0 12px;
  font-size: 1.1rem;
  color: #333;
  border-left: 4px solid #e2231a;
  padding-left: 10px;
}
.jd-single-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}
.jd-single-card {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: all .15s ease;
  display: block;
}
.jd-single-card:hover {
  border-color: #e2231a;
  background: #fff6f5;
  color: #e2231a;
}
.jd-single-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .jd-single-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 资讯中心卡片 */
.news-hero {
  background: linear-gradient(135deg, #fff0ee 0%, #fff 100%);
  padding: 48px 16px 36px;
  text-align: center;
  border-bottom: 1px solid #e4e8ee;
}
.news-hero h1 { margin: 0 0 8px; font-size: 1.8rem; color: #1a1a1a; }
.news-hero p { color: #666; margin: 0; font-size: 1rem; }
.news-grid {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-card {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  padding: 22px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all .2s ease;
  display: block;
}
.news-card:hover {
  border-color: #e2231a;
  box-shadow: 0 6px 20px rgba(226, 35, 26, .12);
  transform: translateY(-2px);
}
.news-card h3 { margin: 0 0 8px; color: #e2231a; font-size: 1.15rem; }
.news-card p { margin: 0 0 12px; color: #666; font-size: 0.9rem; line-height: 1.5; }
.news-card-arrow { color: #e2231a; font-size: 0.85rem; font-weight: 600; }
.news-single-cta {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 16px;
}
.news-single-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px;
  background: linear-gradient(135deg, #fff0ee 0%, #fff 100%);
  border: 2px solid #e2231a;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all .2s ease;
}
.news-single-link:hover {
  background: linear-gradient(135deg, #ffe9e6 0%, #fff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 35, 26, .15);
}
.news-single-link strong {
  font-size: 1.2rem;
  color: #e2231a;
}
.news-single-link span {
  color: #666;
  font-size: 0.92rem;
}
.news-other {
  max-width: 1100px;
  margin: 24px auto 60px;
  padding: 18px 16px;
  border-top: 1px solid #e4e8ee;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}
.news-other a {
  color: #e2231a;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: 1.4rem; }
}
