/* =====================================================
   {网站名称}额度变现 - 主题样式
   骰子: D1=7 Bento | D2=6 磁吸锚点 | D3=[7,8,1,26,24,16,25]
   D4=8 层叠混排 | D5=6 故障艺术 | D6=2 新拟态
   D7=4 负空间穿插 | D8=5 序列播放 | E5 故障切换
   ===================================================== */

/* ---------- CSS变量 ---------- */
:root {
  /* 主题色 - 咖啡棕 */
  --sheep-primary: #8B6F4E;
  --sheep-primary-dark: #6B5235;
  --sheep-primary-light: #B8976A;
  --sheep-primary-rgb: 139, 111, 78;
  /* 辅助色 */
  --sheep-accent: #D4A76A;
  --sheep-accent2: #C4915C;
  --sheep-gold: #E8C87A;
  /* 文字色 */
  --sheep-text: #3D3229;
  --sheep-text2: #5C4F42;
  --sheep-text3: #8B7D6B;
  --sheep-text-light: #A89B8C;
  /* 背景色 */
  --sheep-bg: #F5EDE3;
  --sheep-bg-main: #F0E6D8;
  --sheep-bg-alt: #E8DCC8;
  --sheep-bg-dark: #2C2420;
  --sheep-bg-card: #F8F1E8;
  /* 新拟态阴影 */
  --sheep-shadow-light: #FFFFFF;
  --sheep-shadow-dark: #D5C8B8;
  --sheep-shadow-up: -8px -8px 16px var(--sheep-shadow-light), 8px 8px 16px var(--sheep-shadow-dark);
  --sheep-shadow-down: inset -4px -4px 8px var(--sheep-shadow-light), inset 4px 4px 8px var(--sheep-shadow-dark);
  --sheep-shadow-sm: -4px -4px 8px var(--sheep-shadow-light), 4px 4px 8px var(--sheep-shadow-dark);
  /* 功能色 */
  --sheep-success: #5A8F6E;
  --sheep-danger: #C4544A;
  --sheep-white: #FFFFFF;
  --sheep-border: #D9CCBC;
  /* 故障色 */
  --glitch-cyan: #00E5FF;
  --glitch-red: #FF1744;
  /* 其他 */
  --sheep-radius: 16px;
  --sheep-radius-sm: 10px;
  --sheep-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* ---------- 基础重置 ---------- */
*, *::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(--sheep-text);
  background: var(--sheep-bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sheep-primary); text-decoration: none; transition: var(--sheep-transition); }
a:hover { color: var(--sheep-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
section { position: relative; }

/* ---------- 磁吸锚点导航 (D2) ---------- */
.sheep-magnet-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.magnet-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sheep-border);
  cursor: pointer;
  transition: var(--sheep-transition);
  box-shadow: var(--sheep-shadow-sm);
  position: relative;
}
.magnet-dot:hover, .magnet-dot.active {
  background: var(--sheep-primary);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(var(--sheep-primary-rgb), 0.2);
}
.magnet-dot::before {
  content: attr(data-target);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--sheep-primary-dark);
  color: var(--sheep-white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--sheep-transition);
}
.magnet-dot:hover::before { opacity: 1; }

/* ---------- 头部导航 ---------- */
.sheep-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(240, 230, 216, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(44, 36, 32, 0.08);
  transition: var(--sheep-transition);
}
.sheep-header.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(44, 36, 32, 0.12); }
.sheep-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sheep-logo i {
  font-size: 32px;
  color: var(--sheep-primary);
  filter: drop-shadow(0 2px 4px rgba(var(--sheep-primary-rgb), 0.3));
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--sheep-text);
  letter-spacing: 1px;
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: var(--sheep-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sheep-nav-menu {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.sheep-nav-menu .nav-item { list-style: none; }
.sheep-nav-menu .nav-link {
  display: block;
  padding: 10px 18px;
  border-radius: var(--sheep-radius-sm);
  color: var(--sheep-text2);
  font-size: 15px;
  font-weight: 500;
  transition: var(--sheep-transition);
}
.sheep-nav-menu .nav-link:hover,
.sheep-nav-menu .nav-link.active {
  color: var(--sheep-primary);
  background: var(--sheep-bg-card);
  box-shadow: var(--sheep-shadow-sm);
}
.sheep-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--sheep-primary) 0%, var(--sheep-primary-dark) 100%);
  color: var(--sheep-white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(var(--sheep-primary-rgb), 0.35);
  transition: var(--sheep-transition);
}
.sheep-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--sheep-primary-rgb), 0.45);
}
.sheep-menu-toggle {
  background: var(--sheep-bg-card);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--sheep-radius-sm);
  font-size: 22px;
  color: var(--sheep-primary);
  box-shadow: var(--sheep-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sheep-mobile-nav { padding: 0; }
.sheep-mobile-nav li { border-bottom: 1px solid var(--sheep-border); }
.sheep-mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--sheep-text);
  font-size: 16px;
  font-weight: 500;
}
.sheep-mobile-nav a:hover { color: var(--sheep-primary); padding-left: 8px; }
.mobile-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--sheep-border); }

/* ---------- 公共按钮 ---------- */
.sheep-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--sheep-primary) 0%, var(--sheep-primary-dark) 100%);
  color: var(--sheep-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(var(--sheep-primary-rgb), 0.3);
  transition: var(--sheep-transition);
}
.sheep-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--sheep-primary-rgb), 0.4);
  color: var(--sheep-white);
}
.sheep-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--sheep-primary);
  border: 2px solid var(--sheep-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--sheep-transition);
}
.sheep-btn-outline:hover {
  background: var(--sheep-primary);
  color: var(--sheep-white);
}
/* 故障按钮 */
.sheep-btn-glitch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--sheep-primary) 0%, var(--sheep-primary-dark) 100%);
  color: var(--sheep-white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(var(--sheep-primary-rgb), 0.35);
  transition: var(--sheep-transition);
  position: relative;
  overflow: hidden;
}
.sheep-btn-glitch::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.sheep-btn-glitch:hover::before { left: 100%; }
.sheep-btn-glitch:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--sheep-primary-rgb), 0.45);
  color: var(--sheep-white);
}
.btn-lg { padding: 16px 40px; font-size: 18px; }

/* ---------- Section公共样式 ---------- */
.section-header {
  margin-bottom: 50px;
  position: relative;
}
.section-header.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sheep-primary);
  margin-bottom: 12px;
  padding: 4px 16px;
  background: var(--sheep-bg-card);
  border-radius: 50px;
  box-shadow: var(--sheep-shadow-sm);
}
.section-title { margin-bottom: 16px; }
.section-title .title-cn {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--sheep-text);
}
.section-title .title-en {
  display: block;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: var(--sheep-text-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 4px;
}
.section-desc {
  color: var(--sheep-text3);
  font-size: 16px;
  max-width: 600px;
}
.section-header.text-center .section-desc { margin: 0 auto; }
.section-more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sheep-primary);
  font-weight: 600;
}

/* ---------- 故障文字效果 (D5故障艺术) ---------- */
.glitch-text {
  position: relative;
  display: inline-block;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitch-text::before {
  color: var(--glitch-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translateX(-3px);
  animation: glitch-anim1 2.5s infinite linear alternate-reverse;
}
.glitch-text::after {
  color: var(--glitch-red);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translateX(3px);
  animation: glitch-anim2 3s infinite linear alternate-reverse;
}
@keyframes glitch-anim1 {
  0%, 90%, 100% { transform: translateX(-3px); }
  92% { transform: translateX(4px); }
  94% { transform: translateX(-5px); }
  96% { transform: translateX(2px); }
}
@keyframes glitch-anim2 {
  0%, 88%, 100% { transform: translateX(3px); }
  91% { transform: translateX(-4px); }
  93% { transform: translateX(5px); }
  97% { transform: translateX(-2px); }
}

/* ---------- HERO区域 ---------- */
.sheep-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sheep-bg-dark);
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 36, 32, 0.85) 0%, rgba(44, 36, 32, 0.6) 50%, rgba(44, 36, 32, 0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  color: var(--sheep-white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--sheep-primary-rgb), 0.2);
  border: 1px solid rgba(var(--sheep-primary-rgb), 0.3);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--sheep-gold); }
.hero-title { margin-bottom: 24px; }
.hero-title .title-line {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title .title-highlight {
  color: var(--sheep-gold);
  font-size: clamp(40px, 6vw, 72px);
}
.hero-title .glitch-text {
  display: block;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--sheep-accent);
  margin-top: 8px;
  letter-spacing: 4px;
}
.hero-desc {
  font-size: 17px;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-mini { text-align: center; }
.stat-mini .stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--sheep-gold);
  line-height: 1;
}
.stat-mini .stat-label {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ---------- Bento服务网格 (D1 Bento) ---------- */
.sheep-service {
  padding: 80px 0;
  background: var(--sheep-bg-main);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}
.bento-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  position: relative;
  overflow: hidden;
  transition: var(--sheep-transition);
  cursor: pointer;
}
.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--sheep-shadow-up), 0 20px 60px rgba(44, 36, 32, 0.12);
}
.bento-card-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bento-card-large { grid-column: span 2; grid-row: span 2; }
.bento-card-wide { grid-column: span 2; }
.bento-card-tall { grid-row: span 2; }
.bento-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--sheep-radius-sm);
  background: linear-gradient(135deg, var(--sheep-primary) 0%, var(--sheep-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--sheep-shadow-sm);
}
.bento-icon-wrap i { font-size: 26px; color: var(--sheep-white); }
.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--sheep-text);
}
.bento-card p {
  font-size: 14px;
  color: var(--sheep-text3);
  line-height: 1.7;
  flex: 1;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
}
.bento-features {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.bento-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sheep-text2);
}
.bento-features i { color: var(--sheep-success); }
.bento-content-split {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}
.split-left { flex: 1; }
.split-right { flex: 1; }
.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sec-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--sheep-shadow-sm);
}
.sec-badge i { color: var(--sheep-primary); font-size: 18px; }
.bento-process {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.process-step .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.process-step .step-txt { font-size: 12px; color: var(--sheep-text3); font-weight: 600; }
.process-arrow { color: var(--sheep-primary); font-size: 14px; }
.bento-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover .bento-card-shine { opacity: 1; }

/* ---------- 流程时间线 (D26 声波纹) ---------- */
.sheep-process {
  padding: 80px 0;
  background: var(--sheep-bg-alt);
}
.process-timeline { position: relative; padding-top: 40px; }
.timeline-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sheep-primary) 0%, var(--sheep-accent) 50%, var(--sheep-primary) 100%);
  border-radius: 3px;
  top: 28px;
}
.timeline-item {
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: var(--sheep-shadow-up);
}
.timeline-dot i { font-size: 24px; color: var(--sheep-white); }
/* 声波纹效果 */
.sound-wave {
  position: absolute;
  inset: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sound-wave span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--sheep-primary);
  opacity: 0;
  animation: soundWave 2s ease-out infinite;
}
.sound-wave span:nth-child(1) { animation-delay: 0s; }
.sound-wave span:nth-child(2) { animation-delay: 0.4s; }
.sound-wave span:nth-child(3) { animation-delay: 0.8s; }
.sound-wave span:nth-child(4) { animation-delay: 1.2s; }
@keyframes soundWave {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--sheep-text);
}
.timeline-content p {
  font-size: 14px;
  color: var(--sheep-text3);
  line-height: 1.7;
}

/* ---------- 为什么选择我们 ---------- */
.sheep-why {
  padding: 80px 0;
  background: var(--sheep-bg-main);
}
.why-content .section-title { margin-bottom: 20px; }
.why-content .section-desc { margin-bottom: 32px; font-size: 16px; color: var(--sheep-text3); }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.why-item:hover { transform: translateX(8px); }
.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--sheep-radius-sm);
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sheep-shadow-sm);
}
.why-icon i { font-size: 22px; color: var(--sheep-white); }
.why-text h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.why-text p { font-size: 14px; color: var(--sheep-text3); margin: 0; }
.why-visual {
  position: relative;
  height: 480px;
}
.visual-card {
  position: absolute;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  overflow: hidden;
  transition: var(--sheep-transition);
}
.visual-card:hover { transform: translateY(-5px) scale(1.03); }
.vc-inner {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.vc-inner i { font-size: 32px; color: var(--sheep-primary); margin-bottom: 8px; }
.vc-num { font-size: 28px; font-weight: 800; color: var(--sheep-text); line-height: 1; }
.vc-label { font-size: 13px; color: var(--sheep-text3); margin-top: 4px; }
.main-card { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.main-card .vc-inner i { font-size: 40px; }
.main-card .vc-num { font-size: 36px; }
.sub-card { width: 140px; height: 140px; z-index: 1; }
.sc-1 { top: 10%; left: 10%; }
.sc-2 { top: 10%; right: 10%; }
.sc-3 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.sc-3:hover { transform: translateX(-50%) translateY(-5px) scale(1.03); }

/* ---------- 螺旋时间轴 (D24 时间胶囊) ---------- */
.sheep-timeline-spiral {
  padding: 80px 0;
  background: var(--sheep-bg-alt);
}
.spiral-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.spiral-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--sheep-primary), var(--sheep-accent), var(--sheep-primary));
  transform: translateX(-50%);
}
.spiral-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px 0;
  text-align: right;
}
.spiral-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 40px 40px;
  text-align: left;
}
.spiral-year {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: var(--sheep-shadow-sm);
}
.spiral-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.spiral-content p { font-size: 14px; color: var(--sheep-text3); line-height: 1.7; }
.spiral-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sheep-primary);
  border: 3px solid var(--sheep-white);
  box-shadow: var(--sheep-shadow-sm);
  right: -8px;
  top: 10px;
}
.spiral-item:nth-child(even)::before { right: auto; left: -8px; }

/* ---------- 城市目录 (紧凑布局) ---------- */
.sheep-city {
  padding: 80px 0;
  background: var(--sheep-bg-main);
}
.city-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--sheep-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-subtitle i { color: var(--sheep-primary); }
.city-grid-hot {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.city-item-hot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
  color: var(--sheep-text);
  font-size: 14px;
  font-weight: 600;
  transition: var(--sheep-transition);
}
.city-item-hot:hover {
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--sheep-primary-rgb), 0.3);
}
.city-item-hot i { font-size: 16px; }
.city-grid-all {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.city-item-all {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  background: var(--sheep-bg);
  border-radius: 8px;
  color: var(--sheep-text2);
  font-size: 13px;
  transition: var(--sheep-transition);
}
.city-item-all:hover { background: var(--sheep-primary); color: var(--sheep-white); }

/* ---------- 团队展示 ---------- */
.sheep-team {
  padding: 80px 0;
  background: var(--sheep-bg-alt);
}
.team-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  overflow: hidden;
  transition: var(--sheep-transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sheep-shadow-up), 0 20px 50px rgba(44, 36, 32, 0.1);
}
.team-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.1); }
team-card figcaption { padding: 24px; text-align: center; }
team-card figcaption h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
team-card figcaption span {
  display: block;
  font-size: 13px;
  color: var(--sheep-primary);
  font-weight: 600;
  margin-bottom: 8px;
}
team-card figcaption p { font-size: 13px; color: var(--sheep-text3); margin: 0; }

/* ---------- 最新资讯 ---------- */
.sheep-news {
  padding: 80px 0;
  background: var(--sheep-bg-main);
}
.news-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  overflow: hidden;
  transition: var(--sheep-transition);
  height: 100%;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sheep-shadow-up), 0 15px 45px rgba(44, 36, 32, 0.1);
}
.news-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img-wrap img { transform: scale(1.08); }
.news-body { padding: 24px; }
.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--sheep-text-light);
}
.news-meta i { color: var(--sheep-primary); }
.news-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.5; }
.news-title a { color: var(--sheep-text); }
.news-title a:hover { color: var(--sheep-primary); }
.news-desc {
  font-size: 14px;
  color: var(--sheep-text3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- CTA区域 ---------- */
.sheep-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sheep-bg-dark) 0%, #3D3229 100%);
  position: relative;
  overflow: hidden;
}
.sheep-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--sheep-primary-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  color: var(--sheep-white);
}
.cta-inner h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner p { font-size: 16px; opacity: 0.8; margin-bottom: 24px; }
.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.cta-features i { color: var(--sheep-gold); }
.cta-phone {
  font-size: 18px;
  font-weight: 700;
}
.cta-phone i { color: var(--sheep-gold); }
.cta-phone a { color: var(--sheep-gold); }

/* =====================================================
   资讯列表页样式
   ===================================================== */
.sheep-page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sheep-bg-dark);
}
.banner-sm { min-height: 300px; }
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 36, 32, 0.7) 0%, rgba(44, 36, 32, 0.9) 100%);
  z-index: 1;
}
.sheep-page-banner .container {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
.sheep-breadcrumb {
  margin-bottom: 20px;
}
.sheep-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.sheep-breadcrumb .breadcrumb-item a,
.sheep-breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.sheep-breadcrumb .breadcrumb-item a:hover { color: var(--sheep-gold); }
.sheep-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}
.banner-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--sheep-white);
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.banner-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-stats .bstat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(var(--sheep-primary-rgb), 0.2);
  border-radius: 50px;
  color: var(--sheep-gold);
  font-size: 14px;
  font-weight: 600;
}

/* 列表样式 */
.sheep-news-list { padding: 60px 0; }
.news-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sheep-border);
}
.news-list-header .list-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--sheep-text);
  margin: 0;
}
.news-list-header .list-title i { color: var(--sheep-primary); }
.news-list-header .list-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.news-list-header .filter-active {
  color: var(--sheep-primary);
  font-weight: 600;
}
.news-list-item {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--sheep-transition);
}
.news-list-item:hover {
  box-shadow: var(--sheep-shadow-up);
  transform: translateY(-4px);
}
.list-img-link { display: block; }
.list-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.list-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-list-item:hover .list-img-wrap img { transform: scale(1.08); }
.list-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--sheep-primary);
  color: var(--sheep-white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.list-content { padding: 24px; }
.list-meta-top {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--sheep-text-light);
  flex-wrap: wrap;
}
.list-meta-top i { color: var(--sheep-primary); }
.list-title-h { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.list-title-h a { color: var(--sheep-text); }
.list-title-h a:hover { color: var(--sheep-primary); }
.list-desc {
  font-size: 14px;
  color: var(--sheep-text3);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.list-meta-bottom .list-views { color: var(--sheep-text-light); }
.list-meta-bottom .list-readmore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sheep-primary);
  font-weight: 600;
}

/* 侧边栏 */
.sidebar-wrap { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  padding: 24px;
  margin-bottom: 24px;
}
.widget-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sheep-border);
  color: var(--sheep-text);
}
.widget-title i { color: var(--sheep-primary); }
.search-form .form-control {
  border: 2px solid var(--sheep-border);
  border-radius: var(--sheep-radius-sm) 0 0 var(--sheep-radius-sm);
  background: var(--sheep-bg);
  font-size: 14px;
  padding: 12px 16px;
}
.search-form .form-control:focus {
  border-color: var(--sheep-primary);
  box-shadow: none;
}
.search-form .btn {
  border-radius: 0 var(--sheep-radius-sm) var(--sheep-radius-sm) 0;
  padding: 12px 18px;
}
.rand-news-list { display: flex; flex-direction: column; gap: 16px; }
.rand-item {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: var(--sheep-transition);
}
.rand-item:hover { transform: translateX(5px); }
.rand-img {
  width: 80px;
  height: 60px;
  min-width: 80px;
  border-radius: var(--sheep-radius-sm);
  overflow: hidden;
}
.rand-img img { width: 100%; height: 100%; object-fit: cover; }
.rand-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--sheep-text);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rand-info span { font-size: 12px; color: var(--sheep-text-light); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sheep-bg);
  border-radius: 50px;
  font-size: 13px;
  color: var(--sheep-text2);
  transition: var(--sheep-transition);
  box-shadow: var(--sheep-shadow-sm);
}
.tag-item:hover {
  background: var(--sheep-primary);
  color: var(--sheep-white);
  transform: translateY(-2px);
}
.contact-widget-body p { font-size: 14px; color: var(--sheep-text3); margin-bottom: 16px; }
.section-nav { padding: 0; }
.section-nav li { border-bottom: 1px solid var(--sheep-border); }
.section-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--sheep-text2);
  font-size: 14px;
  font-weight: 500;
}
.section-nav a:hover, .section-nav a.active { color: var(--sheep-primary); padding-left: 8px; }

/* 底部推荐 */
.sheep-news-bottom {
  padding: 60px 0;
  background: var(--sheep-bg-alt);
}
.section-title-sm {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.section-title-sm i { color: var(--sheep-primary); }
.bottom-news-card {
  display: block;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  overflow: hidden;
  transition: var(--sheep-transition);
}
.bottom-news-card:hover { transform: translateY(-4px); box-shadow: var(--sheep-shadow-up); }
.bottom-news-card .bn-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bottom-news-card .bn-img img { width: 100%; height: 100%; object-fit: cover; }
.bottom-news-card h5 {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sheep-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bottom-news-card span {
  display: block;
  padding: 0 16px 16px;
  font-size: 12px;
  color: var(--sheep-text-light);
}

/* =====================================================
   文章详情页样式
   ===================================================== */
.sheep-article { padding: 60px 0; }
.article-main {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  overflow: hidden;
}
.article-header { padding: 32px 32px 24px; }
.article-tags { margin-bottom: 16px; }
.article-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}
.article-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--sheep-text);
  line-height: 1.4;
  margin-bottom: 20px;
}
.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sheep-border);
}
.meta-left { display: flex; gap: 20px; flex-wrap: wrap; }
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sheep-text3);
}
.meta-item i { color: var(--sheep-primary); }
.meta-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--sheep-bg);
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.meta-share:hover { background: var(--sheep-primary); color: var(--sheep-white); }
.article-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-content {
  padding: 32px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--sheep-text);
}
.article-content p { margin-bottom: 20px; }
.article-content h2, .article-content h3, .article-content h4 {
  margin: 30px 0 16px;
  color: var(--sheep-text);
}
.article-content img {
  max-width: 100%;
  border-radius: var(--sheep-radius-sm);
  margin: 20px 0;
}
.article-footer { padding: 0 32px 32px; }
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--sheep-border);
  border-bottom: 1px solid var(--sheep-border);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--sheep-text3);
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sheep-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.share-btn:hover { background: var(--sheep-primary); color: var(--sheep-white); }
.article-nav { margin-top: 24px; }
.article-nav-prev, .article-nav-next {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.article-nav-prev:hover, .article-nav-next:hover {
  box-shadow: var(--sheep-shadow-up);
  transform: translateY(-3px);
}
.nav-label {
  font-size: 12px;
  color: var(--sheep-text-light);
  margin-bottom: 8px;
}
.nav-title { font-size: 15px; font-weight: 600; color: var(--sheep-text); }
.article-related { padding: 32px; background: var(--sheep-bg); }
.related-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.related-title i { color: var(--sheep-primary); }
.related-card {
  display: flex;
  gap: 16px;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius-sm);
  overflow: hidden;
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--sheep-shadow-up); }
.related-card .rel-img {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1;
  overflow: hidden;
}
.related-card .rel-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card .rel-body { padding: 16px 16px 16px 0; }
.related-card .rel-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--sheep-text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card .rel-body span { font-size: 12px; color: var(--sheep-text-light); }

/* 信息卡片 */
.widget-info .article-info-list { display: flex; flex-direction: column; }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--sheep-border);
  font-size: 14px;
}
.info-label { color: var(--sheep-text-light); }
.info-value { color: var(--sheep-text); font-weight: 600; text-align: right; }
.info-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end; }
.info-tags span {
  padding: 2px 10px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 12px;
}
.widget-cash .cash-widget-body { display: flex; flex-direction: column; gap: 12px; }
.cash-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
}
.cash-item i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cash-item span { font-size: 14px; font-weight: 600; color: var(--sheep-text); }
.cash-item small { display: block; font-size: 12px; color: var(--sheep-text3); }

/* 固定底部CTA */
.article-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sheep-bg-dark);
  color: var(--sheep-white);
  padding: 14px 0;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.article-sticky-cta.show { transform: translateY(0); }
.article-sticky-cta span { font-size: 14px; font-weight: 600; }
.article-sticky-cta i { color: var(--sheep-gold); }

/* =====================================================
   关于我们页面样式
   ===================================================== */
.sheep-about-intro { padding: 80px 0; background: var(--sheep-bg-main); }
.about-img-bento {
  position: relative;
  height: 500px;
}
.bento-img-main {
  position: absolute;
  width: 65%;
  height: 70%;
  top: 0;
  right: 0;
  border-radius: var(--sheep-radius);
  overflow: hidden;
  box-shadow: var(--sheep-shadow-up);
}
.bento-img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--sheep-primary);
  color: var(--sheep-white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.bento-img-sub {
  position: absolute;
  width: 35%;
  height: 35%;
  border-radius: var(--sheep-radius);
  overflow: hidden;
  box-shadow: var(--sheep-shadow-up);
  border: 4px solid var(--sheep-bg-main);
}
.bento-img-sub.img-1 { bottom: 15%; left: 0; }
.bento-img-sub.img-2 { bottom: 0; left: 25%; }
.bento-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-title { margin-bottom: 20px; }
.about-desc p { margin-bottom: 16px; color: var(--sheep-text3); line-height: 1.8; }
.about-desc strong { color: var(--sheep-primary); }
.about-highlights { margin-top: 28px; }
.ah-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--sheep-text2);
}
.ah-item i { color: var(--sheep-success); font-size: 20px; }

/* 数据统计 */
.sheep-about-stats { padding: 80px 0; background: var(--sheep-bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 32px 16px;
  text-align: center;
  transition: var(--sheep-transition);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--sheep-shadow-sm);
}
.stat-icon i { font-size: 24px; color: var(--sheep-white); }
.stat-number {
  display: inline;
  font-size: 36px;
  font-weight: 800;
  color: var(--sheep-text);
  line-height: 1;
}
.stat-suffix {
  display: inline;
  font-size: 20px;
  font-weight: 700;
  color: var(--sheep-primary);
}
.stat-label { font-size: 14px; color: var(--sheep-text3); margin-top: 8px; }

/* 主营业务Bento */
.sheep-about-business { padding: 80px 0; background: var(--sheep-bg-main); }
.business-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.biz-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 32px;
  transition: var(--sheep-transition);
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--sheep-shadow-up), 0 20px 50px rgba(44, 36, 32, 0.1); }
.biz-primary { grid-row: span 2; }
.biz-wide { grid-column: span 2; }
.biz-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--sheep-radius-sm);
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--sheep-shadow-sm);
}
.biz-icon i { font-size: 24px; color: var(--sheep-white); }
.biz-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.biz-card p { font-size: 14px; color: var(--sheep-text3); line-height: 1.7; margin-bottom: 16px; }
.biz-features { padding: 0; margin: 0 0 20px; }
.biz-features li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
  color: var(--sheep-text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-features li i { color: var(--sheep-success); }
.biz-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.biz-security-grid .sec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
  font-size: 14px;
  font-weight: 600;
}
.biz-security-grid .sec-item i { color: var(--sheep-primary); font-size: 20px; }

/* 关于页时间轴 */
.sheep-about-timeline { padding: 80px 0; background: var(--sheep-bg-alt); }
.about-timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 0; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--sheep-primary), var(--sheep-accent));
  transform: translateX(-50%);
}
.tl-item { position: relative; width: 50%; padding: 0 40px 40px 0; text-align: right; }
.tl-item.right { margin-left: 50%; padding: 0 0 40px 40px; text-align: left; }
.tl-year {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: var(--sheep-shadow-sm);
}
.tl-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.tl-content p { font-size: 14px; color: var(--sheep-text3); line-height: 1.7; }
.tl-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sheep-primary);
  border: 3px solid var(--sheep-white);
  box-shadow: var(--sheep-shadow-sm);
  right: -8px;
  top: 10px;
}
.tl-item.right::before { right: auto; left: -8px; }

/* 优势 */
.sheep-about-advantage { padding: 80px 0; background: var(--sheep-bg-main); }
.adv-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 32px 24px;
  text-align: center;
  transition: var(--sheep-transition);
  height: 100%;
}
.adv-card:hover { transform: translateY(-8px); }
.adv-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(var(--sheep-primary-rgb), 0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.adv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--sheep-shadow-sm);
}
.adv-icon i { font-size: 26px; color: var(--sheep-white); }
.adv-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.adv-card p { font-size: 14px; color: var(--sheep-text3); line-height: 1.7; }

/* 关于CTA */
.sheep-about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sheep-bg-dark) 0%, #3D3229 100%);
  text-align: center;
  color: var(--sheep-white);
}
.sheep-about-cta h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; }
.sheep-about-cta p { font-size: 16px; opacity: 0.8; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   联系我们页面样式
   ===================================================== */
.sheep-contact-info { padding: 60px 0; background: var(--sheep-bg-main); }
.contact-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 32px;
  text-align: center;
  transition: var(--sheep-transition);
}
.contact-card:hover { transform: translateY(-6px); }
.cc-primary { grid-row: span 2; }
.cc-wide { grid-column: span 2; }
.cc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--sheep-shadow-sm);
}
.cc-icon i { font-size: 28px; color: var(--sheep-white); }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.contact-card p { font-size: 14px; color: var(--sheep-text3); margin-bottom: 16px; }
.cc-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--sheep-primary);
  margin-bottom: 12px;
}
.cc-value.cc-address { font-size: 15px; color: var(--sheep-text2); }
.cc-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.cc-qr { margin-top: 16px; }
.cc-qr img {
  width: 140px;
  height: 140px;
  border-radius: var(--sheep-radius-sm);
  margin: 0 auto;
  box-shadow: var(--sheep-shadow-sm);
}
.response-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--sheep-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.ring-num { font-size: 40px; font-weight: 800; color: var(--sheep-primary); line-height: 1; }
.ring-label { font-size: 13px; color: var(--sheep-text3); }

/* 联系表单 */
.sheep-contact-form { padding: 60px 0; background: var(--sheep-bg-alt); }
.form-wrapper {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 40px;
}
.sheep-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--sheep-text);
  margin-bottom: 8px;
}
.sheep-form .form-label i { color: var(--sheep-primary); }
.sheep-form .form-label .required { color: var(--sheep-danger); }
.sheep-form .form-control {
  border: 2px solid var(--sheep-border);
  border-radius: var(--sheep-radius-sm);
  background: var(--sheep-bg);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--sheep-text);
  transition: var(--sheep-transition);
  box-shadow: var(--sheep-shadow-sm);
}
.sheep-form .form-control:focus {
  border-color: var(--sheep-primary);
  box-shadow: var(--sheep-shadow-sm), 0 0 0 4px rgba(var(--sheep-primary-rgb), 0.1);
  outline: none;
  background: var(--sheep-white);
}
.sheep-form .form-text {
  font-size: 13px;
  color: var(--sheep-text-light);
  margin-top: 8px;
}
.sheep-form .form-text i { color: var(--sheep-primary); }
.btn-submit {
  width: 100%;
  position: relative;
}
.btn-submit .btn-loader {
  display: none;
  position: absolute;
  right: 20px;
  gap: 4px;
}
.btn-submit.loading .btn-loader { display: flex; }
.btn-submit.loading span { opacity: 0.7; }
.btn-loader span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sheep-white);
  animation: loaderBounce 0.6s ease-in-out infinite;
}
.btn-loader span:nth-child(1) { animation-delay: 0s; }
.btn-loader span:nth-child(2) { animation-delay: 0.15s; }
.btn-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.form-result {
  padding: 16px;
  border-radius: var(--sheep-radius-sm);
  font-size: 14px;
  display: none;
}
.form-result.success { background: rgba(90, 143, 110, 0.1); color: var(--sheep-success); border: 1px solid rgba(90, 143, 110, 0.2); }
.form-result.error { background: rgba(196, 84, 74, 0.1); color: var(--sheep-danger); border: 1px solid rgba(196, 84, 74, 0.2); }

/* FAQ */
.contact-sidebar .sidebar-widget { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sheep-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--sheep-primary); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 16px 16px; font-size: 14px; color: var(--sheep-text3); line-height: 1.7; margin: 0; }

/* 服务时间 */
.hours-list { display: flex; flex-direction: column; gap: 12px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sheep-border);
  font-size: 14px;
}
.hour-badge {
  padding: 4px 12px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* 服务范围 */
.sheep-contact-service { padding: 80px 0; background: var(--sheep-bg-main); }
.service-scope {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.scope-card {
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-up);
  padding: 32px 16px;
  text-align: center;
  transition: var(--sheep-transition);
}
.scope-card:hover { transform: translateY(-6px); }
.scope-card i {
  font-size: 36px;
  color: var(--sheep-primary);
  margin-bottom: 16px;
  display: block;
}
.scope-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.scope-card p { font-size: 13px; color: var(--sheep-text3); margin: 0; }

/* 联系CTA */
.sheep-contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sheep-bg-dark) 0%, #3D3229 100%);
  text-align: center;
  color: var(--sheep-white);
}
.sheep-contact-cta h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 16px; }
.sheep-contact-cta p { font-size: 16px; opacity: 0.8; margin-bottom: 32px; }

/* =====================================================
   页脚样式
   ===================================================== */
.sheep-footer { background: var(--sheep-bg-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 60px 0 30px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo i { font-size: 32px; color: var(--sheep-primary); }
.footer-logo span { font-size: 20px; font-weight: 700; color: var(--sheep-white); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; max-width: 300px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.contact-item i { color: var(--sheep-primary); }
.footer-links .footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sheep-white);
  margin-bottom: 20px;
}
.footer-links ul { padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-links a:hover { color: var(--sheep-gold); padding-left: 5px; }
.footer-wechat .footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sheep-white);
  margin-bottom: 20px;
}
.wechat-qr { text-align: center; }
.wechat-qr img { width: 120px; height: 120px; border-radius: var(--sheep-radius-sm); margin: 0 auto 10px; }
.wechat-qr p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-map-links {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.map-links { display: flex; gap: 20px; }
.map-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.map-links a:hover { color: var(--sheep-gold); }
.friend-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.friend-links a { color: rgba(255,255,255,0.5); }
.friend-links a:hover { color: var(--sheep-gold); }
.footer-bottom { padding: 20px 0; }
.copyright, .icp { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }

/* 返回顶部 */
.sheep-backtop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(var(--sheep-primary-rgb), 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--sheep-transition);
  z-index: 998;
}
.sheep-backtop.show { opacity: 1; visibility: visible; }
.sheep-backtop:hover { transform: translateY(-4px); color: var(--sheep-white); }

/* =====================================================
   响应式适配
   ===================================================== */
@media (max-width: 1199px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card-large { grid-column: span 2; grid-row: span 1; }
  .bento-card-tall { grid-row: span 1; }
  .business-bento { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-bento { grid-template-columns: repeat(2, 1fr); }
  .cc-primary { grid-row: span 1; }
  .cc-wide { grid-column: span 2; }
  .service-scope { grid-template-columns: repeat(3, 1fr); }
  .city-grid-hot { grid-template-columns: repeat(4, 1fr); }
  .city-grid-all { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 767px) {
  .sheep-magnet-nav { display: none; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bento-card-large { grid-column: span 2; }
  .bento-card-wide { grid-column: span 2; }
  .bento-card-inner { padding: 20px; }
  .bento-content-split { flex-direction: column; }
  .bento-process { flex-wrap: wrap; }
  .business-bento { grid-template-columns: 1fr; }
  .biz-wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 12px; }
  .contact-bento { grid-template-columns: 1fr; }
  .cc-wide { grid-column: span 1; }
  .service-scope { grid-template-columns: repeat(2, 1fr); }
  .city-grid-hot { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .city-item-hot { padding: 10px 6px; font-size: 13px; }
  .city-grid-all { grid-template-columns: repeat(4, 1fr); }
  .hero-stats-row { gap: 20px; }
  .stat-mini .stat-num { font-size: 28px; }
  .why-visual { height: 350px; }
  .main-card { width: 160px; height: 160px; }
  .sub-card { width: 110px; height: 110px; }
  .about-img-bento { height: 380px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .sheep-btn-glitch,
  .hero-actions .sheep-btn-outline { width: 100%; justify-content: center; }
  .sheep-hero { min-height: auto; }
  .hero-content { padding: 80px 0 60px; }
  .timeline-content p { font-size: 13px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .sheep-btn-glitch,
  .cta-actions .sheep-btn-outline { width: 100%; justify-content: center; }
  .article-sticky-cta { padding: 10px 0; }
  .spiral-timeline::before { left: 20px; }
  .spiral-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left; }
  .spiral-item:nth-child(even) { margin-left: 0; padding-left: 50px; text-align: left; }
  .spiral-item::before { left: 12px !important; right: auto !important; }
  .about-timeline::before { left: 20px; }
  .tl-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left; }
  .tl-item.right { margin-left: 0; padding-left: 50px; text-align: left; }
  .tl-item::before { left: 12px !important; right: auto !important; }
  .news-list-item .row > [class*="col-"] { padding: 0; }
  .list-content { padding: 20px; }
  .section-more { position: static; transform: none; margin-top: 12px; }
  .sheep-page-banner { min-height: 280px; }
  .form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
  .city-grid-hot { grid-template-columns: repeat(2, 1fr); }
  .city-grid-all { grid-template-columns: repeat(3, 1fr); }
  .hero-title .title-line { font-size: 26px; }
  .hero-title .title-highlight { font-size: 30px; }
  .stat-mini { text-align: left; }
  .hero-stats-row { gap: 16px; }
  .service-scope { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .scope-card { padding: 20px 10px; }
  .banner-stats { gap: 10px; }
  .banner-stats .bstat { padding: 6px 12px; font-size: 12px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .glitch-text::before, .glitch-text::after { display: none; }
}

/* ---------- 序列播放动画 (D8) ---------- */
.seq-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.seq-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   补充组件样式
   ===================================================== */

/* 资讯列表页补充 */
.list-bottom-tip { margin-top: 40px; }
.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--sheep-bg-card);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
  border-left: 4px solid var(--sheep-primary);
}
.tip-card > i { font-size: 24px; color: var(--sheep-primary); margin-top: 2px; }
.tip-body h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.tip-body p { font-size: 14px; color: var(--sheep-text3); margin-bottom: 12px; }
.hot-keywords { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hot-keywords .kw-label { font-size: 13px; color: var(--sheep-text-light); }
.hot-keywords a { font-size: 13px; color: var(--sheep-primary); }
.hot-keywords a:hover { text-decoration: underline; }
.contact-widget-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  font-size: 18px;
  font-weight: 700;
}
.contact-widget-phone i { color: var(--sheep-primary); }
.contact-widget-phone a { color: var(--sheep-text); }
.hot-services { display: flex; flex-direction: column; gap: 10px; }
.hot-svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius-sm);
  box-shadow: var(--sheep-shadow-sm);
  transition: var(--sheep-transition);
}
.hot-svc-item:hover { transform: translateX(5px); }
.hot-svc-item i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hot-svc-item span { font-size: 14px; font-weight: 600; color: var(--sheep-text); }
.hot-svc-item small { display: block; font-size: 12px; color: var(--sheep-text3); }

/* 文章详情页补充 */
.article-summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(var(--sheep-primary-rgb), 0.05);
  border-left: 4px solid var(--sheep-primary);
}
.article-summary i { font-size: 24px; color: var(--sheep-primary); }
.article-summary p { margin: 0; font-size: 15px; color: var(--sheep-text2); line-height: 1.7; font-style: italic; }
.article-inline-cta { padding: 0 32px 24px; }
.inline-cta-inner {
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--sheep-bg-dark) 0%, #3D3229 100%);
  border-radius: var(--sheep-radius);
  color: var(--sheep-white);
}
.inline-cta-inner h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.inline-cta-inner h4 i { color: var(--sheep-gold); }
.inline-cta-inner p { margin: 0; font-size: 14px; opacity: 0.8; }
.article-tags-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 32px;
  border-bottom: 1px solid var(--sheep-border);
}
.tags-label { font-size: 14px; color: var(--sheep-text3); font-weight: 600; }
.tag-link {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--sheep-transition);
}
.tag-link:hover { background: var(--sheep-primary); color: var(--sheep-white); }
.article-bottom-contact { padding: 24px 32px 32px; }
.abc-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--sheep-bg);
  border-radius: var(--sheep-radius);
  box-shadow: var(--sheep-shadow-sm);
}
.abc-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.abc-icon i { font-size: 28px; color: var(--sheep-white); }
.abc-body { flex: 1; }
.abc-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.abc-body p { font-size: 13px; color: var(--sheep-text3); margin: 0; }
.list-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.item-tag {
  padding: 2px 10px;
  background: rgba(var(--sheep-primary-rgb), 0.1);
  color: var(--sheep-primary);
  border-radius: 50px;
  font-size: 12px;
}

/* 联系页面补充 */
.cc-action { margin-top: auto; padding-top: 16px; }
.cc-address-note { margin-top: 12px; }
.response-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cc-features { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.cc-f-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--sheep-text2);
}
.cc-f-item i { color: var(--sheep-success); font-size: 16px; }
.form-note { margin-top: 16px; }
.note-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(var(--sheep-primary-rgb), 0.05);
  border-radius: var(--sheep-radius-sm);
  font-size: 13px;
  color: var(--sheep-text3);
}
.note-card i { color: var(--sheep-success); font-size: 18px; }
.widget-process-list { display: flex; flex-direction: column; }
.wp-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.wp-step .wp-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sheep-primary), var(--sheep-primary-dark));
  color: var(--sheep-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.wp-step .wp-body { display: flex; flex-direction: column; }
.wp-step .wp-title { font-size: 14px; font-weight: 600; color: var(--sheep-text); }
.wp-step .wp-desc { font-size: 12px; color: var(--sheep-text3); }
.wp-arrow { padding-left: 40px; color: var(--sheep-primary); font-size: 14px; opacity: 0.5; }

/* 层叠混排标题 (D4) */
.title-cn, .title-en { display: block; }
.section-title .title-en {
  position: relative;
  margin-top: -8px;
  z-index: -1;
  opacity: 0.25;
  font-size: clamp(20px, 3vw, 28px);
}

/* 负空间穿插 (D7) */
.sheep-service, .sheep-news, .sheep-about-intro, .sheep-about-business { padding: 100px 0; }
.sheep-process, .sheep-timeline-spiral, .sheep-team, .sheep-news-bottom, .sheep-about-timeline, .sheep-about-advantage { padding: 60px 0; }
.sheep-city { padding: 80px 0; }

/* 团队figcaption修复 */
team-card figcaption { padding: 24px; text-align: center; }
team-card figcaption h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
team-card figcaption span { display: block; font-size: 13px; color: var(--sheep-primary); font-weight: 600; margin-bottom: 8px; }
team-card figcaption p { font-size: 13px; color: var(--sheep-text3); margin: 0; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .glitch-text::before, .glitch-text::after { display: none; }
}
