/* =====================================================
   海角社区 - 主样式文件 (style.css)
   品牌色: 玫瑰红 #E8365D / 粉色 #FF6B9D / 深紫 #1A1A2E
   ===================================================== */

/* ---- CSS 变量 ---- */
:root {
  --brand-primary:   #E8365D;
  --brand-secondary: #FF6B9D;
  --brand-light:     #FFD6E7;
  --brand-pale:      #FFF0F5;
  --dark:            #1A1A2E;
  --dark-2:          #2D2D44;
  --text-body:       #4A4A6A;
  --text-muted:      #8888AA;
  --border:          #F0D6E4;
  --white:           #FFFFFF;
  --bg-section:      #FAF5F8;
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
  --shadow-sm:       0 2px 12px rgba(232,54,93,0.08);
  --shadow-md:       0 8px 32px rgba(232,54,93,0.12);
  --shadow-lg:       0 16px 56px rgba(232,54,93,0.18);
  --transition:      all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-main:       'PingFang SC','Hiragino Sans GB','Microsoft YaHei','微软雅黑',sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- 容器 ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 工具类 ---- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.bg-section { background: var(--bg-section); }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 40px 0; }

/* ---- 顶部公告栏 ---- */
.2ffmex {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  text-align: center;
}
.2ffmex a {
  color: var(--brand-secondary);
  font-weight: 600;
  transition: var(--transition);
}
.2ffmex a:hover { color: var(--white); }

/* ---- 主导航 ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(232,54,93,0.06);
}
.a7hvpry4 {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-primary);
  background: var(--brand-pale);
  font-weight: 600;
}
.qid65 {
  display: flex;
  align-items: center;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}
.qid65:focus-within {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.15);
}
.qid65 input {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 0.85rem;
  width: 180px;
  outline: none;
  color: var(--dark);
  font-family: inherit;
}
.qid65 button {
  padding: 8px 14px;
  color: var(--brand-primary);
  font-size: 1rem;
  transition: var(--transition);
}
.qid65 button:hover { background: var(--brand-pale); }

/* ---- 汉堡菜单 ---- */
.2kgj77 {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.2kgj77:hover { background: var(--brand-pale); }
.2kgj77 span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- 移动端导航 ---- */
.poc437nq {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.poc437nq.open { display: flex; }
.poc437nq a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: var(--transition);
}
.poc437nq a:hover { background: var(--brand-pale); color: var(--brand-primary); }
.y6k8lh4 {
  display: flex;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 12px;
}
.y6k8lh4 input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}
.y6k8lh4 button {
  padding: 10px 16px;
  color: var(--brand-primary);
}

/* ---- 面包屑 ---- */
.breadcrumb {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.83rem;
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--text-muted);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb a { color: var(--brand-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.bc-sep { color: var(--text-muted); }

/* ---- 页面Banner（内页，page-banner类）---- */
.page-banner {
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-banner h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 10px;
}
.page-banner p { opacity: 0.85; font-size: 1rem; }

/* ---- 内页Banner ---- */
.inner-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #3D1A2E 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,54,93,0.25) 0%, transparent 70%);
}
.inner-banner .container { position: relative; z-index: 1; }
.inner-banner h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.inner-banner p {
  font-size: 1rem;
  opacity: 0.8;
}

/* ---- 通知栏 ---- */
.eie7ncw8 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-pale);
  border: 1.5px solid var(--brand-light);
  border-radius: 10px;
  padding: 10px 18px;
  overflow: hidden;
}
.n-label {
  background: var(--brand-primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.4s3k19 {
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text-body);
  animation: scrollLeft 30s linear infinite;
}
@keyframes scrollLeft {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---- Hero 首屏 ---- */
.cujzd {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.cp28s {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,54,93,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,157,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(61,26,46,0.8) 0%, transparent 60%);
}
.0tu52vn {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,18,0.85) 0%, rgba(45,45,68,0.7) 100%);
}
.5dw7uc3 {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
  color: var(--white);
}
.ndj2ny {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,54,93,0.2);
  border: 1px solid rgba(232,54,93,0.4);
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
}
.5dw7uc3 h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
}
.5dw7uc3 h1 span {
  background: linear-gradient(135deg, var(--brand-secondary), #FFD6E7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.5dw7uc3 p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.8;
}
.00t8fy {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.k6abxlc {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.apslu .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-secondary);
}
.apslu .label {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,54,93,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,54,93,0.45);
}
.btn-outline {
  background: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-pale);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ---- 区块标题 ---- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 4px;
  margin: 10px auto 0;
}
.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* ---- 分类标签 ---- */
.5chvsn7j {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.4pknm22 {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.4pknm22:hover,
.4pknm22.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(232,54,93,0.3);
}

/* ---- 视频网格 ---- */
.5b347f {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ---- 视频卡片 ---- */
.rdyrg6z {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.rdyrg6z:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.aw9hkbxj {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.aw9hkbxj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rdyrg6z:hover .aw9hkbxj img {
  transform: scale(1.06);
}

/* ---- 播放按钮（鼠标移入显示）---- */
.2zyzlvra {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,10,18,0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.rdyrg6z:hover .2zyzlvra {
  opacity: 1;
}
.vvg6n {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.vvg6n::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--brand-primary);
  margin-left: 4px;
}
.rdyrg6z:hover .vvg6n {
  transform: scale(1.1);
}
.xfwqaki5 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.vhmgb {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}
.ltn0yrw3 {
  padding: 14px 16px;
}
.ltn0yrw3 h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b07hqso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.b07hqso .author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.b07hqso .author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.v3c8ov {
  display: flex;
  gap: 10px;
}

/* ---- 功能卡片网格 ---- */
.hfe6k825 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.k92kf {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.k92kf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.0cqzf {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.k92kf h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.k92kf p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- 专家卡片 ---- */
.ubbg5zc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.mkjhz {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.mkjhz:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.8j60w2b {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
}
.8j60w2b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.mkjhz:hover .8j60w2b img { transform: scale(1.05); }
.hil2w7yv {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}
.ncegh27 {
  padding: 18px;
}
.ncegh27 h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.ncegh27 .role {
  font-size: 0.8rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.ncegh27 p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.0vyk7i1 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.award-tag {
  background: var(--brand-pale);
  color: var(--brand-primary);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.ah1oyixh {
  display: flex;
  gap: 8px;
}

/* ---- 合作伙伴 ---- */
.wz6pdw {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.4i73st3x {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.4i73st3x:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.p-logo { font-size: 2rem; margin-bottom: 8px; }
.p-name { font-size: 0.82rem; font-weight: 600; color: var(--text-body); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
}
.q-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-question span:nth-child(2) {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.faq-toggle {
  font-size: 1.2rem;
  color: var(--brand-primary);
  font-weight: 700;
  transition: transform 0.28s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 20px 18px 60px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ---- 评价卡片 ---- */
.0qnx1si {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.8lyvdne {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.8lyvdne:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.x5dte {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.00up742 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.uwjni h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.r-tag {
  background: var(--brand-pale);
  color: var(--brand-primary);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.stars {
  color: #FFB800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.u736z {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}
.em4cvarp { font-size: 0.75rem; color: var(--text-muted); }

/* ---- 联系我们 ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact-item:hover { background: var(--brand-pale); }
.c-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.c-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.c-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.c-text a { color: var(--brand-primary); }
.c-text a:hover { text-decoration: underline; }

/* ---- 二维码 ---- */
.qr-group {
  display: flex;
  gap: 20px;
}
.qr-item {
  text-align: center;
}
.qr-item img {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  object-fit: cover;
}
.qr-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ---- 社区功能卡片网格 ---- */
.5q8n1vmh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.afe68t {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--brand-primary);
  transition: var(--transition);
}
.afe68t:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cf-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  background: var(--brand-pale);
  color: var(--brand-primary);
}
.afe68t h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.afe68t p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.cf-link { font-size: 0.82rem; font-weight: 700; color: var(--brand-primary); }

/* ---- 社区顾问卡片 ---- */
.rlohm {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rlohm:hover {
  border-color: var(--brand-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.jivgj6n3 {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: var(--brand-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pzs3pg6g h4 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.8ksrehze { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; display: block; margin-bottom: 4px; }
.i5zir {
  display: inline-block;
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.pzs3pg6g p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ---- AI赋能组件 ---- */
.6f4hhf { display: flex; flex-direction: column; gap: 20px; }
.4u5w6 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.4u5w6:hover { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.b7c9ypnm {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nd2b41 h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.nd2b41 p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.ih67qsd { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; margin-top: 6px; display: inline-block; }
.3lso3b {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.d9ook {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cn9wbf14 { font-size: 1.2rem; flex-shrink: 0; }
.k7hn1 { flex: 1; }
.pqup7 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.mu5xlb { height: 6px; background: var(--bg-section); border-radius: 3px; overflow: hidden; }
.fi7jxck {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 3px;
  transition: width 1s ease;
}
.twg2i { font-size: 0.9rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; min-width: 50px; text-align: right; }

/* ---- EEAT信任标识栏 ---- */
.l7axd {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tdwwb3rx {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.k387mw { font-size: 1rem; }

/* ---- 社区入口 ---- */
.dj1egudl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.bud2fz {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.bud2fz:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.e-icon { font-size: 1.8rem; margin-bottom: 8px; }
.bud2fz h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.bud2fz p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- 分享按钮 ---- */
.ahcuj56 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.iw4xt5r {
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.iw4xt5r:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ---- 分页 ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.page-btn:hover,
.page-btn.active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-color: transparent;
}

/* ---- 页脚 ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-wrap img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.footer-brand .logo-wrap span {
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-secondary), #FFD6E7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.r2fy1n0 {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.8h06rw { text-align: center; }
.8h06rw img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.8h06rw p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--brand-secondary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--brand-secondary); }

/* ---- 返回顶部 ---- */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,54,93,0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { transform: translateY(-3px); }

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav a { padding: 7px 10px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .2kgj77 { display: flex; }
  .main-nav, .qid65 { display: none; }
  .5dw7uc3 { padding: 60px 0; }
  .k6abxlc { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .5b347f { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .ubbg5zc { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 48px 0; }
  .wz6pdw { grid-template-columns: repeat(4, 1fr); }
  .inner-banner { padding: 40px 0; }
  .inner-banner h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .5b347f { grid-template-columns: 1fr; }
  .ubbg5zc { grid-template-columns: 1fr; }
  .00t8fy { flex-direction: column; }
  .k6abxlc { gap: 16px; }
  .apslu .num { font-size: 1.2rem; }
  .wz6pdw { grid-template-columns: repeat(2, 1fr); }
  .qr-group { flex-wrap: wrap; }
  .dj1egudl { grid-template-columns: repeat(2, 1fr); }
  .0qnx1si { grid-template-columns: 1fr; }
  .hfe6k825 { grid-template-columns: 1fr; }
}
