/* 站点内页通用样式（与各页面 HTML 配套，媒体查询见 style-sp.css） */

/* 平滑滚动 + 锚点定位时预留顶栏与吸顶子导航高度 */
html.hz-page {
  scroll-behavior: smooth;
}

/* 会长页：主顶栏 78px + 吸顶子导航；原 .page-hz 未挂到 body，用 :has 生效 */
body:has(.hz-section-nav) section[id],
body:has(.hz-section-nav) [id^="page"] {
  scroll-margin-top: calc(78px + 52px);
}

/* —— 本页板块锚点导航（吸顶，位于主顶栏 78px 下方） —— */
.hz-section-nav {
  position: sticky;
  top: 78px;
  z-index: 1200;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hz-section-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 0;
  min-height: 48px;
}

.hz-section-nav-link {
  flex-shrink: 0;
  min-width: 84px;
  height: 36px;
  padding: 0 14px;
  font-size: 15px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease), border-color var(--ease), background-color var(--ease),
    box-shadow var(--ease);
  white-space: nowrap;
}

.hz-section-nav-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.hz-section-nav-link.is-active {
  color: #fff;
  font-weight: 500;
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* —— 板块一：背景图 + 左视频 / 右信息 —— */
.hz-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-section);
  min-height: min(92vh, 900px);
  height: auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hz-hero-media {
  position: absolute;
  inset: 0;
}

.hz-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.55) 38%,
    rgba(15, 23, 42, 0.42) 58%,
    rgba(15, 23, 42, 0.28) 100%
  );
  pointer-events: none;
}

/* 焦点图内容区：1600px（继承 .container 的居中与 max-width:95%，此处覆盖宽度） */
.hz-hero-caption.container {
  width: 1440px;
  max-width: 95%;
}

.hz-hero-caption {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 56px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  color: #fff;
}

.hz-hero-layout {
  display: grid;
  /* 左 55% + 间距 5% + 右 40% = 100%（gap 后剩余宽度按 55:40 分配） */
  grid-template-columns: 55fr 40fr;
  column-gap: 5%;
  row-gap: 0;
  width: 100%;
  max-width: 100%;
  align-items: start;
}

.hz-hero-col-video {
  min-width: 0;
}

.hz-hero-video-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  /* aspect-ratio: 16 / 9; */
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hz-hero-video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.hz-hero-col-info {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.hz-hero-identity {
  margin-bottom: 18px;
}

.hz-hero-name {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

.hz-hero-name-note {
  font-size: 0.72em;
  font-weight: 600;
  opacity: 0.9;
}

.hz-hero-meta-line {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.55;
  max-width: 100%;
}

.hz-hero-meta-en {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  line-height: 1.5;
  max-width: 100%;
}

.hz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hz-hero-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hz-hero-block-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.hz-hero-block-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hz-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
}

.hz-pill-soft {
  border-color: var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  backdrop-filter: none;
}

/* 关于我：会长简介（由原全屏焦点图迁入，左视频 / 右信息布局不变，浅色主题） */
.hz-about-profile-inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 28px;
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.hz-about-profile .hz-about-profile-layout {
  width: 100%;
  align-items: stretch;
}

/* 左侧：与右侧同高时视频区可随单元格拉高；右侧更高时左侧铺满 */
.hz-about-profile .hz-hero-col-video {
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
}

.hz-about-profile .hz-hero-video-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card-hover);
}

.hz-about-profile .hz-hero-video-el {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 右侧：与左侧同高，文案块贴底，避免上疏下密 */
.hz-about-profile .hz-hero-col-info {
  justify-content: flex-start;
  min-height: 0;
  align-self: stretch;
  gap: 16px;
}

.hz-about-profile .hz-hero-identity {
  margin-bottom: 0;
}

.hz-about-profile .hz-hero-tags {
  margin-bottom: 0;
}

.hz-about-profile .hz-pill.hz-pill-soft {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.hz-about-profile .hz-pill.hz-pill-soft:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.hz-about-profile .hz-hero-blocks {
  margin-top: auto;
  width: 100%;
}

.hz-about-profile .hz-hero-name {
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--text-primary);
  text-shadow: none;
}

.hz-about-profile .hz-hero-meta-line {
  color: var(--text-secondary);
}

.hz-about-profile .hz-hero-meta-en {
  color: var(--text-muted);
}

.hz-about-profile .hz-hero-block-title {
  color: var(--text-primary);
}

.hz-about-profile .hz-hero-block-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

/* —— 通用内页区块 —— */
.hz-section .hz-block {
  margin-bottom: 36px;
}

.hz-section .hz-block:last-child {
  margin-bottom: 0;
}

.hz-block-title {
  margin: 0 0 18px;
  padding: 2px 0 2px 14px;
  border-left: 4px solid var(--color-primary);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* 成长故事：图片 + 标题 + 描述，整卡可点击跳转详情 */
.hz-story-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  margin: 8px 0 6px;
  padding: 0;
}

.hz-story-item {
  margin: 0;
}

.hz-story-card {
  display: flex;
  flex-direction: row;
  height: 100%;
  padding: 14px;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: none;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
  transition: box-shadow var(--ease), transform var(--ease);
}

.hz-story-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.hz-story-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hz-story-thumb {
  width: clamp(180px, 24vw, 260px);
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
  flex: 0 0 auto;
  border-radius: calc(var(--radius) - 4px);
}

.hz-story-body {
  padding: 6px 16px 6px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hz-story-title {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.hz-story-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hz-story-btn {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius);
  padding: 10px 22px;
  border: 1px solid var(--border);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease),
    box-shadow var(--ease);
}

.hz-story-card:hover .hz-story-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.hz-story-btn .btn-more-arrow {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  font-weight: 400;
  transition: transform var(--ease);
}

.hz-story-card:hover .hz-story-btn .btn-more-arrow,
.hz-story-card:focus-visible .hz-story-btn .btn-more-arrow {
  transform: translateX(5px);
}

/* 金融与自我教育：一行一篇，默认白底；悬停显示底图 + 遮罩（参考案例列表） */
.hz-fedu-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.hz-fedu-item {
  margin: 0;
}

.hz-fedu-item + .hz-fedu-item {
  border-top: 1px solid var(--border);
}

.hz-fedu-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow var(--ease);
}

.hz-fedu-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hz-fedu-bg) center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hz-fedu-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hz-fedu-row-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.hz-fedu-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
  transition: color var(--ease);
}

.hz-fedu-title {
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color var(--ease);
}

.hz-fedu-pill {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: #fff;
  transition: color var(--ease), border-color var(--ease), background-color var(--ease),
    box-shadow var(--ease);
}

.hz-fedu-pill-line {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.hz-fedu-row:hover::before,
.hz-fedu-row:focus-visible::before {
  opacity: 1;
}

.hz-fedu-row:hover::after,
.hz-fedu-row:focus-visible::after {
  opacity: 1;
}

.hz-fedu-row:hover .hz-fedu-kicker,
.hz-fedu-row:focus-visible .hz-fedu-kicker,
.hz-fedu-row:hover .hz-fedu-title,
.hz-fedu-row:focus-visible .hz-fedu-title {
  color: #fff;
}

.hz-fedu-row:hover .hz-fedu-pill,
.hz-fedu-row:focus-visible .hz-fedu-pill {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.hz-fedu-row:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hz-fedu-row::before,
  .hz-fedu-row::after {
    transition: none;
  }
}

/* 兴趣爱好：图片 + 底部渐变遮罩与标题 */
.hz-hobby-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hz-hobby-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hz-hobby-group {
  border: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px 16px 14px;
}

.hz-hobby-group-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 12px 6px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #7f1d1d;
  line-height: 1.25;
  border-radius: 999px;
  border: 0;
  background: transparent;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.hz-hobby-group-title::before {
  content: "";
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: #c3171e;
  margin-right: 8px;
}

.hz-hobby-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hz-hobby-group-grid .hz-hobby-card {
  border-radius: 12px;
  box-shadow: none;
  border-color: rgba(148, 163, 184, 0.35);
}

.hz-hobby-group-grid .hz-hobby-caption {
  padding: 10px 10px 12px;
  font-size: 14px;
}

.hz-hobby-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.hz-hobby-card:hover {
  border-color: rgba(195, 23, 30, 0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.hz-hobby-card:hover .hz-hobby-img {
  transform: scale(1.04);
}

.hz-hobby-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hz-hobby-shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.35) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hz-hobby-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  line-height: 1.3;
}

/* 赛事与奖项：Swiper + 底部标题条 + 悬停红色遮罩；切换钮叠在轮播左右两侧垂直居中 */
.hz-award-wrap {
  position: relative;
  margin: 0;
  padding: 0;
}

.hz-award-wrap .hz-award-swiper {
  width: 100%;
  min-width: 0;
}

.hz-award-swiper.swiper {
  overflow: hidden;
  padding: 4px 0 12px;
}

.hz-award-swiper .swiper-slide {
  height: auto;
}

.hz-award-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 40px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease),
    opacity var(--ease), box-shadow var(--ease), transform var(--ease);
}

.hz-award-prev {
  left: 0;
}

.hz-award-next {
  right: 0;
}

.hz-award-nav:hover:not(.swiper-button-disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.hz-award-nav.swiper-button-disabled {
  opacity: 0.38;
  cursor: not-allowed;
  background: var(--bg-section);
}

.hz-award-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary-soft);
}

.hz-award-nav-icon {
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
}

.hz-award-card {
  display: block;
  margin: 0;
  height: auto;
}

.hz-award-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.hz-award-card-inner:hover {
  border-color: rgba(195, 23, 30, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.hz-award-thumb {
  position: relative;
  height: 220px;
  background: var(--border);
  overflow: hidden;
}

.hz-award-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.hz-award-card-inner:hover .hz-award-thumb img {
  transform: scale(1.04);
}

/* 默认：图片底部渐变 + 短标题 */
.hz-award-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 18px;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.35) 45%,
    transparent 100%
  );
  transition: opacity 0.35s ease;
}

.hz-award-bar-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* 悬停：主题红半透明自下而上铺满，展示完整标题与正文 */
.hz-award-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  overflow: hidden;
  z-index: 3;
  background: rgba(195, 23, 30, 0.88);
  transition: height 0.42s cubic-bezier(0.33, 1, 0.68, 1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}

.hz-award-card-inner:hover .hz-award-hover,
.hz-award-card-inner:focus-within .hz-award-hover {
  height: 100%;
}

.hz-award-card-inner:hover .hz-award-bar,
.hz-award-card-inner:focus-within .hz-award-bar {
  opacity: 0;
  pointer-events: none;
}

.hz-award-hover-inner {
  flex: 1;
  min-height: 0;
  padding: 18px 16px 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  /* 文案过长仍可滚动，但不显示右侧滚动条，避免破坏遮罩观感 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hz-award-hover-inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.hz-award-hover-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.hz-award-hover-desc {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.hz-award-hover-meta {
  display: block;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

/* 代表照片/视频 */
.hz-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.hz-gallery-item {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hz-gallery-img-wrap {
  overflow: hidden;
  height: 250px;
  width: 100%;
  background: var(--border);
  contain: paint;
}

.hz-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.hz-gallery-item:hover img {
  transform: scale(1.08);
}

.hz-gallery-cap {
  display: block;
  padding: 10px 12px;
  font-size: 18px;
  text-align: center;
  color: var(--text-secondary);
  background: #fff;
  border-top: 1px solid var(--border);
}

.hz-gallery-video {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hz-gallery .hz-video {
  width: 100%;
  height: 250px;
  display: block;
  background: #000;
  object-fit: contain;
}

.hz-video {
  width: 100%;
  display: block;
  background: #000;
}

.hz-video-contained {
  max-height: 320px;
  object-fit: contain;
}

/* 项目与合作 */
.hz-project {
  margin: 0 0 64px;
  padding: 0;
  background: transparent;
}

.hz-project:last-child {
  margin-bottom: 0;
}

/* 通栏：主标题 + 英文副题（单独一行，位于视频/正文两栏之上） */
.hz-project-head {
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hz-project-title {
  margin: 0 0 6px;
  padding: 2px 0 2px 14px;
  border-left: 4px solid var(--color-primary);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.hz-project-en {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.hz-project-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

/* 奇数条：视频在左（默认 DOM 顺序）；偶数条：视频在右 */
.hz-projects .hz-project:nth-of-type(even) .hz-project-media {
  order: 2;
}

.hz-projects .hz-project:nth-of-type(even) .hz-project-text {
  order: 1;
}

.hz-project-text > .hz-subhead:first-of-type {
  margin-top: 0;
}

/* 左侧媒体与右侧文案等高：栅格拉伸 + 视频填满媒体区（contain 留黑边不裁切画面） */
.hz-project-media {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.hz-project-media .hz-video.hz-video-contained {
  flex: 1 1 auto;
  width: 100%;
  min-height: 200px;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.hz-project-more-wrap {
  margin-top: 4px;
}

.hz-project-more-wrap .about-more-btn {
  width: fit-content;
  max-width: 100%;
}

.hz-subhead {
  margin: 22px 0 10px;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.hz-subhead:first-child {
  margin-top: 0;
}

/* 思想与文字：摘要 + 整卡跳转详情（与「武术之路」故事卡交互一致） */
.hz-thoughts .hz-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.hz-article-item {
  margin-bottom: 0;
}

.hz-article-card.hz-article-card-link {
  display: block;
  margin: 0;
  padding: 24px 16px 28px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  background: transparent;
  border-radius: var(--radius);
  transition: box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

.hz-article-item:first-child .hz-article-card.hz-article-card-link {
  padding-top: 4px;
}

.hz-article-item:last-child .hz-article-card.hz-article-card-link {
  padding-bottom: 0;
  border-bottom: none;
}

.hz-article-card.hz-article-card-link:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.hz-article-card.hz-article-card-link:focus {
  outline: none;
}

.hz-article-card.hz-article-card-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* 与原先「展开全文」同列：左文右按钮 */
.hz-article-link-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 20px;
  min-width: 0;
}

.hz-article-link-main {
  flex: 1;
  min-width: 0;
}

.hz-article-kind {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.06em;
}

h3.hz-article-title {
  margin: 0 0 12px;
  padding: 0 0 0 14px;
  border-left: 4px solid var(--color-primary);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.hz-article-excerpt {
  display: -webkit-box;
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hz-article-cta {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius);
  padding: 8px 16px;
  border: 1px solid var(--border);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease),
    box-shadow var(--ease);
}

.hz-article-card.hz-article-card-link:hover .hz-article-cta,
.hz-article-card.hz-article-card-link:focus-visible .hz-article-cta {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.hz-article-cta .btn-more-arrow {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  font-weight: 400;
  transition: transform var(--ease);
}

.hz-article-card.hz-article-card-link:hover .hz-article-cta .btn-more-arrow,
.hz-article-card.hz-article-card-link:focus-visible .hz-article-cta .btn-more-arrow {
  transform: translateX(5px);
}

/* 媒体与荣誉 · 里程碑：上方左文右图 + 左右箭头；底部横向年份刻度（Swiper thumbs） */
.hz-media-milestone {
  margin: 0;
  padding: 0;
}

.hz-media-milestone-more {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: auto;
  padding-top: 20px;
}

.hz-media-milestone-more .about-more-btn {
  width: fit-content;
  max-width: 100%;
}

.hz-media-feature-wrap {
  position: relative;
  margin: 0 0 8px;
  padding: 0 48px;
}

.hz-media-milestone-main.swiper {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
}

.hz-media-milestone-main .swiper-slide {
  height: auto;
}

.hz-media-milestone-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px 36px;
  align-items: stretch;
  min-height: min(320px, 42vw);
  padding: 28px 32px 32px;
}

.hz-media-milestone-text {
  position: relative;
  min-width: 0;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.hz-media-milestone-text::before {
  content: "";
  position: absolute;
  inset: -8px -12px -8px -16px;
  background: linear-gradient(
    135deg,
    rgba(195, 23, 30, 0.04) 0%,
    transparent 45%,
    rgba(15, 23, 42, 0.02) 100%
  );
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}

.hz-media-milestone-date {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.hz-media-milestone-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.hz-media-milestone-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.hz-media-milestone-media {
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0a;
  align-self: stretch;
  min-height: 0;
}

.hz-media-milestone-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
}

.hz-media-milestone-media--video {
  background: #000;
}

.hz-media-milestone-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-height: 200px;
}

.hz-media-milestone-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease),
    opacity var(--ease);
}

.hz-media-milestone-prev {
  left: 0;
}

.hz-media-milestone-next {
  right: 0;
}

.hz-media-milestone-nav:hover:not(.swiper-button-disabled) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.hz-media-milestone-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hz-media-milestone-nav-icon {
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  margin-top: -2px;
}

/* 底部日期刻度：无框无底色，横线穿过圆点 */
.hz-media-ruler {
  position: relative;
  margin-top: 20px;
  border: none;
  background: transparent;
}

.hz-media-ruler-inner {
  position: relative;
  padding: 8px 0 12px;
}

.hz-media-milestone-ruler.swiper {
  overflow: hidden;
  padding-bottom: 4px;
  margin: 0;
}

.hz-media-milestone-ruler .swiper-wrapper {
  position: relative;
  align-items: flex-start;
}

.hz-media-milestone-ruler .swiper-slide {
  box-sizing: border-box;
  margin: 0;
}

.hz-media-ruler-slide {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 4px 4px 0;
  height: auto;
  cursor: pointer;
  user-select: none;
}

/* 每个日期格内一条横线，宽度 100% 铺满该格，圆点叠在上面 */
.hz-media-ruler-slide::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(4px + 28px + 10px + 6px - 1px);
  height: 2px;
  background: rgba(148, 163, 184, 0.45);
  z-index: 0;
  pointer-events: none;
}

.hz-media-ruler-year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: #4a6fa5;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: center;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.hz-media-ruler-year time {
  font: inherit;
  color: inherit;
  max-width: 100%;
}

.hz-media-ruler-slide.swiper-slide-thumb-active .hz-media-ruler-year {
  font-size: 18px;
  line-height: 28px;
  font-weight: 800;
  color: var(--color-primary);
}

/* 圆点占位固定 12×12，用 scale 区分选中；与页面底色相近的描边，使横线从圆心“穿过” */
.hz-media-ruler-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #5b8fc7;
  box-shadow: 0 0 0 2px var(--bg-page);
  transform: scale(0.667);
  transform-origin: center center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hz-media-ruler-slide.swiper-slide-thumb-active .hz-media-ruler-dot {
  background: var(--color-primary);
  transform: scale(1);
  box-shadow: 0 0 0 2px var(--bg-page);
}

/* 联系我 */
.hz-contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.hz-contact-card {
  padding: 24px;
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.hz-contact-title {
  margin: 0 0 16px;
  padding: 2px 0 2px 14px;
  border-left: 4px solid var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.hz-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hz-contact-list li {
  margin-bottom: 12px;
}

.hz-contact-list li:last-child {
  margin-bottom: 0;
}

.hz-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.hz-form {
  padding: 24px;
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.hz-form-row {
  margin-bottom: 16px;
}

.hz-form-row:last-of-type {
  margin-bottom: 20px;
}

.hz-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hz-required {
  display: inline-block;
  margin-right: 4px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.hz-input,
.hz-textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color var(--ease);
}

.hz-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.hz-input:focus,
.hz-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: none;
}

.hz-form-submit {
  gap: 10px;
}

.hz-form-submit .btn-more-arrow {
  transition: transform var(--ease);
}

.hz-form-submit:hover .btn-more-arrow {
  transform: translateX(5px);
}

/* —— 视频中心（list_video.html） —— */
.video-page-section {
  padding-top: 56px;
  padding-bottom: 72px;
}

.video-page-lead {
  margin: 0 0 24px;
  padding: 4px 0 4px 12px;
  border-left: 3px solid var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* 内页公共焦点图：默认 PC 高 360px；会长页 .hero-focus--tall 与首页同高 600px */
.hero.video-page-hero.hero-focus--compact {
  height: 360px;
}

.hero.video-page-hero.hero-focus--tall {
  height: 600px;
}

@media (max-width: 1000px) {
  /* 与 index.css 中 .hero 的移动端规则衔接：内页 360 高对应 40:9，会长/首页同系 8:3 */
  .hero.video-page-hero.hero-focus--compact {
    height: auto;
    aspect-ratio: 40 / 9;
    min-height: 160px;
  }

  .hero.video-page-hero.hero-focus--tall {
    height: auto;
    min-height: 200px;
  }
}

/* 视频中心页等：焦点图 + 叠字标题（静态单图） */
.hero.video-page-hero .video-page-hero-wrap {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  position: relative;
}

.video-hero-static {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.video-hero-static .slide-bg {
  position: absolute;
  inset: 0;
}

.video-hero-caption {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.video-hero-caption * {
  pointer-events: none;
}

.video-hero-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.22) 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
  pointer-events: none;
}

.video-hero-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.video-hero-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 12px;
  background: #fff;
  box-shadow: 0 0 12px rgba(195, 23, 30, 0.45);
}

.video-hero-subtitle {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vid-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.vid-card:hover {
  border-color: rgba(195, 23, 30, 0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.vid-card-media {
  position: relative;
  margin: 0;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vid-card-media .hz-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.vid-card-body {
  padding: 14px 16px 16px;
}

.vid-card-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.vid-card-time {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.vid-card-time time {
  font-weight: inherit;
}

.vid-card-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* —— 新闻列表（list_news.html）：与首页新闻卡片同构，栅格每页 8 条 —— */
.news-page-section.section-news {
  padding-top: 56px;
  padding-bottom: 72px;
}

.news-page-lead {
  margin: 0 0 28px;
  padding: 4px 0 4px 12px;
  border-left: 3px solid var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.news-page-grid .news-card {
  min-width: 0;
}

.vid-pagination {
  margin-top: 36px;
  padding-top: 8px;
  display: flex;
  justify-content: center;
}

.vid-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vid-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vid-pagination .pagination > li {
  margin: 0;
}

.vid-pager-item {
  margin: 0;
}

.vid-pager-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.vid-pagination .pagination > li > a,
.vid-pagination .pagination > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

a.vid-pager-link:hover {
  color: var(--color-primary);
  border-color: rgba(195, 23, 30, 0.35);
  background: var(--color-primary-soft);
}

.vid-pagination .pagination > li > a:hover {
  color: var(--color-primary);
  border-color: rgba(195, 23, 30, 0.35);
  background: var(--color-primary-soft);
}

.vid-pager-link.is-active {
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.vid-pagination .pagination > li.active > span,
.vid-pagination .pagination > li.active > a {
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.vid-pager-link.is-disabled {
  color: var(--text-muted);
  background: var(--bg-section);
  border-color: var(--border);
  cursor: not-allowed;
  opacity: 0.65;
}

.vid-pagination .pagination > li.disabled > span,
.vid-pagination .pagination > li.disabled > a {
  color: var(--text-muted);
  background: var(--bg-section);
  border-color: var(--border);
  cursor: not-allowed;
  opacity: 0.65;
}

.vid-pager-prev,
.vid-pager-next {
  min-width: 72px;
  padding: 0 14px;
}

.vid-pager-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 40px;
  font-size: 14px;
  color: var(--text-muted);
  user-select: none;
}

/* —— 新闻详情（show_news.html） —— */
.news-detail-page-section {
  padding-top: 40px;
  padding-bottom: 72px;
  background: var(--bg-page);
}

.page-breadcrumb {
  margin: 0 0 20px;
}

.page-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

.page-breadcrumb-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--ease);
}

.page-breadcrumb-link:hover {
  color: var(--color-primary);
}

.page-breadcrumb-sep {
  margin: 0 2px;
  color: var(--text-muted);
  opacity: 0.75;
  user-select: none;
}

.page-breadcrumb-current {
  color: var(--color-primary);
  font-weight: 500;
}

.news-detail-doc {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 0 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.news-detail-header {
  margin-bottom: 0;
}

.news-detail-title {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
}

.news-detail-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.news-detail-meta-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.news-detail-meta-dot {
  margin: 0 0.2em;
  opacity: 0.55;
  user-select: none;
}

.news-detail-source {
  color: var(--text-muted);
}

.news-detail-time {
  font-weight: 400;
  color: inherit;
}

.news-detail-meta-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2px;
  font-size: 14px;
  line-height: 1.5;
}

.news-detail-meta-nav-sep {
  margin: 0 8px;
  color: var(--border);
  font-weight: 300;
  user-select: none;
}

.news-detail-meta-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease);
  white-space: nowrap;
}

.news-detail-meta-nav-link:hover {
  color: var(--color-primary);
}

.news-detail-meta-angle {
  font-size: 13px;
  opacity: 0.85;
}

.news-detail-meta-nav-link.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* 绘画创作详情：组图 DOM/CSS 与「赛事与奖项」一致（.hz-award-*，一行最多 4 张；无标题条/悬停层），图片见 .hz-award-thumb img */
.news-detail-painting-swiper-outer {
  margin: 0 0 28px;
}

.news-detail-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-secondary);
  text-align: justify;
  text-justify: inter-ideograph;
}

.news-detail-body p {
  margin: 0 0 16px;
}

.news-detail-body figure {
  margin: 0 0 28px;
  text-align: center;
}

.news-detail-body img {
  display: block;
  max-width: 100%;
  /* height: auto; */
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-left: auto;
  margin-right: auto;
}

/* 关于我们等富文本单页 */
.news-detail-body.page-about-rich .page-about-lead {
  margin: 0 0 24px;
  padding: 12px 0 12px 14px;
  border-left: 3px solid var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  text-align: left;
  text-justify: auto;
}

.news-detail-body.page-about-rich .page-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin: 0 0 28px;
  max-width: 100%;
}

.news-detail-body.page-about-rich .page-about-grid figure {
  margin: 0;
}

.news-detail-body.page-about-rich .page-about-grid img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.news-detail-body.page-about-rich .page-about-figure img {
  max-height: 420px;
  width: auto;
  object-fit: cover;
}

.news-detail-body.page-about-rich figcaption {
  display: block;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.news-detail-body.page-about-rich .page-about-list {
  margin: 0 0 20px 1.1em;
  padding: 0;
  list-style: disc;
  color: var(--text-secondary);
}

.news-detail-body.page-about-rich .page-about-list li {
  margin: 0 0 8px;
}

.news-detail-body.page-about-rich .page-about-foot {
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  text-justify: auto;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .news-detail-body.page-about-rich .page-about-grid {
    grid-template-columns: 1fr;
  }
}

.news-detail-body h2,
.news-detail-body h3 {
  margin: 28px 0 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
}

.news-detail-empty {
  margin: 0;
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
}

/* —— 规章制度（page_system.html）全文本页 —— */
.system-page-section {
  padding-top: 56px;
  padding-bottom: 72px;
  background: var(--bg-page);
}

.system-page-lead {
  margin: 0 0 28px;
  padding: 4px 0 4px 12px;
  border-left: 3px solid var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.65;
}

.system-doc {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 48px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.system-doc-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.system-doc-name {
  margin: 0 0 14px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.system-doc-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.system-doc-meta-sep {
  margin: 0 0.5em;
  opacity: 0.65;
}

.system-chapter {
  margin-bottom: 0;
  padding-bottom: 28px;
  margin-top: 8px;
  border-bottom: 1px dashed var(--border);
}

.system-chapter:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.system-h2 {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  padding: 0 0 0 14px;
  border-left: 4px solid var(--color-primary);
}

.system-p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  text-align: justify;
  text-justify: inter-ideograph;
}

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

.system-p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* —— 联系我们（page_contact.html）：联系方式 + 在线留言 —— */
.contact-methods-section {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.contact-message-section {
  background: var(--bg-section);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
  perspective: 1000px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 22px 20px 24px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.contact-info-item:hover {
  border-color: rgba(195, 23, 30, 0.22);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  flex-shrink: 0;
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 0.65s ease, background-color var(--ease), color var(--ease), border-color var(--ease);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: rotateY(360deg);
}

@media (prefers-reduced-motion: reduce) {
  .contact-info-icon {
    transition: background-color var(--ease), color var(--ease), border-color var(--ease);
  }

  .contact-info-item:hover .contact-info-icon {
    transform: none;
  }
}

.contact-info-icon svg {
  display: block;
  flex-shrink: 0;
}

.contact-info-heading {
  margin: 0 0 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  text-align: center;
}

.contact-info-text {
  margin: 0;
  width: 100%;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: center;
}

.contact-info-text a {
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-all;
  transition: color var(--ease);
}

.contact-info-text a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-form {
  max-width: 720px;
  margin: 0 auto;
}
