﻿:root {
  --shell: 1734px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

.content-shell {
  width: min(var(--shell), calc(100% - 184px));
  margin-inline: auto;
}

.top-rule { height: 18px; background: var(--blue); }

.site-header {
  height: 216px;
  border-bottom: 3px solid var(--header-border);
  background: var(--surface);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: min(1670px, calc(100% - 250px));
  height: 195px;
  margin: 0 auto;
}

.brand-panel {
  align-self: stretch;
  display: flex;
  flex: 0 0 366px;
  flex-direction: column;
  align-items: center;
  height: 195px;
  background: var(--brand-panel);
}

.brand-logo {
  width: 282px;
  height: 79px;
  margin-top: 19px;
}

.brand-title {
  width: 131px;
  height: 65px;
  margin-top: 14px;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  height: 72px;
  padding-left: 24px;
}

.main-nav-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  min-width: 0;
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 72px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--nav-text);
  font-size: clamp(16px, 1.18vw, 22px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.main-nav-list > .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--nav-separator);
}

.main-nav-list > .nav-item > a:hover,
.main-nav-list > .nav-item > a:focus-visible {
  background: var(--nav-hover-background);
  color: var(--nav-active);
}

.main-nav-list > .nav-item > a.active {
  color: var(--nav-active);
  box-shadow: inset 0 -3px var(--red);
}

.submenu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 180px;
  padding: 8px 0;
  margin: 0;
  transform: translateX(-50%);
  border-top: 3px solid var(--red);
  background: var(--submenu-background);
  box-shadow: 0 12px 24px var(--submenu-shadow);
  list-style: none;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu { display: block; }

.submenu a {
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--nav-hover-background);
  color: var(--red);
}

.submenu-toggle { display: none; }

.menu-toggle { display: none; }

.hero {
  height: 600px;
  background-color: var(--hero-background);
  background-image: url("/img/v2026/hero-banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1920px 600px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-content { padding: 30px 0 72px; }

.home-content > .plate1,
.home-content > .plate2,
.home-content > .plate3,
.home-content > .plate4,
.home-content > .plate5,
.home-content > .plate6 { margin-top: 28px; },
.home-content > .plate7 { margin-top: 28px; }

.home-content > .plate1:first-child,
.home-content > .plate2:first-child,
.home-content > .plate3:first-child,
.home-content > .plate4:first-child,
.home-content > .plate5:first-child,
.home-content > .plate6:first-child { margin-top: 0; }
.home-content > .plate7:first-child { margin-top: 0; }

.feature-block,
.compact-block {
  position: relative;
  background: var(--panel);
}

.feature-block { padding: 35px 76px 68px; }

.section-title {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 0 45px;
  color: var(--section-title);
  font-size: 42px;
  line-height: 1;
}

.section-title > span {
  width: 19px;
  height: 19px;
  background: var(--red);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 90px;
}

.news-summary {
  min-width: 0;
  padding-bottom: 33px;
  border-bottom: 1px dashed var(--line-dashed);
}

.news-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.news-heading a {
  min-width: 0;
  overflow: hidden;
  color: var(--text-strong);
  font-size: 23px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-heading a:hover,
.compact-list a:hover,
.article-list a:hover { color: var(--red); }

.news-heading time {
  flex: 0 0 auto;
  color: var(--date-bright);
  font-size: 19px;
  font-weight: 700;
}

.news-summary p {
  display: -webkit-box;
  margin: 17px 0 0;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.more-link {
  position: absolute;
  right: 76px;
  bottom: 25px;
  font-size: 18px;
}

.more-link:hover { color: var(--red); }

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.compact-block { min-height: 546px; padding: 46px 76px 65px; }

.compact-block .section-title { margin-bottom: 38px; }

.compact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
  padding: 0 0 25px;
  margin-bottom: 27px;
  border-bottom: 1px dashed var(--line-dashed);
}

.compact-list a {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 22px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-list time {
  display: grid;
  flex: 0 0 95px;
  border: 1px solid var(--control-border);
  color: var(--red);
  text-align: center;
}

.compact-list time b {
  background: var(--red);
  color: var(--on-accent);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.compact-list time em {
  font-size: 20px;
  font-style: normal;
  line-height: 27px;
}

.friend-links,
.text-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 61px;
  min-height: 116px;
  padding-block: 20px;
  color: var(--text-medium);
  font-size: 24px;
}

.friend-links strong,
.text-links strong { font-size: 28px; }

.friend-links a,
.text-links a { transition: color .2s ease, transform .2s ease; }
.friend-links a:hover,
.friend-links a:focus-visible,
.text-links a:hover,
.text-links a:focus-visible { color: var(--red); transform: translateY(-2px); }

.home-content > .plate7 {
  margin-top: 28px;
  padding: 30px 44px;
  background: var(--panel);
}

.friend-links a:hover { color: var(--red); }
.home-content > .plate7 strong { color: var(--section-title); }

.footer-dark { height: 225px; background: var(--footer); color: var(--text-footer); }

.footer-inner {
  display: grid;
  grid-template-columns: 420px 420px 500px;
  justify-content: center;
  align-items: center;
  gap: 26px;
  height: 100%;
}

.footer-brand,
.footer-social {
  display: block;
  max-width: 100%;
  height: auto;
  justify-self: center;
}

.footer-brand {
  width: 396px;
}

.footer-social {
  width: 445px;
}

.footer-copy { font-size: 13px; line-height: 1.6; }
.footer-copy p { margin: 0; }

/* 党建工作列表 */
.list-page {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  min-height: 1882px;
  padding-top: 88px;
}

.sidebar-title {
  display: grid;
  align-self: start;
  width: 188px;
  height: 136px;
  place-items: center;
  background: var(--red);
  color: var(--on-accent);
  font-size: 28px;
  font-weight: 700;
}

.breadcrumb {
  height: 43px;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--header-border);
  font-size: 23px;
}

.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  min-height: 158px;
  border-bottom: 1px solid var(--line-soft);
}

.article-list time {
  display: flex;
  align-items: baseline;
  color: var(--date);
}

.article-list time b { font-size: 42px; }
.article-list time span { margin-left: 7px; font-size: 20px; font-weight: 700; }
.article-list a { color: var(--text-heading); font-size: 27px; font-weight: 700; line-height: 1.45; }

/* 分类列表显示模式=1：带缩略图的新闻列表。 */
.article-card-list {
  display: grid;
  gap: 24px;
}

.article-card {
  min-width: 0;
  border-bottom: 1px solid var(--line-soft);
}

.article-card > a {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  padding: 24px;
  border-radius: 6px;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.article-card > a:hover,
.article-card > a:focus-visible {
  background: var(--legacy-card-hover);
  box-shadow: 0 14px 30px var(--legacy-card-shadow);
  transform: translateY(-4px);
}

.article-card-image {
  width: 270px;
  height: 180px;
  border-radius: 4px;
  background-color: var(--image-placeholder);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 分类缩略图显示模式=1：完整显示图片，不进行裁切。 */
.article-card-image.is-contain {
  background-color: var(--surface);
  background-position: center;
  background-size: contain;
}

.article-card-content {
  min-width: 0;
  align-self: center;
}

.article-card-date {
  display: block;
  margin-bottom: 8px;
  color: var(--date);
  font-size: 16px;
  font-weight: 700;
}

.article-card h2 {
  margin: 0;
  color: var(--text-heading);
  font-size: 25px;
  line-height: 1.5;
  transition: color .2s ease;
}

.article-card p {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card > a:hover h2,
.article-card > a:focus-visible h2 { color: var(--red); }

.article-card.hidden-date .article-card-date { display: none; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 90px;
  color: var(--text-dark);
  font-size: 21px;
}

.pagination button,
.pagination a,
.pagination .current,
.pagination .disabled,
.pagination input {
  height: 48px;
  border: 1px solid var(--control-border);
  background: var(--surface);
  color: var(--text-dark);
  text-align: center;
}

.pagination button,
.pagination a,
.pagination .current,
.pagination .disabled {
  display: inline-grid;
  min-width: 47px;
  padding: 0 13px;
  place-items: center;
}

.pagination button,
.pagination a { cursor: pointer; }
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination button:disabled { color: var(--text-disabled); cursor: not-allowed; }
.pagination .disabled { color: var(--text-disabled); cursor: not-allowed; }
.pagination button.current,
.pagination .current { border-color: var(--red); background: var(--red); color: var(--on-accent); }
.pagination input { width: 48px; padding: 0 4px; }

.list-footer .friend-links { min-height: 116px; }

.empty-list {
  min-height: 360px;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: 20px;
  text-align: center;
}

/* 2026版新闻正文页。 */
.detail-page { min-height: 1200px; }

.article-detail {
  padding-bottom: 90px;
}

.article-header {
  padding: 30px 20px 28px;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.article-header h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text-heading);
  font-size: 34px;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 15px;
}

.article-meta.hidden-date .publish-date,
.article-list .hidden-date time { display: none; }
.article-list .hidden-date { grid-template-columns: minmax(0, 1fr); }

.article-body {
  max-width: 1160px;
  margin: 0 auto;
  padding: 46px 20px 0;
  overflow-x: auto;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 2;
}

.article-body img,
.article-body video,
.article-body iframe {
  max-width: 100%;
}

.article-body img {
  display: block;
  height: auto;
  margin-right: auto !important;
  margin-left: auto !important;
  float: none !important;
}

.article-body p {
  margin: 0 0 1.35em;
  text-indent: 2em;
}

.article-body figure {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.article-body a { color: var(--red); }

.article-files {
  display: grid;
  gap: 12px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line-soft);
}

.downloadfile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: var(--panel);
  font-size: 15px;
  line-height: 1.6;
}

.downloadfile a { white-space: nowrap; }

.file-image-tip {
  color: var(--text-muted);
  text-align: center;
}

.file-image-list {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.file-image-list a,
.file-image-list img {
  display: block;
  max-width: 100%;
}

.file-image-more { margin-top: 24px; text-align: center; }

.file-image-more button {
  min-height: 44px;
  padding: 8px 24px;
  border: 1px solid var(--red);
  background: var(--surface);
  color: var(--red);
  cursor: pointer;
}

.file-image-more button:hover {
  background: var(--red);
  color: var(--on-accent);
}

.article-message {
  padding: 50px 20px;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 1500px) {
  .content-shell { width: min(1280px, calc(100% - 80px)); }
  .header-inner { width: min(1250px, calc(100% - 80px)); }
  .brand-panel { flex-basis: 300px; }
  .main-nav { padding-left: 12px; }
  .main-nav a { padding-inline: 5px; font-size: clamp(15px, 1.2vw, 18px); }
  .feature-block { padding-inline: 48px; }
  .compact-block { padding-inline: 45px; }
  .footer-inner { grid-template-columns: 330px 360px 400px; }
  .footer-brand { width: 330px; }
  .footer-social { width: 400px; }
  .friend-links { gap: 32px; font-size: 20px; }
  .friend-links strong { font-size: 24px; }
}

@media (max-width: 980px) {
  .content-shell { width: calc(100% - 36px); }
  .top-rule { height: 8px; }
  .site-header { height: 96px; }
  .header-inner { align-items: center; width: 100%; height: 85px; padding: 0 18px; }
  .brand-panel {
    align-self: center;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: space-between;
    max-width: 430px;
    min-width: 0;
    height: 80px;
  }
  .brand-logo {
    width: 65%;
    height: auto;
    margin: 0;
  }
  .brand-title {
    width: 28%;
    height: auto;
    margin: 0;
  }
  .menu-toggle {
    display: grid;
    gap: 6px;
    margin-left: auto;
    padding: 12px;
    border: 0;
    background: var(--transparent);
  }
  .menu-toggle span { width: 30px; height: 3px; background: var(--red); }
  .main-nav {
    position: absolute;
    z-index: 10;
    top: 85px;
    right: 0;
    left: 0;
    display: none;
    height: auto;
    max-height: calc(100vh - 93px);
    padding: 8px 18px 18px;
    overflow-y: auto;
    background: var(--surface);
    box-shadow: 0 10px 20px var(--mobile-menu-shadow);
  }
  .main-nav.open { display: block; }
  .main-nav-list { display: block; height: auto; }
  .main-nav-list > .nav-item { border-bottom: 1px solid var(--mobile-menu-border); }
  .main-nav-list > .nav-item::after { display: none; }
  .main-nav a { justify-content: flex-start; height: 50px; padding: 0 46px 0 12px; font-size: 19px; }
  .submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px;
    transform: none;
    border: 0;
    background: var(--submenu-mobile-background);
    box-shadow: none;
  }
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu { display: none; }
  .has-submenu.open > .submenu { display: block; }
  .submenu a { height: 44px; padding: 0 20px; font-size: 16px; text-align: center; }
  .submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 5px;
    right: 4px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 0;
    background: var(--transparent);
    color: var(--red);
    cursor: pointer;
    font-size: 22px;
    transition: transform .2s ease;
  }
  .has-submenu.open > .submenu-toggle { transform: rotate(180deg); }
  .hero { height: 320px; background-size: cover; background-position: center; }
  .home-content { padding-top: 18px; }
  .feature-block, .compact-block { padding: 28px 24px 60px; }
  .section-title { gap: 14px; margin-bottom: 28px; font-size: 30px; }
  .section-title > span { width: 13px; height: 13px; }
  .feature-grid, .list-grid { grid-template-columns: 1fr; gap: 24px; }
  .news-heading a, .compact-list a { font-size: 18px; }
  .news-summary p { font-size: 16px; }
  .compact-block { min-height: 0; }
  .compact-list li { gap: 18px; }
  .compact-list time { flex-basis: 76px; }
  .more-link { right: 24px; }
  .friend-links,
  .text-links { flex-wrap: wrap; gap: 12px 24px; padding-block: 24px; font-size: 16px; }
  .home-content > .plate7 { padding: 28px 24px; }
  .friend-links strong { width: 100%; font-size: 20px; text-align: center; }
  .footer-dark { height: auto; min-height: 250px; }
  .footer-inner { grid-template-columns: 1fr; gap: 5px; padding-block: 20px; text-align: center; }
  .footer-copy { font-size: 12px; }
  .list-page { grid-template-columns: 1fr; min-height: 0; padding-top: 28px; }
  .sidebar-title { width: 140px; height: 70px; font-size: 22px; }
  .breadcrumb { font-size: 17px; }
  .article-list li { grid-template-columns: 120px 1fr; min-height: 110px; }
  .article-list time b { font-size: 28px; }
  .article-list time span { font-size: 15px; }
  .article-list a { font-size: 19px; }
  .article-card > a { grid-template-columns: 220px minmax(0, 1fr); gap: 24px; padding: 18px; }
  .article-card-image { width: 220px; height: 147px; }
  .article-card h2 { font-size: 21px; }
  .article-card p { margin-top: 8px; font-size: 15px; -webkit-line-clamp: 2; }
  .pagination { flex-wrap: wrap; margin: 45px 0; font-size: 16px; }
  .pagination button,
  .pagination a,
  .pagination .current,
  .pagination .disabled,
  .pagination input { height: 40px; }

  .article-header { padding-inline: 0; }
  .article-header h1 { font-size: 26px; }
  .article-body { padding: 32px 0 0; font-size: 17px; }
  .downloadfile { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 560px) {
  .hero {
    display: grid;
    height: 205px;
    padding: 24px;
    place-items: center;
    background-image:
      linear-gradient(145deg, var(--hero-shine-clear) 35%, var(--hero-shine) 48%, var(--hero-shine-clear) 55%),
      linear-gradient(120deg, var(--hero-gradient-start), var(--hero-gradient-center) 48%, var(--hero-gradient-end));
  }
/*兼容手机版，暂时不把无障碍内容显示出来
  .hero .visually-hidden {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    color: var(--hero-mobile-text);
    font-size: 37px;
    line-height: 1.28;
    text-align: center;
    white-space: normal !important;
  }*/
  .news-heading a { width: 100%; max-width: 100%; }
  .news-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .compact-list a { white-space: normal; }
  .article-list li { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .article-list time b { font-size: 24px; }
  .article-card-list { gap: 18px; }
  .article-card > a { grid-template-columns: 1fr; gap: 16px; padding: 14px; }
  .article-card-image { width: 100%; height: auto; aspect-ratio: 3 / 2; }
  .article-card h2 { font-size: 20px; }
}

/* dept2026 对旧模块1–4的兼容外观；旧版 dept.asp 不会加载本段样式。 */
.dept2026-page .plate1,
.dept2026-page .plate2,
.dept2026-page .plate3,
.dept2026-page .plate4 {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 38px 52px 60px;
  overflow: hidden;
  background: var(--panel);
}

.dept2026-page .plate1-1,
.dept2026-page .plate2-1,
.dept2026-page .plate3-1,
.dept2026-page .plate4-1 {
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
}

.dept2026-page .plate1 a,
.dept2026-page .plate2 a,
.dept2026-page .plate3 a,
.dept2026-page .plate4 a {
  color: inherit;
  text-decoration: none;
}

.dept2026-page .plate1 .font2,
.dept2026-page .plate2 .font2,
.dept2026-page .plate3 .font2,
.dept2026-page .plate4 .font2 {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--section-title);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.dept2026-page .plate1 .font2::before,
.dept2026-page .plate2 .font2::before,
.dept2026-page .plate3 .font2::before,
.dept2026-page .plate4 .font2::before {
  content: "";
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  background: var(--red);
}

.dept2026-page .font2.long,
.dept2026-page .font3.long,
.dept2026-page .font3.long2 {
  height: auto;
  font-size: inherit;
  line-height: inherit;
}

.dept2026-page .plate1 .font3,
.dept2026-page .plate2 .font3,
.dept2026-page .plate3 .font3,
.dept2026-page .plate4 .font3 {
  margin: 8px 0 0 27px;
  overflow: hidden;
  color: var(--text-legacy-subtitle);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dept2026-page .list-top {
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: var(--line-dashed);
}

.dept2026-page .font-B {
  margin-top: 18px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.dept2026-page .font1,
.dept2026-page .list-font1 {
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.7;
}

.dept2026-page .list-font1 {
  height: auto;
  margin-top: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.dept2026-page .font-data {
  width: auto;
  float: none;
  color: var(--date);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.dept2026-page .listmore {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: auto;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  text-align: right;
}

.dept2026-page .listmore:hover,
.dept2026-page .btn a:hover,
.dept2026-page .btn2 a:hover { color: var(--red); }

/* 旧模块1：三分类新闻块。 */
.dept2026-page .plate1-1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dept2026-page .plate1-1 > .list1 {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 390px;
  height: auto;
  padding: 28px 26px 66px;
  margin: 0;
  float: none;
  background: var(--surface);
}

.dept2026-page .plate1-1 > div:not(:first-child) { margin-left: 0; }
.dept2026-page .plate1-1 > img { display: none; }
.dept2026-page .plate1 .list1 > a { display: block; }
.dept2026-page .plate1 .list1 > a > .font-data { margin-top: 12px; }

.dept2026-page .plate1 .list1 > a,
.dept2026-page .plate1 .list-mid > a {
  position: relative;
  transition: color .2s ease, transform .2s ease;
}

.dept2026-page .plate1 .list1 > a::before,
.dept2026-page .plate1 .list-mid > a::before {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: -10px;
  width: 3px;
  border-radius: 3px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.dept2026-page .plate1 .list1 > a:hover,
.dept2026-page .plate1 .list1 > a:focus-visible,
.dept2026-page .plate1 .list-mid > a:hover,
.dept2026-page .plate1 .list-mid > a:focus-visible {
  color: var(--red);
  transform: translateX(4px);
}

.dept2026-page .plate1 .list1 > a:hover::before,
.dept2026-page .plate1 .list1 > a:focus-visible::before,
.dept2026-page .plate1 .list-mid > a:hover::before,
.dept2026-page .plate1 .list-mid > a:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.dept2026-page .plate1 .list-mid {
  width: 100%;
  height: auto;
  padding-bottom: 13px;
  margin-top: 18px;
  border-bottom: 1px dashed var(--line-dashed);
}

.dept2026-page .plate1 .list-mid > a,
.dept2026-page .plate1 a > .list-mid {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dept2026-page .plate1 .list-font2 {
  flex: 1;
  width: auto;
  height: auto;
  float: none;
  overflow: hidden;
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s ease;
}

.dept2026-page .plate1 .font-B { transition: color .2s ease; }

.dept2026-page .plate1 .list1 > a:hover .font-B,
.dept2026-page .plate1 .list1 > a:hover .list-font2,
.dept2026-page .plate1 .list1 > a:focus-visible .font-B,
.dept2026-page .plate1 .list1 > a:focus-visible .list-font2,
.dept2026-page .plate1 .list-mid > a:hover .list-font2,
.dept2026-page .plate1 .list-mid > a:focus-visible .list-font2 { color: var(--red); }

.dept2026-page .plate1 .photo {
  height: 90px;
  overflow: hidden;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
}

.dept2026-page .plate1 .photo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: auto !important;
}

.dept2026-page .plate1 .photo-row > .photo {
  float: none !important;
  margin-left: 0 !important;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .dept2026-page .plate1 .photo-row { justify-content: center; }
}

/* 旧模块2与4：卡片列表。 */
.dept2026-page .plate2-1 > div:first-child,
.dept2026-page .plate3-1 > div:first-child,
.dept2026-page .plate4-1 > div:first-child { display: none; }

.dept2026-page .plate2 .list1.list2,
.dept2026-page .plate4 .list1.list2 {
  display: grid;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 30px 0 0;
  float: none;
  gap: 24px;
}

.dept2026-page .plate2 .list1.list2 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dept2026-page .plate4 .list1.list2 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dept2026-page .plate2 .div_child,
.dept2026-page .plate4 .div_child {
  display: block;
  width: auto;
  min-width: 0;
  min-height: 175px;
  padding: 24px 24px 54px;
  margin: 0;
  position: relative;
  background: var(--surface);
}

.dept2026-page .plate2 .div_child {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.dept2026-page .plate2 .div_child:hover,
.dept2026-page .plate2 .div_child:focus-within {
  z-index: 1;
  background: var(--legacy-card-hover);
  box-shadow: 0 14px 30px var(--legacy-card-shadow);
  transform: translateY(-6px);
}

.dept2026-page .plate2 .div_child .font-B { transition: color .2s ease; }

.dept2026-page .plate2 .div_child:hover .font-B,
.dept2026-page .plate2 .div_child:focus-within .font-B { color: var(--red); }

.dept2026-page .plate2 .div_child .font-B,
.dept2026-page .plate4 .div_child .font-B,
.dept2026-page .plate2 .div_child .list-font1,
.dept2026-page .plate4 .div_child .list-font1 {
  width: 100%;
  margin-inline: 0;
}

.dept2026-page .plate2 .div_child .font-B,
.dept2026-page .plate4 .div_child .font-B { margin-top: 0; }

.dept2026-page .space,
.dept2026-page .spaceEnd { display: none; }

.dept2026-page .btn,
.dept2026-page .btn2 {
  width: auto;
  height: auto;
  clear: both;
  margin: 28px auto 0;
  line-height: 1;
  text-align: center;
}

.dept2026-page .btn2 {
  position: absolute;
  right: 24px;
  bottom: 20px;
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.dept2026-page .btn a,
.dept2026-page .btn2 a {
  display: inline-flex;
  min-height: 38px;
  padding: 9px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--legacy-button-border);
  background: var(--surface);
  color: var(--text-legacy-button);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.dept2026-page .btn a:hover,
.dept2026-page .btn2 a:hover {
  border-color: var(--red);
  background: var(--legacy-button-hover);
}

/* 旧模块3：作品图片轮播。 */
.dept2026-page .modleft_move,
.dept2026-page .modleft_move2 {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.dept2026-page .modleft_move > li,
.dept2026-page .modleft_move2 > li { display: none; }

.dept2026-page .modleft_move > li.show {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.dept2026-page .plate3 .list1 {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 22px;
  margin: 0;
  float: none;
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}

.dept2026-page .plate3 .list1:hover,
.dept2026-page .plate3 .list1:focus-within {
  z-index: 1;
  box-shadow: 0 14px 30px var(--legacy-card-shadow);
  transform: translateY(-6px);
}

.dept2026-page .plate3 .photo,
.dept2026-page .plate3 .photo .box {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--image-placeholder);
  line-height: normal;
}

.dept2026-page .plate3 .photo img,
.dept2026-page .plate3 .photo .box img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
  transition: transform .4s ease;
}

.dept2026-page .plate3 .list1:hover .photo img,
.dept2026-page .plate3 .list1:focus-within .photo img { transform: scale(1.045); }

.dept2026-page .plate3 .font-B {
  text-align: center;
  transition: color .2s ease;
}

.dept2026-page .plate3 .list1:hover .font-B,
.dept2026-page .plate3 .list1:focus-within .font-B { color: var(--red); }

@media (prefers-reduced-motion: reduce) {
  .article-card > a,
  .article-card h2,
  .dept2026-page .plate1 .list1 > a,
  .dept2026-page .plate1 .list-mid > a,
  .dept2026-page .plate1 .list1 > a::before,
  .dept2026-page .plate1 .list-mid > a::before,
  .dept2026-page .plate1 .font-B,
  .dept2026-page .plate1 .list-font2,
  .dept2026-page .plate2 .div_child,
  .dept2026-page .plate2 .div_child .font-B,
  .dept2026-page .plate3 .list1,
  .dept2026-page .plate3 .photo img,
  .dept2026-page .plate3 .font-B { transition: none; }

  .article-card > a:hover,
  .article-card > a:focus-visible,
  .dept2026-page .plate1 .list1 > a:hover,
  .dept2026-page .plate1 .list1 > a:focus-visible,
  .dept2026-page .plate1 .list-mid > a:hover,
  .dept2026-page .plate1 .list-mid > a:focus-visible,
  .dept2026-page .plate2 .div_child:hover,
  .dept2026-page .plate2 .div_child:focus-within,
  .dept2026-page .plate3 .list1:hover,
  .dept2026-page .plate3 .list1:focus-within,
  .dept2026-page .plate3 .list1:hover .photo img,
  .dept2026-page .plate3 .list1:focus-within .photo img { transform: none; }
}

.dept2026-page .pot {
  display: flex;
  width: auto;
  height: auto;
  padding: 0;
  margin: 24px 0 0;
  justify-content: center;
  gap: 9px;
  list-style: none;
}

.dept2026-page .pot li {
  width: 9px;
  height: 9px;
  margin: 0;
  float: none;
  border-radius: 50%;
  background: var(--carousel-dot);
}

.dept2026-page .pot li.current { background: var(--red); }
.dept2026-page .modleft_move2 { display: none; }

@media (max-width: 1300px) {
  .dept2026-page .plate4 .list1.list2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .dept2026-page .modleft_move { display: none !important; }
  .dept2026-page .modleft_move2 { display: block !important; }
  .dept2026-page .modleft_move2 > li.show { display: block; }
  .dept2026-page .plate3 .list1 { max-width: 720px; margin-inline: auto; }
  .dept2026-page .pot { display: none; }
}

@media (max-width: 980px) {
  .dept2026-page .plate1,
  .dept2026-page .plate2,
  .dept2026-page .plate3,
  .dept2026-page .plate4 { padding: 28px 24px 50px; }

  .dept2026-page .plate1-1,
  .dept2026-page .plate2 .list1.list2,
  .dept2026-page .plate4 .list1.list2 { grid-template-columns: 1fr; }

  .dept2026-page .plate1-1 > .list1 { min-height: 0; padding-bottom: 62px; }
  .dept2026-page .plate2 .div_child,
  .dept2026-page .plate4 .div_child { min-height: 0; }
  .dept2026-page .plate1 .font2,
  .dept2026-page .plate2 .font2,
  .dept2026-page .plate3 .font2,
  .dept2026-page .plate4 .font2 { font-size: 26px; }
}

@media (max-width: 560px) {
  .dept2026-page .plate1,
  .dept2026-page .plate2,
  .dept2026-page .plate3,
  .dept2026-page .plate4 { padding-inline: 18px; }
  .dept2026-page .plate3 .list1 { padding: 14px; }
}
