/* ============================================================
   YNADA - 云南省替代种植发展行业协会
   Production Stylesheet
   Design: 庄重大气 · 生态绿色 · 现代简约
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
  --color-primary:    #1B7A3D;
  --color-primary-dk: #145C2E;
  --color-primary-lt: #E8F5E9;
  --color-gold:       #D4A843;
  --color-party-red:  #C41E24;
  --color-dark:       #1a1a2e;
  --color-text:       #333333;
  --color-text-lt:    #666666;
  --color-border:     #e0e0e0;
  --color-bg:         #f8f9fa;
  --color-white:      #ffffff;

  --ff-base: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;

  --shadow-sm:  0 1px  3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.12);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --transition: .3s ease;
  --container:  1200px;
  --header-h:   90px;
}

/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-base);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-primary); }

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--color-dark);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: .5rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-lt);
  font-size: .9375rem;
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: .75rem auto 0;
  border-radius: 2px;
}

section { padding: 70px 0; }

/* ============================================================
   2. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,.7);
  font-size: .8125rem;
  line-height: 1;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__honors {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  white-space: nowrap;
}

.top-bar__honors-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.8);
}

.top-bar__honors-item i {
  color: var(--color-gold);
  font-size: .75rem;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.top-bar__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.top-bar__search-input {
  width: 120px;
  padding: 5px 10px;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: .8125rem;
  outline: none;
}

.top-bar__search-input::placeholder {
  color: rgba(255,255,255,.5);
}

.top-bar__search-input:focus {
  width: 160px;
}

.top-bar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: none;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.top-bar__search-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  cursor: default;
  transition: border-color var(--transition);
}

.top-bar__lang a,
.top-bar__lang-item {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  font-size: .8125rem;
}

.top-bar__lang a.active,
.top-bar__lang-item.is-active {
  color: var(--color-white);
}

.top-bar__lang-item.is-disabled {
  color: rgba(255,255,255,.42);
  cursor: default;
  user-select: none;
}

.top-bar__lang-divider {
  color: rgba(255,255,255,.3);
}

.top-bar__lang:hover {
  border-color: rgba(255,255,255,.5);
}

.top-bar a:hover { color: var(--color-white); }

/* ============================================================
   3. SITE HEADER
   ============================================================ */
.site-header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(26, 77, 46, .06);
  transition: box-shadow .25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(26, 77, 46, .55) 100%);
  pointer-events: none;
}

.site-header--scrolled {
  box-shadow: 0 6px 24px rgba(20, 40, 28, .08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  min-width: 0;
}

.site-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.site-header__cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 8px 18px;
  font-size: .8125rem;
  letter-spacing: .04em;
}

/* 桌面端导航已够满，入会入口保留 Hero/移动菜单，避免挤压 Logo */
@media (min-width: 768px) {
  .site-header__cta {
    display: none;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  max-width: min(520px, 48%);
  min-width: 0;
  padding: 0 12px 0 8px;
  position: relative;
  z-index: 3;
  background: var(--color-white);
}

.site-header__logo img {
  height: 56px;
  width: auto;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}

.site-header__logo-text .zh {
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary-dk);
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.site-header__logo-text .en {
  font-size: .625rem;
  color: var(--color-text-lt);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: normal;
  overflow: visible;
  line-height: 1.3;
  max-width: 100%;
}

/* ============================================================
   4. MAIN NAV
   ============================================================ */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.main-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-end;
  max-width: 100%;
}

.main-nav__item {
  position: relative;
  flex-shrink: 1;
  min-width: 0;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 11px;
  height: var(--header-h);
  font-size: .875rem;
  font-weight: var(--fw-medium);
  color: #444;
  position: relative;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.main-nav__item--has-child > .main-nav__link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .45;
  position: static;
  transform: none;
  background: none;
  border-radius: 0;
  transition: opacity .2s ease;
}

.main-nav__item--has-child:hover > .main-nav__link::after {
  opacity: .85;
}

.main-nav__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 12px);
  height: 2px;
  background: var(--color-primary);
  transition: transform .25s ease;
}

.main-nav__item:hover .main-nav__link,
.main-nav__item--active .main-nav__link {
  color: var(--color-primary);
}

.main-nav__item--active .main-nav__link {
  background: rgba(26, 77, 46, .05);
}

.main-nav__item:hover .main-nav__link::before,
.main-nav__item--active .main-nav__link::before {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.main-nav__dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 188px;
  background: var(--color-white);
  border: 1px solid rgba(26, 77, 46, .1);
  border-top: 2px solid var(--color-primary);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 28px rgba(20, 40, 28, .12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.main-nav__item:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: .875rem;
  color: #444;
  border-left: 2px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.main-nav__dropdown a:hover {
  background: rgba(26, 77, 46, .05);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

@media (max-width: 1200px) {
  .main-nav__link { padding: 0 8px; font-size: .8125rem; }
  .site-header__logo { max-width: min(440px, 42%); gap: 10px; }
  .site-header__logo img { height: 50px; }
  .site-header__logo-text .zh { font-size: 1.15rem; }
  .site-header__logo-text .en { font-size: .5625rem; letter-spacing: .01em; }
}

/* ============================================================
   5. MOBILE MENU
   ============================================================ */
.mobile-menu__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu__toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu__toggle--active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu__toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu-overlay--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--color-white);
  z-index: 1060;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 70px 0 30px;
}

.mobile-menu--active {
  transform: translateX(0);
}

.mobile-menu__item { border-bottom: 1px solid var(--color-border); }

.mobile-menu__link {
  display: block;
  padding: 14px 24px;
  font-size: .9375rem;
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

.mobile-menu__link:hover,
.mobile-menu__item--active .mobile-menu__link {
  color: var(--color-primary);
  background: var(--color-primary-lt);
}

.mobile-menu__sub {
  background: var(--color-bg);
}

.mobile-menu__sub a {
  display: block;
  padding: 10px 24px 10px 40px;
  font-size: .875rem;
  color: var(--color-text-lt);
}

.mobile-menu__sub a:hover { color: var(--color-primary); }

/* ============================================================
   6. HERO BANNER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease, z-index 0s .8s;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
  transition: opacity .8s ease;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.4) 0%,
    rgba(0,0,0,.2) 50%,
    rgba(0,0,0,.05) 100%
  );
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--color-white);
  pointer-events: none;
}

.hero__content .container {
  width: 100%;
}

.hero__inner {
  max-width: 920px;
  padding: 8px 0 8px 28px;
  border-left: 3px solid rgba(201, 169, 98, .88);
  pointer-events: auto;
}

.hero__badge {
  display: inline-block;
  background: rgba(27,122,61,.85);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .8125rem;
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero__title {
  font-size: clamp(1.875rem, 2.15vw + .6rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 18px;
  max-width: 100%;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  white-space: nowrap;
}

.hero__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
  opacity: .92;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(12, 28, 18, .35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  backdrop-filter: blur(4px);
}

.hero__nav:hover {
  background: rgba(26, 77, 46, .75);
  border-color: rgba(255,255,255,.55);
}

.hero__nav--prev { left: 24px; }
.hero__nav--next { right: 24px; }

.hero__status {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  pointer-events: none;
}

.hero__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 6px 12px;
  font-size: .8125rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  color: rgba(255,255,255,.88);
  background: rgba(12, 28, 18, .42);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.hero__counter-current {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

.hero__counter-sep {
  opacity: .55;
  margin: 0 2px;
}

.hero__indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__indicator {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,.4);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.hero__indicator.active {
  width: 48px;
  background: var(--color-white);
}

/* ===== Hero Animations ===== */

/* Background zoom effect */
@keyframes hero-bg-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__slide.active .hero__bg {
  animation: hero-bg-zoom 6s ease-out forwards;
}

/* Content fade-in animations */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__slide .hero__badge,
.hero__slide .hero__title,
.hero__slide .hero__desc,
.hero__slide .hero__actions {
  opacity: 0;
}

.hero__slide.active .hero__inner .hero__badge {
  animation: hero-fade-up .6s ease-out .2s forwards;
}

.hero__slide.active .hero__inner .hero__title {
  animation: hero-fade-up .6s ease-out .35s forwards;
}

.hero__slide.active .hero__inner .hero__desc {
  animation: hero-fade-up .6s ease-out .5s forwards;
}

.hero__slide.active .hero__inner .hero__actions {
  animation: hero-fade-up .6s ease-out .65s forwards;
}

/* Auto-play progress bar on active indicator */
@keyframes hero-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero__indicator.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  transform-origin: left;
  animation: hero-progress 5s linear forwards;
}

/* ============================================================
   7. STATS SECTION - 浮动白色卡片
   ============================================================ */
.stats {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding: 0;
  background: transparent;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 20px;
}

.stats__item {
  padding: 10px 20px;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--color-border);
}

.stats__number {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--color-primary);
}

.stats__number span {
  font-size: 1.25rem;
  font-weight: var(--fw-medium);
  margin-left: 2px;
  color: var(--color-primary);
}

.stats__label {
  font-size: .875rem;
  color: var(--color-text-lt);
  margin-top: 6px;
}

/* ============================================================
   8. ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 70% 55% at 12% 20%, rgba(27, 122, 61, .06), transparent 60%),
    linear-gradient(180deg, #f5f8f5 0%, #fff 42%, #fff 100%);
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: start;
}

.about__portrait {
  margin: 0;
}

.about__portrait-frame {
  position: relative;
  padding: 10px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #fff 0%, #f3f6f3 100%);
  box-shadow:
    0 1px 0 rgba(27, 122, 61, .08),
    0 18px 40px rgba(20, 50, 30, .1);
  overflow: hidden;
}

.about__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(27, 122, 61, .14);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.about__portrait-frame::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  z-index: 2;
  pointer-events: none;
}

.about__portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.about__portrait-frame:hover img {
  transform: scale(1.015);
  filter: saturate(1.05) contrast(1.03);
}

.about__portrait-zoom {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 0;
  border-radius: 2px;
  background: rgba(15, 35, 22, .72);
  color: #fff;
  font: inherit;
  font-size: .75rem;
  letter-spacing: .04em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}

.about__portrait-frame:hover .about__portrait-zoom,
.about__portrait-frame:focus-within .about__portrait-zoom {
  opacity: 1;
  transform: translateY(0);
}

.about__portrait-zoom:hover {
  background: rgba(27, 122, 61, .92);
}

.about__portrait-cap {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-left: 2px;
}

.about__portrait-label {
  color: var(--color-primary);
  font-size: .6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: .18em;
}

.about__portrait-title {
  color: var(--color-text);
  font-size: .9375rem;
  font-weight: var(--fw-bold);
  line-height: 1.45;
}

.about__portrait-meta {
  color: var(--color-text-lt);
  font-size: .8125rem;
  font-style: normal;
  letter-spacing: .02em;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #eef2ef;
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .6s ease;
}

.about__image:hover img { transform: scale(1.03); }

.about__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

.about__text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--color-text-lt);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  text-indent: 2em;
}

.about-lightbox {
  width: min(1480px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 24px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #0f2316;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  overflow: hidden;
}

.about-lightbox::backdrop {
  background: rgba(8, 18, 12, .72);
  backdrop-filter: blur(4px);
}

.about-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.about-lightbox__cap {
  margin: 0;
  font-size: .875rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

.about-lightbox__cap span {
  display: inline-block;
  margin-left: 10px;
  color: rgba(255, 255, 255, .62);
  font-weight: var(--fw-regular);
  font-size: .8125rem;
}

.about-lightbox__tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.about-lightbox__tool,
.about-lightbox__close {
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .8125rem;
  cursor: pointer;
}

.about-lightbox__tool:hover,
.about-lightbox__close:hover {
  background: rgba(255, 255, 255, .1);
}

.about-lightbox__tool.is-active {
  border-color: rgba(212, 168, 67, .7);
  background: rgba(212, 168, 67, .18);
}

.about-lightbox__body {
  padding: 12px;
  overflow: auto;
  max-height: calc(100vh - 92px);
  overscroll-behavior: contain;
}

.about-lightbox__body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  image-rendering: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.about-lightbox.is-native .about-lightbox__body img {
  width: auto;
  max-width: none;
  cursor: grab;
}

.about-lightbox.is-native .about-lightbox__body.is-dragging img {
  cursor: grabbing;
}

.about__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.about__highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-primary-lt);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: .8125rem;
  font-weight: var(--fw-medium);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 1.75rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--color-text);
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* ============================================================
   9. NEWS SECTION - 新闻动态（左右布局）
   ============================================================ */
.news { 
  background:
    linear-gradient(180deg, rgba(246, 248, 246, .95) 0%, #fff 72%),
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(26, 77, 46, .04), transparent 55%);
  padding: 80px 0 90px;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 2.25rem;
  text-align: left;
}

.news__header-text {
  min-width: 0;
}

.news__header .section-title {
  margin-bottom: .4rem;
}

.news__header .section-title::before {
  content: "NEWS CENTER";
  display: block;
  font-size: .75rem;
  color: var(--color-text-lt);
  letter-spacing: 2px;
  margin-bottom: .5rem;
  font-weight: var(--fw-regular);
}

.news__header-desc {
  margin: 0;
  font-size: .9375rem;
  color: #888;
  line-height: 1.5;
}

.news__header-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  font-size: .875rem;
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, gap .25s ease;
}

.news__header-more:hover {
  border-bottom-color: var(--color-primary);
  gap: 10px;
}

.news__header-more span {
  transition: transform .25s ease;
}

/* 新闻中心标题下方：首页头条新闻文字条（报头主视觉） */
.news-headlines {
  position: relative;
  margin: .25rem 0 2rem;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(196, 30, 36, .06) 0%, transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #f5f9f6 48%, #eef5f0 100%);
  border: 1px solid rgba(26, 77, 46, .1);
  border-left: 5px solid var(--color-party-red);
  box-shadow: 0 12px 36px rgba(20, 40, 28, .08);
}

.news-headlines::before {
  content: 'HEADLINE';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-52%);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  color: rgba(27, 122, 61, .06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.news-headlines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-party-red) 0%, var(--color-gold) 42%, transparent 88%);
  opacity: .85;
}

.news-headlines__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 22px 28px 22px 22px;
}

.news-headlines__badge {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 8px 12px;
  background: linear-gradient(160deg, #d6282e 0%, #a0181c 100%);
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.2;
  text-indent: .28em;
  box-shadow: 0 8px 18px rgba(196, 30, 36, .28);
}

.news-headlines__viewport {
  flex: 1;
  min-width: 0;
  height: 52px;
  overflow: hidden;
  position: relative;
}

.news-headlines__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

.news-headlines__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease, visibility .5s ease;
}

.news-headlines__item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

.news-headlines__link {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  width: 100%;
  color: var(--color-dark);
  text-decoration: none;
}

.news-headlines__link:hover .news-headlines__title {
  color: var(--color-primary);
}

.news-headlines__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 3.25rem;
  padding-right: 16px;
  border-right: 1px solid rgba(184, 146, 58, .35);
  font-size: 1rem;
  letter-spacing: .06em;
  color: #b8923a;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.15;
}

.news-headlines__title {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .02em;
  transition: color .25s ease;
}

.news-headlines__actions {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
}

.news-headlines__nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 77, 46, .2);
  background: rgba(255, 255, 255, .85);
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20, 40, 28, .06);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}

.news-headlines__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.news-headlines__empty {
  margin: 0;
  font-size: .875rem;
  color: #888;
}

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

/* 左侧焦点新闻轮播 */
.news__focus {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 12px;
}

.news__focus-slider {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  flex: 1;
  aspect-ratio: 4 / 3;
  min-height: 580px;
  box-shadow: 0 12px 36px rgba(20, 40, 28, .14);
  background: #e8ebe8;
}

.news__focus-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.news__focus-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.news__focus-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  background: #e8e8e8;
}

.news__focus-slide.active img {
  transform: scale(1.06);
}

.news__focus-slide .news__focus-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 72px 28px 36px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 22, 14, .35) 28%, rgba(8, 22, 14, .88) 100%);
  color: var(--color-white);
  z-index: 2;
}

.news__focus-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 12;
  display: flex;
  gap: 8px;
}

.news__focus-nav {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 2px;
  background: rgba(8, 22, 14, .45);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}

.news__focus-nav:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}

.news__focus-dots {
  position: absolute;
  bottom: 14px;
  left: 28px;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  z-index: 10;
}

.news__focus-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}

.news__focus-dot:hover {
  background: rgba(255,255,255,.85);
}

.news__focus-dot.active {
  background: #d4a843;
  width: 22px;
  border-radius: 3px;
}

.news__focus-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.18);
  z-index: 11;
  overflow: hidden;
}

.news__focus-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #d4a843, #f0d48a);
  transform-origin: left center;
}

.news__focus-slider.is-playing .news__focus-progress span {
  animation: newsFocusProgress 4s linear forwards;
}

@keyframes newsFocusProgress {
  from { width: 0; }
  to { width: 100%; }
}

.news__focus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c41e24 0%, #a0181c 100%);
  color: var(--color-white);
  font-size: .6875rem;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 0;
  margin-bottom: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(160, 24, 28, .35);
}

.news__focus-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd27a;
  box-shadow: 0 0 0 3px rgba(255, 210, 122, .28);
}

.news__focus-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  margin: 0;
}

.news__focus-excerpt {
  margin: 10px 0 0;
  font-size: .875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 92%;
}

.news__focus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-right: 8px;
}

.news__focus-date {
  display: inline-block;
  font-size: .75rem;
  opacity: .85;
  letter-spacing: .04em;
}

.news__focus-cta {
  font-size: .8125rem;
  font-weight: 600;
  color: #f0d48a;
  white-space: nowrap;
}

.news__focus-slide:hover .news__focus-cta {
  color: #fff;
}

/* 右侧新闻列表区域 */
.news__list-section {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 77, 46, .08);
  box-shadow: 0 10px 32px rgba(20, 40, 28, .05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #ebebeb;
  padding: 0 8px 0 20px;
  background: linear-gradient(180deg, #fafbfa 0%, #fff 100%);
}

.news__tab {
  padding: 18px 18px 16px;
  font-size: .9375rem;
  font-weight: var(--fw-medium);
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.news__tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.news__tab:hover {
  color: var(--color-primary);
}

.news__tab.active {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.news__tab.active::after {
  transform: scaleX(1);
}

.news__panels {
  flex: 1;
  padding: 8px 24px 20px;
  /* 各面板叠在同一格，高度取最高 Tab，切换时右侧也不跳动 */
  display: grid;
}

.news__panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.news__panel.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.news__empty {
  margin: 28px 0 8px;
  padding: 12px 0;
  text-align: center;
  color: #999;
  font-size: .875rem;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news__item {
  border-bottom: 1px solid #f0f0f0;
}

.news__item:last-child { border-bottom: none; }

.news__item--featured {
  border-bottom-color: rgba(26, 77, 46, .14);
  background: linear-gradient(90deg, rgba(26, 77, 46, .045) 0%, transparent 68%);
}

.news__item--featured .news__link {
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.news__item--featured .news__date-d {
  font-size: 1.5rem;
}

.news__item--featured .news__item-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: #1a1a1a;
  line-height: 1.5;
}

.news__item-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  font-size: .6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--color-primary);
  background: rgba(26, 77, 46, .1);
  vertical-align: 0.08em;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  transition: background .2s ease;
  position: relative;
  border-radius: 2px;
}

.news__link:hover {
  background: rgba(26, 77, 46, .03);
}

.news__date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  line-height: 1;
  border-right: 1px solid #e8ebe8;
  padding-right: 14px;
}

.news__date-d {
  display: block;
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.news__date-m {
  display: block;
  margin-top: 6px;
  font-size: .6875rem;
  color: #999;
  letter-spacing: .04em;
}

.news__info {
  flex: 1;
  min-width: 0;
}

.news__item-title {
  font-size: .96875rem;
  font-weight: var(--fw-medium);
  color: #2a2a2a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
  line-height: 1.55;
  margin: 0;
}

.news__item-desc {
  display: none;
}

.news__item-date {
  display: none;
}

.news__link:hover .news__item-title {
  color: var(--color-primary);
}

.news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 24px;
  font-size: .875rem;
  color: #666;
  font-weight: var(--fw-medium);
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .3s ease;
  background: transparent;
}

.news__more:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.news__more span {
  transition: transform .3s ease;
}

.news__more:hover span {
  transform: translateX(4px);
}

/* ============================================================
   10. PARTY BUILDING - 党建引领（深绿色背景）
   ============================================================ */
/* ── 党建板块：经典高级党建红 ── */
.party {
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.28) 100%),
    linear-gradient(135deg, #480808 0%, #7C1212 28%, #961A1A 52%, #7D1111 78%, #4E0A0A 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 88px 0 92px;
}

/* 内光晕——增加板块纵深感 */
.party::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 42%, rgba(170,30,30,.22) 0%, transparent 65%);
  pointer-events: none;
}

/* 右下角装饰性暗纹 */
.party::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.03);
  pointer-events: none;
}

.party .container {
  position: relative;
  z-index: 1;
}

/* 党徽：绝对定位左上角，与右下角暗纹圆环形成对角呼应 */
.party__emblem-img {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 280px;
  height: auto;
  opacity: .2;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.party__header {
  text-align: center;
  margin-bottom: 3rem;
}

.party__header .section-title {
  color: var(--color-white);
  font-size: 2rem;
}

.party__header::before {
  content: "PARTY BUILDING";
  display: block;
  font-size: .75rem;
  color: rgba(255,220,180,.55);
  letter-spacing: 3px;
  margin-bottom: .85rem;
  font-weight: 400;
}

.party__header .section-title::before {
  content: none;
}

.party__header .section-title::after {
  background: rgba(255,215,0,.55);
  margin-left: auto;
  margin-right: auto;
}

.party__subtitle {
  color: rgba(255,210,210,.75);
  font-size: 1rem;
  margin: .85rem auto 0;
  line-height: 1.75;
  max-width: 720px;
}

.party__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.party__card {
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,200,200,.15);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.party__card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,215,0,.28);
  box-shadow: 0 14px 36px rgba(0,0,0,.2);
}

.party__card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.party__card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

.party__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.party__card-img-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.32) 100%);
}

.party__card:hover .party__card-img img {
  transform: scale(1.06);
}

.party__card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.party__card-date {
  font-size: .8125rem;
  color: rgba(255,215,0,.78);
  margin-bottom: 12px;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

.party__card-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}

.party__card-desc {
  font-size: .875rem;
  color: rgba(255,210,210,.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.65;
  margin-top: auto;
}

.party__more-wrap {
  text-align: center;
  margin-top: 40px;
}

.party__more-wrap .btn {
  min-width: 200px;
  padding: 12px 32px;
  letter-spacing: .06em;
}

/* ============================================================
   11. ALTERNATIVE DEVELOPMENT - 替代发展（图片卡片）
   ============================================================ */
.alt-dev {
  background: linear-gradient(150deg, #0d3320 0%, #145C2E 55%, #1a6b35 100%);
  position: relative;
  overflow: hidden;
}

.alt-dev::before,
.alt-dev::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.alt-dev::before {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -200px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
}

.alt-dev::after {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
}

.alt-dev__header {
  text-align: center;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 1;
}

.alt-dev__header .section-title {
  color: var(--color-white);
}

.alt-dev__header .section-title::before {
  content: "ALTERNATIVE DEVELOPMENT";
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .15em;
  font-weight: var(--fw-regular);
  margin-bottom: .4rem;
}

.alt-dev__header .section-title::after {
  background: rgba(255,255,255,.35);
}

.alt-dev__subtitle {
  color: rgba(255,255,255,.72);
  font-size: .9375rem;
  margin: .75rem auto 0;
  max-width: 36rem;
  line-height: 1.7;
}

.alt-dev__more {
  display: inline-flex;
  margin-top: 1.1rem;
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.alt-dev__more:hover {
  color: #fff;
  border-color: rgba(255,255,255,.75);
}

.alt-dev__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
  counter-reset: alt-dev-num;
}

.alt-dev__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  min-height: 300px;
  counter-increment: alt-dev-num;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transition: transform .35s ease, box-shadow .35s ease;
}

.alt-dev__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}

.alt-dev__card-media,
.alt-dev__card-media-bg {
  position: absolute;
  inset: 0;
}

.alt-dev__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.alt-dev__card:hover .alt-dev__card-media img {
  transform: scale(1.05);
}

.alt-dev__card-media-bg {
  background: linear-gradient(145deg, #0d3320 0%, #1B7A3D 100%);
}

.alt-dev__card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 16, .15) 0%, rgba(8, 28, 16, .2) 38%, rgba(8, 28, 16, .88) 100%);
  transition: background .35s ease;
}

.alt-dev__card:hover .alt-dev__card-shade {
  background:
    linear-gradient(180deg, rgba(8, 28, 16, .2) 0%, rgba(8, 28, 16, .28) 35%, rgba(8, 28, 16, .92) 100%);
}

.alt-dev__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 20px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alt-dev__card-index {
  display: block;
  margin-bottom: 10px;
  font-size: .75rem;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .55);
  font-variant-numeric: tabular-nums;
}

.alt-dev__card-index::before {
  content: "0" counter(alt-dev-num);
}

.alt-dev__card-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
  color: #fff;
}

.alt-dev__card-desc {
  margin: 0 0 16px;
  font-size: .8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.alt-dev__card-cta {
  font-size: .8125rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 2px;
  transition: border-color .2s ease, gap .2s ease;
}

.alt-dev__card:hover .alt-dev__card-cta {
  border-color: rgba(255, 255, 255, .85);
}

/* 最新动态 */
.alt-dev__feed {
  margin-top: 28px;
  position: relative;
  z-index: 1;
  padding: 8px 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
}

.alt-dev__feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.alt-dev__feed-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
}

.alt-dev__feed-more {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .7);
  transition: color .2s ease;
}

.alt-dev__feed-more:hover {
  color: #fff;
}

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

.alt-dev__feed-item {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.alt-dev__feed-item:last-child {
  border-bottom: none;
}

.alt-dev__feed-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  transition: color .2s ease;
}

.alt-dev__feed-link:hover {
  color: #fff;
}

.alt-dev__feed-link:hover .alt-dev__feed-name {
  color: #fff;
}

.alt-dev__feed-date {
  flex-shrink: 0;
  width: 6.5rem;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .5);
  font-variant-numeric: tabular-nums;
}

.alt-dev__feed-name {
  flex: 1;
  min-width: 0;
  font-size: .9375rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}

.alt-dev__feed-empty {
  margin: 12px 0 4px;
  text-align: center;
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
}

/* ============================================================
   12. MEMBERS - 会员单位
   ============================================================ */
.members { background: var(--color-bg); }

.members__header {
  text-align: center;
  margin-bottom: 2rem;
}

.members__header .section-title::before {
  content: "MEMBER COMPANIES";
  display: block;
  font-size: .75rem;
  color: var(--color-text-lt);
  letter-spacing: 2px;
  margin-bottom: .5rem;
  font-weight: var(--fw-regular);
}

.members__stats {
  text-align: center;
  color: var(--color-text-lt);
  font-size: .9375rem;
  margin-bottom: 2rem;
}

.members__stats strong {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
}

.members__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}

.members__track::-webkit-scrollbar {
  display: none;
}

.members__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 160px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.members__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.members__logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-lt);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.members__logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.members__name {
  font-size: .75rem;
  color: var(--color-text-lt);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.members__more {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   12b. MEMBER HUB（会员服务）
   ============================================================ */
.mhub {
  background: var(--color-bg);
}

/* ── 标题 ── */
.mhub__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  text-align: center;
  margin-bottom: 2rem;
}

.mhub__header .section-title {
  margin-bottom: 0;
}

.mhub__header .section-title::before {
  content: "MEMBER SERVICE";
  display: block;
  font-size: .75rem;
  color: var(--color-text-lt);
  letter-spacing: 2px;
  margin-bottom: .5rem;
  font-weight: var(--fw-regular);
}

.mhub__join {
  flex-shrink: 0;
}

/* ── 会员构成（比例条，区别于上方大数字统计） ── */
.mhub__mix {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(220px, 1.6fr) auto;
  align-items: center;
  gap: 28px 36px;
  margin-bottom: 2.5rem;
  padding: 22px 32px 26px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(90deg, rgba(27, 122, 61, .06) 0%, transparent 42%),
    transparent;
}

.mhub__mix-copy {
  min-width: 0;
}

.mhub__mix-eyebrow {
  margin: 0 0 6px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.mhub__mix-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--color-dark);
  font-weight: var(--fw-medium);
}

.mhub__mix-meter {
  min-width: 0;
}

.mhub__mix-track {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(26, 26, 46, .08);
  transform-origin: left center;
}

.mhub__mix.fade-in--visible .mhub__mix-track {
  animation: mhub-mix-grow .9s cubic-bezier(.22, 1, .36, 1) both;
}

.mhub__mix-seg--alt {
  background: linear-gradient(90deg, var(--color-primary-dk), var(--color-primary));
}

.mhub__mix-seg--other {
  background: var(--color-gold);
}

.mhub__mix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.mhub__mix-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--color-text-lt);
}

.mhub__mix-legend b {
  color: var(--color-text);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
}

.mhub__mix-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mhub__mix-dot--alt { background: var(--color-primary); }
.mhub__mix-dot--other { background: var(--color-gold); }

.mhub__mix-cta {
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding-left: 28px;
  border-left: 1px solid var(--color-border);
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition), color var(--transition);
}

.mhub__mix-cta:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.mhub__mix-cta-kicker {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-lt);
}

.mhub__mix-cta strong {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.25;
}

.mhub__mix-cta:hover strong {
  color: var(--color-primary-dk);
}

.mhub__mix-cta em {
  font-style: normal;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

@keyframes mhub-mix-grow {
  from { transform: scaleX(.28); opacity: .55; }
  to { transform: scaleX(1); opacity: 1; }
}

/* ── 子模块通用块 ── */
.mhub__block {
  margin-bottom: 2.5rem;
}

.mhub__block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}

.mhub__block-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.mhub__block-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.mhub__block-more {
  font-size: .8125rem;
  color: var(--color-text-lt);
  transition: color var(--transition);
}

.mhub__block-more:hover {
  color: var(--color-primary);
}

/* ── 会员风采：4卡横排 ── */
.mhub__showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mhub__scard {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mhub__scard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mhub__scard-img {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: var(--color-primary-lt);
}

.mhub__scard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.mhub__scard:hover .mhub__scard-img img {
  transform: scale(1.06);
}

.mhub__scard-noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-lt) 0%, #c8e6c9 100%);
}

.mhub__scard-body {
  padding: 14px 16px 16px;
}

.mhub__scard-title {
  font-size: .9375rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.mhub__scard:hover .mhub__scard-title {
  color: var(--color-primary);
}

.mhub__scard-date {
  font-size: .75rem;
  color: var(--color-text-lt);
}

/* ── 会员单位：大气双行展示带 ── */
.mhub__block--ticker {
  margin-bottom: 0;
}

.mhub__members-stage {
  position: relative;
  padding: 28px 28px 30px;
  border-radius: 4px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(15, 61, 36, .92) 0%, rgba(27, 122, 61, .88) 48%, rgba(20, 92, 46, .94) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, .12), transparent 55%);
  background-color: #145C2E;
}

.mhub__members-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .35;
  pointer-events: none;
}

.mhub__members-lead {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}

.mhub__members-lead strong {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.mhub__members-lead strong em {
  font-style: normal;
  font-size: 1.5rem;
  margin-left: 2px;
  opacity: .85;
}

.mhub__members-lead > span {
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .04em;
}

/* ── 替代会员版图：轻量白底州市目录 ── */
.mhub__block--regions {
  margin-bottom: 0;
}

.mhub__atlas-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
}

.mhub__atlas-eyebrow {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.mhub__atlas-lead {
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.55;
}

.mhub__atlas-note {
  margin: 0;
  color: var(--color-text-lt);
  font-size: .8125rem;
  line-height: 1.7;
}

.mhub__atlas-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  color: var(--color-text-lt);
  font-size: .8125rem;
}

.mhub__atlas-total-num {
  color: var(--color-primary);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.mhub__atlas-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.mhub__atlas-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: .8125rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.mhub__atlas-filter span {
  min-width: 1.25rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(27, 122, 61, .08);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.mhub__atlas-filter:hover {
  border-color: rgba(27, 122, 61, .35);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.mhub__atlas-filter.is-active {
  border-color: var(--color-primary);
  background: rgba(27, 122, 61, .08);
  color: var(--color-primary);
  font-weight: 600;
}

.mhub__atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.mhub__atlas-item {
  min-width: 0;
  padding: 18px 20px 16px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  transition: background-color .25s ease, box-shadow .25s ease;
}

.mhub__atlas-item:nth-child(3n) {
  border-right: none;
}

.mhub__atlas-item:hover,
.mhub__atlas-item.is-expanded,
.mhub__atlas-item.is-focused {
  background: rgba(27, 122, 61, .03);
  box-shadow: inset 0 0 0 1px rgba(27, 122, 61, .12);
}

.mhub__atlas.is-filtered .mhub__atlas-grid {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.mhub__atlas.is-filtered .mhub__atlas-item {
  border-right: none;
}

.mhub__atlas.is-filtered .mhub__atlas-toggle {
  display: none;
}

.mhub__atlas-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mhub__atlas-item-head h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

.mhub__atlas-item-head span {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mhub__atlas-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mhub__atlas-list a {
  display: block;
  overflow: hidden;
  color: var(--color-text);
  font-size: .875rem;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .2s ease, padding-left .2s ease;
}

.mhub__atlas-list a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.mhub__atlas-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-primary);
  font: inherit;
  font-size: .75rem;
  cursor: pointer;
}

.mhub__atlas-toggle-less {
  display: none;
}

.mhub__atlas-item.is-expanded .mhub__atlas-toggle-more {
  display: none;
}

.mhub__atlas-item.is-expanded .mhub__atlas-toggle-less {
  display: inline;
}

.mhub__atlas-empty {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px dashed var(--color-border);
  color: var(--color-text-lt);
  font-size: .875rem;
  text-align: center;
}

.mhub__ticker-row {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  margin-bottom: 14px;
}

.mhub__ticker-row:last-child {
  margin-bottom: 0;
}

.mhub__ticker-inner {
  display: flex;
  width: max-content;
  animation: mhub-ticker 220s linear infinite;
}

.mhub__ticker-row--rev .mhub__ticker-inner {
  animation-name: mhub-ticker-rev;
  animation-duration: 260s;
}

@keyframes mhub-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes mhub-ticker-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.mhub__ticker-inner:hover {
  animation-play-state: paused;
}

.mhub__ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.mhub__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  min-height: 48px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .94);
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.mhub__ticker-item:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  transform: translateY(-2px);
}

.mhub__ticker-region {
  padding-right: 8px;
  border-right: 1px solid rgba(240, 212, 138, .34);
  color: #f0d48a;
  font-size: .75rem;
  font-weight: 700;
}

.mhub__ticker-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── 响应式 ── */
@media (max-width: 1024px) {
  .mhub__showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mhub__mix {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 20px 22px;
  }
  .mhub__mix-cta {
    min-width: 0;
    padding: 14px 0 0;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 767px) {
  .mhub__showcase { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mhub__scard-img { height: 140px; }
  .mhub__atlas-intro { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mhub__atlas-filters { gap: 6px; }
  .mhub__atlas-filter { padding: 6px 10px; font-size: .75rem; }
  .mhub__atlas-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mhub__atlas-item { padding: 16px 14px 14px; }
  .mhub__atlas-item:nth-child(3n) { border-right: 1px solid var(--color-border); }
  .mhub__atlas-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 479px) {
  .mhub__showcase { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mhub__atlas-grid { grid-template-columns: 1fr; }
  .mhub__atlas-item,
  .mhub__atlas-item:nth-child(2n),
  .mhub__atlas-item:nth-child(3n) {
    border-right: none;
  }
}

/* ============================================================
   13. FOOTER LINKS (友情链接)
   ============================================================ */
.footer-links {
  background: linear-gradient(180deg, #f6f8f7 0%, #fff 100%);
  padding: 48px 0 44px;
  border-top: 1px solid rgba(26, 77, 46, .08);
}

.footer-links__head {
  text-align: center;
  margin-bottom: 28px;
}

.footer-links__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  letter-spacing: .04em;
}

.footer-links__title::before {
  content: "PARTNER LINKS";
  display: block;
  margin-bottom: 8px;
  font-size: .6875rem;
  font-weight: var(--fw-regular);
  letter-spacing: .14em;
  color: #999;
}

.footer-links__desc {
  margin: 0;
  font-size: .875rem;
  color: #888;
  line-height: 1.5;
}

.footer-links__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.footer-links__group {
  background: var(--color-white);
  border: 1px solid rgba(26, 77, 46, .08);
  border-radius: 4px;
  padding: 18px 20px 16px;
  box-shadow: 0 4px 16px rgba(20, 40, 28, .04);
}

.footer-links__group-title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef0ee;
  font-size: .8125rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: .06em;
}

.footer-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.footer-links__grid--flat {
  padding: 4px 0 0;
}

.footer-links__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 7px 12px;
  font-size: .8125rem;
  line-height: 1.4;
  color: #555;
  background: #f8faf9;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-links__item-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-links__item-icon {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--color-primary);
  opacity: 0;
  transform: translate(-2px, 1px);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-links__item:hover {
  color: var(--color-primary);
  background: #fff;
  border-color: rgba(26, 77, 46, .14);
}

.footer-links__item:hover .footer-links__item-icon {
  opacity: 1;
  transform: translate(0, 1px);
}

.footer-links__item:focus-visible {
  outline: 2px solid rgba(26, 77, 46, .35);
  outline-offset: 2px;
}

/* ============================================================
   14. SITE FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 8% 0%, rgba(27, 122, 61, .22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 92% 100%, rgba(212, 168, 67, .1) 0%, transparent 50%),
    linear-gradient(180deg, #13261a 0%, #0f1a14 48%, #0c1510 100%);
  color: rgba(255, 255, 255, .72);
  padding: 64px 0 0;
  font-size: .875rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-party-red) 0%, var(--color-gold) 38%, var(--color-primary) 100%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr .85fr 1.05fr;
  gap: 40px 36px;
  padding-bottom: 48px;
}

.site-footer__brand {
  min-width: 0;
  padding-right: 12px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
}

.site-footer__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .96);
  border-radius: 8px;
  padding: 4px;
}

.site-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.site-footer__logo-text strong {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
}

.site-footer__logo-text em {
  font-style: normal;
  font-size: .6875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, .88);
  line-height: 1.35;
}

.site-footer__intro {
  margin: 0 0 22px;
  max-width: 36em;
  line-height: 1.85;
  color: rgba(255, 255, 255, .62);
  font-size: .875rem;
}

.site-footer__heading {
  color: #fff;
  font-size: .9375rem;
  font-weight: 700;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: .08em;
}

.site-footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

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

.site-footer__links li {
  margin-bottom: 0;
}

.site-footer__links a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, .62);
  transition: color .25s ease, transform .25s ease;
}

.site-footer__links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__contact li {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 12px;
  align-items: start;
  line-height: 1.55;
}

.site-footer__contact-label {
  color: var(--color-gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding-top: 2px;
}

.site-footer__contact-value {
  color: rgba(255, 255, 255, .78);
  word-break: break-word;
}

a.site-footer__contact-value:hover {
  color: #fff;
}

.site-footer__qrcode {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__qr {
  margin: 0;
  width: 104px;
  text-align: center;
}

.site-footer__qr img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 8px;
  object-fit: cover;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.site-footer__qr figcaption {
  font-size: .6875rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4;
}

.site-footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0 22px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.7;
}

.site-footer__copyright p {
  margin: 0;
}

.site-footer__beian {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.site-footer__copyright a {
  color: rgba(255, 255, 255, .5);
}

.site-footer__copyright a:hover {
  color: #fff;
}

/* 页脚隐蔽工作入口：看起来像一个淡点号 */
.site-footer__staff {
  display: inline;
  margin-left: .15em;
  padding: 0 .1em;
  color: rgba(255, 255, 255, .18) !important;
  text-decoration: none !important;
  font-weight: inherit;
  cursor: default;
}

.site-footer__staff:hover,
.site-footer__staff:focus-visible {
  color: rgba(255, 255, 255, .45) !important;
  cursor: pointer;
}

/* legacy hooks kept harmless */
.site-footer__about p { line-height: 1.8; margin-bottom: 14px; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: background var(--transition), color var(--transition);
}
.site-footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.site-footer__contact i {
  margin-top: 3px;
  color: var(--color-primary);
}

/* ============================================================
   15. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition), visibility var(--transition),
              transform var(--transition), background var(--transition);
  z-index: 900;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dk);
  transform: translateY(-3px);
}

/* ============================================================
   16. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: .9375rem;
  font-weight: var(--fw-medium);
  font-family: var(--ff-base);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(27,122,61,.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--sm {
  padding: 7px 18px;
  font-size: .8125rem;
}

.btn--lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* ============================================================
   17. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--left {
  transform: translateX(-30px);
}

.fade-in--left.fade-in--visible {
  transform: translateX(0);
}

.fade-in--right {
  transform: translateX(30px);
}

.fade-in--right.fade-in--visible {
  transform: translateX(0);
}

/* Staggered delays for grid children */
.fade-in--d1 { transition-delay: .1s; }
.fade-in--d2 { transition-delay: .2s; }
.fade-in--d3 { transition-delay: .3s; }
.fade-in--d4 { transition-delay: .4s; }

/* ============================================================
   INNER PAGES - 内页通用样式
   ============================================================ */

/* Page Banner */
.page-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--color-dark);
  /* 覆盖 pages.css 的固定背景 */
  background-attachment: scroll !important;
  background-size: auto !important;
  background-position: unset !important;
}

/* 清除 pages.css 里的绿色渐变覆盖层 */
.page-banner::before {
  display: none !important;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* 移除背景渐变，仅作透明层，保证图片完整显示 */
  background: none;
  pointer-events: none;
}

.page-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 28px;
  color: var(--color-white);
}

.page-banner__title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: 10px;
}

.page-banner__desc {
  font-size: .9375rem;
  opacity: .8;
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.breadcrumb__item::after {
  margin-left: 8px;
  color: var(--color-border);
}

.breadcrumb__item:last-child::after { display: none; }

.breadcrumb__item a:hover { color: var(--color-primary); }

.breadcrumb__item--current { color: var(--color-primary); }

/* Page Layout */
.page-main {
  padding: 40px 0 60px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

.page-content {
  min-width: 0;
}

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.category-filter--primary {
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.category-filter--sub {
  margin-bottom: 24px;
}

.category-filter__label {
  font-size: .8125rem;
  color: var(--color-text-lt);
  margin-right: 4px;
  flex-shrink: 0;
}

.category-filter__item {
  padding: 6px 18px;
  font-size: .875rem;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-text-lt);
  transition: all var(--transition);
}

.category-filter__item:hover,
.category-filter__item.active,
.category-filter__item--active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Article Card (List Page) */
.article-card {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.article-card:first-child { padding-top: 0; }

.article-card__img {
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.article-card:hover .article-card__img img {
  transform: scale(1.05);
}

.article-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: .8125rem;
}

.article-card__tag {
  background: var(--color-primary-lt);
  color: var(--color-primary);
  padding: 2px 10px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: var(--fw-medium);
}

.article-card__date { color: var(--color-text-lt); }

.article-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.article-card__title a { color: var(--color-dark); }
.article-card__title a:hover { color: var(--color-primary); }

.article-card__excerpt {
  font-size: .875rem;
  color: var(--color-text-lt);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  flex: 1;
}

.article-card__more {
  font-size: .8125rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.article-card__hits {
  font-size: .8125rem;
  color: var(--color-text-lt);
}
.article-card__hits::before { content: '·'; margin: 0 6px; }

/* No-thumbnail placeholder */
.article-card__no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f3ea 0%, #c8deca 100%);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}
.article-card__no-thumb svg {
  width: 40px;
  height: 40px;
  opacity: .7;
}
.article-card__no-thumb span {
  font-size: .75rem;
  font-weight: var(--fw-medium);
  background: rgba(255,255,255,.65);
  padding: 2px 10px;
  border-radius: 20px;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* List Empty State */
.list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--color-text-lt);
}
.list-empty__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: .5;
}
.list-empty__text {
  font-size: .9375rem;
}

/* Sidebar rank items */
.sidebar-widget__item--rank {
  counter-increment: rank-counter;
}
.sidebar-widget__item--rank > a::before {
  content: counter(rank-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  font-size: .75rem;
  font-weight: var(--fw-bold);
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--color-border);
  color: var(--color-text-lt);
}
.sidebar-widget--hot .sidebar-widget__list {
  counter-reset: rank-counter;
}
.sidebar-widget__item--rank:nth-child(1) > a::before,
.sidebar-widget__item--rank:nth-child(2) > a::before,
.sidebar-widget__item--rank:nth-child(3) > a::before {
  background: var(--color-primary);
  color: #fff;
}

/* Article Detail */
.article-detail {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.article-detail__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.article-detail__title {
  font-size: 1.625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.article-detail__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.article-detail__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-detail__cover {
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-detail__cover img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.article-detail__content {
  font-size: .9375rem;
  line-height: 1.9;
  color: var(--color-text);
}

.article-detail__content p {
  margin-bottom: 1.25rem;
}

.article-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

/* Article Nav (Prev/Next) */
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.article-nav__item {
  font-size: .875rem;
  color: var(--color-text-lt);
  transition: color var(--transition);
}

.article-nav__item:hover { color: var(--color-primary); }

/* Article Share */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.article-share__label {
  font-size: .875rem;
  color: var(--color-text-lt);
}

.article-share__btn {
  padding: 4px 14px;
  font-size: .8125rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-lt);
  transition: all var(--transition);
}

.article-share__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Sidebar */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
}

.sidebar-widget__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-widget__item {
  border-bottom: 1px dashed var(--color-border);
}

.sidebar-widget__item:last-child { border-bottom: none; }

.sidebar-widget__item > a {
  display: block;
  padding: 10px 0;
  font-size: .875rem;
  color: var(--color-text);
  transition: color var(--transition), padding-left var(--transition);
}

.sidebar-widget__item > a:hover,
.sidebar-widget__item.active > a {
  color: var(--color-primary);
  padding-left: 6px;
}

.sidebar-widget__sublist {
  padding-left: 16px;
}

.sidebar-widget__sublist a {
  display: block;
  padding: 6px 0;
  font-size: .8125rem;
  color: var(--color-text-lt);
  transition: color var(--transition);
}

.sidebar-widget__sublist a:hover,
.sidebar-widget__sublist a.active {
  color: var(--color-primary);
}

.sidebar-widget__text {
  font-size: .875rem;
  color: var(--color-text-lt);
  margin-bottom: 14px;
  line-height: 1.7;
}

.sidebar-widget__more {
  display: block;
  margin-top: 12px;
  font-size: .8125rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: .875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================
   18. UTILITY / MISC
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-gold    { color: var(--color-gold); }
.text-red     { color: var(--color-party-red); }

.bg-white   { background: var(--color-white); }
.bg-light   { background: var(--color-bg); }
.bg-primary { background: var(--color-primary); }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — Tablet (768px – 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .hero { height: 420px; }
  .hero__title { font-size: 2.125rem; white-space: normal; }

  .stats { margin-top: -40px; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 20px 0; padding: 24px 16px; }
  .stats__item:nth-child(2)::after { display: none; }
  .stats__item:nth-child(odd)::after { height: 40px; }

  .about .container { gap: 30px; }

  .news__layout { grid-template-columns: 1fr; gap: 30px; }

  .party { padding: 60px 0 64px; }
  .party__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .party__header .section-title { font-size: 1.75rem; }

  .alt-dev__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .alt-dev__card {
    min-height: 260px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  /* Inner Pages - Tablet */
  .page-banner { height: 220px; }
  .page-banner__title { font-size: 1.625rem; }
  .page-layout { grid-template-columns: 1fr 260px; gap: 28px; }
  .article-card__img { width: 200px; height: 130px; }
}

/* ============================================================
   RESPONSIVE — Mobile (<768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --header-h: 60px; }

  section { padding: 50px 0; }

  .news-headlines {
    margin-bottom: 1.25rem;
  }

  .news-headlines::before {
    font-size: 2.5rem;
    right: 4%;
    opacity: .7;
  }

  .news-headlines__inner {
    gap: 12px;
    min-height: 68px;
    padding: 14px 14px 14px 12px;
  }

  .news-headlines__badge {
    min-width: 40px;
    min-height: 40px;
    padding: 6px 8px;
    font-size: .75rem;
    letter-spacing: .18em;
    text-indent: .18em;
  }

  .news-headlines__viewport {
    height: 44px;
  }

  .news-headlines__link {
    gap: 10px;
  }

  .news-headlines__title {
    font-size: 1rem;
  }

  .news-headlines__date {
    display: none;
  }

  .news-headlines__nav {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }

  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: .875rem; margin-bottom: 2rem; }

  /* Top Bar */
  .top-bar__honors { display: none; }
  .top-bar__right { width: 100%; justify-content: flex-end; }

  /* Header + Nav */
  body { overflow-x: hidden; }
  .main-nav { display: none; }
  .site-header__cta { display: inline-flex; padding: 7px 14px; font-size: .75rem; }
  .mobile-menu__toggle { display: flex; }
  .site-header__logo { flex-shrink: 1; min-width: 0; gap: 8px; }
  .site-header__logo img { height: 40px; }
  .site-header__logo-text { min-width: 0; }
  .site-header__logo-text .zh { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-header__logo-text .en { display: none; }

  /* Hero */
  .hero { height: 340px; }
  .hero__title { font-size: 1.625rem; max-width: 90%; white-space: normal; }
  .hero__desc { font-size: .9375rem; max-width: 90%; }
  .hero__badge { font-size: .75rem; padding: 0; margin-bottom: 10px; }
  .hero__content { padding: 0; }
  .hero__inner {
    max-width: 100%;
    padding-left: 16px;
    border-left-width: 2px;
  }
  .hero__nav { display: none; }
  .hero__status { right: 16px; bottom: 18px; }
  .hero__counter { font-size: .75rem; padding: 4px 8px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; min-width: 0; }

  /* Stats */
  .stats { margin-top: -30px; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 20px 12px; }
  .stats__number { font-size: 1.75rem; }
  .stats__item:nth-child(2)::after { display: none; }
  .stats__item:nth-child(odd)::after { height: 35px; }

  /* About */
  .about {
    padding: 48px 0 56px;
  }
  .about .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about__portrait-zoom {
    opacity: 1;
    transform: none;
  }

  /* News */
  .news__layout { grid-template-columns: 1fr; gap: 30px; }
  .news__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news__focus-slider { min-height: 320px; }
  .news__focus-title { font-size: 1.125rem; }
  .news__focus-excerpt { font-size: .8125rem; -webkit-line-clamp: 1; }
  .news__focus-overlay { padding: 48px 20px 32px; }
  .news__focus-controls { top: 12px; right: 12px; }
  .news__focus-nav { width: 32px; height: 32px; font-size: 1.2rem; }
  .news__tabs { padding: 0 16px; }
  .news__tab { padding: 14px 16px; font-size: .875rem; }
  .news__panels { padding: 16px 20px 20px; }
  .news__item-title { font-size: .875rem; }
  .news__item--featured .news__item-title { font-size: .9375rem; }
  .news__item--featured .news__date-d { font-size: 1.25rem; }

  /* Party */
  .party__grid { grid-template-columns: 1fr; gap: 16px; }
  .party__card-img { height: 180px; }
  .party__card-body { padding: 18px 20px 22px; }
  .party__more-wrap { margin-top: 28px; }

  /* Alt Dev */
  .alt-dev__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .alt-dev__card {
    min-height: 240px;
    aspect-ratio: 3 / 4;
  }
  .alt-dev__card-content { padding: 18px 16px 20px; }
  .alt-dev__card-title { font-size: 1.0625rem; }
  .alt-dev__feed { margin-top: 22px; }
  .alt-dev__feed-link { gap: 12px; }
  .alt-dev__feed-date { width: 5.5rem; }

  /* Members */
  .members__item { width: 140px; padding: 16px; }
  .members__logo { width: 50px; height: 50px; }

  .site-footer {
    padding-top: 40px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__brand {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 20px;
  }

  .site-footer__logo-text strong {
    font-size: 1rem;
  }

  .site-footer__copyright {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__qrcode {
    gap: 16px;
  }

  .footer-links { padding: 36px 0 32px; }
  .footer-links__groups { grid-template-columns: 1fr; gap: 14px; }
  .footer-links__group { padding: 16px; }
  .footer-links__item { padding: 6px 10px; font-size: .75rem; }

  /* Back to top */
  .back-to-top { bottom: 24px; right: 20px; width: 38px; height: 38px; font-size: 1rem; }

  /* Inner Pages - Mobile */
  .page-banner { height: 180px; }
  .page-banner__title { font-size: 1.375rem; }
  .page-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-card { flex-direction: column; gap: 14px; }
  .article-card__img { width: 100%; height: 180px; }
  .article-detail { padding: 20px; }
  .article-detail__title { font-size: 1.25rem; }
  .article-detail__meta { flex-wrap: wrap; gap: 10px; }
  .article-nav { flex-direction: column; gap: 10px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (<480px)
   ============================================================ */
@media (max-width: 479px) {
  .container { padding: 0 16px; }

  .hero { height: 280px; }
  .hero__title { font-size: 1.375rem; white-space: normal; }
  .hero__desc { font-size: .875rem; display: none; }
  .hero__badge { font-size: .6875rem; }

  .stats { margin-top: -25px; }
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 12px 0; padding: 16px 10px; }
  .stats__number { font-size: 1.5rem; }
  .stats__label { font-size: .75rem; }
  .stats__item:nth-child(odd)::after { height: 30px; }

  .alt-dev__grid { gap: 10px; }
  .alt-dev__card { min-height: 220px; }
  .alt-dev__feed-name { -webkit-line-clamp: 2; }

  .news__focus-slider { min-height: 260px; }
  .news__focus-overlay { padding: 24px 16px 20px; }
  .news__focus-title { font-size: .9375rem; }
  .news__tabs { padding: 0 12px; overflow-x: auto; }
  .news__tab { padding: 12px 14px; font-size: .8125rem; white-space: nowrap; }
  .news__panels { padding: 12px 16px 16px; }
  .news__link { padding: 14px 0; gap: 12px; }
  .news__date { width: 42px; padding-right: 10px; }
  .news__date-d { font-size: 1.125rem; }
  .news__item-title { font-size: .8125rem; }
  .news__item--featured .news__item-title { font-size: .875rem; }
  .news__item-tag { padding: 1px 6px; margin-right: 6px; font-size: .625rem; }
  .news__more { padding: 8px 16px; font-size: .8125rem; }
  .news__header-desc { font-size: .875rem; }

  .members__logo { width: 110px; height: 55px; padding: 8px 14px; }

  .btn { padding: 9px 20px; font-size: .875rem; }
  .btn--lg { padding: 11px 28px; font-size: .9375rem; }

  /* Inner Pages - Small Mobile */
  .article-card__img { height: 150px; }
  .article-detail__cover img { max-height: 260px; }
  .party__card-img { height: 160px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .top-bar,
  .site-header,
  .mobile-menu,
  .mobile-menu-overlay,
  .back-to-top,
  .hero__indicators { display: none !important; }

  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { height: auto; page-break-after: avoid; }
  section { padding: 20px 0; page-break-inside: avoid; }
}

/* ============================================================
   ABOUT PAGE (协会简介)
   ============================================================ */

/* Banner */
.about-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-dk) 0%, #0d4a25 40%, #1a2e1a 100%);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(27,122,61,.6) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(212,168,67,.15) 0%, transparent 50%),
    linear-gradient(135deg, #0d4a25 0%, #1a1a2e 100%);
}
.about-banner__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}
.about-banner__en {
  font-size: .8rem;
  letter-spacing: 6px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: .9;
}
.about-banner__title {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(220, 10, 10, 0.404);
  color: #fff;
}
.about-banner__sub {
  font-size: 1rem;
  opacity: .75;
  letter-spacing: 2px;
}

/* Section Title */
.about-sec-title { margin-bottom: 40px; }
.about-sec-title--center { text-align: center; }
.about-sec-title__en {
  display: block;
  font-size: .72rem;
  letter-spacing: 4px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: var(--fw-medium);
}
.about-sec-title h2 {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.about-sec-title__line {
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}
.about-sec-title--center .about-sec-title__line { margin: 0 auto; }
.about-sec-title--white .about-sec-title__en { color: rgba(255,255,255,.7); }
.about-sec-title--white h2 { color: var(--color-white); }
.about-sec-title__line--white { background: var(--color-gold); }

/* ② Stats */
.about-stats {
  background: var(--color-white);
  padding: 0;
  margin-top: -2px;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 3px solid var(--color-primary);
}
.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  border-right: 1px solid var(--color-border);
  position: relative;
}
.about-stats__item:last-child { border-right: none; }
.about-stats__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width .4s ease;
}
.about-stats__item:hover::before { width: 80%; }
.about-stats__num {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stats__num sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.about-stats__label {
  font-size: .8125rem;
  color: var(--color-text-lt);
  text-align: center;
}

/* ③ Intro */
.about-intro {
  padding: 80px 0;
  background: var(--color-bg);
}
.about-intro__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.about-intro__body {
  margin-top: 24px;
}
.about-intro__body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 16px;
  text-indent: 2em;
}
.about-intro__body p:last-child { margin-bottom: 0; }
.about-intro__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro__badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(4px);
}
.about-intro__badge span {
  display: block;
  font-size: .75rem;
  opacity: .85;
  margin-bottom: 3px;
}
.about-intro__badge strong {
  display: block;
  font-size: .95rem;
  font-weight: var(--fw-bold);
}

/* ④ Position */
.about-position {
  padding: 80px 0;
  background: var(--color-white);
}
.about-position__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.about-position__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about-position__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-border);
  transition: background var(--transition);
}
.about-position__card:hover,
.about-position__card--featured {
  border-color: var(--color-primary-lt);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.about-position__card:hover::before,
.about-position__card--featured::before {
  background: var(--color-primary);
}
.about-position__card--featured {
  background: var(--color-white);
}
.about-position__icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--color-primary);
}
.about-position__icon svg { width: 100%; height: 100%; }
.about-position__card h3 {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 12px;
}
.about-position__card p {
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.75;
}

/* Five Functions */
.about-func__list {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-func__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: background var(--transition);
  position: relative;
}
.about-func__item:nth-child(even) { background: var(--color-primary-dk); }
.about-func__item:hover { background: #0d5a2e; }
.about-func__num {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  opacity: .4;
  line-height: 1;
}
.about-func__name {
  font-size: .9375rem;
  font-weight: var(--fw-medium);
}

/* ⑤ Goals */
.about-goals {
  padding: 80px 0;
  background: var(--color-bg);
}
.about-goals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-goals__list {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-goals__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.about-goals__list li:hover { box-shadow: var(--shadow-md); }
.about-goals__icon { font-size: 1.25rem; }
.about-goals__text {
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
}
.about-goals__list--wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.about-goals__list--wrap li {
  border-left: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}
.about-goals__tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 30px;
  font-size: .9375rem;
  font-weight: var(--fw-medium);
  transition: all var(--transition);
}
.about-goals__tag:hover,
.about-goals__list--wrap li:hover .about-goals__tag {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ⑥ Alt Dev */
.about-altdev {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-dk) 0%, #0d4a25 60%, #1a2e20 100%);
  position: relative;
  overflow: hidden;
}
.about-altdev::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 0L0 20l20 20 20-20L20 0zm0 4l16 16-16 16L4 20 20 4z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-altdev__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-altdev__text {
  font-size: 1.0625rem;
  line-height: 2;
  color: rgba(255,255,255,.88);
  margin: 24px 0 36px;
  text-indent: 2em;
  text-align: left;
}
.about-altdev__crops {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.about-altdev__crops span {
  padding: 8px 24px;
  border: 1px solid rgba(212,168,67,.5);
  color: var(--color-gold);
  border-radius: 30px;
  font-size: .9rem;
  background: rgba(212,168,67,.08);
  transition: all var(--transition);
}
.about-altdev__crops span:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

/* ⑦ Honors */
.about-honors {
  padding: 80px 0;
  background: var(--color-white);
}
.about-honors__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.about-honors__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--color-text);
  font-weight: var(--fw-medium);
  transition: all var(--transition);
}
.about-honors__badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-honors__badge--gold {
  background: linear-gradient(135deg, #fefbe8, #fdf3c8);
  border-color: var(--color-gold);
  color: #7a5c00;
}
.about-honors__badge-star { font-style: normal; }
.about-honors__badge--gold .about-honors__badge-star { color: var(--color-gold); }
.about-honors__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.about-honors__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 协会概况页内导航 + 机构合页 */
.about-toc {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(27, 122, 61, .12);
  backdrop-filter: blur(8px);
}

.about-toc__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.about-toc__item {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: .875rem;
  color: var(--color-text-lt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.about-toc__item:hover,
.about-toc__item.is-active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.about-org {
  padding: 80px 0;
  background: #fff;
}

.about-org__panel {
  margin-top: 12px;
  padding: 28px 32px;
  background: var(--color-bg);
  border-radius: 4px;
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 8px 28px rgba(20, 60, 36, .05);
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.about-org__panel img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.about-org__panel p {
  margin: 0 0 1rem;
}

.about-org__panel p:last-child {
  margin-bottom: 0;
}

.about-org__empty {
  text-align: center;
  color: var(--color-text-lt);
  padding: 24px 0;
}

@media (max-width: 768px) {
  .about-toc__inner {
    padding: 10px 0;
    gap: 6px;
  }

  .about-toc__item {
    padding: 6px 12px;
    font-size: .8125rem;
  }

  .about-org {
    padding: 48px 0;
  }

  .about-org__panel {
    padding: 18px 16px;
  }
}

/* ⑧ Contact */
.about-contact {
  padding: 80px 0;
  background: var(--color-bg);
}
.about-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.about-contact__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.about-contact__item:hover {
  border-top-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-contact__icon-wrap {
  width: 52px; height: 52px;
  background: var(--color-primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-primary);
}
.about-contact__icon-wrap svg { width: 24px; height: 24px; }
.about-contact__item h4 {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 10px;
}
.about-contact__item p {
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.8;
  margin-bottom: 2px;
}
.about-contact__item a {
  color: var(--color-primary);
  text-decoration: none;
}
.about-contact__item a:hover { text-decoration: underline; }

/* Responsive About */
@media (max-width: 1024px) {
  .about-stats__grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats__item:nth-child(3) { border-right: none; }
  .about-intro__layout { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__visual { max-width: 500px; margin: 0 auto; }
  .about-position__grid { grid-template-columns: 1fr 1fr; }
  .about-contact__grid { grid-template-columns: repeat(2, 1fr); }
  .about-banner__title { font-size: 2.25rem; }
}
@media (max-width: 767px) {
  .about-banner { height: 260px; }
  .about-banner__title { font-size: 1.75rem; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__item:nth-child(5) { grid-column: 1 / -1; border-right: none; }
  .about-position__grid { grid-template-columns: 1fr; }
  .about-func__list { flex-wrap: wrap; }
  .about-func__item { flex: 0 0 50%; }
  .about-goals__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-contact__grid { grid-template-columns: 1fr 1fr; }
  .about-sec-title h2 { font-size: 1.375rem; }
}

/* ============================================================
   ABOUT PAGE ANIMATIONS
   ============================================================ */

/* --- Keyframes --- */
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aboutFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes aboutFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes aboutScaleIn {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes aboutLineGrow {
  from { width: 0; }
  to   { width: 48px; }
}
@keyframes aboutBannerTitle {
  from { opacity: 0; transform: translateY(24px) scale(.97); letter-spacing: 8px; }
  to   { opacity: 1; transform: translateY(0) scale(1); letter-spacing: normal; }
}
@keyframes aboutBannerSub {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: .75; transform: translateY(0); }
}
@keyframes aboutBannerEn {
  from { opacity: 0; letter-spacing: 12px; }
  to   { opacity: .9; letter-spacing: 6px; }
}
@keyframes aboutCountLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes aboutPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27,122,61,.3); }
  50%       { box-shadow: 0 0 0 10px rgba(27,122,61,0); }
}

/* --- Banner Entrance (always plays) --- */
.about-banner__en   { animation: aboutBannerEn    .8s ease both; animation-delay: .2s; }
.about-banner__title { animation: aboutBannerTitle 1s ease both; animation-delay: .45s; }
.about-banner__sub  { animation: aboutBannerSub   .8s ease both; animation-delay: .85s; }

/* --- Scroll Reveal Base --- */
.ao-reveal {
  opacity: 0;
  transition: none;
}
.ao-reveal.is-visible {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22,.61,.36,1);
}

/* Fade Up */
.ao-up.is-visible      { animation: aboutFadeUp   .7s both cubic-bezier(.22,.61,.36,1); }
/* Fade Left */
.ao-left.is-visible    { animation: aboutFadeLeft  .7s both cubic-bezier(.22,.61,.36,1); }
/* Fade Right */
.ao-right.is-visible   { animation: aboutFadeRight .7s both cubic-bezier(.22,.61,.36,1); }
/* Scale In */
.ao-scale.is-visible   { animation: aboutScaleIn   .65s both cubic-bezier(.22,.61,.36,1); }

/* Staggered delays */
.ao-d1.is-visible  { animation-delay: .05s; }
.ao-d2.is-visible  { animation-delay: .15s; }
.ao-d3.is-visible  { animation-delay: .25s; }
.ao-d4.is-visible  { animation-delay: .35s; }
.ao-d5.is-visible  { animation-delay: .45s; }
.ao-d6.is-visible  { animation-delay: .55s; }

/* Section title line animation */
.ao-reveal.is-visible .about-sec-title__line {
  animation: aboutLineGrow .6s .3s both ease-out;
}

/* Stats counter shimmer */
.about-stats__item.is-visible .about-stats__num {
  animation: aboutScaleIn .5s both cubic-bezier(.22,.61,.36,1);
}

/* Func items entrance */
.about-func__item.is-visible {
  animation: aboutFadeUp .5s both cubic-bezier(.22,.61,.36,1);
}

/* Position card hover pulse */
.about-position__card--featured {
  animation: aboutPulse 2.5s ease 1.2s 2;
}

/* Goals list items slide in */
.about-goals__list li.is-visible {
  animation: aboutFadeLeft .5s both cubic-bezier(.22,.61,.36,1);
}
.about-goals__list--wrap li.is-visible {
  animation: aboutFadeUp .5s both cubic-bezier(.22,.61,.36,1);
}

/* Honor badges */
.about-honors__badge.is-visible {
  animation: aboutScaleIn .4s both cubic-bezier(.22,.61,.36,1);
}
.about-honors__photo.is-visible {
  animation: aboutFadeUp .8s both cubic-bezier(.22,.61,.36,1);
}

/* Contact items */
.about-contact__item.is-visible {
  animation: aboutFadeUp .55s both cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   ARTICLE DETAIL ENHANCEMENTS
   ============================================================ */

/* --- 阅读进度条 --- */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), #4ade80);
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* --- 分类标签 --- */
.article-detail__cat-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(27,122,61,.1);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: var(--fw-medium);
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}

/* --- meta 图标 --- */
.article-detail__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}
.article-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article-detail__meta-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.article-detail__meta-sep {
  color: var(--color-border);
}

/* --- 正文排版增强 --- */
.article-detail__content blockquote {
  margin: 1.5rem 0;
  padding: 14px 20px;
  border-left: 4px solid var(--color-primary);
  background: rgba(27,122,61,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text);
  font-style: italic;
}
.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4 {
  margin: 1.75rem 0 .75rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
}
.article-detail__content h2 { font-size: 1.25rem; }
.article-detail__content h3 { font-size: 1.1rem; }
.article-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .9rem;
}
.article-detail__content th,
.article-detail__content td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.article-detail__content th {
  background: rgba(27,122,61,.08);
  font-weight: var(--fw-medium);
  color: var(--color-dark);
}
.article-detail__content tr:nth-child(even) td {
  background: var(--color-bg);
}
.article-detail__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s;
}
.article-detail__content a:hover {
  text-decoration-color: var(--color-primary);
}

/* --- 操作栏 --- */
.article-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.article-actions__back,
.article-actions__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}
.article-actions__back {
  background: rgba(27,122,61,.08);
  color: var(--color-primary);
  border-color: rgba(27,122,61,.2);
}
.article-actions__back:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.article-actions__copy {
  background: var(--color-bg);
  color: var(--color-text-lt);
  border-color: var(--color-border);
}
.article-actions__copy:hover {
  background: var(--color-border);
  color: var(--color-dark);
}
.article-actions__back svg,
.article-actions__copy svg {
  width: 14px;
  height: 14px;
}

/* --- 上一篇/下一篇重设计 --- */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 0;
  border-top: none;
}
.article-nav__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
  font-size: .875rem;
}
.article-nav__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(27,122,61,.12);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.article-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.article-nav__label svg {
  width: 14px;
  height: 14px;
}
.article-nav__text {
  color: var(--color-text);
  line-height: 1.5;
  transition: color var(--transition);
}
.article-nav__item:hover .article-nav__text {
  color: var(--color-primary);
}
.article-nav__next {
  text-align: right;
}
.article-nav__next .article-nav__label {
  justify-content: flex-end;
}
.article-nav__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-lt);
  font-size: .8125rem;
  background: var(--color-bg);
  cursor: default;
  border-style: dashed;
}
.article-nav__empty:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-border);
  color: var(--color-text-lt);
}

/* --- 复制提示 --- */
.copy-tip {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(15,23,42,.85);
  color: #fff;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: .8125rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 9999;
}
.copy-tip--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- 图片放大遮罩 --- */
.img-zoom-mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity .3s;
  padding: 20px;
}
.img-zoom-mask--show { opacity: 1; }
.img-zoom-mask img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* --- 响应式 --- */
@media (max-width: 768px) {
  .article-nav { grid-template-columns: 1fr; }
  .article-actions { flex-wrap: wrap; }
  .article-detail__meta-sep { display: none; }
  .article-detail__meta { gap: 8px 12px; }
}

/* ============================================================
   PAGE BANNER — ARTICLE VARIANT
   ============================================================ */

/* 栏目小标 */
.page-banner__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-banner__eyebrow span:nth-child(2) {
  font-size: .8125rem;
  font-weight: var(--fw-medium);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 14px;
  border-radius: 20px;
}
.page-banner__eyebrow span:first-child,
.page-banner__eyebrow span:last-child {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.35);
}

/* 文章标题（截断显示） */
.page-banner--article .page-banner__title {
  font-size: 1.625rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* 口号 */
.page-banner__slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.page-banner__slogan span {
  font-size: .875rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.9);
  letter-spacing: .08em;
}
.page-banner__slogan i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4ade80;
  opacity: .8;
  font-style: normal;
}

/* 大尺寸口号（banner 内唯一内容时居中放大） */
.page-banner__slogan--lg {
  margin-top: 0;
  gap: 24px;
}
.page-banner__slogan--lg span {
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.page-banner__slogan--lg i {
  width: 6px;
  height: 6px;
  background: #4ade80;
  opacity: 1;
}

@media (max-width: 768px) {
  .page-banner__slogan { gap: 8px; }
  .page-banner__slogan span { font-size: .8125rem; }
  .page-banner__slogan--lg { gap: 14px; }
  .page-banner__slogan--lg span { font-size: 1.1rem; }
}

/* ============================================================
   Homepage review follow-ups (P0–P3)
   ============================================================ */
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.home-tools {
  padding: 28px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.home-tools .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.home-tools__search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 260px;
}

.home-tools__label {
  font-size: .875rem;
  color: var(--color-text-lt);
  white-space: nowrap;
}

.home-tools__input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  outline: none;
  transition: border-color var(--transition);
}

.home-tools__input:focus {
  border-color: var(--color-primary);
}

.home-tools__btn {
  height: 42px;
  padding: 0 20px;
  white-space: nowrap;
}

.home-tools__download {
  font-size: .9375rem;
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.home-tools__download:hover {
  color: var(--color-primary-dk);
}

.home-contact {
  padding: 48px 0;
  background: var(--color-primary-dk);
  color: rgba(255,255,255,.9);
}

.home-contact__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.home-contact__title {
  color: var(--color-white);
  margin-bottom: 8px;
}

.home-contact__desc {
  max-width: 420px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.home-contact__list {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.home-contact__list li {
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.home-contact__list span {
  flex: 0 0 2.5em;
  color: rgba(255,255,255,.55);
}

.home-contact__list a {
  color: var(--color-white);
}

.home-contact__list a:hover {
  color: var(--color-gold);
}

@media (max-width: 767px) {
  .home-tools__search {
    width: 100%;
    flex-wrap: wrap;
  }
  .home-tools__input {
    width: 100%;
    flex: 1 1 100%;
  }
  .mhub__header {
    flex-direction: column;
  }
  .home-contact {
    padding: 36px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__slide.active .hero__bg,
  .mhub__ticker-inner,
  .mhub__ticker-row--rev .mhub__ticker-inner {
    animation: none !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Official association aesthetic pass (2026-07-22)
   ============================================================ */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.section-title::after {
  width: 40px;
  height: 2px;
  border-radius: 0;
  margin-top: .85rem;
}
.section-subtitle {
  font-size: .875rem;
  margin-bottom: 2rem;
}
.news__header .section-title::before,
.mhub__header .section-title::before,
.alt-dev__header .section-title::before,
.party__header .section-title::before {
  display: none !important;
}

.top-bar {
  padding: 8px 0;
  background: #1a2332;
}
.top-bar__lang {
  border: none;
  padding: 0;
  gap: 8px;
}
.top-bar__lang-item.is-disabled {
  font-size: .75rem;
  opacity: .55;
}

.main-nav__link {
  padding: 0 14px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.main-nav__link::before {
  height: 2px;
  width: calc(100% - 16px);
  border-radius: 0;
}
.main-nav__item--has-child > .main-nav__link::after {
  border-top-color: currentColor;
}

.hero {
  height: 520px;
}
.hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(12, 28, 18, .72) 0%,
    rgba(12, 28, 18, .48) 38%,
    rgba(12, 28, 18, .22) 62%,
    rgba(12, 28, 18, .38) 100%
  );
}
.hero__overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
  pointer-events: none;
}
.hero__inner {
  border-left-color: rgba(201, 169, 98, .92);
}
.hero__badge {
  background: transparent;
  border-left: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 14px;
  letter-spacing: .1em;
  font-size: .8125rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.92);
  text-transform: none;
}
.hero__title {
  white-space: nowrap;
  font-size: clamp(1.875rem, 2.15vw + .6rem, 2.5rem);
  max-width: 100%;
  line-height: 1.32;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  letter-spacing: .02em;
}
.hero__desc {
  font-size: 1.03125rem;
  max-width: 540px;
  opacity: .9;
  line-height: 1.8;
}
.hero__actions .btn {
  border-radius: 2px;
  min-width: 132px;
  justify-content: center;
  padding: 12px 24px;
}
.hero__actions .btn--outline-white {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}
.hero__actions .btn--outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.75);
}
.hero--single .hero__nav,
.hero--single .hero__status,
.hero--single .hero__indicators {
  display: none;
}

.stats {
  margin-top: -36px;
}
.stats__number {
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
}
.stats__label {
  font-size: .8125rem;
  letter-spacing: .04em;
}

.home-tools {
  padding: 20px 0;
  background: #f7f8f7;
  border-bottom: 1px solid var(--color-border);
}
.home-tools__input,
.home-tools__btn {
  border-radius: 2px;
}

.news__tab {
  border-radius: 0;
}
.mhub__ticker-item {
  border-radius: 2px;
}
.mhub__ticker-inner {
  animation-duration: 220s;
}
.mhub__ticker-row--rev .mhub__ticker-inner {
  animation-duration: 260s;
}
.mhub__scard {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid var(--color-border);
}
.mhub__join {
  border-radius: 2px;
}

.party__card {
  border-radius: 4px;
  background: rgba(255,255,255,.1);
}
.party__card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.14);
}
.party__card-img {
  height: 200px;
}

.alt-dev__card {
  border-radius: 2px;
}
.home-contact {
  background: #1a2f22;
  padding: 40px 0;
}

.btn {
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .main-nav__link { padding: 0 10px; font-size: .875rem; }
  .hero { height: 400px; }
  .hero__title { font-size: 1.85rem; }
}

/* 协会站：内容默认可见，避免滚动动画造成空白/发灰 */
.fade-in,
.fade-in--left,
.fade-in--right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* 顶栏四项荣誉：居中 + 金色徽章加大 */
.top-bar .container {
  position: relative;
  justify-content: center;
  min-height: 36px;
}
.top-bar__honors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  flex: 0 1 auto;
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  mask-image: none;
  -webkit-mask-image: none;
}
.top-bar__honors-item {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
  color: rgba(255, 236, 190, .92);
  background: linear-gradient(180deg, rgba(201, 162, 71, .22), rgba(201, 162, 71, .1));
  border: 1px solid rgba(212, 175, 88, .42);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.top-bar__honors-item--gold {
  color: #1a1206;
  font-weight: 700;
  font-size: .875rem;
  padding: 6px 14px;
  background: linear-gradient(180deg, #f3d78a 0%, #d4af58 48%, #b8923a 100%);
  border-color: rgba(255, 230, 160, .65);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .35) inset,
    0 2px 8px rgba(0, 0, 0, .22);
}
.top-bar__honors-sep { display: none; }
.top-bar__right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1100px) and (max-width: 1360px) {
  .site-header__logo { max-width: min(480px, 46%); }
  .site-header__logo img { height: 48px; }
  .site-header__logo-text .zh { font-size: 1.15rem; }
  .site-header__logo-text .en { font-size: .5625rem; letter-spacing: .01em; }
  .main-nav__link {
    padding: 0 10px;
    font-size: .875rem;
  }
  :root { --header-h: 78px; }
}

@media (max-width: 1099px) {
  .site-header__logo-text .en { display: none; }
  .main-nav__link { padding: 0 8px; font-size: .8125rem; }
}

@media (max-width: 900px) {
  .top-bar .container { justify-content: flex-start; padding-right: 72px; }
  .top-bar__honors { justify-content: flex-start; gap: 6px 8px; }
  .top-bar__honors-item {
    font-size: .6875rem;
    padding: 4px 9px;
  }
  .top-bar__honors-item--gold {
    font-size: .75rem;
    padding: 4px 10px;
  }
}

/* ============================================================
   PARTY LIST PAGE (党建引领栏目)
   ============================================================ */
.page-banner--party {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 85% at 18% 50%, rgba(180, 36, 36, .28) 0%, transparent 58%),
    linear-gradient(120deg, #2f0606 0%, #6b1010 38%, #8a1616 72%, #3f0808 100%);
}

.page-banner--party .page-banner__bg {
  display: none;
}

.page-banner--party .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18) 0%, transparent 42%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, transparent 45%, rgba(0, 0, 0, .28) 100%);
}

.page-banner--party .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 36px;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner__emblem-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
}

.page-banner__emblem {
  width: 118px;
  height: auto;
  margin: 0;
  filter:
    brightness(0) saturate(100%)
    invert(78%) sepia(42%) saturate(700%) hue-rotate(2deg) brightness(1.05)
    drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
  user-select: none;
  pointer-events: none;
}

.page-banner__divider {
  flex: 0 0 auto;
  width: 1px;
  height: 112px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 215, 0, .55) 18%,
    rgba(255, 215, 0, .75) 50%,
    rgba(255, 215, 0, .55) 82%,
    transparent 100%
  );
}

.page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 640px;
}

.page-banner--party .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(255, 215, 0, .88);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--party .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--party .page-banner__title::after {
  display: none;
}

.page-banner--party .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 236, 200, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--party .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(255, 228, 228, .82);
  max-width: 34em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 0, .28);
}

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

.breadcrumb--party {
  padding: 10px 0;
}

.page--party {
  padding-top: 28px;
}

/* 党建文章详情 */
.read-progress--party {
  background: linear-gradient(90deg, #c41e24, #e8b84a);
}

.article-detail--party {
  border-radius: 4px;
  border-top: 3px solid #c41e24;
  box-shadow: 0 8px 28px rgba(80, 16, 16, .06);
}

.article-detail--party .article-detail__header {
  text-align: left;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(196, 30, 36, .15);
}

.article-detail--party .article-detail__cat-tag {
  background: rgba(196, 30, 36, .08);
  color: #c41e24;
  border-radius: 2px;
  letter-spacing: .08em;
}

.article-detail--party .article-detail__title {
  font-size: 1.75rem;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: #2a1010;
}

.article-detail--party .article-detail__meta {
  justify-content: flex-start;
}

.article-detail--party .article-detail__meta-item svg {
  color: #c41e24;
}

.article-detail--party .article-detail__cover {
  border-radius: 4px;
  margin-bottom: 28px;
  overflow: hidden;
}

.article-detail--party .article-detail__cover img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.article-detail--party .article-detail__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.article-detail--party .article-detail__content p {
  margin-bottom: 1.35rem;
  text-indent: 2em;
}

.article-detail--party .article-detail__content img {
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.article-detail--party .article-detail__content p:has(img) {
  text-indent: 0;
}

.article-detail--party .article-detail__content blockquote {
  border-left-color: #c41e24;
  background: rgba(196, 30, 36, .05);
  font-style: normal;
  text-indent: 0;
}

.article-detail--party .article-detail__content h2,
.article-detail--party .article-detail__content h3,
.article-detail--party .article-detail__content h4 {
  color: #6b1212;
  text-indent: 0;
}

.article-detail--party .article-detail__content a {
  color: #c41e24;
}

.article-detail--party .article-detail__content a:hover {
  text-decoration-color: #c41e24;
}

.article-detail--party .article-detail__content th {
  background: rgba(196, 30, 36, .08);
}

.page--party-show .article-actions__back {
  color: #c41e24;
  border-color: rgba(196, 30, 36, .35);
}

.page--party-show .article-actions__back:hover {
  background: #c41e24;
  color: #fff;
  border-color: #c41e24;
}

.page--party-show .article-actions__copy:hover {
  border-color: #c41e24;
  color: #c41e24;
}

.page--party-show .article-nav__item:hover {
  border-color: rgba(196, 30, 36, .35);
  color: #c41e24;
}

.page--party-show .article-nav__item:hover .article-nav__text {
  color: #c41e24;
}

.party-related {
  margin-top: 28px;
  padding: 22px 24px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(196, 30, 36, .12);
  box-shadow: 0 4px 16px rgba(80, 16, 16, .04);
}

.party-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(196, 30, 36, .2);
}

.party-related__title {
  font-size: 1.05rem;
  color: #6b1212;
  margin: 0;
}

.party-related__more {
  font-size: .8125rem;
  color: #c41e24;
  font-weight: 500;
  flex-shrink: 0;
}

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

.party-related__item {
  border-bottom: 1px dashed var(--color-border);
}

.party-related__item:last-child {
  border-bottom: none;
}

.party-related__link {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--color-text);
}

.party-related__link:hover {
  color: #c41e24;
}

.party-related__link time {
  flex-shrink: 0;
  font-size: .8125rem;
  color: #c41e24;
  font-variant-numeric: tabular-nums;
}

.page--party .sidebar-widget__title {
  border-bottom-color: #c41e24;
}

.page--party .sidebar-widget__item > a:hover,
.page--party .sidebar-widget__item.active > a,
.page--party .sidebar-widget__sublist a:hover,
.page--party .sidebar-widget__sublist a.active {
  color: #c41e24;
}

.party-list__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(196, 30, 36, .15);
}

.party-list__heading {
  font-size: 1.35rem;
  color: #6b1212;
  margin-bottom: 6px;
}

.party-list__lead {
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.6;
  max-width: 36em;
}

/* 首条焦点 */
.party-focus {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.party-focus__media {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 12 / 7;
  background: #4e0a0a;
}

.party-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.party-focus:hover .party-focus__media img {
  transform: scale(1.04);
}

.party-focus__media-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 50%),
    linear-gradient(180deg, #7c1212 0%, #4e0a0a 100%);
}

.party-focus__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
  background: #c41e24;
  border-radius: 2px;
}

.party-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.party-focus__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.party-focus__tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 500;
  color: #c41e24;
  background: rgba(196, 30, 36, .08);
  border-radius: 2px;
}

.party-focus__title {
  font-size: 1.35rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.party-focus__title a {
  color: var(--color-dark);
}

.party-focus__title a:hover {
  color: #c41e24;
}

.party-focus__excerpt {
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.party-focus__more {
  font-size: .875rem;
  font-weight: 600;
  color: #c41e24;
  align-self: flex-start;
}

.party-focus__more:hover {
  color: #961a1a;
}

/* 日期块列表行 */
.party-row {
  display: grid;
  grid-template-columns: 64px 148px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.party-row--no-thumb {
  grid-template-columns: 64px 1fr;
}

.party-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #961a1a 0%, #6b1212 100%);
  color: #fff;
  border-radius: 4px;
  min-height: 72px;
  padding: 8px 4px;
}

.party-row__day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.party-row__month {
  font-size: .6875rem;
  opacity: .85;
  letter-spacing: .04em;
  margin-top: 4px;
}

.party-row__thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  height: 100px;
  background: #4e0a0a;
}

.party-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.party-row:hover .party-row__thumb img {
  transform: scale(1.05);
}

.party-row__thumb-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, transparent 50%),
    linear-gradient(180deg, #7c1212 0%, #4e0a0a 100%);
}

.party-row__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.party-row__title {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.party-row__title a {
  color: var(--color-dark);
}

.party-row__title a:hover {
  color: #c41e24;
}

.party-row__excerpt {
  font-size: .8125rem;
  color: var(--color-text-lt);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.party-row__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--color-text-lt);
}

.party-row__tag {
  color: #c41e24;
  font-weight: 500;
}

.list-empty--party .list-empty__icon {
  color: #c41e24;
  opacity: .55;
}

.list-empty__icon svg {
  display: block;
}

.pagination--party a:hover,
.pagination--party .active a,
.pagination--party strong {
  border-color: #c41e24 !important;
  background: #c41e24 !important;
  color: #fff !important;
}

/* 侧栏：近期动态带日期 */
.sidebar-widget--party-related .sidebar-widget__item > a {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.sidebar-widget--party-related time {
  flex-shrink: 0;
  font-size: .75rem;
  color: #c41e24;
  font-variant-numeric: tabular-nums;
}

.sidebar-widget__toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.sidebar-widget__toggle .sidebar-widget__title {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget__toggle-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #c41e24;
  border-bottom: 2px solid #c41e24;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.sidebar-widget--collapsible.is-open .sidebar-widget__toggle-icon {
  transform: rotate(-135deg);
}

@media (max-width: 960px) {
  .party-focus {
    grid-template-columns: 1fr;
  }

  .party-row {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .party-row__thumb {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-banner--party {
    height: auto;
    min-height: 220px;
  }

  .page-banner--party .page-banner__content {
    gap: 18px;
    padding: 28px 16px;
  }

  .page-banner__emblem-wrap {
    width: 72px;
    height: 72px;
  }

  .page-banner__emblem {
    width: 64px;
  }

  .page-banner__divider {
    height: 72px;
  }

  .page-banner--party .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--party .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--party .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--party .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-detail--party {
    padding: 22px 16px;
  }

  .article-detail--party .article-detail__title {
    font-size: 1.3rem;
  }

  .article-detail--party .article-detail__content p {
    text-indent: 0;
  }

  .party-related {
    padding: 16px;
  }

  .page--party {
    padding-top: 20px;
  }

  .party-focus__title {
    font-size: 1.15rem;
  }

  .party-row__date {
    min-height: 64px;
  }

  .party-row__day {
    font-size: 1.25rem;
  }

  .sidebar-widget--collapsible .sidebar-widget__toggle {
    display: flex;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #c41e24;
  }

  .sidebar-widget--collapsible > .sidebar-widget__title--desktop {
    display: none;
  }

  .sidebar-widget--collapsible > .sidebar-widget__list {
    display: none;
    margin-top: 12px;
  }

  .sidebar-widget--collapsible.is-open > .sidebar-widget__list {
    display: flex;
  }
}

/* ============================================================
   INDUSTRY NEWS LIST (行业要闻栏目)
   ============================================================ */
.page-banner--news {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 85% at 18% 50%, rgba(27, 122, 61, .28) 0%, transparent 58%),
    linear-gradient(120deg, #0d3d22 0%, #145c2e 38%, #1b7a3d 72%, #0f2f1c 100%);
}

.page-banner--news .page-banner__bg {
  display: none;
}

.page-banner--news .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16) 0%, transparent 42%, rgba(0, 0, 0, .1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, transparent 45%, rgba(0, 0, 0, .24) 100%);
}

.page-banner--news .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner--news .page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.page-banner--news .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .9);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--news .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--news .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(220, 245, 228, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--news .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(230, 245, 235, .84);
  max-width: 34em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.breadcrumb--news {
  padding: 10px 0;
}

.page--news {
  padding-top: 28px;
}

.page--news .sidebar-widget__title {
  border-bottom-color: var(--color-primary);
}

.page--news .sidebar-widget__item > a:hover,
.page--news .sidebar-widget__item.active > a,
.page--news .sidebar-widget__sublist a:hover,
.page--news .sidebar-widget__sublist a.active {
  color: var(--color-primary);
}

.page--news .sidebar-widget--collapsible .sidebar-widget__toggle {
  border-bottom-color: var(--color-primary);
}

.page--news .sidebar-widget__toggle-icon {
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.news-list__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(27, 122, 61, .15);
}

.news-list__heading {
  font-size: 1.35rem;
  color: var(--color-primary-dk);
  margin-bottom: 0;
}

.news-focus {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.news-focus__media {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 12 / 7;
  background: #145c2e;
}

.news-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-focus:hover .news-focus__media img {
  transform: scale(1.04);
}

.news-focus__media-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 50%),
    linear-gradient(180deg, #1b7a3d 0%, #145c2e 100%);
}

.news-focus__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
  background: var(--color-primary);
  border-radius: 2px;
}

.news-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-focus__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.news-focus__tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-lt);
  border-radius: 2px;
}

.news-focus__title {
  font-size: 1.35rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.news-focus__title a {
  color: var(--color-dark);
}

.news-focus__title a:hover {
  color: var(--color-primary);
}

.news-focus__excerpt {
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-focus__more {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  align-self: flex-start;
}

.news-focus__more:hover {
  color: var(--color-primary-dk);
}

.news-row {
  display: grid;
  grid-template-columns: 64px 148px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news-row--no-thumb {
  grid-template-columns: 64px 1fr;
}

.news-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #1b7a3d 0%, #145c2e 100%);
  color: #fff;
  border-radius: 4px;
  min-height: 72px;
  padding: 8px 4px;
}

.news-row__day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.news-row__month {
  font-size: .6875rem;
  opacity: .85;
  letter-spacing: .04em;
  margin-top: 4px;
}

.news-row__thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  height: 100px;
  background: #145c2e;
}

.news-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-row:hover .news-row__thumb img {
  transform: scale(1.05);
}

.news-row__thumb-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, transparent 50%),
    linear-gradient(180deg, #1b7a3d 0%, #145c2e 100%);
}

.news-row__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-row__title {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-row__title a {
  color: var(--color-dark);
}

.news-row__title a:hover {
  color: var(--color-primary);
}

.news-row__excerpt {
  font-size: .8125rem;
  color: var(--color-text-lt);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.news-row__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--color-text-lt);
}

.news-row__tag {
  color: var(--color-primary);
  font-weight: 500;
}

.pagination--news a:hover,
.pagination--news .active a,
.pagination--news strong {
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
  color: #fff !important;
}

.sidebar-widget--news-related .sidebar-widget__item > a {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.sidebar-widget--news-related time {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

/* 行业要闻文章详情 */
.read-progress--news {
  background: linear-gradient(90deg, #1b7a3d, #d4a843);
}

.article-detail--news {
  border-radius: 4px;
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 8px 28px rgba(20, 60, 36, .06);
}

.article-detail--news .article-detail__header {
  text-align: left;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(27, 122, 61, .15);
}

.article-detail--news .article-detail__cat-tag {
  background: var(--color-primary-lt);
  color: var(--color-primary);
  border-radius: 2px;
  letter-spacing: .08em;
}

.article-detail--news .article-detail__title {
  font-size: 1.75rem;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: #14301c;
}

.article-detail--news .article-detail__meta {
  justify-content: flex-start;
}

.article-detail--news .article-detail__meta-item svg {
  color: var(--color-primary);
}

.article-detail--news .article-detail__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.article-detail--news .article-detail__content p {
  margin-bottom: 1.35rem;
  text-indent: 2em;
}

.article-detail--news .article-detail__content img {
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.article-detail--news .article-detail__content p:has(img) {
  text-indent: 0;
}

.article-detail--news .article-detail__content blockquote {
  border-left-color: var(--color-primary);
  background: rgba(27, 122, 61, .05);
  font-style: normal;
  text-indent: 0;
}

.article-detail--news .article-detail__content h2,
.article-detail--news .article-detail__content h3,
.article-detail--news .article-detail__content h4 {
  color: var(--color-primary-dk);
  text-indent: 0;
}

.article-detail--news .article-detail__content a {
  color: var(--color-primary);
}

.article-detail--news .article-detail__content a:hover {
  text-decoration-color: var(--color-primary);
}

.article-detail--news .article-detail__content th {
  background: rgba(27, 122, 61, .08);
}

.page--news-show .article-actions__back {
  color: var(--color-primary);
  border-color: rgba(27, 122, 61, .35);
}

.page--news-show .article-actions__back:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.page--news-show .article-actions__copy:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.page--news-show .article-nav__item:hover {
  border-color: rgba(27, 122, 61, .35);
  color: var(--color-primary);
}

.page--news-show .article-nav__item:hover .article-nav__text {
  color: var(--color-primary);
}

.news-related {
  margin-top: 28px;
  padding: 22px 24px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(27, 122, 61, .12);
  box-shadow: 0 4px 16px rgba(20, 60, 36, .04);
}

.news-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(27, 122, 61, .2);
}

.news-related__title {
  font-size: 1.05rem;
  color: var(--color-primary-dk);
  margin: 0;
}

.news-related__more {
  font-size: .8125rem;
  color: var(--color-primary);
  font-weight: 500;
  flex-shrink: 0;
}

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

.news-related__item {
  border-bottom: 1px dashed var(--color-border);
}

.news-related__item:last-child {
  border-bottom: none;
}

.news-related__link {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--color-text);
}

.news-related__link:hover {
  color: var(--color-primary);
}

.news-related__link time {
  flex-shrink: 0;
  font-size: .8125rem;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .news-focus {
    grid-template-columns: 1fr;
  }

  .news-row {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .news-row__thumb {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-banner--news {
    height: auto;
    min-height: 220px;
  }

  .page-banner--news .page-banner__content {
    gap: 0;
    padding: 28px 16px;
  }

  .page-banner--news .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--news .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--news .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--news .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--news {
    padding-top: 20px;
  }

  .news-focus__title {
    font-size: 1.15rem;
  }

  .news-row__date {
    min-height: 64px;
  }

  .news-row__day {
    font-size: 1.25rem;
  }

  .article-detail--news {
    padding: 22px 16px;
  }

  .article-detail--news .article-detail__title {
    font-size: 1.3rem;
  }

  .article-detail--news .article-detail__content p {
    text-indent: 0;
  }

  .news-related {
    padding: 16px;
  }
}

/* ============================================================
   ALT DEV HUB (替代发展栏目总览 id=5)
   ============================================================ */
.page-banner--altdev {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 65% 90% at 12% 55%, rgba(212, 168, 67, .18) 0%, transparent 55%),
    linear-gradient(125deg, #0a2e1a 0%, #0f3d24 32%, #145c2e 68%, #0c2818 100%);
}

.page-banner--altdev .page-banner__bg {
  display: none;
}

.page-banner--altdev .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18) 0%, transparent 45%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, transparent 48%, rgba(0, 0, 0, .28) 100%);
}

.page-banner--altdev .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner--altdev .page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.page-banner--altdev .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .92);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--altdev .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--altdev .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(220, 245, 228, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--altdev .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(230, 245, 235, .84);
  max-width: 36em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.breadcrumb--altdev {
  padding: 10px 0;
}

.page--altdev {
  padding-top: 28px;
  padding-bottom: 48px;
}

.page--altdev .sidebar-widget__title {
  color: var(--color-primary-dk);
}

.page--altdev .sidebar-widget__item > a:hover,
.page--altdev .sidebar-widget__item.active > a {
  color: var(--color-primary);
}

.page--altdev .sidebar-widget--collapsible .sidebar-widget__toggle {
  border-color: rgba(27, 122, 61, .2);
}

.page--altdev .sidebar-widget__toggle-icon {
  border-color: var(--color-primary);
}

.altdev-hub {
  margin-bottom: 36px;
}

.altdev-hub__head {
  margin-bottom: 20px;
}

.altdev-hub__heading {
  font-size: 1.25rem;
  color: #14301c;
  margin: 0 0 8px;
  letter-spacing: .06em;
}

.altdev-hub__lead {
  margin: 0;
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.7;
  max-width: 40em;
}

.altdev-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: altdev-hub-num;
}

.altdev-hub__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  counter-increment: altdev-hub-num;
  box-shadow: 0 8px 24px rgba(20, 60, 36, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.altdev-hub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 60, 36, .2);
}

.altdev-hub__card-media,
.altdev-hub__card-media-bg {
  position: absolute;
  inset: 0;
}

.altdev-hub__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.altdev-hub__card:hover .altdev-hub__card-media img {
  transform: scale(1.06);
}

.altdev-hub__card-media-bg {
  background:
    linear-gradient(160deg, #1b7a3d 0%, #0f3d24 100%);
}

.altdev-hub__card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 16, .15) 0%, rgba(8, 28, 16, .55) 48%, rgba(8, 28, 16, .88) 100%);
  transition: background .3s ease;
}

.altdev-hub__card:hover .altdev-hub__card-shade {
  background: linear-gradient(180deg, rgba(8, 28, 16, .1) 0%, rgba(8, 28, 16, .5) 42%, rgba(8, 28, 16, .92) 100%);
}

.altdev-hub__card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px 16px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.altdev-hub__card-index {
  font-size: .75rem;
  letter-spacing: .16em;
  color: rgba(212, 168, 67, .9);
  font-weight: 600;
}

.altdev-hub__card-index::before {
  content: "0" counter(altdev-hub-num);
}

.altdev-hub__card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  color: #fff;
}

.altdev-hub__card:hover .altdev-hub__card-title,
.altdev-hub__card:hover .altdev-hub__card-desc,
.altdev-hub__card:hover .altdev-hub__card-cta {
  color: #fff;
}

.altdev-hub__card-desc {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.altdev-hub__card-cta {
  margin-top: 4px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .04em;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.altdev-hub__card:hover .altdev-hub__card-cta {
  opacity: 1;
  transform: translateX(2px);
}

.altdev-hub__layout {
  margin-top: 8px;
}

.altdev-feed {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(27, 122, 61, .12);
  box-shadow: 0 4px 16px rgba(20, 60, 36, .04);
  padding: 20px 22px 12px;
}

.altdev-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(27, 122, 61, .2);
}

.altdev-feed__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-primary-dk);
}

.altdev-feed__more {
  font-size: .8125rem;
  color: var(--color-primary);
  font-weight: 500;
  flex-shrink: 0;
}

.altdev-feed__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}

.altdev-feed__row:last-of-type {
  border-bottom: none;
}

.altdev-feed__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: rgba(27, 122, 61, .06);
  border-radius: 2px;
  color: var(--color-primary);
  line-height: 1.2;
}

.altdev-feed__day {
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.altdev-feed__month {
  font-size: .7rem;
  letter-spacing: .04em;
  opacity: .85;
}

.altdev-feed__item-title {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
}

.altdev-feed__item-title a {
  color: var(--color-text);
}

.altdev-feed__item-title a:hover {
  color: var(--color-primary);
}

.list-empty--altdev {
  padding: 28px 12px;
}

@media (max-width: 1100px) {
  .altdev-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .altdev-hub__card {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .page-banner--altdev {
    height: auto;
    min-height: 220px;
  }

  .page-banner--altdev .page-banner__content {
    padding: 28px 16px;
  }

  .page-banner--altdev .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--altdev .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--altdev .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--altdev .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--altdev {
    padding-top: 20px;
  }

  .altdev-hub__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .altdev-hub__card {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  .altdev-feed {
    padding: 16px;
  }

  .altdev-feed__row {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
}

/* 替代发展子栏目列表 */
.altdev-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.altdev-subnav__item {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: .875rem;
  color: var(--color-text-lt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.altdev-subnav__item:hover {
  color: var(--color-primary);
  border-color: rgba(27, 122, 61, .4);
}

.altdev-subnav__item--active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.altdev-subnav__item--active:hover {
  color: #fff;
  border-color: var(--color-primary);
}

.page--altdev-child .altdev-list__head {
  margin-bottom: 16px;
}

.page--altdev-child .news-list__heading {
  color: #14301c;
}

.list-empty__back {
  display: inline-flex;
  margin-top: 14px;
  font-size: .875rem;
  color: var(--color-primary);
  font-weight: 500;
}

.list-empty__back:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .altdev-subnav {
    gap: 6px;
    margin-bottom: 16px;
  }

  .altdev-subnav__item {
    padding: 6px 12px;
    font-size: .8125rem;
  }
}

.altdev-page {
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 8px 28px rgba(20, 60, 36, .06);
  padding: 28px 28px 20px;
}

.altdev-page__header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 122, 61, .15);
}

.altdev-page__title {
  margin: 0;
  font-size: 1.35rem;
  color: #14301c;
  letter-spacing: .04em;
}

.altdev-page__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.altdev-page__content p {
  margin-bottom: 1.2rem;
}

.altdev-page__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.2rem auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .altdev-page {
    padding: 20px 16px;
  }

  .altdev-page__title {
    font-size: 1.15rem;
  }
}

/* ============================================================
   NOTICE (通知通告 id=1)
   ============================================================ */
.page--notice {
  --notice: #1e4a6e;
  --notice-dk: #143652;
  --notice-lt: #e8eef4;
}

.page-banner--notice {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 85% at 18% 50%, rgba(212, 168, 67, .16) 0%, transparent 58%),
    linear-gradient(120deg, #0f2438 0%, #163a58 38%, #1e4a6e 72%, #0e2032 100%);
}

.page-banner--notice .page-banner__bg { display: none; }

.page-banner--notice .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16) 0%, transparent 42%, rgba(0, 0, 0, .1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, transparent 45%, rgba(0, 0, 0, .24) 100%);
}

.page-banner--notice .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner--notice .page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.page-banner--notice .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .92);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--notice .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--notice .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(220, 235, 248, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--notice .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(230, 240, 250, .84);
  max-width: 34em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.breadcrumb--notice { padding: 10px 0; }

.page--notice {
  padding-top: 28px;
  padding-bottom: 48px;
}

.page--notice .sidebar-widget__title { color: var(--notice-dk); }

.page--notice .sidebar-widget__item > a:hover,
.page--notice .sidebar-widget__item.active > a,
.page--notice .sidebar-widget__sublist a:hover,
.page--notice .sidebar-widget__sublist a.active {
  color: var(--notice);
}

.page--notice .sidebar-widget--collapsible .sidebar-widget__toggle {
  border-color: rgba(30, 74, 110, .2);
}

.page--notice .sidebar-widget__toggle-icon {
  border-color: var(--notice);
}

.notice-list__head { margin-bottom: 16px; }

.notice-list__heading {
  margin: 0;
  font-size: 1.2rem;
  color: var(--notice-dk);
  letter-spacing: .04em;
}

.notice-focus {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
  padding: 18px;
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid var(--notice);
  box-shadow: 0 6px 22px rgba(20, 40, 60, .06);
}

.notice-focus__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10;
  background: var(--notice-lt);
}

.notice-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.notice-focus:hover .notice-focus__media img { transform: scale(1.04); }

.notice-focus__media-empty {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(30, 74, 110, .12) 0%, rgba(212, 168, 67, .1) 100%);
}

.notice-focus__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: .75rem;
  color: #fff;
  background: var(--notice);
  border-radius: 2px;
  letter-spacing: .08em;
}

.notice-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.notice-focus__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.notice-focus__tag {
  padding: 2px 8px;
  background: var(--notice-lt);
  color: var(--notice);
  border-radius: 2px;
  font-weight: 500;
}

.notice-focus__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.45;
}

.notice-focus__title a { color: #14301c; }
.notice-focus__title a:hover { color: var(--notice); }

.notice-focus__excerpt {
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notice-focus__more {
  font-size: .875rem;
  color: var(--notice);
  font-weight: 500;
}

.notice-focus__more:hover { text-decoration: underline; }

.notice-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
}

.notice-row:last-of-type { border-bottom: none; }

.notice-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  background: var(--notice-lt);
  border-radius: 2px;
  color: var(--notice);
  line-height: 1.2;
}

.notice-row__day {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.notice-row__month {
  font-size: .7rem;
  letter-spacing: .04em;
  opacity: .85;
}

.notice-row__title {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.notice-row__title a { color: var(--color-text); }
.notice-row__title a:hover { color: var(--notice); }

.notice-row__excerpt {
  margin: 0 0 8px;
  font-size: .875rem;
  line-height: 1.65;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notice-row__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .75rem;
  color: var(--color-text-lt);
}

.notice-row__tag {
  padding: 1px 6px;
  background: var(--notice-lt);
  color: var(--notice);
  border-radius: 2px;
}

.pagination--notice .active a,
.pagination--notice strong {
  border-color: var(--notice) !important;
  background: var(--notice) !important;
  color: #fff !important;
}

.sidebar-widget--notice-related .sidebar-widget__item > a {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.sidebar-widget--notice-related time {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--notice);
  font-variant-numeric: tabular-nums;
}

.read-progress--notice {
  background: linear-gradient(90deg, #1e4a6e, #d4a843);
}

.article-detail--notice {
  border-radius: 4px;
  border-top: 3px solid var(--notice);
  box-shadow: 0 8px 28px rgba(20, 40, 60, .06);
}

.article-detail--notice .article-detail__header {
  text-align: left;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(30, 74, 110, .15);
}

.article-detail--notice .article-detail__cat-tag {
  background: var(--notice-lt);
  color: var(--notice);
  border-radius: 2px;
  letter-spacing: .08em;
}

.article-detail--notice .article-detail__title {
  font-size: 1.75rem;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: #12263a;
}

.article-detail--notice .article-detail__meta { justify-content: flex-start; }

.article-detail--notice .article-detail__meta-item svg { color: var(--notice); }

.article-detail--notice .article-detail__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.article-detail--notice .article-detail__content p {
  margin-bottom: 1.35rem;
  text-indent: 2em;
}

.article-detail--notice .article-detail__content img {
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.article-detail--notice .article-detail__content p:has(img) { text-indent: 0; }

.article-detail--notice .article-detail__content blockquote {
  border-left-color: var(--notice);
  background: rgba(30, 74, 110, .05);
  font-style: normal;
  text-indent: 0;
}

.article-detail--notice .article-detail__content h2,
.article-detail--notice .article-detail__content h3,
.article-detail--notice .article-detail__content h4 {
  color: var(--notice-dk);
  text-indent: 0;
}

.article-detail--notice .article-detail__content a { color: var(--notice); }

.page--notice-show .article-actions__back {
  color: var(--notice);
  border-color: rgba(30, 74, 110, .35);
}

.page--notice-show .article-actions__back:hover {
  background: var(--notice);
  color: #fff;
  border-color: var(--notice);
}

.page--notice-show .article-actions__copy:hover,
.page--notice-show .article-nav__item:hover {
  border-color: rgba(30, 74, 110, .35);
  color: var(--notice);
}

.page--notice-show .article-nav__item:hover .article-nav__text { color: var(--notice); }

.notice-related {
  margin-top: 28px;
  padding: 22px 24px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(30, 74, 110, .12);
  box-shadow: 0 4px 16px rgba(20, 40, 60, .04);
}

.notice-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30, 74, 110, .2);
}

.notice-related__title {
  font-size: 1.05rem;
  color: var(--notice-dk);
  margin: 0;
}

.notice-related__more {
  font-size: .8125rem;
  color: var(--notice);
  font-weight: 500;
  flex-shrink: 0;
}

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

.notice-related__item { border-bottom: 1px dashed var(--color-border); }
.notice-related__item:last-child { border-bottom: none; }

.notice-related__link {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--color-text);
}

.notice-related__link:hover { color: var(--notice); }

.notice-related__link time {
  flex-shrink: 0;
  font-size: .8125rem;
  color: var(--notice);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .notice-focus { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-banner--notice {
    height: auto;
    min-height: 220px;
  }

  .page-banner--notice .page-banner__content { padding: 28px 16px; }

  .page-banner--notice .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--notice .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--notice .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--notice .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--notice { padding-top: 20px; }

  .notice-focus__title { font-size: 1.15rem; }

  .notice-row__date { min-height: 56px; }
  .notice-row__day { font-size: 1.2rem; }

  .article-detail--notice { padding: 22px 16px; }
  .article-detail--notice .article-detail__title { font-size: 1.3rem; }
  .article-detail--notice .article-detail__content p { text-indent: 0; }

  .notice-related { padding: 16px; }
}
/* ============================================================
   POLICY (政策法规 id=2)
   ============================================================ */
.page--policy {
  --policy: #3d4f7c;
  --policy-dk: #2a385c;
  --policy-lt: #eef0f6;
}

.page-banner--policy {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 85% at 18% 50%, rgba(212, 168, 67, .16) 0%, transparent 58%),
    linear-gradient(120deg, #1a2438 0%, #2a385c 38%, #3d4f7c 72%, #161f30 100%);
}

.page-banner--policy .page-banner__bg { display: none; }

.page-banner--policy .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16) 0%, transparent 42%, rgba(0, 0, 0, .1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, transparent 45%, rgba(0, 0, 0, .24) 100%);
}

.page-banner--policy .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner--policy .page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.page-banner--policy .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .92);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--policy .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--policy .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(228, 232, 245, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--policy .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(235, 238, 248, .84);
  max-width: 34em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.breadcrumb--policy { padding: 10px 0; }

.page--policy {
  padding-top: 28px;
  padding-bottom: 48px;
}

.page--policy .sidebar-widget__title { color: var(--policy-dk); }

.page--policy .sidebar-widget__item > a:hover,
.page--policy .sidebar-widget__item.active > a,
.page--policy .sidebar-widget__sublist a:hover,
.page--policy .sidebar-widget__sublist a.active {
  color: var(--policy);
}

.page--policy .sidebar-widget--collapsible .sidebar-widget__toggle {
  border-color: rgba(61, 79, 124, .2);
}

.page--policy .sidebar-widget__toggle-icon {
  border-color: var(--policy);
}

.policy-list__head { margin-bottom: 16px; }

.policy-list__heading {
  margin: 0;
  font-size: 1.2rem;
  color: var(--policy-dk);
  letter-spacing: .04em;
}

.policy-focus {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
  padding: 18px;
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid var(--policy);
  box-shadow: 0 6px 22px rgba(30, 40, 70, .06);
}

.policy-focus__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10;
  background: var(--policy-lt);
}

.policy-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.policy-focus:hover .policy-focus__media img { transform: scale(1.04); }

.policy-focus__media-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 79, 124, .12) 0%, rgba(212, 168, 67, .1) 100%);
}

.policy-focus__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: .75rem;
  color: #fff;
  background: var(--policy);
  border-radius: 2px;
  letter-spacing: .08em;
}

.policy-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.policy-focus__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.policy-focus__tag {
  padding: 2px 8px;
  background: var(--policy-lt);
  color: var(--policy);
  border-radius: 2px;
  font-weight: 500;
}

.policy-focus__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.45;
}

.policy-focus__title a { color: #1a2438; }
.policy-focus__title a:hover { color: var(--policy); }

.policy-focus__excerpt {
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.policy-focus__more {
  font-size: .875rem;
  color: var(--policy);
  font-weight: 500;
}

.policy-focus__more:hover { text-decoration: underline; }

.policy-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
}

.policy-row:last-of-type { border-bottom: none; }

.policy-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  background: var(--policy-lt);
  border-radius: 2px;
  color: var(--policy);
  line-height: 1.2;
}

.policy-row__day {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.policy-row__month {
  font-size: .7rem;
  letter-spacing: .04em;
  opacity: .85;
}

.policy-row__title {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.policy-row__title a { color: var(--color-text); }
.policy-row__title a:hover { color: var(--policy); }

.policy-row__excerpt {
  margin: 0 0 8px;
  font-size: .875rem;
  line-height: 1.65;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.policy-row__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .75rem;
  color: var(--color-text-lt);
}

.policy-row__tag {
  padding: 1px 6px;
  background: var(--policy-lt);
  color: var(--policy);
  border-radius: 2px;
}

.pagination--policy .active a,
.pagination--policy strong {
  border-color: var(--policy) !important;
  background: var(--policy) !important;
  color: #fff !important;
}

.sidebar-widget--policy-related .sidebar-widget__item > a {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.sidebar-widget--policy-related time {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--policy);
  font-variant-numeric: tabular-nums;
}

.read-progress--policy {
  background: linear-gradient(90deg, #3d4f7c, #d4a843);
}

.article-detail--policy {
  border-radius: 4px;
  border-top: 3px solid var(--policy);
  box-shadow: 0 8px 28px rgba(30, 40, 70, .06);
}

.article-detail--policy .article-detail__header {
  text-align: left;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(61, 79, 124, .15);
}

.article-detail--policy .article-detail__cat-tag {
  background: var(--policy-lt);
  color: var(--policy);
  border-radius: 2px;
  letter-spacing: .08em;
}

.article-detail--policy .article-detail__title {
  font-size: 1.75rem;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: #1a2438;
}

.article-detail--policy .article-detail__meta { justify-content: flex-start; }
.article-detail--policy .article-detail__meta-item svg { color: var(--policy); }

.article-detail--policy .article-detail__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.article-detail--policy .article-detail__content p {
  margin-bottom: 1.35rem;
  text-indent: 2em;
}

.article-detail--policy .article-detail__content img {
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
}

.article-detail--policy .article-detail__content p:has(img) { text-indent: 0; }

.article-detail--policy .article-detail__content blockquote {
  border-left-color: var(--policy);
  background: rgba(61, 79, 124, .05);
  font-style: normal;
  text-indent: 0;
}

.article-detail--policy .article-detail__content h2,
.article-detail--policy .article-detail__content h3,
.article-detail--policy .article-detail__content h4 {
  color: var(--policy-dk);
  text-indent: 0;
}

.article-detail--policy .article-detail__content a { color: var(--policy); }

.page--policy-show .article-actions__back {
  color: var(--policy);
  border-color: rgba(61, 79, 124, .35);
}

.page--policy-show .article-actions__back:hover {
  background: var(--policy);
  color: #fff;
  border-color: var(--policy);
}

.page--policy-show .article-actions__copy:hover,
.page--policy-show .article-nav__item:hover {
  border-color: rgba(61, 79, 124, .35);
  color: var(--policy);
}

.page--policy-show .article-nav__item:hover .article-nav__text { color: var(--policy); }

.policy-related {
  margin-top: 28px;
  padding: 22px 24px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(61, 79, 124, .12);
  box-shadow: 0 4px 16px rgba(30, 40, 70, .04);
}

.policy-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(61, 79, 124, .2);
}

.policy-related__title {
  font-size: 1.05rem;
  color: var(--policy-dk);
  margin: 0;
}

.policy-related__more {
  font-size: .8125rem;
  color: var(--policy);
  font-weight: 500;
  flex-shrink: 0;
}

.policy-related__list { list-style: none; margin: 0; padding: 0; }
.policy-related__item { border-bottom: 1px dashed var(--color-border); }
.policy-related__item:last-child { border-bottom: none; }

.policy-related__link {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--color-text);
}

.policy-related__link:hover { color: var(--policy); }

.policy-related__link time {
  flex-shrink: 0;
  font-size: .8125rem;
  color: var(--policy);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .policy-focus { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-banner--policy {
    height: auto;
    min-height: 220px;
  }

  .page-banner--policy .page-banner__content { padding: 28px 16px; }

  .page-banner--policy .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--policy .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--policy .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--policy .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--policy { padding-top: 20px; }
  .policy-focus__title { font-size: 1.15rem; }
  .policy-row__date { min-height: 56px; }
  .policy-row__day { font-size: 1.2rem; }
  .article-detail--policy { padding: 22px 16px; }
  .article-detail--policy .article-detail__title { font-size: 1.3rem; }
  .article-detail--policy .article-detail__content p { text-indent: 0; }
  .policy-related { padding: 16px; }
}
/* ============================================================
   MEMBER HUB (会员服务 id=11)
   ============================================================ */
.page--member {
  --member: #1b7a3d;
  --member-dk: #145c2e;
  --member-lt: #e8f5e9;
}

.page-banner--member {
  height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 85% at 18% 50%, rgba(212, 168, 67, .2) 0%, transparent 58%),
    linear-gradient(120deg, #0d3320 0%, #145c2e 40%, #1b7a3d 72%, #0f2f1c 100%);
}

.page-banner--member .page-banner__bg { display: none; }

.page-banner--member .page-banner__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16) 0%, transparent 42%, rgba(0, 0, 0, .1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .14) 0%, transparent 45%, rgba(0, 0, 0, .24) 100%);
}

.page-banner--member .page-banner__content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0;
  padding: 36px 20px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-banner--member .page-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.page-banner--member .page-banner__eyebrow {
  font-size: .8125rem;
  letter-spacing: .28em;
  color: rgba(212, 168, 67, .92);
  margin-bottom: 12px;
  font-weight: 500;
}

.page-banner--member .page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .18em;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.page-banner--member .page-banner__subtitle {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(220, 245, 228, .92);
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.5;
}

.page-banner--member .page-banner__desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(230, 245, 235, .84);
  max-width: 36em;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 168, 67, .3);
}

.breadcrumb--member { padding: 10px 0; }

.page--member {
  padding-top: 28px;
  padding-bottom: 48px;
}

.page--member .sidebar-widget__title { color: var(--member-dk); }

.page--member .sidebar-widget__item > a:hover,
.page--member .sidebar-widget__item.active > a {
  color: var(--member);
}

.page--member .sidebar-widget--collapsible .sidebar-widget__toggle {
  border-color: rgba(27, 122, 61, .2);
}

.page--member .sidebar-widget__toggle-icon {
  border-color: var(--member);
}

.member-hub { margin-bottom: 36px; }

.member-hub__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.member-hub__heading {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #14301c;
  letter-spacing: .06em;
}

.member-hub__lead {
  margin: 0;
  font-size: .9rem;
  color: var(--color-text-lt);
  line-height: 1.7;
  max-width: 36em;
}

.member-hub__join { flex-shrink: 0; }

.member-hub__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  background: rgba(27, 122, 61, .12);
  border: 1px solid rgba(27, 122, 61, .14);
  border-radius: 4px;
  overflow: hidden;
}

.member-hub__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #fff;
  text-align: center;
}

.member-hub__stat strong {
  font-size: 1.75rem;
  color: var(--member-dk);
  font-weight: 700;
  line-height: 1.1;
}

.member-hub__stat strong em {
  font-style: normal;
  font-size: 1rem;
  margin-left: 2px;
  color: var(--member);
}

.member-hub__stat span {
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.member-hub__stat--cta a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--member);
}

.member-hub__stat--cta a:hover { text-decoration: underline; }

.member-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: member-hub-num;
}

.member-hub__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  aspect-ratio: 4 / 5;
  min-height: 260px;
  counter-increment: member-hub-num;
  box-shadow: 0 8px 24px rgba(20, 60, 36, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.member-hub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20, 60, 36, .2);
}

.member-hub__card-media,
.member-hub__card-media-bg {
  position: absolute;
  inset: 0;
}

.member-hub__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.member-hub__card:hover .member-hub__card-media img { transform: scale(1.06); }

.member-hub__card-media-bg {
  background: linear-gradient(160deg, #1b7a3d 0%, #0f3d24 100%);
}

.member-hub__card:nth-child(2) .member-hub__card-media-bg {
  background: linear-gradient(160deg, #1a6b45 0%, #145c2e 100%);
}

.member-hub__card:nth-child(3) .member-hub__card-media-bg {
  background: linear-gradient(160deg, #2a8f4e 0%, #145c2e 100%);
}

.member-hub__card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 16, .15) 0%, rgba(8, 28, 16, .55) 48%, rgba(8, 28, 16, .9) 100%);
}

.member-hub__card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px 16px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-hub__card-index {
  font-size: .75rem;
  letter-spacing: .16em;
  color: rgba(212, 168, 67, .9);
  font-weight: 600;
}

.member-hub__card-index::before {
  content: "0" counter(member-hub-num);
}

.member-hub__card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  color: #fff;
}

.member-hub__card:hover .member-hub__card-title,
.member-hub__card:hover .member-hub__card-desc,
.member-hub__card:hover .member-hub__card-cta {
  color: #fff;
}

.member-hub__card-desc {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-hub__card-cta {
  margin-top: 4px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .04em;
}

.member-hub__layout { margin-top: 8px; }

.member-feed {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(27, 122, 61, .12);
  box-shadow: 0 4px 16px rgba(20, 60, 36, .04);
  padding: 20px 22px 12px;
}

.member-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(27, 122, 61, .2);
}

.member-feed__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--member-dk);
}

.member-feed__more {
  font-size: .8125rem;
  color: var(--member);
  font-weight: 500;
  flex-shrink: 0;
}

.member-feed__row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}

.member-feed__row:last-of-type { border-bottom: none; }

.member-feed__mark {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--member);
  box-shadow: 0 0 0 3px rgba(27, 122, 61, .15);
}

.member-feed__item-title {
  margin: 0 0 4px;
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
}

.member-feed__item-title a { color: var(--color-text); }
.member-feed__item-title a:hover { color: var(--member); }

.member-feed__body time {
  font-size: .75rem;
  color: var(--color-text-lt);
  font-variant-numeric: tabular-nums;
}

.sidebar-widget--member-cta .sidebar-widget__text {
  margin: 0 0 14px;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--color-text-lt);
}

.sidebar-widget--member-cta .sidebar-widget__btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

@media (max-width: 960px) {
  .member-hub__grid { grid-template-columns: 1fr; }
  .member-hub__card {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
  .member-hub__stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-banner--member {
    height: auto;
    min-height: 220px;
  }

  .page-banner--member .page-banner__content { padding: 28px 16px; }

  .page-banner--member .page-banner__eyebrow {
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 8px;
  }

  .page-banner--member .page-banner__title {
    font-size: 1.65rem;
    letter-spacing: .1em;
  }

  .page-banner--member .page-banner__subtitle {
    font-size: .9rem;
    margin-bottom: 10px;
  }

  .page-banner--member .page-banner__desc {
    font-size: .8125rem;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--member { padding-top: 20px; }

  .member-hub__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .member-feed { padding: 16px; }
}
/* 会员服务子栏目 */
.member-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.member-subnav__item {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: .875rem;
  color: var(--color-text-lt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.member-subnav__item:hover {
  color: var(--member, #1b7a3d);
  border-color: rgba(27, 122, 61, .4);
}

.member-subnav__item--active {
  color: #fff;
  background: var(--member, #1b7a3d);
  border-color: var(--member, #1b7a3d);
}

.member-subnav__item--active:hover {
  color: #fff;
  border-color: var(--member, #1b7a3d);
}

.member-list__head { margin-bottom: 16px; }

.member-list__heading {
  margin: 0;
  font-size: 1.2rem;
  color: var(--member-dk, #145c2e);
  letter-spacing: .04em;
}

.member-focus {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
  padding: 18px;
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid var(--member, #1b7a3d);
  box-shadow: 0 6px 22px rgba(20, 60, 36, .06);
}

.member-focus__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16 / 10;
  background: var(--member-lt, #e8f5e9);
}

.member-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.member-focus:hover .member-focus__media img { transform: scale(1.04); }

.member-focus__media-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 122, 61, .12) 0%, rgba(212, 168, 67, .1) 100%);
}

.member-focus__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: .75rem;
  color: #fff;
  background: var(--member, #1b7a3d);
  border-radius: 2px;
  letter-spacing: .08em;
}

.member-focus__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.member-focus__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: .8125rem;
  color: var(--color-text-lt);
}

.member-focus__tag {
  padding: 2px 8px;
  background: var(--member-lt, #e8f5e9);
  color: var(--member, #1b7a3d);
  border-radius: 2px;
  font-weight: 500;
}

.member-focus__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.45;
}

.member-focus__title a { color: #14301c; }
.member-focus__title a:hover { color: var(--member, #1b7a3d); }

.member-focus__excerpt {
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-focus__more {
  font-size: .875rem;
  color: var(--member, #1b7a3d);
  font-weight: 500;
}

.member-focus__more:hover { text-decoration: underline; }

.member-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
}

.member-row:last-of-type { border-bottom: none; }

.member-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  background: var(--member-lt, #e8f5e9);
  border-radius: 2px;
  color: var(--member, #1b7a3d);
  line-height: 1.2;
}

.member-row__day {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.member-row__month {
  font-size: .7rem;
  letter-spacing: .04em;
  opacity: .85;
}

.member-row__title {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.member-row__title a { color: var(--color-text); }
.member-row__title a:hover { color: var(--member, #1b7a3d); }

.member-row__excerpt {
  margin: 0 0 8px;
  font-size: .875rem;
  line-height: 1.65;
  color: var(--color-text-lt);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-row__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .75rem;
  color: var(--color-text-lt);
}

.member-row__tag {
  padding: 1px 6px;
  background: var(--member-lt, #e8f5e9);
  color: var(--member, #1b7a3d);
  border-radius: 2px;
}

.pagination--member .active a,
.pagination--member strong {
  border-color: var(--member, #1b7a3d) !important;
  background: var(--member, #1b7a3d) !important;
  color: #fff !important;
}

.member-page {
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid var(--member, #1b7a3d);
  box-shadow: 0 8px 28px rgba(20, 60, 36, .06);
  padding: 28px 28px 20px;
}

.member-page__header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 122, 61, .15);
}

.member-page__title {
  margin: 0;
  font-size: 1.35rem;
  color: #14301c;
  letter-spacing: .04em;
}

.member-page__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.member-page__placeholder { padding: 8px 0 12px; }

.member-page__lead {
  margin: 0 0 18px;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--color-text);
}

.member-page__contacts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid rgba(27, 122, 61, .12);
  border-radius: 4px;
  background: var(--member-lt, #e8f5e9);
}

.member-page__contacts li {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px dashed rgba(27, 122, 61, .15);
  font-size: .9rem;
}

.member-page__contacts li:last-child { border-bottom: none; }

.member-page__contacts span {
  flex-shrink: 0;
  width: 3em;
  color: var(--member-dk, #145c2e);
  font-weight: 600;
}

.member-page__contacts a { color: var(--member, #1b7a3d); }
.member-page__contacts em { font-style: normal; color: var(--color-text); }

.read-progress--member {
  background: linear-gradient(90deg, #1b7a3d, #d4a843);
}

.article-detail--member {
  border-radius: 4px;
  border-top: 3px solid var(--member, #1b7a3d);
  box-shadow: 0 8px 28px rgba(20, 60, 36, .06);
}

.article-detail--member .article-detail__header {
  text-align: left;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(27, 122, 61, .15);
}

.article-detail--member .article-detail__cat-tag {
  background: var(--member-lt, #e8f5e9);
  color: var(--member, #1b7a3d);
  border-radius: 2px;
}

.article-detail--member .article-detail__title {
  font-size: 1.75rem;
  line-height: 1.45;
  margin-bottom: 18px;
  color: #14301c;
}

.article-detail--member .article-detail__meta { justify-content: flex-start; }
.article-detail--member .article-detail__meta-item svg { color: var(--member, #1b7a3d); }

.article-detail--member .article-detail__content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  text-align: justify;
}

.article-detail--member .article-detail__content p {
  margin-bottom: 1.35rem;
  text-indent: 2em;
}

.article-detail--member .article-detail__content img {
  display: block;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.article-detail--member .article-detail__content p:has(img) { text-indent: 0; }

.page--member-show .article-actions__back {
  color: var(--member, #1b7a3d);
  border-color: rgba(27, 122, 61, .35);
}

.page--member-show .article-actions__back:hover {
  background: var(--member, #1b7a3d);
  color: #fff;
  border-color: var(--member, #1b7a3d);
}

.page--member-show .article-actions__copy:hover,
.page--member-show .article-nav__item:hover {
  border-color: rgba(27, 122, 61, .35);
  color: var(--member, #1b7a3d);
}

.member-related {
  margin-top: 28px;
  padding: 22px 24px 8px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(27, 122, 61, .12);
}

.member-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(27, 122, 61, .2);
}

.member-related__title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--member-dk, #145c2e);
}

.member-related__more {
  font-size: .8125rem;
  color: var(--member, #1b7a3d);
  font-weight: 500;
}

.member-related__list { list-style: none; margin: 0; padding: 0; }
.member-related__item { border-bottom: 1px dashed var(--color-border); }
.member-related__item:last-child { border-bottom: none; }

.member-related__link {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--color-text);
}

.member-related__link:hover { color: var(--member, #1b7a3d); }

.member-related__link time {
  flex-shrink: 0;
  font-size: .8125rem;
  color: var(--member, #1b7a3d);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 960px) {
  .member-focus { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .member-subnav { gap: 6px; margin-bottom: 16px; }
  .member-subnav__item { padding: 6px 12px; font-size: .8125rem; }
  .member-focus__title { font-size: 1.15rem; }
  .member-row__date { min-height: 56px; }
  .member-page { padding: 20px 16px; }
  .article-detail--member { padding: 22px 16px; }
  .article-detail--member .article-detail__title { font-size: 1.3rem; }
  .article-detail--member .article-detail__content p { text-indent: 0; }
  .member-related { padding: 16px; }
}

/* ============================================================
   OPT 2026-07-23: P0/P1/P2 homepage polish
   ============================================================ */

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  padding: 8px 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* Hero 与数据卡片形成连续的首屏层次 */
.stats {
  margin-top: -42px;
  padding: 0 0 12px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent 42px,
    var(--color-bg) 42px,
    var(--color-bg) 100%
  );
}
.stats .container {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 14px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 48px rgba(10, 44, 26, .16);
}
.stats .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a962 18%, var(--color-primary) 50%, #c9a962 82%, transparent);
}
.stats__item {
  transition: transform .25s ease, background-color .25s ease;
}
.stats__item:hover {
  transform: translateY(-2px);
  background: rgba(27, 122, 61, .035);
}
.stats__number {
  color: var(--color-primary);
  text-shadow: 0 1px 0 rgba(255,255,255,.85);
}
.stats__label {
  color: #526158;
}

.home-tools {
  padding: 12px 0 28px;
  background: var(--color-bg);
  border-bottom: none;
}

.alt-dev__card-media {
  background: #143d28;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 17, .76) 0%, rgba(7, 27, 17, .48) 42%, rgba(7, 27, 17, .12) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, .06) 48%, rgba(5, 24, 14, .52) 100%);
}
.hero__status,
.hero__indicators {
  bottom: 58px;
}

.hero__title {
  white-space: normal;
}

p.hero__title {
  margin: 0 0 18px;
  font-size: clamp(1.875rem, 2.15vw + .6rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.3;
  max-width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

@media (max-width: 992px) {
  .site-header__logo {
    max-width: min(360px, 58%);
  }
  .site-header__logo-text .zh {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 1.05rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 768px) {
  .site-header__logo {
    max-width: calc(100% - 148px);
    padding-left: 0;
  }
  .site-header__logo img {
    height: 36px;
    flex-shrink: 0;
  }
  .site-header__logo-text .zh {
    font-size: .875rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0;
  }
  .site-header__cta {
    padding: 6px 10px;
    font-size: .6875rem;
  }

  .hero {
    height: min(72vh, 420px);
  }
  .hero__bg {
    background-position: left center;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, .45) 0%,
      rgba(0, 0, 0, .58) 45%,
      rgba(0, 0, 0, .72) 100%
    );
  }
  .hero__status,
  .hero__indicators {
    bottom: 34px;
  }
  .hero__badge {
    display: none;
  }
  .hero__title,
  p.hero__title {
    font-size: 1.375rem;
    max-width: 100%;
  }
  .hero__desc {
    font-size: .875rem;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero__inner {
    padding-left: 14px;
    border-left-width: 2px;
  }

  .stats {
    margin-top: -18px;
    padding: 0 0 4px;
    background: linear-gradient(
      to bottom,
      transparent 0,
      transparent 18px,
      var(--color-bg) 18px,
      var(--color-bg) 100%
    );
  }
  .stats .container {
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(10, 44, 26, .14);
  }
  .home-tools {
    padding: 8px 0 20px;
  }
  .home-tools__search {
    flex-wrap: wrap;
  }
  .home-tools__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide.active .hero__bg {
    animation: none;
  }
}

/* 保证最终层叠规则：数据卡片轻压 Hero 底部 */
section.stats {
  margin-top: -42px !important;
  padding-top: 0;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  section.stats {
    margin-top: -18px !important;
    padding-top: 0;
    padding-bottom: 4px;
  }
}

/* --- 会员单位扩展信息 --- */
.member-profile {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: rgba(27, 122, 61, 0.04);
  border: 1px solid rgba(27, 122, 61, 0.12);
  border-radius: 4px;
}
.member-profile__row {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 8px 14px;
  padding: 6px 0;
  font-size: .9rem;
  border-bottom: 1px dashed rgba(27, 122, 61, 0.12);
}
.member-profile__row:last-child { border-bottom: none; }
.member-profile__row dt {
  margin: 0;
  color: var(--color-text-lt);
  font-weight: 500;
}
.member-profile__row dd { margin: 0; color: var(--color-text); }
.member-profile__row a { color: var(--member, #1b7a3d); }
.member-row__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 6px 0 0;
  font-size: .8125rem;
  color: var(--color-text-lt);
}
.member-row__facts span::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--member, #1b7a3d);
  vertical-align: middle;
}

/* --- 入会在线申请 --- */
.join-apply {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.join-apply__head { margin-bottom: 20px; }
.join-apply__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--color-text);
}
.join-apply__desc {
  margin: 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--color-text-lt);
}
.join-apply__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.join-apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.join-apply__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  font-size: .875rem;
  color: var(--color-text);
}
.join-apply__field--full { grid-column: 1 / -1; }
.join-apply__field input,
.join-apply__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color .15s ease;
}
.join-apply__field input:focus,
.join-apply__field textarea:focus {
  outline: none;
  border-color: var(--member, #1b7a3d);
}
.join-apply__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 20px;
}
.join-apply__submit { min-width: 132px; }
.join-apply__tip {
  margin: 0;
  font-size: .875rem;
  color: var(--color-text-lt);
}
.join-apply__tip.is-ok { color: var(--member, #1b7a3d); }
.join-apply__tip.is-err { color: #b42318; }
.join-apply__alt {
  margin: 14px 0 0;
  font-size: .875rem;
  color: var(--color-text-lt);
}
.join-apply__alt a { color: var(--member, #1b7a3d); }
.member-page__back-wrap { margin-top: 24px; }
@media (max-width: 640px) {
  .join-apply__grid { grid-template-columns: 1fr; }
  .member-profile__row { grid-template-columns: 1fr; gap: 2px; }
}
