/* ========== 杭州同城荟 - 全局样式 ========== */
:root {
  --primary: #E6641E;
  --primary-dark: #C85014;
  --primary-light: #FF8C42;
  --accent: #FFB347;
  --text: #2c2c2c;
  --text-light: #666;
  --text-muted: #999;
  --bg: #f7f5f2;
  --bg-white: #ffffff;
  --border: #e8e4df;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 24px rgba(230,100,30,0.15);
  --radius: 10px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', -apple-system, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ========== 顶部导航 ========== */
.top-bar {
  background: linear-gradient(90deg, #E6641E, #FF8C42);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #fff; margin-left: 16px; opacity: .9; }
.top-bar a:hover { opacity: 1; color: #fff; }

.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 56px; width: auto; border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .zh { font-size: 22px; font-weight: 700; color: var(--primary); }
.logo-text .slogan { font-size: 13px; color: var(--text-light); margin-top: 3px; }

.nav-menu { display: flex; gap: 4px; }
.nav-menu a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: rgba(230,100,30,0.08);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-box input {
  width: 220px;
  padding: 8px 14px 8px 36px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: all .2s;
  background: #fafafa;
}
.search-box input:focus {
  border-color: var(--primary);
  background: #fff;
  width: 260px;
}
.search-box .icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 16px;
}
.btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ========== 首页Banner ========== */
.hero {
  background: linear-gradient(135deg, #E6641E 0%, #FF8C42 50%, #FFB347 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
}
.hero .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero .subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 32px; font-weight: 700; }
.hero-stat .label { font-size: 13px; opacity: .9; margin-top: 4px; }

/* ========== 快捷入口 ========== */
.quick-entry {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.quick-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .25s;
  cursor: pointer;
}
.quick-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.quick-item .icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.quick-item .name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* ========== 主体布局 ========== */
.main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
}

/* ========== 板块标题 ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
}
.section-more {
  font-size: 14px;
  color: var(--text-light);
}
.section-more:hover { color: var(--primary); }

/* ========== 焦点图/轮播 ========== */
.featured {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.featured-main {
  position: relative;
  height: 360px;
  background: #ddd;
  overflow: hidden;
}
.featured-main img { width: 100%; height: 100%; object-fit: cover; }
.featured-main .overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 60px 30px 24px;
  color: #fff;
}
.featured-main .tag {
  display: inline-block;
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.featured-main .ftitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.featured-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #f0f0f0;
}
.featured-item {
  position: relative;
  height: 120px;
  background: #333;
  overflow: hidden;
  cursor: pointer;
}
.featured-item img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: .4s; }
.featured-item:hover img { opacity: 1; transform: scale(1.05); }
.featured-item .ftitle {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ========== 新闻卡片列表 ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.news-card .thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .cat-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
}
.news-card .body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.news-card .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card .meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px dashed #f0f0f0;
}
.news-card .meta .left, .news-card .meta .right { display: flex; gap: 12px; align-items: center; }
.news-card .meta .dot { color: var(--primary); }

/* 列表式新闻（用于分类页） */
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-list-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all .25s;
  cursor: pointer;
}
.news-list-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.news-list-item .thumb {
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}
.news-list-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-list-item .body { flex: 1; display: flex; flex-direction: column; }
.news-list-item .title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
}
.news-list-item:hover .title { color: var(--primary); }
.news-list-item .desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-list-item .meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  align-items: center;
}
.news-list-item .meta .cat-tag {
  padding: 2px 8px;
  background: rgba(230,100,30,0.1);
  color: var(--primary);
  border-radius: 3px;
  font-size: 12px;
}

/* ========== 右侧边栏 ========== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-title::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--primary);
  border-radius: 2px;
}

/* 分类导航 */
.cat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cat-item {
  padding: 10px 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  background: #fafafa;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
}
.cat-item:hover {
  background: rgba(230,100,30,0.08);
  color: var(--primary);
  border-color: var(--primary);
}
.cat-item .emoji { font-size: 20px; display: block; margin-bottom: 4px; }

/* 热门排行 */
.hot-list { display: flex; flex-direction: column; gap: 12px; }
.hot-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.hot-item:last-child { border-bottom: none; }
.hot-item .rank {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #ccc;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hot-item:nth-child(1) .rank { background: #E6641E; }
.hot-item:nth-child(2) .rank { background: #FF8C42; }
.hot-item:nth-child(3) .rank { background: #FFB347; }
.hot-item .htitle {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hot-item:hover .htitle { color: var(--primary); }
.hot-item .views { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* 二维码/加入我们 */
.join-card {
  background: linear-gradient(135deg, #FFF3EB, #FFE8D6);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.join-card h4 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.join-card p { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.qr-placeholder {
  width: 120px;
  height: 120px;
  background: #fff;
  margin: 0 auto 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border: 2px dashed var(--primary);
}

/* ========== 分页 ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.pagination button, .pagination .page-num {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
}
.pagination button:hover:not(:disabled), .pagination .page-num:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination .page-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination button:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.pagination .ellipsis { padding: 0 6px; color: var(--text-muted); }
.page-info { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

/* ========== 分类导航条（分类页） ========== */
.cat-nav {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cat-nav-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-right: 6px;
}
.cat-nav a {
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  background: #f5f5f5;
  color: var(--text-light);
  transition: all .2s;
}
.cat-nav a:hover, .cat-nav a.active {
  background: var(--primary);
  color: #fff;
}

/* ========== 新闻详情页 ========== */
.article {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 44px;
  box-shadow: var(--shadow);
}
.article-header { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #f0f0f0; }
.article-crumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.article-crumb a:hover { color: var(--primary); }
.article h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta .cat-tag {
  padding: 2px 10px;
  background: rgba(230,100,30,0.1);
  color: var(--primary);
  border-radius: 3px;
}
.article-cover {
  margin: 0 -10px 28px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 16px; line-height: 1.9; color: var(--text); }
.article-body p { margin-bottom: 20px; text-indent: 2em; }
.article-body p:first-of-type { text-indent: 0; font-weight: 500; color: var(--primary-dark); }

.article-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.article-tags span {
  padding: 4px 12px;
  background: #f7f5f2;
  border-radius: 14px;
  font-size: 12px;
  color: var(--text-light);
}
.article-actions { display: flex; justify-content: center; gap: 20px; }
.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 22px;
  background: #f7f5f2;
  font-size: 14px;
  color: var(--text-light);
  transition: all .2s;
}
.action-btn:hover { background: var(--primary); color: #fff; }
.action-btn.liked { background: var(--primary); color: #fff; }

/* 相关推荐 */
.related { margin-top: 28px; }
.related h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; padding-left: 10px; border-left: 4px solid var(--primary); }

/* ========== 关于页面 ========== */
.page-banner {
  background: linear-gradient(135deg, #E6641E, #FFB347);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 { font-size: 36px; font-weight: 900; margin-bottom: 10px; }
.page-banner p { font-size: 16px; opacity: .9; }

.about-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 44px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}
.about-section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
  text-indent: 2em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.feature-box {
  padding: 24px 16px;
  background: linear-gradient(135deg, #FFF8F3, #FFEDE0);
  border-radius: var(--radius);
  text-align: center;
}
.feature-box .icon { font-size: 40px; margin-bottom: 10px; }
.feature-box h4 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.feature-box p { font-size: 13px; color: var(--text-light); text-indent: 0; margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.team-card {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  border-radius: var(--radius);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}
.team-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--text-muted); }

/* ========== 联系页面 ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: #fafafa;
  border-radius: var(--radius-sm);
}
.contact-item .icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,100,30,0.1);
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-item .label { font-size: 13px; color: var(--text-muted); }
.contact-item .value { font-size: 15px; font-weight: 500; color: var(--text); margin-top: 2px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== 底部Footer ========== */
.footer {
  background: #2a2520;
  color: #bfb5a8;
  padding: 48px 0 0;
  margin-top: 60px;
}
.footer .wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #3a342d;
}
.footer-brand .logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-row img { height: 44px; border-radius: 4px; }
.footer-brand .fname { font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 12px; }
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: #bfb5a8; }
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-contact p { font-size: 13px; line-height: 1.8; margin-bottom: 6px; }
.footer-contact .wx { color: var(--primary-light); font-weight: 500; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #887e73;
}
.footer-bottom a { color: #bfb5a8; }
.footer-bottom a:hover { color: var(--primary-light); }
.beian { margin-top: 6px; }

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .quick-entry { grid-template-columns: repeat(4, 1fr); }
  .main { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header .wrap { height: 64px; }
  .logo-wrap img { height: 42px; }
  .logo-text .zh { font-size: 18px; }
  .nav-menu { display: none; }
  .search-box input { width: 140px; }
  .search-box input:focus { width: 160px; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero .subtitle { font-size: 15px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 24px; }
  .quick-entry { grid-template-columns: repeat(4, 1fr); margin-top: -30px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-list-item { flex-direction: column; }
  .news-list-item .thumb { width: 100%; height: 180px; }
  .article { padding: 20px; }
  .article h1 { font-size: 22px; }
  .article-cover { height: 200px; margin: 0 0 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-section { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .features-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .featured-main { height: 220px; }
  .featured-main .ftitle { font-size: 18px; }
}
