/* 贵州纵横力创 - 现代宽屏前台样式 */
:root {
  --primary: #0d5c56;
  --primary-dark: #084540;
  --primary-light: #1a8a82;
  --accent: #c9a227;
  --bg: #f4f7f6;
  --bg-card: #ffffff;
  --text: #1a2b2a;
  --text-muted: #5c6f6d;
  --border: #dde8e6;
  --shadow: 0 4px 24px rgba(13, 92, 86, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 92, 86, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --container: min(1400px, 96vw);
  --header-h: 72px;
  --font: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }

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

.site-container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========== 顶栏 ========== */
.site-topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  padding: 11px 0;
  line-height: 1.5;
}

.site-topbar .site-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-topbar > .site-container > span:first-child {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-topbar a {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
}

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

.site-topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.site-topbar-links span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.02em;
}

/* ========== 主导航 ========== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 32px;
  overflow: visible;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  overflow: visible;
}

.site-brand-link {
  color: inherit;
  text-decoration: none;
}

.site-brand-link:hover .site-brand-text h1 {
  color: var(--primary);
}

/* 顶栏二维码：悬停弹出大图（缩略图不缩放，避免布局抖动） */
.site-qr {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  outline: none;
  z-index: 2;
}

.site-qr-thumb {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-qr:hover .site-qr-thumb,
.site-qr:focus .site-qr-thumb,
.site-qr:focus-within .site-qr-thumb {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13, 92, 86, 0.12);
}

/* 悬停桥接区，避免移向弹层时闪烁 */
.site-qr::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
  display: none;
}

.site-qr-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1200;
  width: 196px;
  box-sizing: border-box;
  padding: 12px 12px 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 40, 36, 0.16);
  border: 1px solid rgba(13, 92, 86, 0.12);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

.site-qr-popup::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(13, 92, 86, 0.12);
  border-top: 1px solid rgba(13, 92, 86, 0.12);
  transform: rotate(45deg);
}

.site-qr-popup img {
  display: block;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  object-fit: contain;
}

.site-qr-popup span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.site-qr:hover::after,
.site-qr:focus::after,
.site-qr:focus-within::after {
  display: block;
}

.site-qr:hover .site-qr-popup,
.site-qr:focus .site-qr-popup,
.site-qr:focus-within .site-qr-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-brand-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.site-brand-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.site-nav a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(13, 92, 86, 0.08);
  color: var(--primary);
}

.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--primary);
}

/* ========== 页脚 ========== */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #062e2b 100%);
  color: rgba(255,255,255,0.88);
  margin-top: 64px;
  padding: 48px 0 24px;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.site-footer-nav a:hover { color: var(--accent); }

.site-footer-info {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
}

.site-footer-info a { color: rgba(255,255,255,0.75); }

.site-beian-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}

.site-beian-sep {
  opacity: 0.55;
}

.site-police-beian {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.site-police-beian:hover {
  color: #fff;
}

.site-police-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ========== 首页首屏轮播（与主题同宽） ========== */
.home-hero-section {
  padding: 24px 0 8px;
}

.home-hero {
  position: relative;
  width: 100%;
  height: clamp(300px, 40vh, 480px);
  overflow: hidden;
  background: #0a2e2b;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.home-hero-slide {
  display: none;
  position: absolute;
  inset: 0;
}

.home-hero-slide.active {
  display: block;
  animation: home-hero-fade 0.7s ease;
}

@keyframes home-hero-fade {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.home-hero-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
}

/* 固定轮播区高度，图片完整显示（不裁切，比例不符时留边） */
.home-hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #0a2e2b;
}

.home-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 48px 28px 28px;
  line-height: 1.4;
  background: linear-gradient(transparent, rgba(4, 28, 26, 0.82) 55%);
  pointer-events: none;
}

.home-hero-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(201, 162, 39, 0.92);
}

.home-hero-caption h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.home-hero-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.home-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.home-hero-nav:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transform: scale(1.06);
}

.home-hero-nav:active {
  transform: scale(0.98);
}

.home-hero-nav.prev {
  left: 20px;
}

.home-hero-nav.next {
  right: 20px;
}

.home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.home-hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.home-hero-dots button.active {
  background: var(--accent);
  transform: scale(1.15);
}

/* ========== 首页新闻区：头条 + 大事记 ========== */
.home-news-section {
  padding: 28px 0 8px;
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.home-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  flex-shrink: 0;
}

.home-block-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.home-block-head a {
  font-size: 13px;
  color: var(--primary);
}

.home-block-head a:hover {
  color: var(--primary-light);
}

.home-block-head--dark {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
  padding: 0 18px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.home-block-head--dark h2 {
  color: #fff;
  font-size: 16px;
}

.home-block-head--dark a {
  color: rgba(255, 255, 255, 0.9);
}

.home-block-head--dark a:hover {
  color: #fff;
}

.home-news-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.headline-feature {
  margin-bottom: 4px;
  padding: 0 0 14px;
  border-bottom: 1px dashed var(--border);
  flex-shrink: 0;
}

.headline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  margin-bottom: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.headline-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.headline-feature h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--primary-dark);
}

.headline-feature h3 a {
  color: inherit;
}

.headline-feature h3 a:hover {
  color: var(--primary);
}

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

.headline-feature p a {
  color: inherit;
}

.headline-feature p a:hover {
  color: var(--primary);
}

.home-news-list {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
  flex: 1;
}

.home-news-list li {
  border-bottom: 1px solid rgba(221, 232, 230, 0.9);
}

.home-news-list li:last-child {
  border-bottom: none;
}

.home-news-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 4px;
  color: var(--text);
  font-size: 15px;
  transition: color 0.2s, padding-left 0.2s;
}

.home-news-list a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}

.home-news-list .news-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-list time {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.home-news-list a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.home-events {
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
  background: linear-gradient(180deg, #edf5f3 0%, #f9fcfb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-events .marquee-viewport {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 4%, #000 96%, transparent 100%);
  outline: none;
}

.home-events .marquee-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(13, 92, 86, 0.35);
}

.marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0 4px;
  will-change: transform;
}

.marquee-track li a.event-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0 10px 2px;
  padding: 0;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.marquee-track li a.event-item:hover {
  background: rgba(255, 255, 255, 0.92);
}

.marquee-track li a.event-item:hover .event-title {
  color: var(--primary);
}

/* 时间轴节点 */
.event-marker {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  display: flex;
  justify-content: center;
  padding-top: 14px;
}

.event-marker::after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: -6px;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: linear-gradient(180deg, rgba(13, 92, 86, 0.28), rgba(13, 92, 86, 0.08));
}

.marquee-track li:last-child .event-marker::after {
  display: none;
}

.event-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-light);
  box-shadow: 0 0 0 1px rgba(13, 92, 86, 0.12);
  z-index: 1;
}

.marquee-track li:first-child .event-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
}

.event-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 12px 10px 4px;
  border-bottom: 1px solid rgba(13, 92, 86, 0.08);
}

.marquee-track li:last-child .event-content {
  border-bottom: none;
}

.event-time {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  padding: 7px 4px;
  text-align: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  line-height: 1.15;
}

.event-ym-line {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.event-day-inline {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

.event-time--empty .event-ym-line {
  font-size: 14px;
  color: var(--text-muted);
}

.event-title {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marquee-track li:first-child .event-title {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ========== 通用区块标题 ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.section-header h2 {
  margin: 0;
  font-size: 22px;
  color: var(--primary-dark);
  font-weight: 700;
}

.section-header .more-link {
  font-size: 14px;
  color: var(--primary);
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  transition: all 0.2s;
}

.section-header .more-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ========== 业务入口卡片 ========== */
.business-cards {
  padding: 36px 0 48px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.business-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--bg-card);
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.business-card a { display: block; color: inherit; }

.business-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* ========== 三栏资讯 ========== */
.info-columns {
  padding: 0 0 48px;
}

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

.info-column {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-column-header {
  padding: 18px 24px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-column-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.info-column-header a {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

.info-column-header a:hover { color: #fff; }

.info-column ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.info-column li a {
  display: block;
  padding: 12px 24px;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}

.info-column li:last-child a { border-bottom: none; }

.info-column li a:hover {
  padding-left: 28px;
  color: var(--primary);
  background: rgba(13, 92, 86, 0.04);
}

.banner-wide {
  margin: 0 0 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-wide img { width: 100%; max-height: 200px; object-fit: cover; }

/* ========== 相关链接 ========== */
.links-section {
  padding: 0 0 56px;
}

.links-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}

.links-card > p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-grid a {
  display: block;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.links-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

/* ========== 列表页 ========== */
.page-layout {
  padding: 32px 0 56px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

.page-sidebar {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.page-sidebar h2 {
  margin: 0;
  padding: 18px 20px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.page-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.page-sidebar li a {
  display: block;
  padding: 14px 24px;
  color: var(--text);
  font-size: 15px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.page-sidebar li a:hover,
.page-sidebar li a.active {
  border-left-color: var(--primary);
  background: rgba(13, 92, 86, 0.06);
  color: var(--primary);
}

.page-main {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 500px;
}

.breadcrumb-bar {
  padding: 16px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb-bar a { color: var(--primary); }

.list-search-form {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 92, 86, 0.04) 0%, transparent 100%);
}

.list-search-inner {
  display: flex;
  gap: 10px;
  max-width: 560px;
}

.list-search-inner input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.list-search-inner input[type="search"]:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(13, 92, 86, 0.12);
}

.list-search-inner button {
  flex-shrink: 0;
  height: 40px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.list-search-inner button:hover {
  background: var(--primary-light);
}

.list-search-meta {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.list-search-meta strong {
  color: var(--primary-dark);
}

.list-search-meta a {
  margin-left: 12px;
  font-size: 13px;
}

.article-list-empty {
  padding: 32px 28px;
  color: var(--text-muted);
  font-size: 15px;
}

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

.article-list li {
  border-bottom: 1px solid var(--border);
}

.article-list li:last-child { border-bottom: none; }

.article-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  color: var(--text);
  transition: background 0.2s;
}

.article-list a:hover {
  background: rgba(13, 92, 86, 0.04);
  color: var(--primary);
}

.article-list .title {
  flex: 1;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-list .date {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.pagination-bar a,
.pagination-bar b {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.pagination-bar a {
  background: var(--bg);
  color: var(--primary);
  border: 1px solid var(--border);
}

.pagination-bar a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination-bar b {
  background: var(--primary);
  color: #fff;
}

/* ========== 详情页 ========== */
.article-detail {
  padding: 40px 0 64px;
}

.article-detail-inner {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 48px 48px;
  max-width: var(--container);
  margin: 0 auto;
}

.article-detail .breadcrumb-bar {
  margin: -40px -48px 32px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.article-detail h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.35;
  color: var(--primary-dark);
  text-align: center;
}

.article-detail .subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  padding: 16px 0;
  margin-bottom: 32px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.article-meta a { color: var(--primary); }

.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

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

.article-body p { margin: 0 0 1em; }

.article-attachments {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-attachments a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 8px 8px 0 0;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
  .home-news-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.95fr);
    gap: 22px;
  }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .info-columns-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .home-hero {
    height: clamp(240px, 36vh, 360px);
  }
  .home-hero-caption {
    padding: 36px 20px 22px;
  }
  .home-hero-nav {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  .home-hero-nav.prev {
    left: 12px;
  }
  .home-hero-nav.next {
    right: 12px;
  }
  .home-news-layout {
    grid-template-columns: 1fr;
  }
  .home-events .marquee-viewport {
    flex: none;
    height: 220px;
  }
}

@media (max-width: 900px) {
  .site-nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 12px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-header { position: relative; }
  .site-header-inner { flex-wrap: wrap; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .article-detail-inner { padding: 24px; }
  .article-detail .breadcrumb-bar { margin: -24px -24px 24px; }
}

@media (max-width: 600px) {
  .business-grid { grid-template-columns: 1fr; }
  .site-brand-text h1 { font-size: 16px; }
  .article-list a { flex-direction: column; align-items: flex-start; gap: 8px; }
  .site-qr { width: 44px; height: 44px; }
  .site-qr-thumb { width: 44px; height: 44px; }
  .site-qr-popup { width: 168px; padding: 10px; }
  .site-qr-popup img { width: 144px; height: 144px; }
}
