/* ============================================
   校花 - 青春影像·传媒新势力
   原创CSS样式表 | 817232.cn
   配色方案：玫瑰粉+梦幻紫+暖橙
   ============================================ */

/* === 基础重置与变量 === */
:root {
  --xh-primary: #E8457C;
  --xh-secondary: #6C3CE0;
  --xh-accent: #FF8C42;
  --xh-bg-light: #FDF6F9;
  --xh-bg-dark: #1A0E2E;
  --xh-text: #2D1B4E;
  --xh-text-light: #6B5B7B;
  --xh-card: #FFFFFF;
  --xh-border: #F0E4F0;
  --xh-gradient: linear-gradient(135deg, #E8457C, #6C3CE0);
  --xh-gradient-warm: linear-gradient(135deg, #FF8C42, #E8457C);
  --xh-shadow: 0 4px 20px rgba(108, 60, 224, 0.1);
  --xh-shadow-hover: 0 8px 32px rgba(232, 69, 124, 0.2);
  --xh-radius: 12px;
  --xh-radius-lg: 20px;
  --xh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: var(--xh-text);
  background: var(--xh-bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--xh-primary);
  text-decoration: none;
  transition: var(--xh-transition);
}

a:hover {
  color: var(--xh-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === 头部导航 === */
.sw4hkakds {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(45, 27, 78, 0.08);
  border-bottom: 2px solid transparent;
  border-image: var(--xh-gradient) 1;
}

.sw4hkakds .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.s1g605f {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--xh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.s1g605f img {
  height: 42px;
  width: auto;
}

.svi0c5 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.svi0c5 a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--xh-text);
  position: relative;
  transition: var(--xh-transition);
}

.svi0c5 a:hover,
.svi0c5 a.active {
  color: var(--xh-primary);
  background: rgba(232, 69, 124, 0.08);
}

.svi0c5 a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--xh-gradient);
  border-radius: 2px;
}

.sgmy44 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.sgmy44 span {
  width: 24px;
  height: 2px;
  background: var(--xh-text);
  border-radius: 2px;
  transition: var(--xh-transition);
}

/* === 搜索框 === */
.xh-search-bar {
  background: linear-gradient(135deg, rgba(232, 69, 124, 0.05), rgba(108, 60, 224, 0.05));
  padding: 14px 0;
  border-bottom: 1px solid var(--xh-border);
}

.xh-search-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sb3jzzp6t {
  display: flex;
  align-items: center;
  background: var(--xh-card);
  border: 2px solid var(--xh-border);
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  width: 100%;
  max-width: 600px;
  transition: var(--xh-transition);
}

.sb3jzzp6t:focus-within {
  border-color: var(--xh-primary);
  box-shadow: 0 0 0 4px rgba(232, 69, 124, 0.1);
}

.sb3jzzp6t input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--xh-text);
  background: transparent;
  padding: 8px 0;
}

.sb3jzzp6t input::placeholder {
  color: var(--xh-text-light);
}

.skjy0kycv {
  background: var(--xh-gradient);
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--xh-transition);
  white-space: nowrap;
}

.skjy0kycv:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* === 面包屑 === */
.sf32b0n0s {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--xh-text-light);
}

.sf32b0n0s a {
  color: var(--xh-text-light);
}

.sf32b0n0s a:hover {
  color: var(--xh-primary);
}

.sf32b0n0s span {
  margin: 0 6px;
}

/* === Hero Banner === */
.sr4o3f4e {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sirf3wk {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sirf3wk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sneycxvd {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 14, 46, 0.7), rgba(232, 69, 124, 0.4));
  z-index: 1;
}

.syr2ir {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.syr2ir h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: 2px;
}

.syr2ir h1 em {
  font-style: normal;
  background: var(--xh-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.syr2ir p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.sedvy7wv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.sedvy7wv span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sk5ymk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--xh-transition);
}

.s878quydx {
  background: var(--xh-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 69, 124, 0.4);
}

.s878quydx:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 69, 124, 0.5);
  color: #fff;
}

.sfkx1b {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.sfkx1b:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* === 通用板块 === */
.skox8rsy {
  padding: 70px 0;
}

.st9fpyshs {
  background: #fff;
}

.skox8rsy-dark {
  background: var(--xh-bg-dark);
  color: #fff;
}

.szrvhgss3 {
  text-align: center;
  margin-bottom: 48px;
}

.szrvhgss3 h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.szrvhgss3 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--xh-gradient);
  border-radius: 2px;
}

.szrvhgss3 p {
  color: var(--xh-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.skox8rsy-dark .szrvhgss3 p {
  color: rgba(255, 255, 255, 0.7);
}

/* === 视频卡片网格 === */
.sngrd4wb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sn85s6g {
  background: var(--xh-card);
  border-radius: var(--xh-radius);
  overflow: hidden;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
  cursor: pointer;
}

.sn85s6g:hover {
  transform: translateY(-6px);
  box-shadow: var(--xh-shadow-hover);
}

.spns468n5 {
  position: relative;
  padding-top: 133%;
  overflow: hidden;
}

.spns468n5 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sn85s6g:hover .spns468n5 img {
  transform: scale(1.05);
}

.sr5wl7 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 14, 46, 0.4);
  opacity: 0;
  transition: var(--xh-transition);
}

.sn85s6g:hover .sr5wl7 {
  opacity: 1;
}

.sscafz7w {
  width: 64px;
  height: 64px;
  background: var(--xh-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 69, 124, 0.5);
  transition: var(--xh-transition);
}

.sn85s6g:hover .sscafz7w {
  transform: scale(1.1);
}

.sscafz7w::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.snseqc {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.s0mx5ooh {
  padding: 16px;
}

.s0mx5ooh h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.sy9gw39 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--xh-text-light);
}

.sy9gw39 span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.svy5w0u {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.sqv5ta {
  background: linear-gradient(135deg, rgba(232, 69, 124, 0.08), rgba(108, 60, 224, 0.08));
  color: var(--xh-primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* === 短视频横向滚动 === */
.sep1qyxb4 {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.sep1qyxb4::-webkit-scrollbar {
  height: 6px;
}

.sep1qyxb4::-webkit-scrollbar-track {
  background: var(--xh-border);
  border-radius: 3px;
}

.sep1qyxb4::-webkit-scrollbar-thumb {
  background: var(--xh-gradient);
  border-radius: 3px;
}

.setkg51x {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: var(--xh-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
}

.setkg51x:hover {
  transform: scale(1.03);
}

.setkg51x img {
  width: 220px;
  height: 330px;
  object-fit: cover;
}

.sao5l4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.sao5l4 h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.sao5l4 span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.s06x41ldk {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--xh-transition);
}

.setkg51x:hover .s06x41ldk {
  opacity: 1;
}

/* === AI模块 === */
.sb4o70tvm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sdma3a79b {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
  border: 1px solid var(--xh-border);
}

.sdma3a79b:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
  border-color: var(--xh-primary);
}

.sh23gi {
  width: 72px;
  height: 72px;
  background: var(--xh-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.sdma3a79b h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sdma3a79b p {
  color: var(--xh-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* === 社区模块 === */
.s5k3cy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.s91gtx4m {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
  border: 1px solid var(--xh-border);
}

.s91gtx4m:hover {
  transform: translateY(-3px);
  box-shadow: var(--xh-shadow-hover);
}

.sk6jz9j {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--xh-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.s91gtx4m h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.s91gtx4m p {
  color: var(--xh-text-light);
  font-size: 0.9rem;
}

/* === 专家展示 === */
.s71cxq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.s87c5yytc {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  overflow: hidden;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
  text-align: center;
}

.s87c5yytc:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
}

.sm0u11srl {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.sm0u11srl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.s87c5yytc:hover .sm0u11srl img {
  transform: scale(1.05);
}

.sjdysvc7 {
  padding: 20px 16px;
}

.sjdysvc7 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sjdysvc7 .xh-role {
  color: var(--xh-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.sjdysvc7 p {
  color: var(--xh-text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.s32w6glb {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.sgn3k1y {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--xh-transition);
}

.s5xf2mk {
  background: var(--xh-gradient);
  color: #fff;
}

.szv7cth {
  background: transparent;
  color: var(--xh-primary);
  border: 1.5px solid var(--xh-primary);
}

/* === 合作品牌 === */
.swc3fo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.sg4sa9a {
  background: var(--xh-card);
  padding: 20px 32px;
  border-radius: var(--xh-radius);
  box-shadow: var(--xh-shadow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--xh-text-light);
  transition: var(--xh-transition);
  border: 1px solid var(--xh-border);
}

.sg4sa9a:hover {
  color: var(--xh-primary);
  border-color: var(--xh-primary);
  transform: translateY(-2px);
}

/* === FAQ === */
.s17dtg {
  max-width: 800px;
  margin: 0 auto;
}

.siqpb6yfz {
  background: var(--xh-card);
  border-radius: var(--xh-radius);
  margin-bottom: 12px;
  box-shadow: var(--xh-shadow);
  overflow: hidden;
  border: 1px solid var(--xh-border);
}

.s04e7sady {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--xh-transition);
}

.s04e7sady:hover {
  color: var(--xh-primary);
}

.s04e7sady::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--xh-primary);
  transition: var(--xh-transition);
}

.siqpb6yfz.active .s04e7sady::after {
  transform: rotate(45deg);
}

.sqr5oao0l {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--xh-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.siqpb6yfz.active .sqr5oao0l {
  padding: 0 24px 18px;
  max-height: 300px;
}

/* === 用户评论 === */
.s6sazt26w {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sxdesg4rd {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  padding: 28px;
  box-shadow: var(--xh-shadow);
  border: 1px solid var(--xh-border);
  transition: var(--xh-transition);
}

.sxdesg4rd:hover {
  box-shadow: var(--xh-shadow-hover);
}

.xh-review-stars {
  color: var(--xh-accent);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.xh-review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--xh-text);
  margin-bottom: 16px;
  font-style: italic;
}

.s1o887412 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ssrry0 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--xh-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.xh-review-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.skjs4lem {
  font-size: 0.8rem;
  color: var(--xh-text-light);
}

/* === 联系我们 === */
.so1a41al {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.s2ou10 {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  padding: 36px;
  box-shadow: var(--xh-shadow);
}

.s2ou10 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--xh-primary);
}

.smrt6h27 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.s17vw3her {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(232, 69, 124, 0.1), rgba(108, 60, 224, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.so7fj5w {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.scxih174q {
  text-align: center;
}

.scxih174q img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.scxih174q span {
  font-size: 0.82rem;
  color: var(--xh-text-light);
}

/* === How-To指南 === */
.sj0z3fjs0 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sfb3kae {
  text-align: center;
  position: relative;
}

.s7gokudz {
  width: 56px;
  height: 56px;
  background: var(--xh-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.sfb3kae h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sfb3kae p {
  color: var(--xh-text-light);
  font-size: 0.88rem;
}

/* === 社交分享 === */
.smr81pl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

.ss54pf {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--xh-transition);
  cursor: pointer;
}

.ss54pf:hover {
  transform: translateY(-3px);
}

.sna3cdonm { background: #07C160; }
.suy80zsp8 { background: #E6162D; }
.scbqg9r { background: #161823; }
.sox8lwiq6 { background: #00A1D6; }

/* === 页脚 === */
.sjwwrrr4p {
  background: var(--xh-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 0;
}

.ss0wg4p {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.shwd1cvd h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--xh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shwd1cvd p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

.sjwwrrr4p h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.sqye92l {
  list-style: none;
}

.sqye92l li {
  margin-bottom: 10px;
}

.sqye92l a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--xh-transition);
}

.sqye92l a:hover {
  color: var(--xh-primary);
  padding-left: 4px;
}

.s31bte7jv {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.sse1em {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.sse1em img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
}

/* === 数据统计条 === */
.snl7ypi7l {
  background: var(--xh-gradient);
  padding: 40px 0;
}

.s107pbb7d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: #fff;
}

.sptw8e {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.s6co7ew {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* === 内页通用 === */
.seodyj {
  background: var(--xh-gradient);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.seodyj h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.seodyj p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.s52wnr {
  padding: 50px 0;
}

/* === 内页文章列表 === */
.st7q2dymw {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sr6d8gb5 {
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  overflow: hidden;
  box-shadow: var(--xh-shadow);
  transition: var(--xh-transition);
  display: flex;
}

.sr6d8gb5:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow-hover);
}

.symz2or {
  flex: 0 0 200px;
  overflow: hidden;
}

.symz2or img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s9qdcclj {
  padding: 20px;
  flex: 1;
}

.s9qdcclj h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.s9qdcclj p {
  color: var(--xh-text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === 响应式 === */
@media (max-width: 1024px) {
  .sngrd4wb {
    grid-template-columns: repeat(2, 1fr);
  }
  .s71cxq {
    grid-template-columns: repeat(2, 1fr);
  }
  .sb4o70tvm {
    grid-template-columns: repeat(2, 1fr);
  }
  .s5k3cy {
    grid-template-columns: repeat(2, 1fr);
  }
  .ss0wg4p {
    grid-template-columns: repeat(2, 1fr);
  }
  .sj0z3fjs0 {
    grid-template-columns: repeat(2, 1fr);
  }
  .s107pbb7d {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .sw4hkakds .container {
    height: 56px;
  }

  .svi0c5 {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 4px;
    z-index: 999;
  }

  .svi0c5.active {
    display: flex;
  }

  .sgmy44 {
    display: flex;
  }

  .sr4o3f4e {
    height: 400px;
  }

  .syr2ir h1 {
    font-size: 2rem;
  }

  .syr2ir p {
    font-size: 1rem;
  }

  .skox8rsy {
    padding: 50px 0;
  }

  .szrvhgss3 h2 {
    font-size: 1.6rem;
  }

  .sngrd4wb {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .spns468n5 {
    padding-top: 75%;
  }

  .sb4o70tvm {
    grid-template-columns: 1fr;
  }

  .s5k3cy {
    grid-template-columns: 1fr;
  }

  .s71cxq {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .s6sazt26w {
    grid-template-columns: 1fr;
  }

  .so1a41al {
    grid-template-columns: 1fr;
  }

  .ss0wg4p {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sj0z3fjs0 {
    grid-template-columns: 1fr;
  }

  .s107pbb7d {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr6d8gb5 {
    flex-direction: column;
  }

  .symz2or {
    flex: none;
    height: 180px;
  }

  .seodyj h1 {
    font-size: 1.8rem;
  }

  .sk5ymk {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .swc3fo {
    gap: 16px;
  }

  .sg4sa9a {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .so7fj5w {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .sr4o3f4e {
    height: 340px;
  }

  .syr2ir h1 {
    font-size: 1.6rem;
  }

  .s71cxq {
    grid-template-columns: 1fr;
  }

  .setkg51x {
    flex: 0 0 160px;
  }

  .setkg51x img {
    width: 160px;
    height: 240px;
  }

  .sptw8e {
    font-size: 1.6rem;
  }
}

/* === 动画 === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stbv9j5 {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.xh-delay-1 { animation-delay: 0.1s; }
.xh-delay-2 { animation-delay: 0.2s; }
.xh-delay-3 { animation-delay: 0.3s; }
.xh-delay-4 { animation-delay: 0.4s; }

/* === MCP前端样式 === */
.sem9e1 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.sap6vc3 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--xh-gradient);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 69, 124, 0.4);
  transition: var(--xh-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sap6vc3:hover {
  transform: scale(1.1);
}

.sjqz9n6 {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--xh-card);
  border-radius: var(--xh-radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}

.sjqz9n6.active {
  display: block;
}

.sic4cw6u {
  background: var(--xh-gradient);
  color: #fff;
  padding: 16px 20px;
  font-weight: 700;
}

.sngtq5 {
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.sngtq5 p {
  font-size: 0.9rem;
  color: var(--xh-text-light);
  margin-bottom: 12px;
}

/* === 懒加载占位 === */
.sbeee5 {
  background: linear-gradient(135deg, #f0e4f0, #fdf6f9);
  transition: opacity 0.5s ease;
}

.sbeee5.loaded {
  background: transparent;
}

/* === 内页正文内容 === */
.skox8rsy h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 32px 0 16px;
  color: var(--xh-text);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--xh-border);
}

.skox8rsy h2:first-child {
  margin-top: 0;
}

.skox8rsy p {
  margin-bottom: 16px;
  line-height: 1.9;
}

/* === 页脚资质信息响应式 === */
@media (max-width: 768px) {
  .ss94gzl div {
    flex-direction: column;
    gap: 8px !important;
  }
}
