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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ---- AI赋能组件 ---- */
.2mbby6a { display: flex; flex-direction: column; gap: 20px; }
.71p5hj {
  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);
}
.71p5hj:hover { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.n0igrp {
  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;
}
.q6y0uwr h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.q6y0uwr p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.hu82m { font-size: 0.82rem; color: var(--brand-primary); font-weight: 600; margin-top: 6px; display: inline-block; }
.49w2bd3v {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.qz61cr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.qldq3 { font-size: 1.2rem; flex-shrink: 0; }
.d274g { flex: 1; }
.gsruz60 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; }
.d5bfq1y { height: 6px; background: var(--bg-section); border-radius: 3px; overflow: hidden; }
.8mlqgm95 {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 3px;
  transition: width 1s ease;
}
.4ztxkq { font-size: 0.9rem; font-weight: 800; color: var(--brand-primary); flex-shrink: 0; min-width: 50px; text-align: right; }

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

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

/* ---- 分享按钮 ---- */
.s21u0yjh {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.c5ph6gy3 {
  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);
}
.c5ph6gy3: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;
}
.pu8zi {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.4tliy9ec { text-align: center; }
.4tliy9ec img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.4tliy9ec 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) {
  .7jsanvy { display: flex; }
  .main-nav, .r0riawyn { display: none; }
  .qtkun { padding: 60px 0; }
  .txuzq { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ooawvf { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .xobw9 { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 48px 0; }
  .6yjovmpj { 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; }
  .ooawvf { grid-template-columns: 1fr; }
  .xobw9 { grid-template-columns: 1fr; }
  .azbwq9kz { flex-direction: column; }
  .txuzq { gap: 16px; }
  .zro90a .num { font-size: 1.2rem; }
  .6yjovmpj { grid-template-columns: repeat(2, 1fr); }
  .qr-group { flex-wrap: wrap; }
  .9zr4g { grid-template-columns: repeat(2, 1fr); }
  .5l642w { grid-template-columns: 1fr; }
  .616rs0 { grid-template-columns: 1fr; }
}
