/* 全景资讯列表 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&family=Noto+Serif+SC:wght@600;700&display=swap');

.news-page {
  --n-ink: #0c1a24;
  --n-sand: #d4a84b;
  --n-muted: #5a6b76;
  --n-line: rgba(19, 38, 54, 0.08);
  --n-max: 980px;
  --n-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --n-display: "Noto Serif SC", "Songti SC", serif;
  font-family: var(--n-font);
  background: #f7f9fb;
  min-height: 60vh;
  padding-bottom: 56px;
}

.news-page a { text-decoration: none; color: inherit; }
.news-page ul { list-style: none; margin: 0; padding: 0; }

.news-hero {
  background: linear-gradient(160deg, #0c1a24 0%, #1e3a4c 55%, #132636 100%);
  color: #fff;
  padding: 48px 24px 56px;
}

.news-hero__inner {
  max-width: var(--n-max);
  margin: 0 auto;
}

.news-back {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.news-back:hover { color: #e8c97a; }

.news-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #e8c97a;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--n-display);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.news-lead {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.news-banner {
  max-width: var(--n-max);
  margin: -20px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.news-banner img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.news-wrap {
  max-width: var(--n-max);
  margin: 0 auto;
  padding: 28px 24px 0;
  box-sizing: border-box;
}

.news-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--n-line);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 26, 36, 0.08);
}

.news-item__media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  background: #132636;
}

.news-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-item:hover .news-item__media img {
  transform: scale(1.04);
}

.news-item__body h2 {
  font-family: var(--n-display);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--n-ink);
  line-height: 1.35;
}

.news-item__body h2:hover { color: #9a7428; }

.news-item__body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--n-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 12px;
  color: #8a98a3;
  margin-bottom: 14px;
}

.news-item__more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #9a7428;
}

.news-more {
  text-align: center;
  padding: 20px;
  color: var(--n-muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .news-wrap { padding: 20px 12px 0; }
  .news-item__body h2 { font-size: 18px; }
}
