/* =====================================================
   看片 - 主样式文件 (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; }

/* ---- 顶部公告栏 ---- */
.g5fmam {
  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;
}
.g5fmam a {
  color: var(--brand-secondary);
  font-weight: 600;
  transition: var(--transition);
}
.g5fmam 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);
}
.3b1hnh {
  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;
}
.nx8k3o {
  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;
}
.nx8k3o:focus-within {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.15);
}
.nx8k3o input {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 0.85rem;
  width: 180px;
  outline: none;
  color: var(--dark);
  font-family: inherit;
}
.nx8k3o button {
  padding: 8px 14px;
  color: var(--brand-primary);
  font-size: 1rem;
  transition: var(--transition);
}
.nx8k3o button:hover { background: var(--brand-pale); }

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

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

/* ---- 通知栏 ---- */
.w2l5koe {
  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;
}
.acdera {
  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 首屏 ---- */
.nj4ow {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.ws2kg4bt {
  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%);
}
.6e1gx6 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,18,0.85) 0%, rgba(45,45,68,0.7) 100%);
}
.0dqcwjj {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
  color: var(--white);
}
.cwu84 {
  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;
}
.0dqcwjj h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 18px;
}
.0dqcwjj h1 span {
  background: linear-gradient(135deg, var(--brand-secondary), #FFD6E7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.0dqcwjj p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.8;
}
.jt936 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.1scb154d {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.c95bq87u .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-secondary);
}
.c95bq87u .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;
}

/* ---- 分类标签 ---- */
.atxztj81 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.amij2cp {
  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);
}
.amij2cp:hover,
.amij2cp.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);
}

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

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

/* ---- 播放按钮（鼠标移入显示）---- */
.xck8e4o {
  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;
}
.uqe32g8b:hover .xck8e4o {
  opacity: 1;
}
.82l9zm {
  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;
}
.82l9zm::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;
}
.uqe32g8b:hover .82l9zm {
  transform: scale(1.1);
}
.08vkuq6g {
  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;
}
.fel5lru {
  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;
}
.mv1oo9m {
  padding: 14px 16px;
}
.mv1oo9m 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;
}
.de30q1a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.de30q1a .author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.de30q1a .author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.q2ack {
  display: flex;
  gap: 10px;
}

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

/* ---- 专家卡片 ---- */
.cnhtcco9 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.kt5jarkg {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.kt5jarkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.hed7ug {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
}
.hed7ug img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.kt5jarkg:hover .hed7ug img { transform: scale(1.05); }
.uskqajt8 {
  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;
}
.upduaue6 {
  padding: 18px;
}
.upduaue6 h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.upduaue6 .role {
  font-size: 0.8rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.upduaue6 p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.dce2w {
  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;
}
.ygmnlw {
  display: flex;
  gap: 8px;
}

/* ---- 合作伙伴 ---- */
.h15ey {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.c2x4gy {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.c2x4gy: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;
}

/* ---- 评价卡片 ---- */
.3ukp75 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.yyd9fpoc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.yyd9fpoc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.rk0d2w {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.1o59m39 {
  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;
}
.7vqweh 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;
}
.uxilprae {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}
.0vgwwfx { 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;
}

/* ---- 社区功能卡片网格 ---- */
.0azw3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.04kpb {
  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);
}
.04kpb: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);
}
.04kpb h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.04kpb 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); }

/* ---- 社区顾问卡片 ---- */
.wqmpq88b {
  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;
}
.wqmpq88b:hover {
  border-color: var(--brand-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.uhzxi {
  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;
}
.lagml6 h4 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.jgf9hz { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; display: block; margin-bottom: 4px; }
.ei170h {
  display: inline-block;
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.lagml6 p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ---- AI赋能组件 ---- */
.9u08bp { display: flex; flex-direction: column; gap: 20px; }
.if25mfzr {
  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);
}
.if25mfzr:hover { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.fees8naw {
  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;
}
.a4527 h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.a4527 p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.ek4l7r3d { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; margin-top: 6px; display: inline-block; }
.5nits38x {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.h3dus {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.xd48596 { font-size: 1.2rem; flex-shrink: 0; }
.8azm5 { flex: 1; }
.7wamsxa9 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.bwclczk { height: 6px; background: var(--bg-section); border-radius: 3px; overflow: hidden; }
.785mzgcw {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 3px;
  transition: width 1s ease;
}
.cdv13x { font-size: 0.9rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; min-width: 50px; text-align: right; }

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

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

/* ---- 分享按钮 ---- */
.okcigc {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.1j7v5hn7 {
  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);
}
.1j7v5hn7: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;
}
.34qm8l {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.i4l2duqp { text-align: center; }
.i4l2duqp img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.i4l2duqp 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) {
  .ylyvwpi { display: flex; }
  .main-nav, .nx8k3o { display: none; }
  .0dqcwjj { padding: 60px 0; }
  .1scb154d { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .buql1o { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .cnhtcco9 { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 48px 0; }
  .h15ey { 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; }
  .buql1o { grid-template-columns: 1fr; }
  .cnhtcco9 { grid-template-columns: 1fr; }
  .jt936 { flex-direction: column; }
  .1scb154d { gap: 16px; }
  .c95bq87u .num { font-size: 1.2rem; }
  .h15ey { grid-template-columns: repeat(2, 1fr); }
  .qr-group { flex-wrap: wrap; }
  .f10oo6i { grid-template-columns: repeat(2, 1fr); }
  .3ukp75 { grid-template-columns: 1fr; }
  .sfn763l { grid-template-columns: 1fr; }
}
