/* ============================================
   Article list page (list.html)
   ============================================ */

.section-article-list {
  background: #f0f2f5;
  padding: 2rem 0 3rem;
}

@media (min-width: 992px) {
  .section-article-list {
    padding: 2.5rem 0 3.5rem;
  }
}

.article-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .article-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
}

@media (min-width: 992px) {
  .article-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ----- Card ----- */
.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease, transform 0.22s ease;
  height: 100%;
}

.article-card:hover {
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.article-card__media {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__media-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.article-card__body {
  padding: 1rem 1.1rem 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.6rem;
}

.article-card__tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background: var(--article-card-accent, #5b9bd5);
}

.article-card__date {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.article-card__title {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card__title a:hover {
  color: #0143be;
}

.article-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 0.85rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.65rem;
  margin-top: auto;
  border-top: 1px solid #eef2f7;
}

.article-card__views {
  font-size: 0.8125rem;
  color: #94a3b8;
  white-space: nowrap;
}

.article-card__more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0143be;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.article-card__more:hover {
  color: #0439a0;
  text-decoration: underline;
}

/* Theme accents (top bar + tag) */
.article-card--t1 {
  --article-card-accent: #5b9bd5;
}
.article-card--t2 {
  --article-card-accent: #4a8fc7;
}
.article-card--t3 {
  --article-card-accent: #1e4a8c;
}
.article-card--t4 {
  --article-card-accent: #6abf8e;
}
.article-card--t5 {
  --article-card-accent: #5c6bc0;
}
.article-card--t6 {
  --article-card-accent: #3f7cac;
}

/* ----- Pagination ----- */
.article-pagination-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.article-pagination {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-pagination li {
  display: inline-flex;
}

.article-pagination a,
.article-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 0.65rem;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.article-pagination a:hover {
  color: #0143be;
  border-color: #bcd0f0;
  background: #f8fafc;
}

.article-pagination .is-active span {
  color: #fff;
  background: #0143be;
  border-color: #0143be;
  font-weight: 600;
}

.article-pagination .is-disabled span {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 575.98px) {
  .article-pagination a,
  .article-pagination span {
    min-width: 44px;
    min-height: 44px;
    font-size: 0.875rem;
  }

  .section-article-list {
    padding: 1.25rem 0 2.25rem;
  }

  .article-card__body {
    padding: 0.95rem 1rem 0.75rem;
  }

  .article-card__title {
    font-size: 1rem;
  }
}

/* ============================================
   Article detail page (arc.html)
   ============================================ */

.section-article-detail {
  background: #f0f2f5;
  padding: 1.25rem 0 2.5rem;
}

@media (min-width: 992px) {
  .section-article-detail {
    padding: 1.75rem 0 0;
  }
}

.article-breadcrumb {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .article-breadcrumb {
    margin-bottom: 1.25rem;
  }
}

.article-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.article-breadcrumb__item a {
  color: #0143be;
  text-decoration: none;
}

.article-breadcrumb__item a:hover {
  text-decoration: underline;
}

.article-breadcrumb__item--current {
  color: #334155;
  line-height: 1.45;
  word-break: break-word;
}

.article-breadcrumb__sep {
  color: #cbd5e1;
  user-select: none;
}

.article-sheet,
.article-sidebar-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

@media (min-width: 992px) {
  .article-sheet,
  .article-sidebar-card {
    padding: 1.35rem 1.5rem;
  }
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef2f7;
}

.article-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: #43a047;
  line-height: 1.35;
}

.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.article-meta-item i {
  font-size: 0.95rem;
  color: #94a3b8;
}

.article-sheet__title {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .article-sheet__title {
    font-size: 1.6rem;
  }
}

.article-sheet__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 1.25rem;
}

.article-sheet__subhead {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem;
  padding-left: 0.75rem;
  border-left: 4px solid #0143be;
  line-height: 1.35;
}

.article-sheet__subhead--blue {
  border-left-color: #0143be;
}

.article-sheet__p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #334155;
  margin: 0 0 1rem;
}

.article-sheet__p:last-of-type {
  margin-bottom: 1.25rem;
}

.article-sheet__media-placeholder {
  margin-top: 0.5rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #7eb8ea 0%, #5b9bd5 50%, #4a8bc8 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.article-sheet__media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.article-sheet__media-grid span {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ----- 上一篇 / 下一篇（arc.html） ----- */
.article-adjacent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid #eef2f7;
}

.article-adjacent__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  max-width: 48%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.article-adjacent__link:hover {
  opacity: 0.92;
}

.article-adjacent__link--prev {
  align-items: flex-start;
  text-align: left;
}

.article-adjacent__link--next {
  align-items: flex-end;
  text-align: right;
}

.article-adjacent__label {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.article-adjacent a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  transition: color 0.2s ease;
  text-decoration:none;
}

.article-adjacent__link:hover .article-adjacent__title {
  color: #0143be;
}

.article-sidebar-card__title {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid #43a047;
  line-height: 1.35;
}

.article-sidebar-card__title--accent {
  border-left-color: #43a047;
}

.article-hot-list {
  margin: 0;
  padding: 0;
}

.article-hot-list > li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f7;
}

.article-hot-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.article-hot-item:hover {
  opacity: 0.88;
}

.article-hot-item:hover .article-hot-item__title {
  color: #0143be;
}

.article-hot-item__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(145deg, #94c4ee, #5b9bd5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 600;
}

.article-hot-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.article-hot-item__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.article-hot-item__meta {
  font-size: 0.9125rem;
  color: #94a3b8;
}

@media (max-width: 991.98px) {
  .section-article-detail .container {
    padding-left: max(0.9rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.9rem, env(safe-area-inset-right, 0px));
  }

  .article-sheet,
  .article-sidebar-card {
    padding: 1rem 1rem;
  }

  .article-sheet__title {
    font-size: 1.2rem;
  }

  .article-meta-bar {
    gap: 0.5rem 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .section-article-detail {
    padding: 1rem 0 2rem;
  }

  .article-breadcrumb__list {
    font-size: 0.8125rem;
  }

  .article-hot-item__thumb {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  /* 上下篇：手机端卡片化、易点按、标题限行 */
  .article-adjacent {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top-color: #e2e8f0;
  }

  .article-adjacent__link {
    max-width: 100%;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .article-adjacent__link:hover {
    opacity: 1;
  }

  .article-adjacent__link:active {
    background: #eff3f8;
    border-color: #d0d9e5;
  }

  .article-adjacent__link--next {
    border-top: none;
    padding-top: 0.9rem;
  }

  .article-adjacent__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.03em;
  }

  .article-adjacent__link--prev .article-adjacent__label::before {
    content: "";
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    border-left: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    margin-right: 0.1rem;
  }

  .article-adjacent__link--next .article-adjacent__label::after {
    content: "";
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    border-right: 2px solid #94a3b8;
    border-top: 2px solid #94a3b8;
    transform: rotate(45deg);
    margin-left: 0.1rem;
  }

  .article-adjacent__title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }
}

/* ============================================
   Article list — style 2  (list2.html)
   ============================================ */

.section-list2 {
  background: #f5f7fb;
  padding: 1.25rem 0 2.5rem;
}

@media (min-width: 992px) {
  .section-list2 {
    padding: 2rem 0 3rem;
  }
}

/* ----- List2 header ----- */
.list2-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 2px solid #e8edf5;
}

@media (min-width: 576px) {
  .list2-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.list2-header__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.list2-header__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0143be;
  flex-shrink: 0;
}

.list2-header__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.list2-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.list2-tab:hover {
  color: #0143be;
  border-color: #bcd0f0;
  background: #eff6ff;
}

.list2-tab--active {
  color: #fff;
  background: #0143be;
  border-color: #0143be;
  font-weight: 600;
}

.list2-tab--active:hover {
  background: #0439a0;
  border-color: #0439a0;
  color: #fff;
}

/* ----- Article items ----- */
.list2-articles {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.list2-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, transform 0.22s ease;
}

@media (min-width: 576px) {
  .list2-item {
    flex-direction: row;
  }
}

.list2-item:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.11);
  transform: translateY(-1px);
}

/* Thumbnail area */
.list2-item__thumb {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 576px) {
  .list2-item__thumb {
    flex: 0 0 280px;
    aspect-ratio: unset;
    min-height: 200px;
  }
}

@media (min-width: 768px) {
  .list2-item__thumb {
    flex: 0 0 300px;
  }
}

/* Body area */
.list2-item__body {
  flex: 1;
  padding: 1rem 1.1rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

@media (min-width: 576px) {
  .list2-item__body {
    padding: 1.15rem 1.25rem;
  }
}

/* Meta row */
.list2-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
}

.list2-tag {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.list2-tag--blue  { background: #5b9bd5; }
.list2-tag--green { background: #43a047; }
.list2-tag--teal  { background: #00838f; }
.list2-tag--purple { background: #5c6bc0; }
.list2-tag--orange { background: #e65100; }

.list2-date {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.list2-views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.list2-views i {
  font-size: 0.9rem;
}

/* Title */
.list2-item__title {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 0.55rem;
}

.list2-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.list2-item__title a:hover {
  color: #0143be;
}

/* Excerpt */
.list2-item__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

@media (min-width: 576px) {
  .list2-item__excerpt {
    -webkit-line-clamp: 3;
  }
}

/* Foot: author + CTA */
.list2-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

.list2-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list2-author__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dbeafe;
  color: #0143be;
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list2-author__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.list2-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0143be;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s;
}

.list2-read-more:hover {
  color: #0439a0;
  text-decoration: underline;
}

/* ----- Pagination ----- */
.list2-pagination {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.list2-pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
}

.list2-pg-btn:hover {
  color: #0143be;
  border-color: #bcd0f0;
  background: #eff6ff;
}

.list2-pg-btn--disabled,
.list2-pg-btn--disabled:hover {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
  color: #64748b;
  border-color: #e2e8f0;
  background: #fff;
}

.list2-pg-pages {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.65rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.page-num:hover {
  color: #0143be;
  border-color: #bcd0f0;
  background: #eff6ff;
}

.page-num-current,
.page-num-current:hover {
  color: #fff;
  background: #0143be;
  border-color: #0143be;
}

/* ============================================
   Tablet  — 576px ~ 991px
   ============================================ */
@media (min-width: 576px) and (max-width: 991.98px) {
  .section-list2 {
    padding: 1.5rem 0 2.5rem;
  }

  .list2-item__thumb {
    flex: 0 0 220px;
    min-height: unset;
  }

  .list2-item__excerpt {
    -webkit-line-clamp: 2;
  }
}

/* ============================================
   Mobile  — ≤ 575px
   ============================================ */
@media (max-width: 575.98px) {
  .section-list2 {
    padding: 0.9rem 0 2rem;
    background: #f0f2f8;
  }

  /* Header: label on top, tabs scroll horizontally */
  .list2-header {
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.1rem;
  }

  .list2-header__label {
    font-size: 1rem;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid #dde4f0;
  }

  .list2-header__tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0.35rem;
    padding-bottom: 2px;
  }

  .list2-header__tabs::-webkit-scrollbar {
    display: none;
  }

  .list2-tab {
    flex-shrink: 0;
    font-size: 0.8125rem;
    padding: 0.3rem 0.75rem;
  }

  /* Each article: compact left-thumb + right-content */
  .list2-item {
    flex-direction: row;
    border-radius: 10px;
    min-height: unset;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.07);
  }

  .list2-item:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
  }

  .list2-item__thumb {
    flex: 0 0 110px;
    aspect-ratio: unset;
    min-height: 110px;
    font-size: 1.5rem;
    border-radius: 10px 0 0 10px;
  }

  .list2-item__body {
    flex: 1;
    padding: 0.75rem 0.85rem 0.65rem;
    justify-content: flex-start;
    gap: 0;
  }

  .list2-item__meta {
    margin-bottom: 0.4rem;
    gap: 0.35rem 0.5rem;
  }

  .list2-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }

  .list2-date,
  .list2-views {
    font-size: 0.75rem;
  }

  .list2-item__title {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.35rem;
    -webkit-line-clamp: 2;
  }

  .list2-item__excerpt {
    
  }

  .list2-item__foot {
    padding-top: 0.45rem;
    border-top: none;
    margin-top: auto;
  }

  .list2-author__avatar {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .list2-author__name {
    font-size: 0.8rem;
  }

  .list2-read-more {
    font-size: 0.8rem;
  }

  /* Pagination: compact pill row */
  .list2-pagination {
    gap: 0.35rem;
  }

  .list2-pg-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8125rem;
    min-height: 40px;
  }

  .page-num{
    min-width: 40px;
    min-height: 40px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   Expert team list (zjtd.html)
   ============================================ */

.section-expert-team {
  background: #f0f2f8;
  padding: 1.75rem 0 2.75rem;
}

@media (min-width: 992px) {
  .section-expert-team {
    padding: 2.25rem 0 3.25rem;
  }
}

.expert-team__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

@media (min-width: 992px) {
  .expert-team__intro {
    margin-bottom: 2.25rem;
  }
}

.expert-team__title {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .expert-team__title {
    font-size: 1.5rem;
  }
}

.expert-team__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* 手机：单列；PC（≥992px）：一行 3 列（2 行 = 6 条/页，由脚本控制） */
.expert-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

@media (min-width: 576px) {
  .expert-list {
    gap: 1.2rem;
  }
}

@media (min-width: 992px) {
  .expert-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.expert-card.is-expert-hidden {
  display: none !important;
}

.expert-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.07);
  transition: box-shadow 0.25s ease, transform 0.22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expert-card:hover {
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

.expert-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #e8eef5;
  overflow: hidden;
}

.expert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.expert-card__body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

@media (min-width: 992px) {
  .expert-card__body {
    padding: 1.25rem 1.35rem 1.35rem;
  }
}

.expert-card__name {
  font-family: "Rubik", "Exo", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.expert-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin-bottom: 0.85rem;
}

.expert-tag {
  display: inline-block;
  padding: 0.22rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0d5c9e;
  border: 1px solid rgba(1, 67, 190, 0.32);
  background: rgba(1, 67, 190, 0.06);
  border-radius: 4px;
}

.expert-card__bio {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media (max-width: 575.98px) {
  .section-expert-team {
    padding: 1.25rem 0 2rem;
  }

  .section-expert-team .container {
    padding-left: max(0.9rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.9rem, env(safe-area-inset-right, 0px));
  }

  .expert-team__intro {
    margin-bottom: 1.35rem;
    text-align: left;
  }

  .expert-team__title {
    font-size: 1.2rem;
  }

  .expert-team__desc {
    font-size: 0.875rem;
  }

  .expert-list {
    gap: 1rem;
  }

  .expert-card:hover {
    transform: none;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  }

  .expert-card__body {
    padding: 1rem 1rem 1.1rem;
  }

  .expert-card__name {
    font-size: 1.125rem;
    margin-bottom: 0.55rem;
  }

  .expert-card__tags {
    margin-bottom: 0.7rem;
  }

  .expert-card__bio {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .expert-card__media {
    aspect-ratio: 3 / 4;
  }
}

/* ----- 专家团队分页（zjtd.html） ----- */
.expert-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

@media (min-width: 992px) {
  .expert-pagination {
    margin-top: 2.25rem;
  }
}

.expert-pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.expert-pg-btn:hover:not(:disabled) {
  color: #0143be;
  border-color: #bcd0f0;
  background: #eff6ff;
}

.expert-pg-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f1f5f9;
  color: #94a3b8;
  border-color: #e8edf3;
}

.expert-pg-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.expert-pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.expert-pg-num:hover:not(.is-active) {
  color: #0143be;
  border-color: #bcd0f0;
  background: #f8fafc;
}

.expert-pg-num.is-active {
  background: #0143be;
  border-color: #0143be;
  color: #fff;
  cursor: default;
}

@media (max-width: 575.98px) {
  .expert-pagination {
    gap: 0.35rem;
    margin-top: 1.35rem;
  }

  .expert-pg-btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    min-height: 42px;
  }

  .expert-pg-num {
    min-width: 42px;
    min-height: 42px;
    font-size: 0.875rem;
  }
}

