/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== 
   1. Reset & Base
   2. Typography
   3. Buttons
   4. Header & Navigation
      4.1 语言下拉框
      4.2 移动端菜单
      4.3 响应式
   5. Page Banner
   6. Hero Section
   7. Cards
      7.1 Feature Card
      7.2 Service Card
      7.3 Case Card
      7.4 News Card
      7.5 Team Card
   8. 团队轮播
   9. Grid Layouts
   10. Sections
       10.1 Stats Section
       10.2 CTA Section
       10.3 Timeline
   11. Forms
   12. Contact Info Section
   13. Map Section
   14. Img Section
   15. Footer
   16. Back to Top Button
   17. Animations
   18. Utilities
   19. News Page Specific
   20. News Detail Styles
   21. Modal Styles
   22. Contact Page Specific
   23. FAQ Styles
   24. Legal Styles
   25. Case Detail Styles
   26. Partner Scroll
   27. Clickable Tags
   28. 列表模块样式
   29. 服务介绍模块样式
   30. 关于我们模块样式
   31. 荣誉认证模块样式
   32. 母公司背景模块样式
   33. 首页-平台申请入口模块样式
   34. 案例展示模块
   35. 荣誉证书+服务客户模块
   36. 合作流程模块
   37. 成功案例展示模块
   38. 小红书Hero模块
   39. 首页-业务模型
   40. FAQ问答模块
   41. 联系我们模块
   42. 课程模块样式
   43. 成功案例轮播样式
   44. 更多合作客户模块样式
   45. 案例展示区域 (case模块)
   46. 团队成员卡片样式
   47. 团队轮播样式
   48. 首页Banner响应式
========================================================================== */
/* 放在 CSS 文件顶部 */
@font-face {
  font-family: "HarmonyOS Sans";
  src: url("./../fonts/HarmonyOS_Sans_SC_Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "HarmonyOS Sans";
  src: url("./../fonts/HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HarmonyOS Sans";
  src: url("./../fonts/HarmonyOS_Sans_SC_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "HarmonyOS Sans";
  src: url("./../fonts/HarmonyOS_Sans_SC_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: "MiSans";
  src: url("./../fonts/MiSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "MiSans";
  src: url("./../fonts/MiSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "MiSans";
  src: url("./../fonts/MiSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "MiSans";
  src: url("./../fonts/MiSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    outline: none !important;
}

:root {
    --primary: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #4834D4;
    --accent: #00D2FF;
    --accent2: #7F5AF0;
    --bg-dark: #000;
    --bg-darker: #fff;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #FFFFFF;
    --text-secondary: #000;
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-1: #90be3d;
    --gradient-2: linear-gradient(135deg, #7F5AF0, #2CB67D);
    --gradient-3: linear-gradient(135deg, #E040FB, #6C5CE7);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1600px;
    --max-item-width: 1200px;
}

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

body {
    font-family: "HarmonyOS Sans",  "MiSans", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #fff;
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}
/* 通过 lang 属性区分中英文场景 */
html[lang="zh"] body {
  font-family: "HarmonyOS Sans",  "MiSans", -apple-system, BlinkMacSystemFont, 
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 
    sans-serif;
}

html[lang="en"] body {
  font-family: "MiSans", "HarmonyOS Sans",  -apple-system, BlinkMacSystemFont, 
    "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 
    sans-serif;
}


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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: var(--max-item-width);
    margin: 0 auto;
    padding: 0 24px;
}


/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}


/* ==========================================================================
   3. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-red {
    background: #c7000b;
    color: #fff;
    box-shadow: 0 4px 20px rgba(199, 0, 11, 0.4);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(199, 0, 11, 0.4);
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 120px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  background: #FFFFFF;
}

.header.scrolled {
  height: 70px;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
}

.header .container {
  display: flex;
  max-width: var(--max-width);
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo img {
  height: 75px;
  width: auto;
}

.header.scrolled .logo img {
  height: 55px;
}

/* nav-actions 容器 - 保持并排 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* 汉堡菜单按钮 - 默认隐藏 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 语言下拉框 - 桌面端样式 */
.language-dropdown {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-1);
  color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 120px;
  text-align: center;
}
.current-lang{
  width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin: 0;
    width: 120px;
}

.language-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    font-weight: 500;
}
.dropdown-menu li a:hover{
  font-weight: normal;
}

/* 4.3 导航响应式 */
@media (min-width: 993px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 40px;
  }

  .nav-menu a {
    font-size: 18px;
    font-weight: normal;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 25px;
    height: 120px;
    line-height: 120px;
    display: block;
  }

  .header.scrolled .nav-menu a {
    height: 70px;
    line-height: 70px;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    font-weight: bold;
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }

  .nav-item {
    position: relative;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #eee;
  }

  .nav-item:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 4px);
  }

  .nav-dropdown-menu li a {
    display: block;
    padding: 12px 24px !important;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
    height: auto !important;
    line-height: normal !important;
  }

  .nav-dropdown-menu a::after {
    left: 10%;
    width: 0%;
    height: 2px;
  }
  .nav-dropdown-menu a:hover::after {
    width: 80%;
  }

  .menu-toggle,
  .nav-close,
  .nav-overlay {
    display: none;
  }
}

@media (max-width: 1200px) {
  .nav-menu a {
    padding: 4px 10px;
  }
}

@media (max-width: 992px) {
  .header {
    height: 70px;
  }

  .logo img {
    height: 50px;
  }

  .header.scrolled .logo img {
    height: 45px;
  }

  .menu-toggle {
    display: flex;
  }

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

  .lang-btn {
    padding: 6px 16px;
    font-size: 14px;
    background: var(--gradient-1);
    color: #fff;
    border-radius: 50px;
  }

  .language-dropdown .dropdown-menu {
    left: auto;
    right: 0;
    transform: translateX(0);
  }

  .dropdown-menu li a {
    padding: 6px 16px;
    font-size: 14px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 70px 24px 40px;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-left: 1px solid #eee;
    overflow-y: auto;
    display: flex !important;
    margin: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
  }

  .nav-close:hover {
    border-color: #000;
  }

  .nav-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
    line-height: normal;
    color: #333;
    display: block;
  }

  .nav-menu a.active {
    color: var(--gradient-1);
    font-weight: 600;
  }

  .nav-item {
    width: 100%;
    position: static;
  }

  .nav-item.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-item.has-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
  }

  .nav-item.has-dropdown.open > a::after {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
    min-width: auto;
  }

  .nav-item.has-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu li a {
    padding: 12px 16px !important;
    font-size: 14px;
    color: #666;
    border-bottom: none;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  body.menu-open {
    overflow: hidden;
  }
}


/* ==========================================================================
   5. Page Banner
   ========================================================================== */
.page-banner {
  position: relative;
  height: auto;
  min-height: 800px;
  height: 800px;
  font-weight: bold;
  text-align: left;
  overflow: hidden;
  background: #fff;
  margin-top: 120px;
  padding: 0;
  background-size: cover !important;
  background-position: center !important;
}

.page-banner.home {
  height: 1300px;
  min-height: 1300px;
}
html[lang="en"] .page-banner.home {
  height: 1400px;
}

.page-banner .container {
  max-width: var(--max-width);
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-100px);
  color: #fff;
}

.page-banner b {
  color: var(--gradient-1);
  font-family: 'MiSans';
}

.page-banner h1 {
  font-size: 98px;
  line-height: 1.3;
  font-weight: 700;
}
.page-banner h1 b {
  font-size: 120px;
  font-weight: 700;
  font-family: 'MiSans';
}

.page-banner h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
}

.page-banner h2 b {
  font-size: 98px;
  font-weight: 700;
  font-family: 'MiSans';
}

.page-banner h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
}

.page-banner h3 b {
  font-weight: 400;
  font-size: 55px;
  font-family: 'MiSans';
}

.page-banner p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
}
.page-banner p b {
  font-size: 32px;
  font-family: 'MiSans';
}

.page-banner .banner-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* 5.1 首页Banner响应式 */
@media (max-width: 1200px) {
  .page-banner {
    height: 700px;
    min-height: 700px;
  }
  .page-banner.home {
    height: 1200px;
    min-height: 1200px;
  }
  .page-banner .container {
    transform: translateY(-80px);
  }
  .page-banner h1 {
    font-size: 60px;
  }
  .page-banner h1 b {
    font-size: 80px;
  }
  .page-banner h2 {
    font-size: 50px;
  }
  .page-banner h2 b {
    font-size: 90px;
  }
  .page-banner h3 {
    font-size: 36px;
  }
  .page-banner h3 b {
    font-size: 50px;
  }
  .page-banner p {
    font-size: 22px;
  }
  .page-banner p b {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .page-banner {
    height: 600px;
    min-height: 600px;
    margin-top: 70px;
  }
  .page-banner.home {
    height: 1000px;
    min-height: 1000px;
    margin-top: 70px;
  }
  html[lang="en"] .page-banner.home{
    height: 1100px;
  }
  .page-banner .container {
    transform: translateY(-60px);
  }
  .page-banner h1 {
    font-size: 60px;
  }
  .page-banner h1 b {
    font-size: 80px;
  }
  .page-banner h2 {
    font-size: 35px;
  }
  .page-banner h2 b {
    font-size: 65px;
  }
  .page-banner h3 {
    font-size: 25px;
  }
  .page-banner h3 b {
    font-size: 35px;
  }
  .page-banner p {
    font-size: 20px;
  }
  .page-banner p b {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 400px;
    min-height: 400px;
  }
  .page-banner.home {
    height: 650px;
    min-height: 650px;
    padding: 30px 0 60px;
  }
  html[lang="en"] .page-banner.home{
    height: 900px;
  }
  .page-banner .container {
    transform: translateY(-10px);
  }
  .page-banner h1 {
    font-size: 42px;
  }
  .page-banner h1 b {
    font-size: 55px;
  }
  .page-banner h2 {
    font-size: 20px;
  }
  .page-banner h2 b {
    font-size: 30px;
  }
  .page-banner h3 {
    font-size: 16px;
  }
  .page-banner h3 b {
    font-size: 20px;
  }
  .page-banner p {
    font-size: 14px;
  }
  .page-banner p b {
    font-size: 18px;
  }
}


/* ==========================================================================
   6. Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero canvas, .hero .particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 24px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* ==========================================================================
   7. Cards
   ========================================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15), 0 0 40px rgba(108, 92, 231, 0.05);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-icon img, .card-icon svg {
    width: 28px;
    height: 28px;
}

.card h3 {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* 7.1 Feature Card */
.feature-card {
    text-align: center;
    padding: 48px 32px;
}

.feature-card .card-icon {
    margin: 0 auto 24px;
}

/* 7.2 Service Card */
.service-card {
    padding: 40px 32px;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .card-link:hover {
    gap: 10px;
}

/* 7.3 Case Card */
.case-card {
    padding: 0;
    overflow: hidden;
}

.case-card .case-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.case-card .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-card .case-content {
    padding: 28px;
}

.case-card .case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* 7.4 News Card */
.news-card {
    padding: 0;
    overflow: hidden;
}

.news-card .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card .news-content {
    padding: 24px;
}

.news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-card .news-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 7.5 Team Card */
.team-card {
    text-align: center;
    padding: 40px 24px;
}

.team-card .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card .team-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.team-card .team-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.team-card .team-social a:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
}

/* ==========================================================================
   8. 团队成员卡片样式 + 团队轮播样式
   ========================================================================== */
/* ==========================================================================
   8. 团队成员卡片样式 + 团队轮播样式（优化版）
   ========================================================================== */

.team-carousel-section .container {
    max-width: var(--max-width);
}
.team-carousel-section .section-header .container {
    max-width: var(--max-item-width);
}
.team-carousel-section .section-header h2 {
    font-size: 55px;
    text-align: left;
    margin-bottom: 60px;
}

.team-carousel-wrapper {
    position: relative;
    overflow: visible;
}
.team-carousel-container {
    overflow: hidden;
    position: relative;
    cursor: grab;
    padding: 40px 0 100px;
}
.team-carousel-container:active {
    cursor: grabbing;
}
.team-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.72, 0.37, 1);
    gap: 30px;
    align-items: center;
    padding: 20px 10px;
}
.team-carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

/* 卡片主体 - 垂直居中布局 */
.team-member-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 650px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(144, 190, 61, 0.15);
}
.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(144, 190, 61, 0.4);
}

/* 桌面端居中放大效果（仅当每屏多卡片时生效） */
@media (min-width: 768px) {
    .team-carousel-slide.center-slide {
        z-index: 30;
    }
    .team-carousel-slide.center-slide .team-member-card {
        transform: scale(1.08);
        box-shadow: 0 35px 55px -18px rgba(0, 0, 0, 0.25);
        border-color: #90be3d;
        background: #ffffff;
    }
}

.team-member-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
}
.team-member-info {
    flex: 1;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.team-member-name {
    font-size: 68px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
    word-break: break-word;
}
html[lang="en"] .team-member-name {
    font-size: 42px;
}
.team-member-tag {
    display: inline-block;
    background: #90be3d;
    color: #fff;
    font-size: 22px;
    font-weight: normal;
    padding: 10px 18px;
    border-radius: 50px;
    margin: 20px 0 30px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
html[lang="en"] .team-member-tag {
    font-size: 18px;
}
.team-member-avatar {
    flex-shrink: 0;
}
.avatar-border {
    padding: 6px;
    border-radius: 50%;
    background: #90be3d;
    transition: all 0.3s ease;
}
.team-member-card:hover .avatar-border {
    transform: scale(1.02);
}
.avatar-inner {
    padding: 4px;
    background: #fff;
    border-radius: 50%;
}
.avatar-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.team-member-desc {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
    overflow-y: auto;
    max-height: 280px;
    padding-right: 8px;
    /* 确保滚动条可见 */
    scrollbar-width: thin;
    scrollbar-color: #90be3d #e8e8e8;
    /* 确保滚动条在移动端可见（WebKit） */
    -webkit-overflow-scrolling: touch;
}
html[lang="en"] .team-member-desc {
    line-height: 1.8;
}
.team-member-desc::-webkit-scrollbar {
    width: 4px;
}

/* 轮播箭头按钮 */
.team-carousel-wrapper .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.team-carousel-wrapper .carousel-arrow i {
    font-size: 1.2rem;
    color: #333;
}
.team-carousel-wrapper .carousel-arrow:hover {
    background: #90be3d;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(144, 190, 61, 0.3);
}
.team-carousel-wrapper .carousel-arrow:hover i {
    color: #fff;
}
.team-carousel-wrapper .carousel-arrow.prev {
    left: -20px;
}
.team-carousel-wrapper .carousel-arrow.next {
    right: -20px;
}
.team-carousel-wrapper .carousel-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* 分页指示点 */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #90be3d;
}
.carousel-dot:hover {
    background: #a8d45a;
}

/* ========== 响应式 ========== */
@media (max-width: 1400px) {
    .team-carousel-section .section-header h2 { font-size: 44px; margin-bottom: 40px; }
    .team-carousel-slide { flex: 0 0 calc(33.333% - 16px); }
    .team-member-card { padding: 25px 20px; height: 580px; }
    .team-member-name { font-size: 42px; }
    .team-member-tag { font-size: 20px; padding: 8px 14px; margin: 15px 0 25px; }
    .avatar-img { width: 120px; height: 120px; }
    .team-member-desc { font-size: 16px; max-height: 240px; }
    .team-carousel-wrapper .carousel-arrow { width: 42px; height: 42px; }
}
@media (max-width: 992px) {
    .team-carousel-section .section-header h2 { font-size: 38px; text-align: center; margin-bottom: 40px; }
    .team-carousel-slide { flex: 0 0 calc(50% - 15px); }
    .team-member-card { padding: 24px 20px; height: 540px; }
    .team-member-name { font-size: 36px; margin-bottom: 12px; }
    .team-member-tag { font-size: 18px; padding: 6px 12px; margin: 12px 0 20px; }
    .avatar-img { width: 100px; height: 100px; }
    .team-member-desc { font-size: 15px; max-height: 220px; }
    .team-carousel-wrapper .carousel-arrow { width: 38px; height: 38px; }
    .team-carousel-wrapper .carousel-arrow.prev { left: -12px; }
    .team-carousel-wrapper .carousel-arrow.next { right: -12px; }
    .carousel-dots { margin-top: 35px; gap: 10px; }
}
@media (max-width: 768px) {
    .team-carousel-section { padding: 40px 0 60px; }
    .team-carousel-section .section-header h2 { font-size: 32px; margin-bottom: 30px; }
    .team-carousel-container{padding: 20px 0 30px; }
    .team-carousel-slide { flex: 0 0 100%; }
    .team-member-card { padding: 20px 16px; height: auto; min-height: 460px; }
    .team-member-card:hover { transform: translateY(-3px); }
    .team-member-name { font-size: 32px; margin-bottom: 10px; }
    .team-member-tag { font-size: 16px; padding: 5px 10px; margin: 10px 0 16px; }
    .avatar-img { width: 80px; height: 80px; }
    .team-member-desc { font-size: 14px; line-height: 1.7; max-height: 200px; }
    .team-carousel-wrapper .carousel-arrow { width: 36px; height: 36px; }
    .team-carousel-wrapper .carousel-arrow.prev { left: -8px; }
    .team-carousel-wrapper .carousel-arrow.next { right: -8px; }
    .carousel-dots { margin-top: 25px; gap: 8px; }
    .carousel-dot { width: 8px; height: 8px; }
    .carousel-dot.active { width: 24px; }
}
@media (max-width: 480px) {
    .team-member-card { min-height: 420px; }
    .team-member-name { font-size: 28px; }
    .team-member-tag { font-size: 14px; padding: 4px 8px; }
    .avatar-img { width: 65px; height: 65px; }
    .team-member-desc { font-size: 13px; max-height: 180px; }
}

/* ==========================================================================
   9. Grid Layouts
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================================
   10. Sections
   ========================================================================== */
section {
    padding: 150px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-darker);
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* 10.2 CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 210, 255, 0.1));
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.2) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 10.3 Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
    padding-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-1);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-item .timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   11. Forms
   ========================================================================== */
.form-group {
    margin-bottom: 30px;
}

.contact-form-wrapper {
    grid-template-columns: 1fr 1.5fr;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-left: 0;
    color: #ccc;
}

.form-control {
    width: 100%;
    height: 70px;
    line-height: 70px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #eee;
    border-radius: 35px;
    color: #000;
    font-size: 21px;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: #ccc;
}

.form-control:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 1px #ccc;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
    padding: 16px 32px;
}

.contact-btn {
    width: 100%;
    font-size: 25px;
}

select.form-control:invalid {
    color: #ccc;
}

select.form-control:valid {
    color: #333;
}

select.form-control option:first-child {
    color: #ccc;
}

select.form-control option:not(:first-child) {
    color: #333;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'><polygon points='12,18 4,8 20,8' fill='black'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 30px;
    padding-right: 60px;
}

select.form-control option {
    background: #1a1e3a;
    color: var(--text-primary);
    padding: 10px;
}

/* ==========================================================================
   11. Forms - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-control {
        height: 60px;
        line-height: 60px;
        padding: 0 28px;
        font-size: 18px;
    }
    
    textarea.form-control {
        min-height: 120px;
        padding: 14px 28px;
    }
    
    .contact-btn {
        font-size: 22px;
    }
    
    select.form-control {
        background-size: 26px;
        padding-right: 50px;
    }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .form-control {
        height: 55px;
        line-height: 55px;
        padding: 0 24px;
        font-size: 16px;
        border-radius: 30px;
    }
    
    textarea.form-control {
        min-height: 110px;
        padding: 12px 24px;
        line-height: 1.5;
    }
    
    .contact-btn {
        font-size: 20px;
        padding: 12px 24px;
    }
    
    select.form-control {
        background-size: 24px;
        background-position: right 16px center;
        padding-right: 48px;
    }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .form-control {
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        font-size: 15px;
        border-radius: 28px;
    }
    
    textarea.form-control {
        min-height: 100px;
        padding: 10px 20px;
    }
    
    .contact-btn {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    select.form-control {
        background-size: 22px;
        background-position: right 14px center;
        padding-right: 44px;
    }
    
    select.form-control option {
        padding: 8px;
        font-size: 14px;
    }
}

/* ==========================================================================
   12. Contact Info Section
   ========================================================================== */
   .contact-info-section{
    padding-top: 0!important;
   }
.contact-info-section .contact-card {
    position: relative;
    padding: 90px 0;
}

.contact-info-section .contact-card h3 {
    font-size: 42px;
    color: var(--gradient-1);
    margin-bottom: 40px;
}

.contact-info-section .contact-card p {
    font-size: 18px;
    color: #000;
    line-height: 40px;
    font-weight: 300;
}

.contact-info-section .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
}

/* ==========================================================================
   12. Contact Info Section - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
    .contact-info-section .contact-card {
        padding: 70px 0;
    }
    
    .contact-info-section .contact-card h3 {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .contact-info-section .contact-card p {
        font-size: 16px;
        line-height: 36px;
    }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
    .contact-info-section .contact-card {
        padding: 60px 0;
    }
    
    .contact-info-section .contact-card h3 {
        font-size: 32px;
        margin-bottom: 28px;
    }
    
    .contact-info-section .contact-card p {
        font-size: 15px;
        line-height: 32px;
    }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
    .contact-info-section .contact-card {
        padding: 50px 0;
    }
    
    .contact-info-section .contact-card h3 {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .contact-info-section .contact-card p {
        font-size: 14px;
        line-height: 28px;
    }
}

/* ==========================================================================
   13. Map Section
   ========================================================================== */
.map-section {
    background: #ccc;
    width: 100%;
    height: 850px;
    padding: 0;
}
.map-section.home {
    height: 650px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   13. Map Section - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
    .map-section {
        height: 700px;
    }
    .map-section.home {
        height: 550px;
    }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
    .map-section {
        height: 550px;
    }
    .map-section.home {
        height: 450px;
    }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
    .map-section {
        height: 400px;
    }
    .map-section.home {
        height: 350px;
    }
}

/* ==========================================================================
   14. Img Section
   ========================================================================== */
.img-section {
    background: #f8f9fa;
    width: 100%;
    padding: 0;
}

.img-section img {
    width: 100%;
    height: 100%;
}


/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
    background: #000 url('./../images/footer-bg.png') left repeat;
    position: relative;
}

.footer .container {
    position: relative;
    max-width: var(--max-width);
}

.footer-contact-btn {
    width: 100%;
    position: absolute;
    top: -203px;
    left: 0;
}

.footer-contact-btn img {
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 350px 0 150px;
}

.footer-grid.notimg {
    padding: 150px 0;
}

.footer-brand .logo img {
    height: 85px;
}

.footer-brand p {
    color: #f8f8fa;
    font-size: 18px;
    line-height:36px;
    max-width: 300px;
    margin-top: 30px;
}

.footer-col h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 46px;
    color: #f8f8fa;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #f8f8fa;
    font-size: 15px;
    line-height: 33px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #f8f8fa;
    line-height: 33px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8f8fa;
    font-size: 15px;
    line-height: 33px;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.15);
    color: #f8f8fa;
    transform: translateY(-2px);
}

.footer-social .wechat-wrap {
    position: relative;
}

.footer-social .wechat-qr {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
    width: 164px;
    min-width: 164px;
}

.footer-social .wechat-qr::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}

.footer-social .wechat-qr img {
    width: 140px;
    height: 140px;
    display: block;
    border-radius: 6px;
}

.footer-social .wechat-qr p {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    max-width: none;
    line-height: 1.4;
}

.footer-social .wechat-wrap:hover .wechat-qr {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.icon-xiaohongshu {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #f8f8fa;
    font-size: 15px;
    line-height: 33px;
}

.footer-contact li i {
    color: #f8f8fa;
    line-height: 33px;
}
.footer-contact li img{
    padding: 8px 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #1a1a1a;
    height: 120px;
    line-height: 120px;
}

.footer-bottom p {
    color: #f8f8fa;
    font-size: 15px;
    width: 100%;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}


/* ==========================================================================
   16. Back to Top Button
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}


/* ==========================================================================
   17. Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(108, 92, 231, 0);
    }
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }


/* ==========================================================================
   18. Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

a.tag.active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--gradient-1);
    color: #fff;
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary-light);
}


/* ==========================================================================
   19. 全局响应式 (Grid布局等)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 3rem; }
    .hero-stats { gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid {  grid-template-columns: 2fr 1fr 1.5fr;; gap: 40px; }
    .footer-contact-btn {top: -160px;left: 0;}
    .timeline-item { padding: 0 30px 40px; }
    .timeline-item:nth-child(odd) { padding-right: 40px; }
    .timeline-item:nth-child(even) { padding-left: 40px; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    section { padding: 70px 0; }
    .container { padding: 0 16px; }
    
    .hero { min-height: 90vh; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.05rem; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 50px;
    }
    .hero-stats .stat-number { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-box .stat-number { font-size: 2.2rem; }
    
    .timeline::before { left: 20px; }
    .timeline-item {
        width: 100%;
        padding: 0 0 40px 50px;
    }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before {
        left: 12px;
        right: auto;
    }
    .map-section{height: 400px;}
    .map-section.home{height: 350px;}
    .footer-contact,.footer-links{gap: 0;}
    .footer-grid { grid-template-columns: 1fr; gap: 32px;         padding: 150px 0 50px;}
    .footer-grid.notimg{padding: 50px 0;}
    .footer-col h4{margin-bottom: 30px;}
    .footer-bottom { flex-direction: column; text-align: center; height: 80px;line-height: 80px;}
    .footer-bottom-links { justify-content: center; }
    .footer-contact-btn {top: -46px;left: 0;}
    
    .cta-content h2 { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
}


/* ==========================================================================
   20. News Page Specific
   ========================================================================== */
.news-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.news-filter .tag {
    cursor: pointer;
    padding: 8px 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.news-filter .tag:hover, .news-filter .tag.active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
}

.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.featured-news:hover {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}

.featured-news .featured-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 210, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-news .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news .featured-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news .featured-content .tag {
    align-self: flex-start;
    margin-bottom: 16px;
}

.featured-news .featured-content h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.featured-news .featured-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.featured-news .featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.featured-news .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.featured-news .read-more:hover { gap: 12px; }

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-card .read-more:hover { gap: 10px; }

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-primary);
}

.pagination .active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
}

.pagination .prev, .pagination .next {
    width: auto;
    padding: 0 16px;
    gap: 6px;
}

/* News 响应式 */
@media (max-width: 768px) {
    .featured-news { grid-template-columns: 1fr; }
    .featured-news .featured-image { min-height: 220px; }
    .featured-news .featured-content { padding: 28px 24px; }
    .featured-news .featured-content h2 { font-size: 1.35rem; }
}


/* ==========================================================================
   21. News Detail Styles
   ========================================================================== */
.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.article-header .tag {
    margin-bottom: 16px;
    display: inline-block;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.article-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 2;
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 48px 0 20px;
}

.article-body h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 36px 0 16px;
}

.article-body p { margin-bottom: 20px; }

.article-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 32px 0;
    background: rgba(108, 92, 231, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-primary);
    font-style: italic;
}

.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 10px;
    list-style: disc;
}

.article-body ol li { list-style: decimal; }

.article-body img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.article-tags {
    max-width: 800px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-tags span.label-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-share {
    max-width: 800px;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.article-share a:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.1);
}

.article-share .wechat-wrap {
    position: relative;
}

.article-share .wechat-wrap a { cursor: pointer; }

.article-share .wechat-qr {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
    width: 164px;
    min-width: 164px;
}

.article-share .wechat-qr::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}

.article-share .wechat-qr img {
    width: 140px;
    height: 140px;
    display: block;
    border-radius: 6px;
}

.article-share .wechat-qr p {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    max-width: none;
    line-height: 1.4;
}

.article-share .wechat-wrap:hover .wechat-qr {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.article-nav {
    max-width: 800px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.article-nav a {
    display: block;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.article-nav a:hover {
    border-color: rgba(108, 92, 231, 0.3);
    background: var(--bg-card-hover);
}

.article-nav .nav-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-nav .nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.article-nav .next-article { text-align: right; }
.article-nav .next-article .nav-label { justify-content: flex-end; }

.related-news { padding: 100px 0; }

/* News Detail 响应式 */
@media (max-width: 768px) {
    .article-header h1 { font-size: 1.75rem; }
    .article-cover img { height: 240px; }
    .article-body { font-size: 1rem; }
    .article-nav { grid-template-columns: 1fr; }
    .article-nav .next-article { text-align: left; }
    .article-nav .next-article .nav-label { justify-content: flex-start; }
}


/* ==========================================================================
   22. Modal Styles
   ========================================================================== */
.apply-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.apply-modal-overlay.active { display: flex; }

.apply-modal {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.apply-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.apply-modal-close:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.15);
}

.apply-modal-header { margin-bottom: 28px; }
.apply-modal-header h3 { font-size: 1.4rem; }

/* Modal 响应式 */
@media (max-width: 480px) {
    .apply-modal { padding: 28px 20px; }
}

/* ==========================================================================
   23. Contact Page Specific
   ========================================================================== */
.contact-cards .card { text-align: center; }
.contact-cards .card-icon { margin: 0 auto 24px; }
.contact-cards .card h3 { margin-bottom: 8px; }
.contact-cards .card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-section {
    background: url('./../images/map.png') 20% no-repeat;
}

.contact-form-section .section-header { text-align: left; }
.contact-form-section .section-header h2 {
    font-size: 55px;
    color: #000;
    font-weight: bold;
    margin-bottom: 40px;
}
.contact-form-section .section-header p {
    font-size: 25px;
    line-height: 55px;
}

.contact-form-wrapper .card { padding: 40px; }

.map-placeholder {
    width: 100%;
    height: 260px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

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

.map-placeholder i {
    font-size: 2.5rem;
    margin-right: 12px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.office-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.office-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
    background: var(--bg-card-hover);
}

.office-item .office-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.office-item .office-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.office-item .office-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ==========================================================================
   23. Contact Page - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
    .contact-form-section .section-header h2 {
        font-size: 44px;
        margin-bottom: 30px;
    }
    
    .contact-form-section .section-header p {
        font-size: 20px;
        line-height: 44px;
    }
    
    .contact-form-wrapper .card {
        padding: 32px;
    }
    
    .office-item {
        padding: 16px;
        gap: 14px;
    }
    
    .office-item .office-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .office-item .office-info h4 {
        font-size: 0.95rem;
    }
    
    .office-item .office-info p {
        font-size: 0.8rem;
    }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
    .contact-form-section {
        background-position: 30% center;
    }
    
    .contact-form-section .section-header {
        text-align: center;
    }
    
    .contact-form-section .section-header h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .contact-form-section .section-header p {
        font-size: 18px;
        line-height: 36px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper .card {
        padding: 28px;
    }
    
    /* 联系方式卡片网格 */
    .contact-cards {
        margin-bottom: 40px;
    }
    
    .map-placeholder {
        height: 220px;
        margin-bottom: 25px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    .office-list {
        gap: 16px;
    }
    
    .office-item {
        padding: 14px;
        gap: 12px;
    }
    
    .office-item .office-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .office-item .office-info h4 {
        font-size: 0.9rem;
    }
    
    .office-item .office-info p {
        font-size: 0.75rem;
    }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
    
    .contact-form-section .section-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-form-section .section-header p {
        font-size: 16px;
        line-height: 30px;
    }
    
    .contact-form-wrapper .card {
        padding: 24px;
    }
    
    .contact-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .contact-cards .card {
        padding: 24px 16px;
    }
    
    .contact-cards .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .contact-cards .card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-cards .card p {
        font-size: 0.85rem;
    }
    
    .map-placeholder {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .map-placeholder i {
        font-size: 1.8rem;
    }
    
    .office-list {
        gap: 12px;
    }
    
    .office-item {
        padding: 12px;
        gap: 10px;
    }
    
    .office-item .office-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .office-item .office-info h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .office-item .office-info p {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   24. FAQ Styles
   ========================================================================== */
.faq-section { padding: 100px 0; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    overflow: hidden;
}

.faq-list details[open] {
    border-color: rgba(108, 92, 231, 0.3);
    background: var(--bg-card-hover);
}

.faq-list details summary {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-list details summary::-webkit-details-marker { display: none; }

.faq-list details summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after { transform: rotate(180deg); }

.faq-list details .faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ==========================================================================
   25. Legal Styles
   ========================================================================== */
.legal-content { max-width: 860px; margin: 0 auto; }

.legal-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav a {
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.legal-nav a:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
    color: var(--text-primary);
}

.legal-section { margin-bottom: 80px; }

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2 i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section .update-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 36px 0 16px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 80px 0;
}

/* Legal 响应式 */
@media (max-width: 768px) {
    .legal-section h2 { font-size: 1.5rem; }
    .legal-section h3 { font-size: 1.1rem; }
}


/* ==========================================================================
   26. Case Detail Styles
   ========================================================================== */
.case-overview { padding: 80px 0; }

.case-overview-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.case-overview-header .badge {
    margin-bottom: 16px;
    display: inline-block;
}

.case-overview-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.case-overview-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.case-cover {
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.case-cover img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.case-metric-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.case-metric-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
    background: var(--bg-card-hover);
}

.case-metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.case-metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.case-content-section { padding: 80px 0; }

.case-body {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 2;
}

.case-body h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 48px 0 20px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.case-body h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 32px 0 14px;
}

.case-body p { margin-bottom: 20px; }

.case-body ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

.case-body li {
    margin-bottom: 10px;
    list-style: disc;
}

.case-body img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 28px 0;
}

.case-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px;
    margin: 40px 0;
}

.case-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.case-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.case-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.case-info-item i {
    color: var(--primary-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.case-info-item .info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.case-info-item .info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.case-testimonial {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    position: relative;
}

.case-testimonial .quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 16px;
}

.case-testimonial p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.case-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-testimonial .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.case-testimonial .author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.case-testimonial .author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Case Detail 响应式 */
@media (max-width: 768px) {
    .case-overview-header h1 { font-size: 1.75rem; }
    .case-cover img { height: 240px; }
    .case-metrics { grid-template-columns: repeat(2, 1fr); }
    .case-metric-value { font-size: 1.8rem; }
    .case-info-grid { grid-template-columns: 1fr; }
    .case-body { font-size: 1rem; }
}


/* ==========================================================================
   27. Partner Scroll & Clickable Tags
   ========================================================================== */
.partner-scroll-wrapper:hover .partner-scroll-track {
    animation-play-state: paused;
}

.partner-scroll-wrapper.dragging .partner-scroll-track {
    animation-play-state: paused;
}

.partner-scroll-wrapper.dragging {
    cursor: grabbing;
}

.news-filter .tag, .case-filter .tag {
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.news-filter .tag:hover, .case-filter .tag:hover {
    background: rgba(108, 92, 231, 0.25);
}

.news-filter .tag.active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
}
/* ==========================================================================
   28. 列表模块样式 - 完全独立，不继承 courses-section
   ========================================================================== */

.list-module-section {
  background: #f8f9fa;
}
.list-module-section h2.section-title {
  font-size: 55px;
  font-weight: bold;
  color: #000;
  text-align: left;
}

.list-module-section .section-title b {
  color: #90be3d;
}

/* ==========================================================================
   列表卡片布局
   ========================================================================== */

.list-module-section .list-course-card {
  display: grid;
  align-items: center;
  margin-top: 100px;
  gap: 0;
  grid-template-columns: 1fr 1.2fr;
}

.list-module-section .list-course-card-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.list-module-section .list-course-card-reverse .list-course-image {
  order: 2;
}

.list-module-section .list-course-card-reverse .list-course-content {
  order: 1;
}

/* 图片区域 */
.list-module-section .list-course-image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 内容区域 */
.list-module-section .list-course-content {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 标题区域 */
.list-module-section .list-section-header-left {
  margin-bottom: 50px;
  position: relative;
}

.list-module-section .list-section-header-left .list-course-title {
  font-size: 42px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.list-module-section .list-section-header-left .list-course-title span{
  font-size: 25px;
  font-weight: normal;
}


.list-module-section .list-section-header-left .list-course-desc {
  font-size: 25px;
  color: #000;
  line-height: 1.6;
  font-weight: normal;
  position: relative;
  z-index: 2;
}

.list-module-section .list-section-header-left .list-course-num {
  font-size: 90px;
  font-weight: bold;
  position: absolute;
  top: -60%;
  left: 0;
  color: #fff;
  line-height: 90px;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   手风琴样式
   ========================================================================== */

.list-module-section .list-accordion-item {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.list-module-section .list-accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.list-module-section .list-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
}

.list-module-section .list-accordion-header h3 {
  font-size: 25px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.list-module-section .list-accordion-icon {
  width: 44px;
  height: 44px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.list-module-section .list-accordion-icon i {
  color: #85c83c;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.list-module-section .list-accordion-item.active .list-accordion-icon {
  background: #85c83c;
}

.list-module-section .list-accordion-item.active .list-accordion-icon i {
  color: #fff;
  transform: rotate(180deg);
}

.list-module-section .list-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 28px;
}

.list-module-section .list-accordion-item.active .list-accordion-content {
  max-height: 1000px;
  padding: 0 28px 24px 28px;
}

.list-module-section .list-accordion-content .list-accordion-text,
.list-module-section .list-accordion-content .list-accordion-text p {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.list-module-section .list-accordion-content .list-accordion-text{
  margin: 20px 0 0 0;
}

.list-module-section .list-note {
  font-size: 15px;
  color: #000;
  margin-top: 24px;
  font-weight: 300;
}

/* 手风琴网格 */
.list-accordion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
.grid-num-2{
  grid-template-columns: repeat(2, 1fr);
}
.grid-num-3{
  grid-template-columns: repeat(3, 1fr);
}
.grid-num-4{
  grid-template-columns: repeat(4, 1fr);
}

.list-accordion-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.list-accordion-grid-item:hover {
  transform: translateY(-4px);
}

.list-accordion-grid-icon {
  width: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.list-accordion-grid-icon img {
  width: auto;
  height: 56px;
}*/

.list-accordion-grid-label {
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: 300;
}

/* ==========================================================================
   轮播样式
   ========================================================================== */

.list-module-section .list-carousel-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.list-module-section .list-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-module-section .list-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.list-module-section .list-carousel-slide .list-carousel-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-module-section .list-carousel-slide img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

/* 分页点 */
.list-module-section .list-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.list-module-section .list-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.list-module-section .list-carousel-dot.active {
  width: 24px;
  border-radius: 20px;
  background: #85c83c;
}

/* ==========================================================================
   响应式适配
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .list-module-section {
    padding: 70px 0;
  }
  
  .list-module-section h2.section-title {
    font-size: 48px;
  }
  
  .list-module-section .list-course-card {
    gap: 40px;
    margin-top: 80px;
  }
  
  .list-module-section .list-section-header-left .list-course-title {
    font-size: 36px;
  }
  
  .list-module-section .list-section-header-left .list-course-desc {
    font-size: 22px;
  }
  
  .list-module-section .list-section-header-left .list-course-num {
    font-size: 75px;
    top: -45%;
  }
  
  .list-module-section .list-accordion-header h3 {
    font-size: 22px;
  }
  
  .list-module-section .list-accordion-header {
    padding: 20px 24px;
  }
  
  .list-module-section .list-accordion-content .list-accordion-text,
  .list-module-section .list-accordion-content .list-accordion-text p {
    font-size: 16px;
  }
  
  .list-accordion-grid {
    gap: 20px;
  }
  
  .list-accordion-grid-label {
    font-size: 16px;
  }
  
  .list-module-section .list-carousel-slide .list-carousel-img {
    height: 480px;
  }
}

/* 992px - 切换为单列 */
@media (max-width: 992px) {
  .list-module-section {
    padding: 60px 0;
  }
  
  .list-module-section h2.section-title {
    font-size: 42px;
    text-align: center;
  }
  
  .list-module-section .list-course-card,
  .list-module-section .list-course-card-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }
  
  .list-module-section .list-course-card-reverse {
    flex-direction: column;
  }
  
  .list-module-section .list-course-card-reverse .list-course-image {
    order: 1;
  }
  
  .list-module-section .list-course-card-reverse .list-course-content {
    order: 2;
  }
  
  .list-module-section .list-course-image {
    width: 100%;
    min-height: auto;
  }
  
  .list-module-section .list-course-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  
  .list-module-section .list-section-header-left {
    text-align: center;
  }
  
  .list-module-section .list-section-header-left .list-course-num {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 60px;
  }
  
  .list-module-section .list-section-header-left .list-course-title {
    font-size: 32px;
  }
  
  .list-module-section .list-section-header-left .list-course-desc {
    font-size: 20px;
  }
  
  .list-module-section .list-accordion-header h3 {
    font-size: 20px;
  }
  
  .list-module-section .list-accordion-icon {
    width: 40px;
    height: 40px;
  }
  
  .list-module-section .list-accordion-icon i {
    font-size: 16px;
  }
  
  .list-module-section .list-accordion-item.active .list-accordion-content {
    max-height: 800px;
    padding: 0 24px 20px 24px;
  }
  
  .list-accordion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .list-accordion-grid-icon {
    height: 56px;
  }
  /*
  .list-accordion-grid-icon img {
    height: 48px;
  }*/
  
  .list-accordion-grid-label {
    font-size: 15px;
    white-space: normal;
  }
  
  .list-module-section .list-carousel-slide .list-carousel-img {
    height: 420px;
  }
  
  .list-module-section .list-note {
    text-align: center;
  }
}

/* 768px */
@media (max-width: 768px) {
  .list-module-section {
    padding: 50px 0;
  }
  
  .list-module-section .container {
    padding: 0 20px;
  }
  
  .list-module-section h2.section-title {
    font-size: 36px;
  }
  
  .list-module-section .list-course-card {
    margin-top: 50px;
    gap: 30px;
  }
  
  .list-module-section .list-section-header-left .list-course-title {
    font-size: 28px;
  }
  
  .list-module-section .list-section-header-left .list-course-desc {
    font-size: 18px;
  }
  
  .list-module-section .list-section-header-left .list-course-num {
    font-size: 50px;
  }
  
  .list-module-section .list-accordion-header {
    padding: 16px 20px;
  }
  
  .list-module-section .list-accordion-header h3 {
    font-size: 18px;
  }
  
  .list-module-section .list-accordion-icon {
    width: 36px;
    height: 36px;
  }
  
  .list-module-section .list-accordion-icon i {
    font-size: 14px;
  }
  
  .list-module-section .list-accordion-content .list-accordion-text,
  .list-module-section .list-accordion-content .list-accordion-text p {
    font-size: 15px;
  }
  
  .list-module-section .list-accordion-item.active .list-accordion-content {
    max-height: 600px;
    padding: 0 20px 16px 20px;
  }
  
  .list-accordion-grid {
    gap: 15px;
  }
  
  .list-accordion-grid-icon {
    height: 48px;
  }
  /*
  .list-accordion-grid-icon img {
    height: 40px;
  }*/
  
  .list-accordion-grid-label {
    font-size: 13px;
  }
  
  
  .list-module-section .list-carousel-slide .list-carousel-img {
    height: 380px;
  }
  
  .list-module-section .list-note {
    font-size: 14px;
  }
}

/* ==========================================================================
   服务介绍模块样式 - 优化版
   ========================================================================== */
/* 模块标题 */
.service-showcase-section .section-title {
  font-size: 55px;
  font-weight: bold;
  color: #000;
  text-align: left;
  margin-bottom: 30px;
}

.service-showcase-section .section-title b {
  color: #90be3d;
}

.service-showcase-section .description {
  font-size: 25px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 800px;
}

.service-showcase-section .description b {
  color: #90be3d;
  font-size: 42px;
  font-weight: 500;
  font-family: "MiSans";
}

/* ==========================================================================
   左右布局 - 等高
   ========================================================================== */

.service-showcase-item {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

/* ==========================================================================
   左侧手机模拟器
   ========================================================================== */

.service-phone-mockup {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #90be3d 0%, #fff 100%);
  border-radius: 48px;
  padding: 40px 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  justify-content: center;
}

.phone-mockup-inner {
  background: transparent;
  border-radius: 48px;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 手机框架 */
.phone-frame {
  width: 100%;
  max-width: 375px;
  height: auto;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* 轮播容器 */
.phone-frame .list-carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.phone-frame .list-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.phone-frame .list-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.phone-frame .list-carousel-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-frame .list-carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 手机刘海 */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 30px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 50;
}

/* 手机状态栏 */
.phone-status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 40;
}

.phone-status-bar .time {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.phone-status-bar .status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #000;
}

/* 图片描述文字 */
.phone-frame .honor-text {
  text-align: center;
  font-size: 18px;
  color: #000;
  padding: 8px;
  margin: 0;
  z-index: 10;
  font-weight: 300;
}

/* ==========================================================================
   分页点 - 手机下方
   ========================================================================== */

.phone-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0 10px;
}

.phone-carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-carousel-dots .carousel-dot.active {
  width: 24px;
  border-radius: 20px;
  background: #90be3d;
}

/* ==========================================================================
   右侧服务内容
   ========================================================================== */

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item-card {
  border-radius: 24px;
  padding: 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:last-child {
  margin-bottom: 0;
}

.service-item-card:hover {
  transform: translateY(-3px);
}

.service-tag {
  display: inline-block;
  background: #90be3d;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.service-desc b {
  color: #90be3d;
  font-weight: 500;
  font-size: 25px;
  font-family: "MiSans";
}

/* ==========================================================================
   响应式适配
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .service-showcase-section {
    padding: 70px 0;
  }
  
  .service-showcase-section .section-title {
    font-size: 48px;
  }
  
  .service-showcase-section .description {
    font-size: 22px;
    margin-bottom: 50px;
  }
  
  .service-showcase-section .description b {
    font-size: 36px;
  }
  
  .service-showcase-item {
    gap: 50px;
  }
  
  .service-phone-mockup {
    padding: 30px 15px;
  }
  
  .phone-frame {
    max-width: 340px;
    min-height: 560px;
  }
  
  .service-tag {
    font-size: 22px;
  }
  
  .service-desc {
    font-size: 17px;
  }
  
  .service-desc b {
    font-size: 22px;
  }
}

/* 992px - 切换为单列 */
@media (max-width: 992px) {
  .service-showcase-section {
    padding: 60px 0;
  }
  
  .service-showcase-section .section-title {
    font-size: 42px;
    text-align: center;
  }
  
  .service-showcase-section .description {
    font-size: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-showcase-section .description b {
    font-size: 32px;
  }
  
  .service-showcase-item {
    flex-direction: column;
    gap: 50px;
  }
  
  .service-phone-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .service-content {
    width: 100%;
  }
  
  .service-item-card {
    padding: 24px 28px;
  }
  
  .service-tag {
    font-size: 20px;
  }
  
  .service-desc {
    font-size: 16px;
  }
  
  .service-desc b {
    font-size: 20px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .service-showcase-section {
    padding: 50px 0;
  }
  
  .service-showcase-section .section-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .service-showcase-section .description {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .service-showcase-section .description b {
    font-size: 28px;
  }
  
  .service-showcase-item {
    gap: 40px;
  }
  
  .service-phone-mockup {
    padding: 30px 15px;
    border-radius: 40px;
  }
  
  .phone-frame {
    max-width: 320px;
    min-height: 520px;
    border-radius: 38px;
  }
  
  .phone-notch {
    width: 100px;
    height: 24px;
  }
  
  .phone-status-bar {
    height: 38px;
    padding: 0 16px;
  }
  
  .phone-status-bar .time {
    font-size: 12px;
  }
  
  .phone-frame .honor-text {
    font-size: 11px;
    padding: 6px;
  }
  
  .phone-carousel-dots {
    margin-top: 20px;
    gap: 8px;
  }
  
  .service-item-card {
    padding: 20px 24px;
  }
  
  .service-tag {
    font-size: 18px;
    padding: 5px 16px;
  }
  
  .service-desc {
    font-size: 15px;
  }
  
  .service-desc b {
    font-size: 18px;
  }
}


/* ==========================================================================
   30. 关于我们模块样式
   ========================================================================== */
.about-content {    
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  align-items: flex-start;
}

.about-title {
  font-size: 55px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  margin: 0;
}

.about-details {
  flex: 1;
}

.about-details p  {
  font-size: 25px;
  color: #000;
  line-height: 50px;
  font-weight: normal;
}
.about-details p b{
  color: #90be3d;
  font-weight: 500;
}

/* 关于模块响应式 */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .about-details p  {
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .about-details p  {
    font-size: 18px;
    line-height: 36px;
  }
}


/* ==========================================================================
   31. 荣誉认证模块样式
   ========================================================================== */
.honors-module {
  margin-top: 100px;
}
.honors-title{
    font-size: 25px;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 50px 0 100px;
}
.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.honor-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.honor-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f8f8fa;
    padding: 40px 0;
    border-radius: 20px 20px 0 0;
}

.honor-logo img {
  height: 100%;
}

.honor-text {
  font-size: 18px;
  color: #000;
  text-align: center;
  padding: 20px 0;
  font-weight: 300;
}

/* 荣誉模块响应式 */
@media (max-width: 992px) {
  .honors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .honors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .honor-logo{
      height: 120px;
      padding: 30px 0;
  }
}

/* ==========================================================================
   32. 母公司背景模块样式（含自适应）
   ========================================================================== */
.parent-company-module {
  background: #f8f8fa;
}

.company-title {
  font-size: 55px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  margin: 0;
  margin-bottom: 100px;
}

.company-intro p {
  font-size: 25px;
  color: #000;
  line-height: 50px;
  font-weight: normal;
}

.company-intro p b {
  color: #90be3d;
  font-weight: 500;
  font-family: 'MiSans';
}

.parent-company-module .honors-title {
  text-align: left;
}

.parent-company-module .honors-grid {
  grid-template-columns: repeat(5, 1fr);
}

.parent-company-module .honors-grid.max {
  margin-top: 24px;
  grid-template-columns: repeat(2, 1fr);
}

/* 母公司模块响应式 */
@media (max-width: 1200px) {
  .company-title {
    font-size: 44px;
    margin-bottom: 60px;
    white-space: normal;
  }
  .company-intro p {
    font-size: 20px;
    line-height: 40px;
  }
  .parent-company-module .honors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .company-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
  }
  .company-intro p {
    font-size: 18px;
    line-height: 36px;
  }
  .parent-company-module .honors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .parent-company-module .honors-grid.max {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .company-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .company-intro p {
    font-size: 16px;
    line-height: 30px;
  }
  .parent-company-module .honors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .parent-company-module .honors-grid.max {
    grid-template-columns: 1fr;
  }
}



/* ==========================================================================
   47. 认证模块样式（含自适应）
   ========================================================================== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 100px 0 0;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
}

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

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-number .number {
  font-size: 98px;
  font-weight: 800;
  color: #90be3d;
  line-height: 1;
  letter-spacing: -2px;
  font-family: "MiSans";
}

.stat-number .suffix {
  font-size: 32px;
  font-weight: 500;
  color: #90be3d;
  margin-left: 4px;
}

.stat-label {
  font-size: 25px;
  color: #000;
  font-weight: normal;
  margin: 0;
}

/* 统计模块响应式 */
@media (max-width: 1200px) {
  .stats-section {
    gap: 24px;
    padding: 80px 0 0;
  }
  .stat-number .number {
    font-size: 74px;
  }
  .stat-number .suffix {
    font-size: 26px;
  }
  .stat-label {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 60px 0 0;
  }
  .stat-number .number {
    font-size: 64px;
  }
  .stat-number .suffix {
    font-size: 24px;
  }
  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .honors-title{
    padding: 20px 0 0;
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 0 20px;
  }
  .stat-number .number {
    font-size: 48px;
  }
  .stat-number .suffix {
    font-size: 20px;
  }
  .stat-label {
    font-size: 16px;
  }
  .stat-item {
    padding: 15px 10px;
  }
}
/* ==========================================================================
   33. 首页-平台申请入口模块样式
   ========================================================================== */
.platform-apply-module .container{
  max-width: var(--max-width);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.platform-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-banner {
    height: 185px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.brand-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-left: auto;
  justify-content: flex-end;
}

.brand-logo img{
  height: 85px;
}

.card-content {
  padding: 60px;
  position: relative;
}

.card-content-bg{
  width: 100%;
  position: absolute;
  height: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 1;
  background: #fff;
  opacity: 0.05;
}

.card-description {
  font-size: 42px;
  line-height: 62px;
  color: #000;
  font-weight: 700;
  z-index: 2;
  position: relative;
  /*height: 124px;*/
}

.card-description b{
  font-size: 98px;
  padding: 0 10px;
}

.card-content .actions{  
    text-align: right;
    padding-top: 40px;
  }

.btn-apply {
  z-index: 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn-apply:hover {
  background: #333;
  transform: scale(1.02);
  gap: 12px;
}

/* 平台申请模块响应式 */
@media (max-width: 1024px) {
  .platform-grid {
    gap: 30px;
  }
  .card-banner {
    height: 150px;
    padding: 0 20px;
  }
  .brand-logo img {
    height: 65px;
  }
  .card-content {
    padding: 40px;
  }
  .card-description {
    font-size: 32px;
    line-height: 48px;
    /*height: 96px;*/
  }
  .card-description b {
    font-size: 74px;
  }
  .btn-apply {
    font-size: 20px;
    padding: 8px 20px;
  }
  .card-content .actions {
    padding-top: 30px;
  }
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .platform-apply-module {
    padding: 60px 0;
  }
  .platform-apply-module .container {
    padding: 0 20px;
  }
  .platform-grid {
    gap: 24px;
  }
  .card-banner {
    height: 130px;
    padding: 0 16px;
  }
  .brand-logo img {
    height: 55px;
  }
  .card-content {
    padding: 30px;
  }
  .card-description {
    font-size: 28px;
    line-height: 42px;
    /*height: 84px;*/
  }
  .card-description b {
    font-size: 64px;
  }
  .btn-apply {
    font-size: 18px;
    padding: 8px 18px;
  }
  .card-content .actions {
    padding-top: 24px;
  }
}


/* ==========================================================================
   34. 案例展示模块
   ========================================================================== */
.case-showcase-module {
  background: #f8f8fa;
}

.case-showcase-module .cs-header {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  text-align: left;
  padding: 0 0 100px;
  margin: 0;
}

.case-showcase-module .cs-header span {
  color: #90be3d;
}

.case-showcase-module .cs-carousel-wrapper {
  position: relative;
}

.case-showcase-module .cs-carousel-container {
  overflow: hidden;
  position: relative;
}

.case-showcase-module .cs-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-showcase-module .cs-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.case-showcase-module .cs-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-showcase-module .cs-phone-mockups {
  flex-shrink: 0;
  position: relative;
  height: 700px;
  z-index: 2;
  width: 480px;
  margin: 0 auto;
}

.case-showcase-module .cs-phone {
  position: absolute;
}
.cs-card-reverse .cs-phone-mockups{
    order: 2;
}
.cs-card-reverse .cs-info{
    order: 1;
}

.case-showcase-module .cs-phone-back {
  width: 290px;
  height: auto;
  top: 10px;
  right: 0;
  z-index: 1;
}

.case-showcase-module .cs-phone-front {
  width: 290px;
  height: auto;
  bottom: 10px;
  left: 0;
  z-index: 2;
}

.case-showcase-module .cs-info {
  flex: 1;
  position: relative;
  padding: 64px 0;
}

.case-showcase-module .cs-info::before {
    content: "";
    position: absolute;
    top: -0;
    left: -64px;
    background: url(./../images/title-bg.png);
    width: 128px;
    height: 128px;
    background-size: cover;
    z-index: 1;
}

.case-showcase-module .cs-title {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.case-showcase-module .cs-title p {
  font-size: 18px;
  color: #90be3d;
}

.case-showcase-module .cs-title h1 {
  font-size: 42px;
  font-weight: bold;
  padding: 30px 0;
}

.case-showcase-module .cs-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 3px 20px;
  border-radius: 30px;
  font-size: 25px;
  border: 2px solid #fff;
  background: #f8f8fa;
  box-shadow: 0 2px 3px rgba(153, 153, 153, 0.2);
  font-weight: 500;
}

.case-showcase-module .cs-label .cs-icon {
  font-size: 25px;
  color: #90be3d;
}

.case-showcase-module .cs-industry-tags,
.case-showcase-module .cs-pain-points,
.case-showcase-module .cs-results,
.case-showcase-module .cs-solution-points {
    font-size: 18px;
    color: #000;
    margin-left: 60px;
    line-height: 35px;
    padding: 25px 0;
}

.case-showcase-module .cs-industry-tags h2,
.case-showcase-module .cs-pain-points h2,
.case-showcase-module .cs-results h2,
.case-showcase-module .cs-solution-points h2 {
    font-weight: bold;
    font-size: 18px;
    line-height: 45px;
}

.case-showcase-module ul,
.case-showcase-module li {
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 35px;
  display: inline-block;
}

.case-showcase-module li::before {
  content: '●';
  margin-right: 8px;
  color: #90be3d;
  font-weight: 700;
  font-size: 8px;
}

.case-showcase-module .cs-results li {
  float: left;
  width: auto;
  padding: 0 25px;
  border-left: 1px solid #eee;
}

.case-showcase-module .cs-results li:first-child {
  padding-left: 0;
  border-left: 0;
}

.case-showcase-module .cs-results li:last-child {
  padding-right: 0;
}

.case-showcase-module b {
  color: #90be3d;
  font-size: 35px;
  font-family: "MiSans";
}

.case-showcase-module .cs-results li::before {
  display: none;
}

.case-showcase-module .cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.case-showcase-module .cs-arrow i {
  font-size: 1.2rem;
  color: #000;
}

.case-showcase-module .cs-arrow:hover {
  background: #90be3d;
  border-color: #90be3d;
  box-shadow: 0 4px 15px rgba(108, 192, 74, 0.3);
}

.case-showcase-module .cs-arrow:hover i {
  color: #fff;
}

.case-showcase-module .cs-arrow-prev {
  left: -180px;
}

.case-showcase-module .cs-arrow-next {
  right: -180px;
}

.case-showcase-module .cs-arrow-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.case-showcase-module .cs-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.case-showcase-module .cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-showcase-module .cs-dot-active {
  width: 28px;
  border-radius: 20px;
  background: #90be3d;
}

/* 案例展示模块响应式 */
@media (max-width: 1200px) {
  .case-showcase-module .cs-header {
    font-size: 42px;
    padding: 0 60px 40px;
  }
  .case-showcase-module .cs-card {
    gap: 40px;
  }
  .case-showcase-module .cs-phone-mockups {
    height: 620px;
    width: 480px;
  }
  .case-showcase-module .cs-phone-back,
  .case-showcase-module .cs-phone-front {
    width: 260px;
  }
  .case-showcase-module .cs-info {
    padding: 40px 0;
  }
  .case-showcase-module .cs-info::before {
    left: -40px;
    width: 100px;
    height: 100px;
  }
  .case-showcase-module .cs-title h1 {
    font-size: 36px;
    padding: 20px 0;
  }
  .case-showcase-module .cs-label {
    font-size: 20px;
    padding: 3px 16px;
  }
  .case-showcase-module .cs-label .cs-icon {
    font-size: 20px;
  }
  .case-showcase-module .cs-industry-tags,
  .case-showcase-module .cs-pain-points,
  .case-showcase-module .cs-results,
  .case-showcase-module .cs-solution-points {
    font-size: 16px;
    margin-left: 40px;
    padding: 20px 0 28px;
    line-height: 30px;
  }
  .case-showcase-module .cs-results li {
    padding: 0 30px;
  }
  .case-showcase-module b {
    font-size: 32px;
  }
  .case-showcase-module .cs-arrow-prev {
    left: 0;
  }
  .case-showcase-module .cs-arrow-next {
    right: 0;
  }
}

@media (max-width: 992px) {
  .case-showcase-module .cs-card {
    grid-template-columns: 1fr;
  }
  .case-showcase-module .cs-phone-mockups {
    height: 600px;
    width: 380px;
  }
  .case-showcase-module .cs-phone-back,
  .case-showcase-module .cs-phone-front {
    width: 250px;
    margin: 0 auto;
  }
  .case-showcase-module .cs-phone-back {
    top: 0;
    right: 0;
    margin-bottom: 0;
    z-index: 1;
    left: auto;
  }
  .case-showcase-module .cs-phone-front {
    top: 100px;
    bottom: auto;
    left: 0;
    margin-top: 0;
    z-index: 2;
    right: auto;
  }
  .case-showcase-module .cs-header {
    font-size: 36px;
    padding: 0 40px 50px;
    text-align: center;
  }
  .case-showcase-module .cs-info {
    padding: 30px 0;
  }
  .case-showcase-module .cs-info::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .case-showcase-module .cs-title {
    text-align: center;
  }
  .case-showcase-module .cs-title h1 {
    font-size: 32px;
    padding: 15px 0;
  }
  .case-showcase-module .cs-label {
    font-size: 18px;
    padding: 3px 14px;
  }
  .case-showcase-module .cs-label .cs-icon {
    font-size: 18px;
  }
  .case-showcase-module .cs-industry-tags,
  .case-showcase-module .cs-pain-points,
  .case-showcase-module .cs-results,
  .case-showcase-module .cs-solution-points {
    margin-left: 20px;
    padding: 15px 0 25px;
    font-size: 15px;
    line-height: 28px;
  }
  .case-showcase-module .cs-results li {
    float: none;
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .case-showcase-module b {
    font-size: 28px;
  }
  .case-showcase-module .cs-arrow {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .case-showcase-module {
    padding: 50px 0;
  }
  .case-showcase-module .cs-carousel-wrapper {
    padding: 0 20px;
  }
  .case-showcase-module .cs-header {
    font-size: 28px;
    padding: 0 16px 25px;
  }
  .case-showcase-module .cs-card {
    gap: 20px;
  }
  .case-showcase-module .cs-phone-mockups {
    height: 420px;
    width: 300px;
  }
    .cs-card-reverse .cs-phone-mockups{
        order: 1;
    }
    .cs-card-reverse .cs-info{
        order: 2;
    }

  .case-showcase-module .cs-phone-back,
  .case-showcase-module .cs-phone-front {
    width: 180px;
  }
  .case-showcase-module .cs-phone-back {
    margin-bottom: 0;
    right: 0;
  }
  .case-showcase-module .cs-phone-front {
    margin-top: 0;
    left: 0;
    top: 50px;
  }
  .case-showcase-module .cs-info {
    padding: 20px 0;
  }
  .case-showcase-module .cs-info::before {
    width: 80px;
    height: 80px;
    top: 0;
  }
  .case-showcase-module .cs-title p {
    font-size: 14px;
  }
  .case-showcase-module .cs-title h1 {
    font-size: 28px;
    padding: 10px 0;
  }
  .case-showcase-module .cs-label {
    font-size: 16px;
    padding: 2px 12px;
    gap: 10px;
  }
  .case-showcase-module .cs-label .cs-icon {
    font-size: 16px;
  }
  .case-showcase-module .cs-industry-tags,
  .case-showcase-module .cs-pain-points,
  .case-showcase-module .cs-results,
  .case-showcase-module .cs-solution-points {
    margin-left: 15px;
    padding: 12px 0 20px;
    font-size: 14px;
    line-height: 26px;
  }
  .case-showcase-module ul,
  .case-showcase-module li {
    line-height: 28px;
  }
  .case-showcase-module .cs-results li {
    padding: 0 15px;
  }
  .case-showcase-module b {
    font-size: 24px;
  }
  .case-showcase-module .cs-arrow {
    width: 48px;
    height: 48px;
  }
  .case-showcase-module .cs-arrow i {
    font-size: 1rem;
  }
  .case-showcase-module .cs-arrow-prev {
    left: -5px;
  }
  .case-showcase-module .cs-arrow-next {
    right: -5px;
  }
  .case-showcase-module .cs-dots {
    margin-top: 30px;
  }
  .case-showcase-module .cs-dot {
    width: 8px;
    height: 8px;
  }
  .case-showcase-module .cs-dot-active {
    width: 24px;
  }
}


/* ==========================================================================
   35. 荣誉证书 + 服务客户模块样式
   ========================================================================== */
.cert-clients-module {
  background: #f8f8fa;
}

.hero-section {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.left-content h2 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #000;
}

.left-content h2 b {
  color: #90be3d;
}

.left-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.left-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  color: #000;
}

.left-content ul li i {
  color: #90be3d;
  font-size: 20px;
  width: 28px;
}

.certificates-grid {
  border-radius: 32px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.clients-section {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.clients-section .clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.clients-section .client-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.clients-section .client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.clients-section .client-name {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.clients-section .client-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* 证书客户模块响应式 */
@media (max-width: 1200px) {
  .hero-section {
    gap: 40px;
  }
  .left-content h2 {
    font-size: 44px;
    margin-bottom: 50px;
  }
  .left-content ul li {
    font-size: 18px;
  }
  .clients-section .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .cert-clients-module {
    padding: 60px 0;
  }
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .left-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .left-content ul {
    gap: 20px;
  }
  .left-content ul li {
    font-size: 16px;
  }
  .certificates-grid {
    padding: 25px;
  }
  .clients-section {
    padding: 30px;
  }
  .clients-section .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .cert-clients-module {
    padding: 50px 0;
  }
  .hero-section {
    margin-bottom: 50px;
    gap: 30px;
  }
  .left-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .left-content ul {
    gap: 16px;
  }
  .left-content ul li {
    font-size: 15px;
    gap: 10px;
  }
  .left-content ul li i {
    font-size: 16px;
    width: 22px;
  }
  .certificates-grid {
    padding: 20px;
  }
  .clients-section {
    padding: 25px;
  }
  .clients-section .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .clients-section .client-card {
    padding: 15px 10px;
  }
  .clients-section .client-name {
    font-size: 11px;
  }
  .clients-section .client-logo-text {
    font-size: 13px;
  }
}


/* ==========================================================================
   36. 合作流程模块样式
   ========================================================================== */
.cooperation-process-module {
  background: #f8f8fa;
  overflow: hidden;
}

.cooperation-process-module .section-header {
  text-align: left;
  margin-bottom: 100px;
  font-size: 52px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}

.cooperation-process-module .section-header b {
  color: #90be3d;
}

.cooperation-process-module .steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.cooperation-process-module .step-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  width: 310px;
  /*height: 310px;*/
  border: 3px solid #f8f8fa;
}

.cooperation-process-module .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cooperation-process-module .step-card:nth-child(1) {
  background: #fff;
  border-color: #f8f8fa;
  z-index: 1;
  margin-top: 20px;
}

.cooperation-process-module .step-card:nth-child(2) {
  background: #f8f8fa;
  border-color: #fff;
  z-index: 2;
  margin-top: 120px;
  margin-left: -20px;
}

.cooperation-process-module .step-card:nth-child(3) {
  background: #fff;
  border-color: #f8f8fa;
  z-index: 3;
  margin-top: 0px;
  margin-left: -20px;
}

.cooperation-process-module .step-card:nth-child(4) {
  background: #f8f8fa;
  border-color: #fff;
  z-index: 4;
  margin-top: 120px;
  margin-left: -20px;
}

.cooperation-process-module .step-card:nth-child(1)::before,
.cooperation-process-module .step-card:nth-child(3)::before {    
  content: "";
  background-image: url(./../images/next.png);
  position: absolute;
  bottom: -100px;
  right: 30px;
  width: 100px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cooperation-process-module .step-card:nth-child(2)::before {
  content: "";
  background-image: url(./../images/next.png);
  position: absolute;
  top: -100px;
  right: 30px;
  width: 100px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cooperation-process-module .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #f8f8fa;
  color: #90be3d;
  font-size: 40px;
  float: right;
}
.cooperation-process-module .step-icon img{
    max-width: 60%;
}

.cooperation-process-module .step-card:nth-child(4) .step-icon,
.cooperation-process-module .step-card:nth-child(2) .step-icon {
  background: #fff;
}

.cooperation-process-module .step-label {
  margin-top: 80px;
  font-size: 18px;
  color: #90be3d;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cooperation-process-module .step-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: bold;
}
html[lang="en"] .cooperation-process-module .step-title {
  font-size: 32px;
}

.cooperation-process-module .step-desc {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  font-weight: 300;
}

/* 合作流程模块响应式 */
@media (max-width: 1200px) {
  .cooperation-process-module .section-header {
    font-size: 44px;
    margin-bottom: 80px;
  }
  .cooperation-process-module .step-card {
    width: 270px;
   /* height: 290px;*/
    padding: 28px 24px;
  }
  .cooperation-process-module .step-title {
    font-size: 34px;
  }
  html[lang="en"] .cooperation-process-module .step-title {
    font-size: 30px;
  }
  .cooperation-process-module .step-desc {
    font-size: 16px;
  }
  .cooperation-process-module .step-icon {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }
  .cooperation-process-module .step-label {
    margin-top: 60px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .cooperation-process-module {
    padding: 60px 0;
  }
  .cooperation-process-module .section-header {
    font-size: 38px;
    margin-bottom: 60px;
  }
  .cooperation-process-module .steps-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .cooperation-process-module .step-card {
    width: calc(50% - 12px);
    height: auto;
    min-height: 280px;
    margin: 0 !important;
  }
  .cooperation-process-module .step-card::before {
    display: none !important;
  }
  .cooperation-process-module .step-icon {
    float: none;
    margin: 0 auto 20px;
  }
  .cooperation-process-module .step-label {
    margin-top: 20px;
    text-align: center;
  }
  .cooperation-process-module .step-title {
    font-size: 32px;
    text-align: center;
  }
  .cooperation-process-module .step-desc {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cooperation-process-module {
    padding: 50px 0;
  }
  .cooperation-process-module .section-header {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
  }
  .cooperation-process-module .step-card {
    width: 100%;
    margin: 0 auto !important;
    padding: 25px 20px;
  }
  .cooperation-process-module .step-title {
    font-size: 28px;
  }
  .cooperation-process-module .step-desc {
    font-size: 15px;
  }
  .cooperation-process-module .step-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .cooperation-process-module .step-label {
    font-size: 15px;
  }
}


/* ==========================================================================
   37. 成功案例展示模块样式
   ========================================================================== */
.cases-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.cases-title-block {
  padding-left: 20px;
  position: relative;
}

.cases-title-block h2 {
  margin: 0;
  font-size: 42px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.4;
  z-index: 2;
  position: relative;
}

.cases-title-block h2 b {
  color: #90be3d;
}

.cases-title-block::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -25px;
  background: url(./../images/title-bg2.png);
  width: 128px;
  height: 128px;
  background-size: cover;
  z-index: 1;
}

.cases-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

.cases-nav-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #d6d7d2;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cases-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cases-nav-btn.active {
  background: #8cc63f;
  border-color: #8cc63f;
  color: #fff;
}

.cases-nav-btn i {
  font-size: 20px;
  color: #333;
}

.cases-nav-btn.active i {
  color: #fff;
}

.cases-nav-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cases-showcase {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.cases-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cases-phone {
  /*flex-shrink: 0;
  background: #111;
  border-radius: 32px;
  padding: 6px;
  border: 2px solid #202124;
  overflow: hidden;*/
  transition: transform 0.35s ease;
}

.cases-phone:hover {
  transform: translateY(-8px);
}

.cases-phone .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
}

.cases-phone .phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cases-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cases-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cases-dot.active {
  width: 28px;
  border-radius: 20px;
  background: #8cc63f;
}

/* 成功案例模块响应式 */
@media (min-width: 1100px) {
  .cases-phone {
    flex: 0 0 calc(20% - 20px);
  }
}

@media (max-width: 1099px) and (min-width: 769px) {
  .cases-phone {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .cases-showcase-module {
    padding: 60px 0;
  }
  .cases-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cases-title-block {
    padding-left: 0;
  }
  .cases-title-block h2 {
    font-size: 32px;
  }
  .cases-title-block::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -15px;
  }
  .cases-actions {
    align-self: flex-end;
  }
  .cases-nav-btn {
    width: 50px;
    height: 50px;
  }
  .cases-nav-btn i {
    font-size: 16px;
  }
  .cases-showcase {
    width: 100%;
  }
  .cases-track {
    gap: 0;
  }
  .cases-phone {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}


/* ==========================================================================
   38. 小红书 Hero 模块样式
   ========================================================================== */
.xiaohongshu-hero-module .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.xiaohongshu-hero-module .img-text-box {   
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.xiaohongshu-hero-module .media-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xiaohongshu-hero-module .media-card:hover {
  transform: translateY(-5px);
}

.xiaohongshu-hero-module .media-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.xiaohongshu-hero-module .media-card:hover img {
  transform: scale(1.02);
}

.xiaohongshu-hero-module .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.xiaohongshu-hero-module .content img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 80px;
}

.xiaohongshu-hero-module .content h2 {
  margin: 35px 0 20px;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.xiaohongshu-hero-module .content h2 b {
  color: #ff2442;
  font-size: 98px;
  display: inline-block;
}
.xiaohongshu-hero-module .content h2 span {
  color: #ff2442;
  display: inline-block;
}

.xiaohongshu-hero-module .content p {
  margin: 0 0 32px;
  color: #000;
  font-size: 25px;
  line-height: 1.5;
  max-width: 520px;
}

.xiaohongshu-hero-module .actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.xiaohongshu-hero-module .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  width: auto;
  padding: 0 32px;
  height: 60px;
  text-align: center;
  border-radius: 48px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.xiaohongshu-hero-module .btn-primary {
  background: #000;
  color: #fff;
  box-shadow: none;
}

.xiaohongshu-hero-module .btn-primary:hover {
  transform: translateY(-3px);
  background: #000;
}

/* 小红书Hero模块响应式 */
@media (max-width: 1200px) {
  .xiaohongshu-hero-module {
    padding: 50px 0;
  }
  .xiaohongshu-hero-module .img-text-box {
    gap: 40px;
  }
  .xiaohongshu-hero-module .content h2 {
    margin: 25px 0 15px;
    font-size: 45px;
  }
  .xiaohongshu-hero-module .content h2 b {
    font-size: 78px;
  }
  .xiaohongshu-hero-module .content p {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .xiaohongshu-hero-module .content img {
    max-height: 60px;
  }
  .xiaohongshu-hero-module .btn {
    min-width: 180px;
    height: 55px;
  }
}

@media (max-width: 900px) {
  .xiaohongshu-hero-module .img-text-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .xiaohongshu-hero-module .media-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .xiaohongshu-hero-module .content {
    text-align: center;
    align-items: center;
  }
  .xiaohongshu-hero-module .content p {
    max-width: 100%;
  }
  .xiaohongshu-hero-module .actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .xiaohongshu-hero-module {
    padding: 40px 0;
  }
  .xiaohongshu-hero-module .container {
    padding: 0 20px;
  }
  .xiaohongshu-hero-module .img-text-box {
    gap: 30px;
  }
  .xiaohongshu-hero-module .content img {
    max-height: 60px;
    margin-bottom: 10px;
  }
  .xiaohongshu-hero-module .content h2 {
    margin: 20px 0 12px;
  }
  .xiaohongshu-hero-module .content p {
    margin-bottom: 20px;
  }
  .xiaohongshu-hero-module .btn {
    min-width: 160px;
    height: 50px;
    padding: 0 24px;
  }
}


/* ==========================================================================
   39. 首页-业务模型
   ========================================================================== */
.cert-yewu-module {
  background-color: #f8f8fa;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}

.aboutdiv {
  height: 200px;
  background-color: #f8f8fa;
}
.aboutdiv.wt{
  background-color: #fff;
}

.cert-yewu-module .section-header {
  text-align: left;
  width: 100%;
  color: #fff;
  font-size: 52px;
  font-weight: bold;
  margin: 0;
  padding: 100px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cert-yewu-module .section-content {
  text-align: center;
  padding: 40px 0 80px;
}

.cert-yewu-module .section-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
}

/* 业务模型模块响应式 */
@media (max-width: 1200px) {
  .cert-yewu-module .section-header {
    font-size: 44px;
    padding: 80px 0;
  }
}

@media (max-width: 992px) {
  .cert-yewu-module .section-header {
    font-size: 36px;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .cert-yewu-module {
    padding: 100px 0;
  }
  .cert-yewu-module .section-header {
    font-size: 28px;
    padding: 20px 0;
  }
  .cert-yewu-module .section-content {
    padding: 20px 0 50px;
  }
  .aboutdiv {
    height: 50px;
  }
}


/* ==========================================================================
   40. FAQ 问答模块样式
   ========================================================================== */
.faq-module .section-header {
  text-align: left;
  margin-bottom: 100px;
  font-size: 52px;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}

.faq-module .section-header b {
  color: #90be3d;
}

.faq-module .faq-accordion-item {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.faq-module .faq-accordion-item::before {
  content: "";
  background: url('./../images/qa1.png');
  position: absolute;
  left: 0;
  top: 0;
  width: 230px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 1;
  pointer-events: none;
}

.faq-module .faq-accordion-item::after {
  content: "";
  background: url('./../images/qa2.png');
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  z-index: 1;
  pointer-events: none;
}

.faq-module .faq-accordion-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-module .faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.faq-module .faq-accordion-header h3 {
  font-size: 25px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.faq-module .faq-accordion-header h3 b {
  color: #90be3d;
}

.faq-module .faq-accordion-icon {
  width: 44px;
  height: 44px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-module .faq-accordion-icon i {
  color: #90be3d;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-module .faq-accordion-item.active .faq-accordion-icon {
  background: #90be3d;
}

.faq-module .faq-accordion-item.active .faq-accordion-icon i {
  color: #fff;
  transform: rotate(180deg);
}

.faq-module .faq-accordion-content {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 32px;
  font-size: 18px;
  color: #000;
  font-weight: 300;
  line-height: 1.7;
}

.faq-module .faq-accordion-item.active .faq-accordion-content {
  max-height: 300px;
  padding: 0 32px 24px 32px;
}

.faq-module .faq-accordion-content p {
  margin: 0;
}

/* FAQ模块响应式 */
@media (max-width: 1200px) {
  .faq-module .section-header {
    font-size: 44px;
    margin-bottom: 50px;
  }
  .faq-module .faq-accordion-header h3 {
    font-size: 22px;
  }
  .faq-module .faq-accordion-content {
    font-size: 17px;
  }
  .faq-module .faq-accordion-item::before {
    width: 180px;
    height: 55px;
  }
  .faq-module .faq-accordion-item::after {
    width: 320px;
    height: 80px;
  }
}

@media (max-width: 992px) {
  .faq-module {
    padding: 60px 0;
  }
  .faq-module .section-header {
    font-size: 38px;
  }
  .faq-module .faq-accordion-header {
    padding: 20px 28px;
  }
  .faq-module .faq-accordion-header h3 {
    font-size: 20px;
  }
  .faq-module .faq-accordion-icon {
    width: 40px;
    height: 40px;
  }
  .faq-module .faq-accordion-icon i {
    font-size: 16px;
  }
  .faq-module .faq-accordion-content {
    font-size: 16px;
  }
  .faq-module .faq-accordion-item.active .faq-accordion-content {
    max-height: 280px;
  }
  .faq-module .faq-accordion-item::before {
    width: 150px;
    height: 45px;
  }
  .faq-module .faq-accordion-item::after {
    width: 260px;
    height: 65px;
  }
}

@media (max-width: 768px) {
  .faq-module {
    padding: 50px 0;
  }
  .faq-module .section-header {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }
  .faq-module .faq-accordion-header {
    padding: 16px 20px;
  }
  .faq-module .faq-accordion-header h3 {
    font-size: 16px;
  }
  .faq-module .faq-accordion-icon {
    width: 36px;
    height: 36px;
  }
  .faq-module .faq-accordion-icon i {
    font-size: 14px;
  }
  .faq-module .faq-accordion-content {
    font-size: 14px;
    line-height: 1.6;
  }
  .faq-module .faq-accordion-item.active .faq-accordion-content {
    max-height: 250px;
    padding: 0 20px 20px 20px;
  }
  .faq-module .faq-accordion-item::before {
    width: 120px;
    height: 40px;
  }
  .faq-module .faq-accordion-item::after {
    width: 200px;
    height: 50px;
  }
}


/* ==========================================================================
   41. 联系我们模块样式
   ========================================================================== */
.contact-module {
  background: url(./../images/mapb.png);
  background-color: #f8f9fa;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

.contact-module-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-header, .contact-info-header {
  margin-bottom: 40px;
}

.contact-header h2, .contact-info-header h2 {
  font-size: 52px;
  font-weight: bold;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.2;
}

.contact-header p, .contact-info-header p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.contact-form-area {
  background: #fff;
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-group {
  margin-bottom: 30px;
  width: 100%;
}

.contact-input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: #f8f9fa;
  border: 0;
  border-radius: 16px;
  font-size: 16px;
  color: #333;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input:focus {
  border-color: #90be3d;
  box-shadow: 0 0 0 3px rgba(144, 190, 61, 0.1);
}

.contact-input::placeholder {
  color: #ccc;
}

.contact-select {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  font-size: 16px;
  color: #333;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.contact-select:focus {
  border-color: #90be3d;
  box-shadow: 0 0 0 3px rgba(144, 190, 61, 0.1);
}
select.contact-select:invalid {
    color: #ccc;
}

.contact-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  font-size: 16px;
  color: #333;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
  outline: none;
}

.contact-textarea:focus {
  border-color: #90be3d;
  box-shadow: 0 0 0 3px rgba(144, 190, 61, 0.1);
}

.contact-textarea::placeholder {
  color: #ccc;
}

.contact-radio-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: #bfbfbf;
}

.contact-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #c7000b;
}

.contact-submit-btn {
  width: 100%;
  height: 60px;
  background: #c7000b;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #a80009;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(199, 0, 11, 0.3);
}

.contact-info-area {
  padding: 50px;
}

.contact-info-card {
  margin-top: 10px;
}

.contact-info-content {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.contact-info-content h3 {
  font-size: 38px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #90be3d;
}

.contact-info-content p {
  margin-bottom: 15px;
}

.contact-info-content i {
  color: #c7000b;
  width: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-info-content strong {
  color: #333;
  font-weight: 600;
}

/* 联系我们模块响应式 */
@media (max-width: 1200px) {
  .contact-module {
    padding: 80px 0;
  }
  .contact-module-wrapper {
    gap: 40px;
  }
  .contact-form-area,
  .contact-info-area {
    padding: 40px;
  }
  .contact-header h2,
  .contact-info-header h2 {
    font-size: 44px;
  }
  .contact-info-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .contact-module {
    padding: 60px 0;
  }
  .contact-module-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-area {
    order: 1;
  }
  .contact-info-area {
    order: 2;
    padding: 0;
  }
  .contact-header h2,
  .contact-info-header h2 {
    font-size: 38px;
  }
  .contact-header p,
  .contact-info-header p {
    font-size: 16px;
  }
  .contact-info-content h3 {
    font-size: 28px;
  }
  .contact-module {
    background-size: cover;
    background-position: 20% center;
  }
}

@media (max-width: 768px) {
  .contact-module {
    padding: 50px 0;
  }
  .contact-module .container {
    padding: 0 20px;
  }
  .contact-module-wrapper {
    gap: 30px;
  }
  .contact-form-area {
    padding: 30px;
  }
  .contact-header,
  .contact-info-header {
    margin-bottom: 30px;
  }
  .contact-header h2,
  .contact-info-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .contact-header p,
  .contact-info-header p {
    font-size: 15px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-input,
  .contact-select,
  .contact-submit-btn {
    height: 52px;
    font-size: 15px;
  }
  .contact-textarea {
    font-size: 15px;
  }
  .contact-radio-group {
    gap: 20px;
  }
  .contact-radio-label {
    font-size: 14px;
  }
  .contact-info-area {
    padding: 0;
  }
  .contact-info-content {
    font-size: 15px;
    padding: 15px 0;
  }
  .contact-info-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .contact-module {
    padding: 40px 0;
  }
  .contact-module .container {
    padding: 0 16px;
  }
  .contact-form-area {
    padding: 24px;
  }
  .contact-header h2,
  .contact-info-header h2 {
    font-size: 28px;
  }
  .contact-header p,
  .contact-info-header p {
    font-size: 14px;
  }
  .contact-input,
  .contact-select,
  .contact-submit-btn {
    height: 48px;
    font-size: 14px;
  }
  .contact-textarea {
    font-size: 14px;
    min-height: 100px;
  }
  .contact-radio-group {
    gap: 16px;
  }
  .contact-radio-label {
    font-size: 13px;
  }
  .contact-info-content {
    font-size: 14px;
  }
  .contact-info-content h3 {
    font-size: 22px;
  }
  .contact-info-content p {
    margin-bottom: 12px;
    gap: 8px;
  }
  .contact-info-content i {
    width: 18px;
    font-size: 14px;
  }
  .contact-module {
    background-size: cover;
    background-position: 30% center;
  }
}

@media (max-width: 480px) {
  .contact-module {
    padding: 30px 0;
  }
  .contact-form-area {
    padding: 20px;
    border-radius: 24px;
  }
  .contact-header h2,
  .contact-info-header h2 {
    font-size: 24px;
  }
  .contact-input,
  .contact-select,
  .contact-submit-btn {
    height: 44px;
    font-size: 13px;
    padding: 0 16px;
  }
  .contact-textarea {
    font-size: 13px;
    padding: 12px 16px;
  }
  .contact-radio-group {
    gap: 12px;
  }
  .contact-radio-label {
    font-size: 12px;
  }
  .contact-info-content {
    font-size: 13px;
  }
  .contact-info-content h3 {
    font-size: 20px;
  }
  .contact-submit-btn {
    font-size: 16px;
  }
}

/* ==========================================================================
   42. 课程模块样式
   ========================================================================== */
.courses-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.courses-section .section-header h2 {
  font-size: 55px;
  text-align: left;
  margin-bottom: 100px;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.course-card-reverse {
  flex-direction: row-reverse;
}

.course-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 50px;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-content {
  flex: 1;
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-card-reverse .course-content {
  padding: 30px 0 30px 30px;
}

.course-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  border: 2px solid #90be3d;
  text-align: center;
}

.course-card-reverse .course-badge {
  right: inherit;
  left: 0;
}

.course-badge h2 {
  display: inline-block;
  background: #90be3d;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.course-badge h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  font-family: "MiSans";
}

.course-badge span {
  font-size: 18px;
  font-weight: normal;
  margin-left: 2px;
  font-family: inherit;
}

.course-badge h3 {
  font-size: 18px;
  color: #000;
  display: block;
  margin-top: 4px;
  font-weight: normal;
}

.course-tag {
  display: inline-block;
  background: #90be3d;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  align-self: flex-end;
}

.course-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
  line-height: 1.3;
}

.course-features {
  list-style: none;
  margin-bottom: 32px;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #000;
  line-height: 40px;
  font-weight: 300;
}

.course-features li::before {
  content: '●';
  color: #90be3d;
  font-weight: 700;
  font-size: 8px;
}

.course-features li b {
  color: #8cc63f;
  font-size: 25px;
  font-family: "MiSans";
  font-weight: 500;
}

/* ==========================================================================
   42. 课程模块 - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
  .courses-section {
    padding: 80px 0;
  }
  
  .courses-section .section-header h2 {
    font-size: 44px;
    margin-bottom: 70px;
  }
  
  .courses-list {
    gap: 50px;
  }
  
  .course-image {
    padding: 36px;
  }
  
  .course-image img {
    border-radius: 40px;
  }
  
  .course-content {
    padding: 36px 36px 36px 0;
  }
  
  .course-card-reverse .course-content {
    padding: 36px 0 36px 36px;
  }
  
  .course-title {
    font-size: 36px;
    margin-bottom: 35px;
  }
  
  .course-features li {
    font-size: 16px;
    line-height: 36px;
  }
  
  .course-features li b {
    font-size: 22px;
  }
  
  .course-badge {
    padding: 10px 16px;
    min-width: 120px;
  }
  
  .course-badge h1 {
    font-size: 40px;
  }
  
  .course-badge span {
    font-size: 16px;
  }
  
  .course-badge h3 {
    font-size: 16px;
  }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
  .courses-section {
    padding: 60px 0;
  }
  
  .courses-section .section-header h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .courses-list {
    gap: 40px;
  }
  
  .course-card,
  .course-card-reverse {
    flex-direction: column !important;
    border-radius: 28px;
  }
  
  .course-image {
    padding: 30px;
    min-height: 300px;
  }
  
  .course-image img {
    border-radius: 35px;
    height: 280px;
  }
  
  .course-content {
    padding: 30px !important;
  }
  
  .course-tag {
    align-self: flex-start;
    font-size: 16px;
    padding: 5px 16px;
  }
  
  .course-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .course-features li {
    font-size: 15px;
    line-height: 34px;
    gap: 10px;
  }
  
  .course-features li b {
    font-size: 20px;
  }
  
  .course-badge {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    min-width: 110px;
  }
  
  .course-card-reverse .course-badge {
    left: 15px;
    right: auto;
  }
  
  .course-badge h1 {
    font-size: 36px;
  }
  
  .course-badge span {
    font-size: 15px;
  }
  
  .course-badge h3 {
    font-size: 15px;
  }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
  .courses-section {
    padding: 50px 0;
  }
  
  .courses-section .section-header h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  .courses-list {
    gap: 35px;
  }
  
  .course-card {
    border-radius: 24px;
  }
  
  .course-image {
    padding: 24px;
    min-height: 260px;
  }
  
  .course-image img {
    border-radius: 30px;
    height: 240px;
  }
  
  .course-content {
    padding: 24px !important;
  }
  
  .course-tag {
    font-size: 14px;
    padding: 4px 14px;
    margin-bottom: 16px;
  }
  
  .course-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .course-features {
    margin-bottom: 25px;
  }
  
  .course-features li {
    font-size: 14px;
    line-height: 32px;
    gap: 8px;
  }
  
  .course-features li b {
    font-size: 18px;
  }
  
  .course-features li::before {
    font-size: 7px;
  }
  
  .course-badge {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    min-width: 100px;
    border-radius: 16px;
  }
  
  .course-card-reverse .course-badge {
    left: 12px;
  }
  
  .course-badge h2 {
    font-size: 13px;
    padding: 3px 10px;
  }
  
  .course-badge h1 {
    font-size: 32px;
  }
  
  .course-badge span {
    font-size: 14px;
  }
  
  .course-badge h3 {
    font-size: 14px;
  }
}

/* ==========================================================================
   Workshop 报名模块样式
   ========================================================================== */

/* Workshop 横幅卡片 */
.workshop-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 50px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.workshop-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* 文字区域 */
.banner-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.banner-text h1 b {
    color: #90be3d;
}

/* 按钮区域 */
.banner-btn {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.register-btn {
    background: #90be3d;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(154, 180, 29, 0.3);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 180, 29, 0.4);
}

/* ==========================================================================
   Workshop 报名模块 - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
    .workshop-banner {
        border-radius: 45px;
        padding: 35px 28px;
        margin-top: 80px;
    }
    
    .banner-text h1 {
        font-size: 34px;
    }
    
    .register-btn {
        padding: 14px 36px;
        font-size: 22px;
    }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
    .workshop-banner {
        border-radius: 40px;
        padding: 32px 25px;
        margin-top: 60px;
        gap: 20px;
    }
    
    .banner-text h1 {
        font-size: 28px;
    }
    
    .register-btn {
        padding: 12px 30px;
        font-size: 20px;
    }
}

/* 768px - 平板竖屏（切换为纵向布局） */
@media (max-width: 768px) {
    .workshop-banner {
        flex-direction: column;
        text-align: center;
        border-radius: 35px;
        padding: 35px 25px;
        margin-top: 50px;
        gap: 25px;
    }
    
    .banner-text h1 {
        font-size: 24px;
    }
    
    .register-btn {
        padding: 12px 32px;
        font-size: 18px;
    }
}
/* ==========================================================================
   43. 成功案例轮播样式
   ========================================================================== */

.cases-carousel-wrapper {
  position: relative;
}

.cases-carousel-container {
  overflow: hidden;
  position: relative;
  border-radius: 32px;
}

.cases-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cases-slide {
  flex: 0 0 100%;
  padding: 10px;
  min-width: 0;
}

.case-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card-content {
  display: flex;
  gap: 48px;
  padding: 48px 48px 0;
  align-items: center;
  position: relative;
}
.case-card-content::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url('./../images/shu.png') no-repeat;
  background-size: cover;
  height: 230px;
  width: 200px;
}

.case-info {
  flex: 1;
}

.case-logo img {
  height: 140px;
  margin-bottom: 50px;
}

.case-description {
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 300;
}

.case-platforms {
  margin-bottom: 50px;
}

.case-platforms img {
  height: 60px;
}

.case-results {
  padding: 0 48px 48px;
}

.case-results h4 {
  font-size: 25px;
  font-weight: 700;
  color: #90be3d;
  margin-bottom: 50px;
}

.results-grid ul {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-grid li {
  flex-shrink: 0;
  width: auto;
  text-align: left;
}

.results-grid li b {
  color: #90be3d;
  font-size: 68px;
  font-weight: 500;
  display: block;
  font-family: "MiSans";
}
.results-grid li b span{
  font-size: 25px;
}

.results-grid li p {
  font-size: 25px;
  font-weight: 300;
  margin: 0;
}

.results-grid li p b {
  font-size: 34px;
  font-weight: normal;
  padding: 27px 0px;
  display: inline-block;
}

.case-phone {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  justify-content: center;
  padding-top: 200px;
}

.cases-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cases-arrow i {
  font-size: 1.2rem;
  color: #333;
}

.cases-arrow:hover {
  background: #8cc63f;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(140, 198, 63, 0.3);
}

.cases-arrow:hover i {
  color: #fff;
}

.cases-arrow.prev {
  left: -150px;
}

.cases-arrow.next {
  right: -150px;
}

.cases-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cases-arrow.disabled:hover {
  background: #fff;
  border-color: #e0e0e0;
}

.cases-arrow.disabled:hover i {
  color: #333;
}

.cases-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cases-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cases-dot.active {
  width: 28px;
  border-radius: 20px;
  background: #8cc63f;
}

.cases-dot:hover {
  background: #a8d45a;
}

/* ==========================================================================
   成功案例轮播 - 响应式适配
   ========================================================================== */

/* 1200px - 大屏 */
@media (max-width: 1200px) {
  .case-card-content {
    gap: 32px;
    padding: 36px;
  }
  
  .case-logo img {
    height: 100px;
    margin-bottom: 30px;
  }
  
  .case-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .case-platforms img {
    height: 48px;
  }
  
  .case-platforms {
    margin-bottom: 30px;
  }
  
  .case-results {
    padding: 0 36px 36px;
  }
  
  .case-results h4 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .results-grid ul {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .results-grid li b {
    font-size: 54px;
  }
  
  .results-grid li p {
    font-size: 20px;
  }
  
  .results-grid li p b {
    font-size: 28px;
    padding: 20px 0;
  }
  
  .case-phone {
    width: 240px;
  }
  
  .cases-arrow {
    width: 60px;
    height: 60px;
  }
  
  .cases-arrow.prev {
    left: -80px;
  }
  
  .cases-arrow.next {
    right: -80px;
  }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
  .cases-carousel-container {
    border-radius: 24px;
  }
  
  .cases-slide {
    padding: 8px;
  }
  
  .case-card {
    border-radius: 24px;
  }
  
  .case-card-content {
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }
  
  .case-info {
    width: 100%;
    order: 2;
  }
  
  .case-logo {
    text-align: center;
  }
  
  .case-logo img {
    height: 80px;
    margin-bottom: 24px;
  }
  
  .case-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .case-platforms {
    text-align: center;
    margin-bottom: 0;
  }
  
  .case-platforms img {
    height: 42px;
  }
  
  .case-results {
    padding: 0 32px 32px;
  }
  
  .case-results h4 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .results-grid ul {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .results-grid li {
    min-width: 160px;
    flex: 1;
  }
  
  .results-grid li b {
    font-size: 48px;
  }
  
  .results-grid li p {
    font-size: 18px;
  }
  
  .results-grid li p b {
    font-size: 24px;
    padding: 16px 0;
  }
  
  .case-phone {
    width: 220px;
    order: 1;
    margin-bottom: 20px;
  }
  
  .cases-arrow {
    width: 50px;
    height: 50px;
  }
  
  .cases-arrow.prev {
    left: -60px;
  }
  
  .cases-arrow.next {
    right: -60px;
  }
  
  .cases-dots {
    margin-top: 30px;
    gap: 10px;
  }
  .case-phone {
    padding-top: 100px;
  }
}

/* 768px - 平板竖屏 */
@media (max-width: 768px) {
  .cases-carousel-container {
    border-radius: 20px;
  }
  
  .cases-slide {
    padding: 6px;
  }
  
  .case-card {
    border-radius: 20px;
  }
  
  .case-card-content {
    padding: 24px;
    gap: 20px;
  }
  .case-card-content::before {
    height: 120px;
    width: 100px;
}
  
  .case-logo img {
    height: 65px;
    margin-bottom: 20px;
  }
  
  .case-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .case-platforms img {
    height: 36px;
  }
  
  .case-results {
    padding: 24px;
  }
  
  .case-results h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .results-grid ul {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .results-grid li {
    min-width: 140px;
    flex: 1;
  }
  
  .results-grid li b {
    font-size: 42px;
  }
  
  .results-grid li p {
    font-size: 16px;
  }
  
  .results-grid li p b {
    font-size: 20px;
    padding: 12px 0;
  }
  
  .case-phone {
    width: 200px;
    padding-top: 100px;
  }
  
  .cases-arrow {
    width: 44px;
    height: 44px;
  }
  
  .cases-arrow.prev {
    right: 0;
  }
  
  .cases-arrow.next {
    right: 0;
  }
  
  .cases-arrow i {
    font-size: 1rem;
  }
  
  .cases-dots {
    gap: 10px;
    margin-top: 25px;
  }
  
  .cases-dot {
    width: 8px;
    height: 8px;
  }
  
  .cases-dot.active {
    width: 24px;
  }
}
/* ==========================================================================
   44. 更多合作客户模块样式 - 独立命名
   ========================================================================== */
.partner-clients-section {
  background: #f8f8fa;
  overflow: hidden;
}

.partner-clients-section .partner-section-header {
  text-align: center;
  margin-bottom: 100px;
}

.partner-clients-section .partner-section-header h2 {
  font-size: 55px;
  font-weight: bold;
  color: #000;
  text-align: left;
}

.partner-scroll-container {
  width: 100%;
  overflow: hidden;
}

.partner-scroll-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.partner-scroll-row:last-child {
  margin-bottom: 0;
}

.partner-scroll-track {
  display: flex;
  width: fit-content;
  flex-wrap: nowrap;
}

.partner-clients-grid {
  display: flex;
  gap: 30px;
  padding: 0 15px;
  flex-wrap: nowrap;
}

.partner-client-item {
  flex-shrink: 0;
  width: 230px;
  height: 150px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.partner-client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-client-item img {
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
  display: block;
}

/* 滚动动画 */
@keyframes partnerScrollRight1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes partnerScrollLeft1 {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes partnerScrollRight2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes partnerScrollLeft2 {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 第1行 - 向右滚动（慢速） */
.partner-scroll-row-1 .partner-scroll-track {
  animation: partnerScrollRight1 30s linear infinite;
}

/* 第2行 - 向左滚动（中速） */
.partner-scroll-row-2 .partner-scroll-track.reverse {
  animation: partnerScrollLeft1 25s linear infinite;
}

/* 第3行 - 向右滚动（快速） */
.partner-scroll-row-3 .partner-scroll-track {
  animation: partnerScrollRight2 20s linear infinite;
}

/* 第4行 - 向左滚动（极快速） */
.partner-scroll-row-4 .partner-scroll-track.reverse {
  animation: partnerScrollLeft2 15s linear infinite;
}

/* 鼠标悬停暂停 */
.partner-scroll-row:hover .partner-scroll-track {
  animation-play-state: paused;
}

/* 响应式 */
@media (max-width: 1200px) {
  .partner-client-item {
    width: 140px;
    height: 90px;
    padding: 15px;
  }
  .partner-clients-grid {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .partner-client-item {
    width: 130px;
    height: 85px;
  }
  .partner-clients-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .partner-clients-section {
    padding: 60px 0;
  }
  .partner-clients-section .partner-section-header h2 {
    font-size: 32px;
  }
  .partner-client-item {
    width: 120px;
    height: 80px;
    padding: 12px;
  }
  .partner-clients-grid {
    gap: 15px;
  }
  .partner-scroll-row {
    margin-bottom: 20px;
  }
  .partner-scroll-row-1 .partner-scroll-track {
    animation-duration: 25s;
  }
  .partner-scroll-row-2 .partner-scroll-track.reverse {
    animation-duration: 20s;
  }
  .partner-scroll-row-3 .partner-scroll-track {
    animation-duration: 18s;
  }
  .partner-scroll-row-4 .partner-scroll-track.reverse {
    animation-duration: 12s;
  }
}


/* ==========================================================================
   45. 案例展示区域 (case 模块)
   ========================================================================== */
.page-banner .case {
  margin-top: 100px;
  background: rgb(144 190 61 / 80%);
  height: 140px;
  border-radius: 50px;
  padding: 0 50px;
  line-height: 140px;
  font-size: 25px;
  font-weight: normal;
  display: flex;
  overflow: hidden;
}

.page-banner .case .title {
  width: 400px;
  flex-shrink: 0;
  font-size: 25px;
}

.page-banner .case ul {
  margin: 20px 0 0 20px;
  width: calc(100% - 20px);
  background: #fff;
  border-radius: 25px;
  height: 100px;
  padding: 0 18px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.page-banner .case .scroll-track {
  display: flex;
  width: fit-content;
  animation: scrollLogos 20s linear infinite;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  align-items: center;
}

.page-banner .case .scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-banner .case .scroll-track li {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 35px 28px;
  flex-shrink: 0;
  white-space: normal;
}

.page-banner .case .scroll-track li img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* case模块响应式 */
@media (max-width: 992px) {
  .page-banner .case {
    margin-top: 60px;
    padding: 0 30px;
  }
  .page-banner .case .title {
    width: 300px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-banner .case {
    margin-top: 40px;
    height: auto;
    border-radius: 30px;
    padding: 0 20px;
    line-height: 1.2;
    flex-direction: column;
  }
  .page-banner .case .title {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 0;
  }
  .page-banner .case ul {
    margin: 0 0 16px 0;
    width: 100%;
    height: 80px;
    padding: 0 12px;
  }
  .page-banner .case .scroll-track {
    animation-duration: 15s;
  }
  .page-banner .case .scroll-track li {
    padding: 25px 20px;
  }
  .page-banner .case .scroll-track li img {
    height: 24px;
  }
}

@media (max-width: 576px) {
  .page-banner .case {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-banner .case .title {
    font-size: 14px;
    text-align: center;
  }
  .page-banner .case ul {
    height: 70px;
    padding: 0 10px;
  }
  .page-banner .case .scroll-track {
    animation-duration: 12s;
  }
  .page-banner .case .scroll-track li {
    padding: 22px 15px;
  }
  .page-banner .case .scroll-track li img {
    height: 20px;
  }
}


/* ==========================================================================
   46. 认证图标样式（Google/Meta/Bing等）
   ========================================================================== */
.google-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.google-g {
  width: 50px;
  height: 50px;
}

.google-text {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.5px;
}

.google-badge {
  font-size: 8px;
  color: #4285f4;
  background: #e8f0fe;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.meta-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.meta-text {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #0064e0, #0095f6, #c13584);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meta-sub {
  font-size: 8px;
  color: #666;
  border: 1px solid #ddd;
  padding: 2px 8px;
  border-radius: 4px;
}

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

.bing-text {
  font-size: 28px;
  font-weight: 700;
  color: #444;
  letter-spacing: -1px;
}

.gold-medal {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe082, #ffd54f, #ffb300, #ff8f00);
  box-shadow: 0 3px 12px rgba(255, 152, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gold-medal::after {
  content: "★";
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
}

.caring-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.caring-top {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.caring-5 {
  font-size: 32px;
  font-weight: 900;
  color: #c62828;
  line-height: 1;
}

.caring-plus {
  font-size: 18px;
  font-weight: 700;
  color: #c62828;
}

.caring-ribbon {
  width: 60px;
  height: 16px;
  background: linear-gradient(90deg, #c62828, #e53935);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caring-ribbon span {
  font-size: 7px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.caring-company-text {
  font-size: 11px;
  color: #c62828;
  font-weight: 600;
  letter-spacing: 1px;
}

.caring-company-text .caring-highlight {
  color: #e53935;
  font-weight: 900;
}

.hkct-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hkct-text {
  font-size: 22px;
  font-weight: 900;
  color: #8b6914;
  letter-spacing: 2px;
}

.hkct-building {
  font-size: 28px;
}

.hkct-sub {
  font-size: 8px;
  color: #8b6914;
  font-weight: 600;
}

.smartcity-wrapper {
  display: flex;
  align-items: center;
}

.smartcity-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sc-s, .sc-m, .sc-a, .sc-r {
  color: #333;
}

.sc-t, .sc-c, .sc-i, .sc-t2, .sc-y {
  color: #4caf50;
}

.logo-xiaohongshu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-badge {
  background: #ff2442;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.logo-text-green {
  font-size: 24px;
  font-weight: 800;
  color: #333;
}

.logo-xhs-cert {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-xhs-badge {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 9px;
  color: #999;
  line-height: 1.2;
  text-align: center;
}

.logo-check {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-meituan {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meituan-badge {
  background: #ffd100;
  color: #000;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
}

.dianping-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff6633, #ff3366);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gaode-text {
  font-size: 28px;
  font-weight: 800;
  color: #333;
}

.logo-weixin {
  display: flex;
  align-items: center;
  gap: 8px;
}

.weixin-text {
  font-size: 26px;
  font-weight: 800;
  color: #333;
}

/* 认证图标响应式 */
@media (max-width: 768px) {
  .gaode-text {
    font-size: 22px;
  }
  .weixin-text {
    font-size: 20px;
  }
  .meituan-badge {
    font-size: 14px;
    padding: 4px 10px;
  }
  .logo-text-green {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .bing-text {
    font-size: 20px;
  }
  .smartcity-text {
    font-size: 18px;
  }
  .hkct-text {
    font-size: 18px;
  }
  .caring-5 {
    font-size: 24px;
  }
  .gaode-text {
    font-size: 18px;
  }
  .weixin-text {
    font-size: 16px;
  }
}
/* ==========================================================================
   数字人模块样式
   ========================================================================== */

/* 模块标题 */
.digital-human-module .section-title {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #000;
  text-align: left;
}

.digital-human-module .section-title b {
  color: #90be3d;
}

/* 描述区域 */
.digital-human-module .description {
  margin-bottom: 60px;
  font-size: 25px;
  color: #000;
  line-height: 2.2;
}

/* 卡片容器 */
.digital-human-module .cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 卡片 */
.digital-human-module .card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.digital-human-module .card::before {
  display: none;
}

.digital-human-module .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: #fff;
}

/* 卡片头部 */
.digital-human-module .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.digital-human-module .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  margin-bottom: 0;
  flex-shrink: 0;
  background: none;
  position: relative;
}
.digital-human-module .card-icon::before {
  content: "";
  display: block;
  border-radius: 60px;
  background: #90be3d;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;  /* 20% 透明度，可以看到底部背景 */
  z-index: 1;
}

.digital-human-module .card-icon i {
  font-size: 30px;
  color: #90be3d;
  position: relative;
  z-index: 2;
}
.digital-human-module .card-icon img{   
    width: 50%;
    height: auto;
}

.digital-human-module .card-header h3 {
  font-size: 25px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* 分隔线 */
.digital-human-module .divider {
  width: 100%;
  height: 2px;
  background: #90be3d;
  border-radius: 2px;
  margin: 0 0 50px 0;
  flex-shrink: 0;
}

/* 统计项 - 关键修复：内容底部对齐 */
.digital-human-module .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* 内容底部对齐 */
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  font-weight: 300;
}

.digital-human-module .card-body > div {
  width: 100%;
}

.digital-human-module .card-body b {
  font-size: 68px;
  font-weight: 500;
  color: #90be3d;
  line-height: 1.2;
  display: inline-block;
  font-family: "MiSans";
}

.digital-human-module .card-body p {
  margin-bottom: 12px;
}

.digital-human-module .card-body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   响应式适配
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .digital-human-module .section-title {
    font-size: 48px;
  }
  
  .digital-human-module .description {
    font-size: 22px;
  }
  
  .digital-human-module .card-header h3 {
    font-size: 22px;
  }
  
  .digital-human-module .card-icon {
    width: 52px;
    height: 52px;
  }
  
  .digital-human-module .card-icon i {
    font-size: 26px;
  }
  
  .digital-human-module .card-body b {
    font-size: 58px;
  }
}

/* 992px - 平板横屏 */
@media (max-width: 992px) {
  .digital-human-module {
    padding: 60px 0;
  }
  
  .digital-human-module .section-title {
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  .digital-human-module .description {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 2;
  }
  
  .digital-human-module .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .digital-human-module .card {
    padding: 30px 22px;
  }
  
  .digital-human-module .card-header h3 {
    font-size: 20px;
  }
  
  .digital-human-module .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .digital-human-module .card-icon i {
    font-size: 24px;
  }
  
  .digital-human-module .card-body {
    font-size: 16px;
  }
  
  .digital-human-module .card-body b {
    font-size: 52px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .digital-human-module {
    padding: 50px 0;
  }
  
  .digital-human-module .section-title {
    font-size: 36px;
  }
  
  .digital-human-module .description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.9;
  }
  
  .digital-human-module .cards-container {
    gap: 20px;
  }
  
  .digital-human-module .card {
    padding: 25px 20px;
  }
  
  .digital-human-module .card-header {
    margin-bottom: 20px;
  }
  
  .digital-human-module .card-header h3 {
    font-size: 18px;
  }
  
  .digital-human-module .card-icon {
    width: 44px;
    height: 44px;
  }
  
  .digital-human-module .card-icon i {
    font-size: 22px;
  }
  
  .digital-human-module .divider {
    margin-bottom: 20px;
  }
  
  .digital-human-module .card-body {
    font-size: 15px;
  }
  
  .digital-human-module .card-body b {
    font-size: 46px;
  }
  
  .digital-human-module .card-body .unit {
    font-size: 16px;
  }
  
  .digital-human-module .card-body .stat-desc {
    font-size: 14px;
  }
}

/* 640px - 切换为单列 */
@media (max-width: 640px) {
  .digital-human-module .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .digital-human-module .card {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }
}

