/* ============================================
 * 十堰市市场开发服务中心 - PHPCMS V9 模板样式
 * 蓝色政府主题 | 藏青蓝 + 金色
 * ============================================ */

/* === CSS 变量定义 === */
:root {
  /* 主色 - 藏青蓝 */
  --gov-blue: #1e4a8c;
  --gov-blue-dark: #143063;
  --gov-blue-light: #2d6fc4;
  --gov-blue-deep: #0d1f44;

  /* 金色装饰 */
  --gov-gold: #d4a347;
  --gov-gold-dark: #a07a2a;

  /* 米色背景 */
  --gov-cream: #f7f3ea;

  /* 文字色 */
  --text-primary: #1a2540;
  --text-secondary: #4a5568;
  --text-muted: #8a94a8;
  --text-white: #ffffff;

  /* 背景色 */
  --bg-white: #ffffff;
  --bg-page: #fafbfc;
  --bg-hover: #f0f4fb;

  /* 边框色 */
  --border-light: #e5e9f0;
  --border-blue: rgba(30, 74, 140, 0.2);

  /* 阴影 */
  --shadow-sm: 0 2px 4px rgba(13, 31, 68, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 31, 68, 0.08);
  --shadow-lg: 0 12px 24px -8px rgba(13, 31, 68, 0.18);
}

/* === 基础重置 === */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gov-blue); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === 容器 === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === 顶部信息条 === */
.top-bar {
  background: var(--gov-blue-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 36px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.top-bar-left { display: flex; align-items: center; gap: 12px; }
.top-bar-item { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-sep { color: rgba(255, 255, 255, 0.3); }
.top-bar-right { color: rgba(255, 255, 255, 0.7); }

/* 图标 - SVG 内联 */
.icon-phone::before { content: ""; }
.icon-mail::before { content: ""; }
.icon-location::before { content: ""; }
.icon-calendar::before { content: ""; }
.icon-calendar-sm::before { content: ""; }
.icon-phone-sm::before { content: ""; }
.icon-user::before { content: ""; }
.icon-eye::before { content: ""; }
.icon-source::before { content: ""; }
.icon-tag::before { content: ""; }
.icon-link::before { content: ""; }

/* === Logo 头部 === */
.header {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 60%, var(--gov-cream) 100%);
  border-bottom: 1px solid rgba(212, 163, 71, 0.3);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-badge {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
  box-shadow: 0 4px 12px rgba(30, 74, 140, 0.3), 0 0 0 2px rgba(212, 163, 71, 0.4);
}
.logo-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -2px;
}
.logo-underline {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--gov-gold);
  border-radius: 2px;
}
.site-title h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  line-height: 1.3;
}
.site-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

/* === 移动端菜单按钮 === */
.mobile-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gov-blue-dark);
  transition: 0.3s;
}
.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); }

/* === 主导航 === */
.main-nav {
  background: var(--gov-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(13, 31, 68, 0.15);
}
.nav-list {
  display: flex;
  height: 48px;
  align-items: stretch;
}
.nav-list li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  height: 100%;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  position: relative;
}
.nav-link:hover {
  background: var(--gov-blue-dark);
  color: #fff;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gov-gold);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.home-badge {
  font-style: normal;
  font-size: 9px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === 主内容区 === */
.main-content { min-height: 60vh; }

/* ============================================
 * 首页 - 焦点新闻区
 * ============================================ */
.hero-section {
  position: relative;
  padding: 32px 0;
  background: linear-gradient(135deg, var(--gov-cream) 0%, #fff 50%, var(--gov-cream) 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--gov-gold) 48%, var(--gov-gold) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--gov-gold) 48%, var(--gov-gold) 52%, transparent 52%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  opacity: 0.15;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  position: relative;
}

/* 主轮播 */
.hero-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background: #000;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s;
}
.slide-item.active { opacity: 1; z-index: 2; }
.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
}
.slide-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tag-date, .tag-hot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 2px;
}
.tag-date { background: var(--gov-blue); }
.tag-hot {
  background: var(--gov-gold);
  color: var(--gov-blue-dark);
  font-weight: 700;
}
.slide-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.slide-excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: rgba(255, 255, 255, 0.4); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 6px;
}
.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: 0.3s;
}
.slider-dots .dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gov-gold);
}

/* 头条要闻侧边栏 */
.hero-side {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-side-header {
  background: linear-gradient(to right, var(--gov-blue), var(--gov-blue-dark));
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-side-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.title-bar {
  width: 3px;
  height: 16px;
  background: var(--gov-gold);
  border-radius: 1px;
}
.more-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.more-link:hover { color: var(--gov-gold); }
.hero-side-list { padding: 8px; flex: 1; }
.side-item {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.side-item:hover { background: var(--bg-hover); }
.side-rank {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: var(--border-light);
  color: var(--text-muted);
}
.side-rank-1 { background: var(--gov-blue); color: #fff; }
.side-rank-2 { background: var(--gov-gold); color: var(--gov-blue-dark); }
.side-text { flex: 1; min-width: 0; }
.side-title {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-item:hover .side-title { color: var(--gov-blue); }
.side-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
 * 通用 Section 标题
 * ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-english {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gov-gold-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-english::before,
.section-english::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gov-gold);
}
.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================
 * 中心简介区
 * ============================================ */
.about-section {
  padding: 60px 0;
  background: #fff;
}
.about-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  margin-bottom: 48px;
}
.about-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
}
.about-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--gov-gold) 48%, var(--gov-gold) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--gov-gold) 48%, var(--gov-gold) 52%, transparent 52%);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  opacity: 0.3;
}
.about-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 32px;
  text-align: center;
}
.about-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 4px rgba(212, 163, 71, 0.3);
}
.about-card-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.about-card-subtitle {
  color: var(--gov-gold);
  font-weight: 500;
  letter-spacing: 4px;
}
.about-card-line {
  margin-top: 24px;
  width: 60px;
  height: 2px;
  background: var(--gov-gold);
}
.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 16px;
}
.about-intro-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-stat {
  text-align: center;
  padding: 16px;
  background: var(--gov-cream);
  border-radius: 8px;
  border: 1px solid rgba(212, 163, 71, 0.3);
}
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--gov-blue);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  background: linear-gradient(to bottom right, #fff, var(--gov-cream));
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(212, 163, 71, 0.2);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 96px;
  height: 96px;
  background: rgba(30, 74, 140, 0.05);
  border-radius: 50%;
  transition: 0.3s;
}
.feature-card:hover::before { background: rgba(30, 74, 140, 0.1); }
.feature-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 8px rgba(30, 74, 140, 0.3);
}
.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 8px;
  position: relative;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gov-blue), var(--gov-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover::after { transform: scaleX(1); }

/* ============================================
 * 新闻栏目列表
 * ============================================ */
.news-section {
  padding: 48px 0;
  background: linear-gradient(to bottom, #fff, rgba(247, 243, 234, 0.4));
}
.news-section-alt { background: var(--bg-page); }
.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(212, 163, 71, 0.4);
  position: relative;
}
.news-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(30, 74, 140, 0.25);
}
.news-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  line-height: 1.2;
}
.news-section-english {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
}
.news-section-header .more-link {
  color: var(--gov-blue);
  font-size: 13px;
}
.news-section-header .more-link:hover { color: var(--gov-blue-dark); }

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}
.news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-light);
  transition: all 0.2s;
}
.news-item:hover {
  border-bottom-color: rgba(30, 74, 140, 0.3);
}
.news-item:hover .news-title {
  color: var(--gov-blue);
  transform: translateX(4px);
}
.news-rank {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-light);
  color: var(--text-muted);
  transition: 0.2s;
}
.news-rank-1 { background: var(--gov-blue); color: #fff; }
.news-rank-2 { background: var(--gov-gold); color: var(--gov-blue-dark); }
.news-title {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}
.news-date {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-arrow {
  flex-shrink: 0;
  color: rgba(138, 148, 168, 0.4);
  font-size: 16px;
  transition: 0.2s;
}
.news-item:hover .news-arrow {
  color: var(--gov-blue);
  transform: translateX(4px);
}

/* ============================================
 * 下辖市场区
 * ============================================ */
.markets-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--gov-cream), #fff, var(--gov-cream));
  position: relative;
  overflow: hidden;
}
.markets-bg-circle-1,
.markets-bg-circle-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  /* 防止移动端横向溢出 */
  max-width: 100vw;
}
.markets-bg-circle-1 {
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(30, 74, 140, 0.06);
}
.markets-bg-circle-2 {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(212, 163, 71, 0.1);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.market-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 163, 71, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}
.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.market-card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gov-blue), var(--gov-gold), var(--gov-blue));
}
.market-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gov-cream);
  color: var(--gov-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: 0.3s;
}
.market-card:hover .market-card-icon {
  background: var(--gov-blue);
  color: #fff;
}
.market-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
}
.market-tag-blue { background: var(--gov-blue); color: #fff; }
.market-tag-gold { background: var(--gov-gold); color: var(--gov-blue-dark); }
.market-tag-light { background: var(--gov-blue-light); color: #fff; }
.market-tag-dark { background: var(--gov-blue-dark); color: #fff; }
.market-tag-sky { background: #0284c7; color: #fff; }
.market-tag-amber { background: #b45309; color: #fff; }
.market-tag-indigo { background: #4338ca; color: #fff; }
.market-tag-rose { background: #be123c; color: #fff; }
.market-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 8px;
}
.market-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  min-height: 38px;
}
.market-phone {
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
 * 国资系统合作伙伴
 * ============================================ */
.partners-section {
  padding: 60px 0;
  background: #fff;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.partner-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.partner-item:hover {
  border-color: var(--gov-gold);
  box-shadow: var(--shadow-md);
}
.partner-logo {
  width: 100%;
  aspect-ratio: 3/1;
  background: rgba(247, 243, 234, 0.4);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.partner-item:hover .partner-logo img { transform: scale(1.05); }
.partner-name {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.partner-item:hover .partner-name { color: var(--gov-blue); }

/* ============================================
 * 页脚
 * ============================================ */
.footer {
  background: linear-gradient(to bottom, var(--gov-blue-dark), var(--gov-blue-deep));
  color: #fff;
  margin-top: auto;
}
.footer-top-decorator {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gov-gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  padding: 48px 0;
  align-items: center;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(212, 163, 71, 0.4);
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
}
.footer-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.market-phone-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.market-name { color: rgba(255, 255, 255, 0.85); }
.market-tel {
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-col-qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.qrcode-wrap {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.qrcode-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qrcode-tip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-align: center;
}

.friend-links {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.friend-links-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gov-gold);
  font-weight: 500;
}
.friend-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.friend-links-list a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.friend-links-list a:hover { color: var(--gov-gold); }

.copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.copyright-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.copyright-sep { color: rgba(255, 255, 255, 0.3); }
.copyright-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.copyright-right a:hover { color: var(--gov-gold); }

/* ============================================
 * 回到顶部
 * ============================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: 0.3s;
  border: 2px solid rgba(212, 163, 71, 0.4);
}
.back-to-top:hover { transform: scale(1.1); }
.back-to-top.show { display: flex; }

/* ============================================
 * 滚动条
 * ============================================ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb {
  background: var(--gov-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gov-blue-dark); }

/* ============================================
 * 列表页样式
 * ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--gov-blue), var(--gov-blue-dark));
  color: #fff;
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(212, 163, 71, 0.3) 48%, rgba(212, 163, 71, 0.3) 52%, transparent 52%);
  background-size: 16px 16px;
  opacity: 0.3;
}
.page-banner-simple { padding: 16px 0; }
.page-banner .container { position: relative; }
.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.breadcrumb a:hover { color: var(--gov-gold); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.4); }
.breadcrumb-current { color: #fff; }
.page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.page-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
}

.list-section { padding: 40px 0; }
.list-wrap { max-width: 960px; margin: 0 auto; }
.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  border: 1px solid var(--border-light);
}
.article-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.article-link {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.article-thumb {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.article-item:hover .article-thumb img { transform: scale(1.05); }
.article-body { flex: 1; min-width: 0; }
.article-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.2s;
}
.article-item:hover .article-title { color: var(--gov-blue); }
.article-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.article-meta > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-read-more {
  margin-left: auto;
  color: var(--gov-blue);
  font-weight: 500;
}

/* 分页 */
.pagination {
  margin-top: 32px;
  text-align: center;
}
.pagination ul {
  display: inline-flex;
  gap: 4px;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: 0.2s;
}
.pagination a:hover {
  background: var(--bg-hover);
  color: var(--gov-blue);
}
.pagination .current {
  background: var(--gov-blue);
  color: #fff;
  font-weight: 700;
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-icon {
  color: var(--border-light);
  margin-bottom: 16px;
}

/* ============================================
 * 详情页样式
 * ============================================ */
.article-section { padding: 40px 0; }
.article-container { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 40px; box-shadow: var(--shadow-md); }
.article-header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.article-h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 16px;
}
.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-share-line {
  margin-top: 16px;
  height: 2px;
  background: linear-gradient(to right, var(--gov-blue), var(--gov-gold), transparent);
}
.article-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-primary);
}
.article-content p { margin-bottom: 16px; }
.article-content h2, .article-content h3, .article-content h4 {
  color: var(--gov-blue-dark);
  margin: 24px 0 12px;
  font-weight: 700;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.article-summary {
  background: var(--gov-cream);
  border-left: 4px solid var(--gov-blue);
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.article-pictures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.picture-item { text-align: center; }
.picture-item figcaption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}
.article-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}
.tags-label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}
.tag-item {
  padding: 4px 10px;
  background: var(--bg-hover);
  color: var(--gov-blue);
  border-radius: 4px;
  font-size: 12px;
  transition: 0.2s;
}
.tag-item:hover {
  background: var(--gov-blue);
  color: #fff;
}
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nav-prev, .nav-next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-page);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: 0.2s;
}
.nav-next { text-align: right; }
.nav-prev:hover, .nav-next:hover {
  background: var(--bg-hover);
  border-color: var(--gov-blue);
}
.nav-label {
  font-size: 11px;
  color: var(--text-muted);
}
.nav-title {
  font-size: 13px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
 * 单页样式
 * ============================================ */
.single-page-section { padding: 40px 0; }
.single-page-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-nav li {
  padding: 8px 0;
}
.sidebar-nav-item a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: 0.2s;
}
.sidebar-nav-item a:hover {
  background: var(--bg-hover);
  color: var(--gov-blue);
}
.sidebar-nav-item.active a {
  background: var(--gov-blue);
  color: #fff;
  font-weight: 500;
}
.sidebar-contact li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.single-page-content {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  min-height: 400px;
}
.content-header { margin-bottom: 24px; }
.content-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gov-blue-dark);
  margin-bottom: 12px;
}
.content-line {
  height: 2px;
  background: linear-gradient(to right, var(--gov-blue), var(--gov-gold), transparent);
}
.content-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-primary);
}
.content-body p { margin-bottom: 16px; }
.content-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}
.content-body h2, .content-body h3 {
  color: var(--gov-blue-dark);
  margin: 24px 0 12px;
}

/* ============================================
 * 广告位容器
 * ============================================ */
.banner-ad {
  margin: 24px auto;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  min-height: 60px;
  background: var(--bg-page);
}
.banner-ad img { max-width: 100%; height: auto; display: inline-block; }
.banner-ad:empty { display: none; }

/* PHPCMS 海报 JS 输出的图片样式重置 */
.banner-ad img,
.banner-ad a img {
  border: 0;
  max-width: 100%;
}
