.page-news {
  --news-green: #00FFA3;
  --news-orange: #FF6B35;
  --news-silver: #C0C8D0;
  --news-deep: #0A1128;
  --news-ocean: #12224A;
  --news-dblue: #1A2A4A;
  --news-card-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --news-radius: 10px;
  --news-clip: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --news-font-head: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --news-font-body: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --news-font-data: "JetBrains Mono", "SF Mono", "Cascadia Code", Consolas, monospace;
}

.page-news {
  background: var(--news-deep);
  color: var(--news-silver);
  font-family: var(--news-font-body);
  line-height: 1.7;
}

.page-news .container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-news a {
  color: var(--news-silver);
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-news a:hover {
  color: var(--news-green);
}

.page-news .news-breadcrumb {
  padding-top: 92px;
  padding-bottom: 12px;
}

.page-news .news-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.page-news .news-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(192, 200, 208, 0.4);
}

.page-news .news-breadcrumb span {
  color: var(--news-green);
}

.page-news .section {
  margin-top: 64px;
  margin-bottom: 64px;
}

.page-news .section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.page-news .section-index {
  font-family: var(--news-font-data);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--news-green);
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, var(--news-green), rgba(0, 255, 163, 0.4));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 1.4em;
}

.page-news .section-title {
  font-family: var(--news-font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.page-news .section-sub {
  font-size: 0.95rem;
  color: rgba(192, 200, 208, 0.75);
  margin: 0;
  max-width: 640px;
}

.page-news .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}

.page-news .tag--green {
  background: rgba(0, 255, 163, 0.12);
  color: var(--news-green);
  border: 1px solid rgba(0, 255, 163, 0.35);
}

.page-news .tag--orange {
  background: rgba(255, 107, 53, 0.12);
  color: var(--news-orange);
  border: 1px solid rgba(255, 107, 53, 0.35);
}

.page-news .tag--silver {
  background: rgba(192, 200, 208, 0.1);
  color: var(--news-silver);
  border: 1px solid rgba(192, 200, 208, 0.3);
}

.page-news .btn-ghost {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(192, 200, 208, 0.5);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--news-silver);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.page-news .btn-ghost:hover {
  border-color: var(--news-green);
  color: var(--news-green);
  background: rgba(0, 255, 163, 0.06);
}

.page-news .panel {
  background: var(--news-ocean);
  border: 1px solid rgba(192, 200, 208, 0.08);
  border-radius: var(--news-radius);
}

.page-news .news-feature-frame {
  position: relative;
  border-radius: var(--news-radius);
  overflow: hidden;
  clip-path: var(--news-clip);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--news-ocean);
}

.page-news .news-feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}

.page-news .news-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 17, 40, 0.93) 0%, rgba(10, 17, 40, 0.55) 55%, rgba(10, 17, 40, 0.2) 100%);
  z-index: 1;
}

.page-news .news-feature-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  max-width: 760px;
}

.page-news .news-feature-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.page-news .news-feature-title {
  font-family: var(--news-font-head);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

.page-news .news-feature-desc {
  font-size: 1rem;
  color: rgba(192, 200, 208, 0.9);
  margin: 0 0 20px;
  max-width: 620px;
}

.page-news .news-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--news-font-data);
  font-size: 0.8rem;
  color: var(--news-green);
  letter-spacing: 0.03em;
}

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

.page-news .news-filter-panel {
  min-height: 200px;
}

.page-news .news-filter-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--news-font-head);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.page-news .news-filter-dot {
  width: 8px;
  height: 8px;
  background: var(--news-orange);
  display: inline-block;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.page-news .news-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.page-news .news-tablist .tab {
  background: rgba(18, 34, 74, 0.8);
  border: 1px solid rgba(192, 200, 208, 0.2);
  color: var(--news-silver);
  font-family: var(--news-font-body);
  font-size: 0.85rem;
  padding: 7px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-news .news-tablist .tab:hover {
  border-color: var(--news-green);
  color: var(--news-green);
}

.page-news .news-tablist .tab[aria-selected="true"] {
  background: rgba(0, 255, 163, 0.12);
  border-color: var(--news-green);
  color: var(--news-green);
  box-shadow: 0 0 14px rgba(0, 255, 163, 0.15);
}

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

.page-news .news-card {
  position: relative;
  background: var(--news-ocean);
  border: 1px solid rgba(192, 200, 208, 0.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-card-shadow);
  border-color: rgba(0, 255, 163, 0.2);
}

.page-news .news-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(192, 200, 208, 0.06);
}

.page-news .news-card-body {
  padding: 18px 20px 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-news .news-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}

.page-news .news-card-time {
  font-family: var(--news-font-data);
  font-size: 0.75rem;
  color: rgba(192, 200, 208, 0.55);
}

.page-news .news-card-title {
  font-family: var(--news-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.page-news .news-card-excerpt {
  font-size: 0.875rem;
  color: rgba(192, 200, 208, 0.75);
  line-height: 1.7;
  margin: 0 0 20px;
}

.page-news .news-card-idx {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--news-font-data);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 255, 163, 0.25);
  line-height: 1;
  transition: color 0.3s ease;
}

.page-news .news-card:hover .news-card-idx {
  color: rgba(0, 255, 163, 0.65);
}

.page-news .news-card:hover .news-card-title {
  color: var(--news-green);
}

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

.page-news .news-chart-card {
  background: var(--news-ocean);
  border: 1px solid rgba(192, 200, 208, 0.08);
  border-radius: 8px;
  padding: 20px;
  clip-path: var(--news-clip);
}

.page-news .news-chart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-news .news-chart-label {
  font-family: var(--news-font-data);
  font-size: 0.85rem;
  color: var(--news-silver);
}

.page-news .news-chart-wrap {
  width: 100%;
  background: rgba(10, 17, 40, 0.5);
  border-radius: 6px;
  padding: 10px;
}

.page-news .news-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .news-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  font-size: 0.8rem;
}

.page-news .news-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-news .news-legend-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.page-news .news-legend-dot--green {
  background: var(--news-green);
  box-shadow: 0 0 8px rgba(0, 255, 163, 0.6);
}

.page-news .news-legend-dot--orange {
  background: var(--news-orange);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
}

.page-news .news-legend-note {
  font-family: var(--news-font-data);
  font-size: 0.75rem;
  color: rgba(192, 200, 208, 0.5);
  margin-left: auto;
}

.page-news .news-stat-panel {
  background: linear-gradient(135deg, rgba(18, 34, 74, 0.95), rgba(10, 17, 40, 0.8));
  border: 1px solid rgba(0, 255, 163, 0.12);
  border-radius: 8px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page-news .news-stat-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.page-news .news-stat-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.page-news .news-stat-heading .section-index {
  font-size: 2.2rem;
}

.page-news .news-stat-heading h3 {
  font-family: var(--news-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.page-news .news-stat-desc {
  font-size: 0.9rem;
  color: rgba(192, 200, 208, 0.8);
  margin: 0 0 20px;
  line-height: 1.6;
}

.page-news .news-stat-list {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.page-news .news-stat-list .data-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(192, 200, 208, 0.15);
}

.page-news .news-stat-list dt {
  font-size: 0.85rem;
  color: rgba(192, 200, 208, 0.7);
}

.page-news .news-stat-list .data-value {
  font-family: var(--news-font-data);
  font-size: 1rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, #E0E6ED, #8A94A6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.page-news .news-stat-note {
  background: rgba(0, 255, 163, 0.06);
  border-left: 3px solid var(--news-green);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: rgba(192, 200, 208, 0.75);
}

.page-news .news-stat-note p {
  margin: 0;
  line-height: 1.6;
}

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

.page-news .news-archive-card {
  background: var(--news-ocean);
  border: 1px solid rgba(192, 200, 208, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-news .news-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--news-card-shadow);
  border-color: rgba(255, 107, 53, 0.3);
}

.page-news .news-archive-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
}

.page-news .news-archive-body {
  padding: 18px 20px 20px;
}

.page-news .news-archive-body h3 {
  font-family: var(--news-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 6px;
}

.page-news .news-archive-body p {
  font-size: 0.85rem;
  color: rgba(192, 200, 208, 0.7);
  margin: 0 0 12px;
  line-height: 1.6;
}

.page-news .news-archive-link {
  font-family: var(--news-font-data);
  font-size: 0.8rem;
  color: var(--news-orange);
  letter-spacing: 0.05em;
}

.page-news .news-archive-card:hover .news-archive-link {
  color: var(--news-green);
}

.page-news .news-archive-tabs {
  padding: 22px 20px;
  margin-bottom: 18px;
}

.page-news .news-archive-tab-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-news .news-archive-tab-title {
  font-size: 0.85rem;
  color: rgba(192, 200, 208, 0.7);
}

.page-news .news-archive-tabs .tab {
  background: transparent;
  border: 1px solid rgba(192, 200, 208, 0.2);
  color: var(--news-silver);
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--news-font-body);
  transition: all 0.25s ease;
}

.page-news .news-archive-tabs .tab[aria-selected="true"] {
  border-color: var(--news-orange);
  color: var(--news-orange);
  background: rgba(255, 107, 53, 0.06);
}

.page-news .news-archive-tabs .tab:hover {
  border-color: var(--news-orange);
}

.page-news .news-archive-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-news .news-archive-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(10, 17, 40, 0.4);
  border: 1px solid rgba(192, 200, 208, 0.06);
  border-radius: 4px;
  flex-wrap: wrap;
}

.page-news .news-archive-list li a {
  font-size: 0.875rem;
}

.page-news .news-archive-list li a:hover {
  color: var(--news-green);
}

.page-news .news-archive-panel {
  background: rgba(18, 34, 74, 0.5);
  border: 1px dashed rgba(192, 200, 208, 0.2);
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 22px 20px;
}

.page-news .news-archive-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-news .news-archive-panel-inner p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(192, 200, 208, 0.75);
  max-width: 640px;
}

.page-news .news-archive-panel-inner .btn-ghost {
  margin-top: 6px;
}

@media (min-width: 640px) {
  .page-news .news-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-news .news-archive-panel-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .page-news .news-archive-panel-inner p {
    flex: 1;
  }

  .page-news .news-archive-panel-inner .btn-ghost {
    flex-shrink: 0;
  }
}

@media (min-width: 960px) {
  .page-news .news-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }

  .page-news .news-filter-panel {
    position: sticky;
    top: 96px;
  }

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

  .page-news .news-visual-grid {
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
  }

  .page-news .news-card:nth-child(3n) {
    grid-column: span 2;
  }

  .page-news .news-card:nth-child(3n) .news-card-img {
    aspect-ratio: 16 / 7;
  }
}

@media (min-width: 1200px) {
  .page-news .news-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-card:nth-child(3n) {
    grid-column: auto;
  }

  .page-news .news-card:nth-child(3n) .news-card-img {
    aspect-ratio: 4 / 3;
  }
}
