/* =====================================================
   蜜桃传媒 - 主样式文件 (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; }

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

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

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

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

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

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

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

/* ---- 播放按钮（鼠标移入显示）---- */
.0t4dxq4 {
  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;
}
.bjih2kz:hover .0t4dxq4 {
  opacity: 1;
}
.grkh80lp {
  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;
}
.grkh80lp::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;
}
.bjih2kz:hover .grkh80lp {
  transform: scale(1.1);
}
.n7zpy {
  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;
}
.8qqfpvng {
  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;
}
.zb2cme20 {
  padding: 14px 16px;
}
.zb2cme20 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;
}
.cxp337 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.cxp337 .author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cxp337 .author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.t6p4x {
  display: flex;
  gap: 10px;
}

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

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

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

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

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

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

/* ---- AI赋能组件 ---- */
.h8ah8i { display: flex; flex-direction: column; gap: 20px; }
.u6g4ndyl {
  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);
}
.u6g4ndyl:hover { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.evu8o {
  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;
}
.x0z1r h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.x0z1r p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.u762ky1v { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; margin-top: 6px; display: inline-block; }
.nj0exe2h {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mbdftfbv {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bmxvra { font-size: 1.2rem; flex-shrink: 0; }
.y63e1 { flex: 1; }
.ay6sh { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.7f9fa8vc { height: 6px; background: var(--bg-section); border-radius: 3px; overflow: hidden; }
.vlk28 {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 3px;
  transition: width 1s ease;
}
.6qb2ui { font-size: 0.9rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; min-width: 50px; text-align: right; }

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

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

/* ---- 分享按钮 ---- */
.7k41j70 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.9ncxwz {
  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);
}
.9ncxwz: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;
}
.dn0nw {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.fr63u3 { text-align: center; }
.fr63u3 img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.fr63u3 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) {
  .p0s62g5s { display: flex; }
  .main-nav, .w3g3o { display: none; }
  .46kfo5 { padding: 60px 0; }
  .r4d6vv { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .u171mi { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .kuooxqv5 { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 48px 0; }
  .ogb2a9 { 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; }
  .u171mi { grid-template-columns: 1fr; }
  .kuooxqv5 { grid-template-columns: 1fr; }
  .gdjjcq9e { flex-direction: column; }
  .r4d6vv { gap: 16px; }
  .gih7a8 .num { font-size: 1.2rem; }
  .ogb2a9 { grid-template-columns: repeat(2, 1fr); }
  .qr-group { flex-wrap: wrap; }
  .bhdgzwze { grid-template-columns: repeat(2, 1fr); }
  .st978vy { grid-template-columns: 1fr; }
  .omx4rb { grid-template-columns: 1fr; }
}
