.page-news {
  --news-gold: #D4AF37;
  --news-red: #C8102E;
  --news-night: #0B1E36;
  --news-violet: #3B1F5E;
  --news-paper: #FBF6EC;
  --news-ink: #2E2A28;
  --news-brown: #A67C00;
  --news-signal: #00E5A0;
  --news-gradient: linear-gradient(135deg, #D4AF37, #C8102E);
  --news-serif: Georgia, 'Noto Serif SC', serif;
  --news-sans: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--news-paper);
  color: var(--news-ink);
}

@keyframes pageNewsDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.18), 0 0 10px rgba(0, 229, 160, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 229, 160, 0.3), 0 0 16px rgba(0, 229, 160, 0.65); }
}

.page-news .news-hero {
  position: relative;
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 90% 6%, rgba(212, 175, 55, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(251, 246, 236, 0.96), var(--news-paper));
  border-bottom: 2px solid rgba(166, 124, 0, 0.18);
  overflow: hidden;
}

.page-news .news-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -20px;
  width: 46%;
  height: 130%;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 31, 94, 0.07) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 28px;
}

.page-news .news-kicker {
  display: inline-block;
  font-family: var(--news-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--news-red);
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.08), rgba(200, 16, 46, 0.02));
  padding: 6px 14px 6px 10px;
  border-left: 4px solid var(--news-gold);
  margin-bottom: 16px;
}

.page-news .page-title {
  font-family: var(--news-serif);
  font-size: clamp(28px, 5.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--news-ink);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--news-gold);
  display: inline-block;
  max-width: 22ch;
}

.page-news .page-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(46, 42, 40, 0.78);
  max-width: 60ch;
  margin: 0;
}

.page-news .news-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .news-live-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--news-night);
  border-radius: 12px;
  padding: 16px;
  color: var(--news-paper);
  position: relative;
  overflow: hidden;
}

.page-news .news-live-status::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}

.page-news .news-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--news-signal);
  flex-shrink: 0;
  margin-top: 5px;
  animation: pageNewsDotPulse 2s ease infinite;
}

.page-news .news-live-title {
  font-family: var(--news-serif);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
}

.page-news .news-live-meta {
  font-size: 13px;
  color: rgba(251, 246, 236, 0.68);
  margin: 0;
}

.page-news .news-upcoming {
  background: var(--news-violet);
  border-radius: 12px;
  padding: 16px;
  color: var(--news-paper);
}

.page-news .news-upcoming-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(251, 246, 236, 0.58);
  margin: 0 0 6px;
}

.page-news .news-upcoming-time {
  font-family: var(--news-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--news-gold);
  margin: 0 0 4px;
}

.page-news .news-upcoming-note {
  font-size: 12px;
  color: rgba(251, 246, 236, 0.62);
  margin: 0;
}

.page-news .news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(166, 124, 0, 0.4);
}

.page-news .news-filter-bar .chip {
  font-size: 14px;
  padding: 8px 18px;
  border: 1px solid rgba(166, 124, 0, 0.35);
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.85);
  color: var(--news-brown);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-news .news-filter-bar .chip:hover,
.page-news .news-filter-bar .chip:focus-visible {
  background: var(--news-night);
  border-color: var(--news-night);
  color: var(--news-gold);
  transform: translateY(-2px);
}

.page-news .news-section-head {
  position: relative;
  padding-left: 18px;
  margin-bottom: 30px;
}

.page-news .news-section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: var(--news-gradient);
  border-radius: 2px;
}

.page-news .news-section-tag {
  display: inline-block;
  font-family: var(--news-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--news-red);
  margin: 0 0 8px;
}

.page-news .news-section-head .section-title {
  font-family: var(--news-serif);
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 800;
  color: var(--news-ink);
  margin: 0 0 8px;
}

.page-news .news-section-head .section-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(46, 42, 40, 0.66);
  margin: 0;
  max-width: 56ch;
}

.page-news .news-today {
  padding: 52px 0;
}

.page-news .news-today-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-status-board {
  background: var(--news-night);
  border-radius: 16px;
  padding: 24px;
  color: var(--news-paper);
  position: relative;
  overflow: hidden;
}

.page-news .news-status-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--news-gradient);
}

.page-news .news-status-board::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 31, 94, 0.55), transparent 70%);
  pointer-events: none;
}

.page-news .news-status-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.page-news .news-status-top .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--news-signal);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.16), 0 0 8px rgba(0, 229, 160, 0.35);
  flex-shrink: 0;
}

.page-news .news-status-time {
  margin-left: auto;
  font-family: var(--news-serif);
  color: var(--news-gold);
  font-weight: 700;
}

.page-news .news-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.page-news .news-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news .news-stat:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.page-news .news-stat-num {
  display: block;
  font-family: var(--news-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--news-gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.page-news .news-stat-label {
  font-size: 12px;
  color: rgba(251, 246, 236, 0.65);
}

.page-news .news-update-list {
  list-style: none;
  margin: 0;
  padding: 2px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.page-news .news-update-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251, 246, 236, 0.82);
}

.page-news .news-update-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--news-signal);
  opacity: 0.8;
}

.page-news .news-today-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .news-figure-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(166, 124, 0, 0.25);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(59, 31, 94, 0.08));
  object-fit: cover;
}

.page-news .news-img-caption {
  font-size: 13px;
  color: rgba(46, 42, 40, 0.58);
  line-height: 1.5;
  padding: 0 2px;
}

.page-news .news-transfers {
  padding: 52px 0 56px;
  background: linear-gradient(120deg, rgba(59, 31, 94, 0.05), rgba(251, 246, 236, 0.98) 38%);
  border-top: 1px dashed rgba(166, 124, 0, 0.3);
  border-bottom: 1px solid rgba(166, 124, 0, 0.12);
}

.page-news .news-transfers-figure {
  margin: 0 0 36px;
}

.page-news .news-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}

.page-news .news-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--news-gold), var(--news-violet) 55%, var(--news-brown));
}

.page-news .news-timeline-item {
  position: relative;
  padding: 0 0 26px;
}

.page-news .news-timeline-marker {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--news-paper);
  border: 3px solid var(--news-gold);
  box-shadow: 0 0 0 2px var(--news-gold);
  z-index: 1;
}

.page-news .news-timeline-item:hover .news-timeline-marker {
  transform: scale(1.35);
  background: var(--news-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-news .news-timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-news .news-timeline-time {
  font-family: var(--news-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--news-night);
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(166, 124, 0, 0.28);
  border-radius: 999px;
}

.page-news .news-timeline-head .tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 31, 94, 0.08);
  border: 1px solid rgba(59, 31, 94, 0.18);
  color: var(--news-violet);
}

.page-news .news-timeline-body {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(166, 124, 0, 0.16);
  border-left: 3px solid var(--news-gold);
  border-radius: 4px 12px 12px 4px;
  padding: 14px 16px;
  transition: background 0.2s ease, border-left-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-timeline-item:hover .news-timeline-body {
  background: #fff;
  border-left-color: var(--news-red);
  transform: translateX(2px);
}

.page-news .news-timeline-title {
  font-family: var(--news-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--news-ink);
  margin: 0 0 6px;
}

.page-news .news-timeline-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(46, 42, 40, 0.74);
  margin: 0;
}

.page-news .news-meta {
  padding: 52px 0 60px;
  background: linear-gradient(120deg, rgba(59, 31, 94, 0.04), rgba(251, 246, 236, 0.98) 42%);
  border-bottom: 1px solid rgba(166, 124, 0, 0.12);
}

.page-news .news-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-news .news-meta-subtitle {
  font-family: var(--news-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--news-ink);
  margin: 0 0 18px;
}

.page-news .news-meta-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.page-news .news-bar-row {
  display: grid;
  grid-template-columns: 44px 1fr 54px;
  align-items: center;
  gap: 10px;
}

.page-news .news-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--news-ink);
}

.page-news .news-bar-track {
  height: 10px;
  background: rgba(166, 124, 0, 0.14);
  border-radius: 6px;
  overflow: hidden;
}

.page-news .news-bar-fill {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: var(--news-gradient);
  min-width: 2%;
}

.page-news .news-bar-w38 { width: 38.6%; }
.page-news .news-bar-w31 { width: 31.2%; }
.page-news .news-bar-w44 { width: 44.5%; }
.page-news .news-bar-w36 { width: 36.8%; }
.page-news .news-bar-w29 { width: 29.4%; }

.page-news .news-bar-value {
  font-family: var(--news-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--news-red);
  text-align: right;
}

.page-news .news-meta-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.page-news .news-meta-card {
  background: var(--news-night);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news .news-meta-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--news-gradient);
}

.page-news .news-meta-card-num {
  display: block;
  font-family: var(--news-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--news-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}

.page-news .news-meta-card-label {
  font-size: 12px;
  color: rgba(251, 246, 236, 0.66);
}

.page-news .news-meta-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid rgba(166, 124, 0, 0.24);
}

.page-news .news-meta-points li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px dashed rgba(166, 124, 0, 0.16);
}

.page-news .news-meta-points li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 19px;
  width: 8px;
  height: 8px;
  background: var(--news-red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-news .news-meta-figure {
  margin: 26px 0 0;
}

.page-news .news-regions {
  padding: 52px 0 60px;
  background: radial-gradient(circle at 12% 88%, rgba(59, 31, 94, 0.06), transparent 36%), var(--news-paper);
}

.page-news .news-region-map {
  margin: 0 0 36px;
}

.page-news .news-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .news-region-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(166, 124, 0, 0.2);
  border-top: 4px solid var(--news-gold);
  border-radius: 4px 12px 12px 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(46, 42, 40, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-news .news-region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(46, 42, 40, 0.1);
}

.page-news .news-region-card-lpl {
  border-top-color: var(--news-red);
}

.page-news .news-region-name {
  font-family: var(--news-serif);
  font-size: 19px;
  font-weight: 800;
  color: var(--news-ink);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news .news-region-name::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--news-gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.page-news .news-region-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-region-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  line-height: 1.58;
  color: rgba(46, 42, 40, 0.82);
}

.page-news .news-region-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--news-brown);
}

.page-news .news-cta {
  padding: 52px 0 64px;
  background: var(--news-night);
  color: var(--news-paper);
  position: relative;
  overflow: hidden;
}

.page-news .news-cta::before {
  content: '财';
  position: absolute;
  right: 4%;
  bottom: -36px;
  font-family: var(--news-serif);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: rgba(212, 175, 55, 0.08);
  opacity: 0.5;
  pointer-events: none;
}

.page-news .news-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-news .news-cta-kicker {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--news-gold);
  margin: 0 0 8px;
}

.page-news .news-cta-title {
  font-family: var(--news-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--news-paper);
  margin: 0 0 12px;
}

.page-news .news-cta-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(251, 246, 236, 0.74);
  margin: 0 0 16px;
  max-width: 52ch;
}

.page-news .news-cta .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 420px) {
  .page-news .news-stat-num {
    font-size: 28px;
  }
}

@media (min-width: 720px) {
  .page-news .news-hero-grid {
    grid-template-columns: 1.5fr 0.85fr;
    gap: 36px;
    align-items: start;
  }

  .page-news .news-today-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .page-news .news-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .news-meta-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: start;
  }

  .page-news .news-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-cta-inner {
    grid-template-columns: 1fr auto;
    gap: 30px;
  }
}

@media (min-width: 960px) {
  .page-news .news-section-head {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 36px;
    align-items: end;
    padding-left: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(166, 124, 0, 0.18);
    margin-bottom: 36px;
  }

  .page-news .news-section-head::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
  }

  .page-news .news-section-tag {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .page-news .news-section-head .section-title {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
  }

  .page-news .news-section-head .section-subtitle {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0;
  }

  .page-news .news-region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
