/* 资讯中心 */
.news-page {
  padding: 48px 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(12, 124, 111, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(47, 111, 237, 0.06), transparent 50%),
    #f7faf9;
}
.news-head { margin-bottom: 28px; max-width: 720px; }
.news-eyebrow {
  margin: 0 0 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand, #0c7c6f);
  font-weight: 700;
}
.news-head h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #123;
}
.news-lead {
  margin: 0 0 18px;
  color: var(--muted, #60706d);
  line-height: 1.65;
  font-size: 1rem;
}
.news-search {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.news-search input {
  flex: 1;
  border: 1px solid #d7ebe7;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .95rem;
  background: #fff;
}
.news-count {
  margin: 12px 0 0;
  font-size: .88rem;
  color: var(--muted, #60706d);
}
.news-empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted, #60706d);
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #d7ebe7;
}

/* 上方精选：手机 2 列 × 2 行；电脑 4 列 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 124, 111, 0.1);
  box-shadow: 0 4px 14px rgba(18, 40, 36, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 40, 36, 0.09);
}
.news-card-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8f5f2, #eef3ff);
  overflow: hidden;
  flex-shrink: 0;
}
.news-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-cover.is-empty {
  display: grid;
  place-items: center;
  color: #0c7c6f;
  font-weight: 700;
  font-size: .82rem;
}
.news-card-body {
  padding: 11px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.news-card-body time {
  font-size: .72rem;
  color: #8a9794;
  line-height: 1.2;
}
.news-card-body h2 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.4;
  font-weight: 750;
  color: #0f4f47;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* 下方列表：左缩略图 + 右文案，固定不乱 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-list-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(12, 124, 111, 0.1);
  box-shadow: 0 4px 16px rgba(18, 40, 36, 0.045);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
  overflow: hidden;
}
.news-list-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(18, 40, 36, 0.08);
}
.news-list-thumb {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5f2, #eef3ff);
  align-self: center;
}
.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list-thumb.is-empty {
  display: grid;
  place-items: center;
  color: #0c7c6f;
  font-size: .78rem;
  font-weight: 700;
}
.news-list-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}
.news-list-top {
  display: flex;
  align-items: center;
}
.news-list-top time {
  font-size: .75rem;
  color: #8a9794;
  line-height: 1.2;
}
.news-list-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 750;
  color: #0f4f47;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.news-list-summary {
  margin: 0;
  font-size: .86rem;
  line-height: 1.55;
  color: #5b6b68;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.news-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  max-height: 28px;
  overflow: hidden;
}
.news-list-tags span {
  flex: 0 0 auto;
  max-width: 100%;
  font-size: .72rem;
  line-height: 1.2;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf8f5;
  color: #0c7c6f;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.news-tags span {
  font-size: .72rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eaf8f5;
  color: #0c7c6f;
  font-weight: 600;
}

/* 分页 */
.news-pager {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.news-pager-nav {
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand, #0c7c6f);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d7ebe7;
}
.news-pager-nav.is-disabled {
  color: #aab5b3;
  border-color: #e6eded;
  background: #f3f6f5;
}
.news-pager-nums {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.news-pager-nums a,
.news-pager-nums span.is-current {
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #d7ebe7;
  background: #fff;
  color: #234;
}
.news-pager-nums a:hover {
  border-color: #0c7c6f;
  color: #0c7c6f;
}
.news-pager-nums span.is-current {
  background: #0c7c6f;
  border-color: #0c7c6f;
  color: #fff;
}
.news-pager-ellipsis {
  color: var(--muted, #60706d);
  padding: 0 2px;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
  }
  .news-card-body { padding: 12px 14px 14px; }
  .news-card-body h2 { font-size: 1rem; }

  .news-list {
    gap: 14px;
  }
  .news-list-item {
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
  }
  .news-list-thumb {
    flex: 0 0 148px;
    width: 148px;
    height: 108px;
    border-radius: 14px;
  }
  .news-list-title {
    font-size: 1.12rem;
    -webkit-line-clamp: 1;
  }
  .news-list-summary {
    font-size: .92rem;
    -webkit-line-clamp: 2;
  }
  .news-list-tags {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .news-page { padding: 28px 0 48px; }
  .news-search {
    max-width: none;
    flex-direction: column;
  }
  .news-list-item {
    gap: 12px;
    padding: 12px;
  }
  .news-list-thumb {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 10px;
  }
  .news-list-title {
    font-size: .96rem;
  }
  .news-list-summary {
    font-size: .82rem;
    -webkit-line-clamp: 2;
  }
  .news-pager-nav { padding: 8px 10px; font-size: .84rem; }
  .news-pager-nums a,
  .news-pager-nums span.is-current {
    min-width: 32px;
    height: 32px;
    font-size: .84rem;
  }
}

/* 详情 */
.news-detail {
  padding: 40px 0 72px;
  background: #f7faf9;
}
.news-detail-inner { max-width: 780px; }
.news-back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted, #60706d);
  text-decoration: none;
  font-size: .9rem;
}
.news-back:hover { color: var(--brand, #0c7c6f); }
.news-detail-head h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  font-weight: 800;
  color: #123;
}
.news-detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted, #60706d);
  font-size: .88rem;
  margin-bottom: 20px;
}
.news-detail-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(12, 124, 111, 0.1);
}
.news-detail-cover img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.news-detail-summary {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-left: 3px solid #0c7c6f;
  background: #fff;
  border-radius: 0 12px 12px 0;
  color: #345;
  line-height: 1.65;
  font-size: .98rem;
}
.news-detail-content {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(12, 124, 111, 0.1);
  line-height: 1.8;
  color: #234;
  font-size: 1.02rem;
}
.news-detail-content h2,
.news-detail-content h3 {
  margin: 1.4em 0 .6em;
  color: #123;
  line-height: 1.35;
}
.news-detail-content p { margin: 0 0 1em; }
.news-detail-content ul,
.news-detail-content ol { margin: 0 0 1em; padding-left: 1.35em; }
.news-detail-content li { margin: .35em 0; }
.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.news-detail-content .news-figure,
.news-detail-content figure.news-figure {
  margin: 1.25em 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f0f6f5;
}
.news-detail-content .news-figure a {
  display: block;
  line-height: 0;
}
.news-detail-content .news-figure img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: opacity .2s ease;
}
.news-detail-content .news-figure a:hover img {
  opacity: .92;
}
.news-detail-nav {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.news-detail-nav a {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d7ebe7;
  text-decoration: none;
  color: inherit;
}
.news-detail-nav a.is-next { text-align: right; }
.news-detail-nav span {
  display: block;
  font-size: .78rem;
  color: var(--muted, #60706d);
  margin-bottom: 4px;
}
.news-detail-nav b {
  font-size: .92rem;
  color: #163;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-detail-cta {
  margin-top: 28px;
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f5f2, #eef6ff);
  border: 1px solid rgba(12, 124, 111, 0.15);
  text-align: center;
}
.news-detail-cta strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #0c5c52;
}
.news-detail-cta p {
  margin: 0 0 14px;
  color: #456;
  font-size: .92rem;
}

@media (max-width: 640px) {
  .news-detail-content { padding: 20px 16px; }
  .news-detail-nav { grid-template-columns: 1fr; }
  .news-detail-nav a.is-next { text-align: left; }
}
