:root {
  --news-primary: #0b9894;
  --news-bg: #e8f3f1;
  --news-text-soft: rgba(0, 0, 0, 0.6);
}

.news-page {
  background: var(--news-bg);
  overflow-x: hidden;
  overflow-y: visible;
}

.news-fixed {
  width: 100%;
  min-width: 1200px;
  background: var(--news-bg);
  position: relative;
  margin: 0 auto;
}

.news-hero {
  position: relative;
  height: 615px;
  padding-top: 120px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

.news-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 615px;
  z-index: 2;
  background: linear-gradient(270deg, rgba(11, 152, 148, 0) 26.272%, rgba(11, 152, 148, 0.8) 100%);
  pointer-events: none;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.news-hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
}

.news-hero-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-hero-line-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left 360px center;
  pointer-events: none;
}

.news-hero-title {
  position: absolute;
  left: 160px;
  bottom: 80px;
  color: #fff;
  line-height: 1.2;
  z-index: 3;
}

.news-content {
  background: var(--news-bg);
}

.news-content.pd_120 {
  padding-bottom: 0;
}

.news-content-inner {
  width: min(1442px, calc(100% - 160px));
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-filter-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.news-filter-btn {
  border: 0;
  background: transparent;
  color: #000;
  line-height: 1.5;
  cursor: pointer;
}

.news-filter-btn.is-active {
  width: 120px;
  height: 36px;
  border-radius: 6px;
  color: #fff;
  background: var(--news-primary);
}

.news-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: -24px;
}

.news-featured-card {
  position: relative;
  width: 100%;
  height: 451px;
  overflow: hidden;
  margin-top: 20px;
}

.news-featured-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 152, 148, 0.92) 24.404%, rgba(11, 152, 148, 0) 94.001%);
}

/* 文案区叠在蒙版之上；配图用 HTML img，不写在 CSS 里 */
.news-featured-copy {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 691px;
  min-height: 380px;
  margin: 0;
  padding: 71px 0 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  color: #fff;
}

.news-featured-copy-photo {
  position: absolute;
  z-index: 0;
  left: 60px;
  top: 71px;
  width: 630px;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  pointer-events: none;
}

.news-featured-copy > :not(.news-featured-copy-photo) {
  position: relative;
  z-index: 1;
}

.news-featured-copy h2,
.news-featured-copy p {
  line-height: 1.5;
}

.news-featured-copy p {
  height: 100px;
  overflow: hidden;
}

.news-tag {
  width: 136px;
  height: 40px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--news-primary);
}

.news-meta-row {
  width: 605px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.news-more-link:hover,
.news-more-link:focus-visible {
  color: var(--news-primary);
}

.news-list-foot .news-more-link {
  min-width: 132px;
  height: 44px;
  border-radius: 6px;
  color: #000;
  justify-content: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.news-list-foot .news-more-link:hover {
  color: var(--news-primary);
  border-color: var(--news-primary);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-list-card {
  width: 100%;
  height: 305px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: min(100px, 5vw);
  overflow: hidden;
}

.news-list-photo {
  width: clamp(420px, 45%, 650px);
  height: 305px;
  object-fit: cover;
  flex: 0 0 auto;
}

.news-list-copy {
  flex: 1 1 auto;
  min-width: 0;
  height: 237px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 40px;
}

.news-list-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 620px;
}

.news-list-text h3,
.news-list-text p {
  line-height: 1.5;
}

.news-list-text h3 {
  width: 100%;
  height: 41px;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
}

.news-list-text p {
  width: 100%;
  height: 61px;
  color: var(--news-text-soft);
  overflow: hidden;
}

.news-list-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 620px;
}

.news-list-meta {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.news-list-meta time {
  color: var(--news-text-soft);
  line-height: 1.5;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top:20px;
}

.news-page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.news-page-arrow,
.news-page-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-page-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--news-primary);
  color: var(--news-primary);
  font-size: 24px;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.news-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--news-text-soft);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-page-btn:hover,
.news-page-btn:focus-visible {
  color: var(--news-primary);
  background: rgba(11, 152, 148, 0.12);
}

.news-page-btn:active {
  transform: scale(0.96);
}

.news-page-btn.is-active {
  background: var(--news-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 152, 148, 0.18);
}

.news-page-btn.is-active:hover,
.news-page-btn.is-active:focus-visible {
  color: #fff;
  background: var(--news-primary);
}

.news-page-dots {
  color: var(--news-text-soft);
  line-height: 1.5;
}

.news-page-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.news-page-arrow:not(:disabled):hover {
  background: var(--news-primary);
  color: #fff;
  border-color: var(--news-primary);
}

@media screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .news-page,
  .news-fixed {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .news-hero {
    height: auto;
    min-height: 280px;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .news-hero::before {
    height: 100%;
  }

  .news-hero-line-image {
    object-position: center;
    transform: scale(0.92);
  }

  .news-hero-title {
    position: static;
    padding: 0 16px;
  }

  .news-content-inner {
    width: calc(100% - 32px);
    margin: 40px auto;
    gap: 28px;
  }

  .news-filter-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .news-filter-btn {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--news-primary);
  }

  .news-filter-btn.is-active {
    width: auto;
    height: auto;
    min-height: 40px;
  }

  .news-divider {
    margin-top: 0;
  }

  .news-featured-card {
    height: auto;
    border-radius: 16px;
  }

  .news-featured-overlay {
    background: linear-gradient(180deg, rgba(11, 152, 148, 0.86) 18%, rgba(11, 152, 148, 0.08) 100%);
  }

  .news-featured-copy {
    width: 100%;
    min-height: 0;
    padding: 16px;
    gap: 14px;
  }

  .news-featured-copy-photo {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .news-featured-copy p {
    height: auto;
    overflow: visible;
  }

  .news-meta-row {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-list {
    gap: 20px;
  }

  .news-list-card {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
  }

  .news-list-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .news-list-copy {
    height: auto;
    padding: 16px;
    gap: 18px;
  }

  .news-list-text,
  .news-list-foot {
    width: 100%;
  }

  .news-list-text h3,
  .news-list-text p {
    height: auto;
    overflow: visible;
    white-space: normal;
  }

  .news-list-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-list-foot .news-more-link {
    min-width: 0;
    height: 40px;
    padding: 0 16px;
  }

  .news-pagination {
    gap: 12px;
  }

  .news-page-numbers {
    gap: 8px;
    overflow-x: auto;
    max-width: calc(100vw - 140px);
    scrollbar-width: none;
  }

  .news-page-numbers::-webkit-scrollbar {
    display: none;
  }

  .news-page-arrow,
  .news-page-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
