@media screen and (max-width: 768px) {
  /* ==================== Hero 区域 移动端 ==================== */
  .hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* 一屏高度减去导航栏高度 */
    margin-top: 60px; /* 为顶部导航栏留出空间 */
    overflow: hidden;
  }

  .hero-title {
    position: absolute;
    bottom: 8vw;
    left: 5.333vw;
    right: 5.333vw;
    font-size: 6.4vw;
    font-weight: 600;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
  }

  /* ==================== 主要内容区域 移动端 ==================== */
  .main-content {
    padding: 10.667vw 5.333vw;
    background-color: #FFFFFF;
  }

  .content-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 13.333vw;
  }

  /* ==================== 功能区块 移动端 ==================== */
  .feature-section {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
  }

  .feature-section.reverse {
    flex-direction: column;
  }

  .feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5.333vw;
    text-align: center;
  }

  .feature-header {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .feature-title {
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 1.3;
    color: transparent;
    background: linear-gradient(90deg, #D038FF 0%, #462DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .feature-subtitle {
    font-size: 4vw;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
  }

  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 3.733vw;
  }

  .feature-item {
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    text-align: left;
  }

  .feature-image {
    width: 100%;
    height: 50vw;
    border-radius: 2.667vw;
    overflow: hidden;
  }

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

  /* ==================== 核心优势区块 移动端 ==================== */
  .advantages-section {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    align-items: center;
  }

  .advantages-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6.667vw;
    text-align: center;
  }

  .advantages-header {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .advantages-title {
    font-size: 5.333vw;
    font-weight: 600;
    line-height: 1.3;
    color: transparent;
    background: linear-gradient(90deg, #D038FF 0%, #462DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 3.733vw;
  }

  .advantages-item {
    font-size: 3.733vw;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    text-align: left;
  }

  .advantages-image {
    width: 100%;
    height: 50vw;
    border-radius: 2.667vw;
    overflow: hidden;
  }

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

  /* ==================== 特殊文本样式 移动端 ==================== */
  .highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }

  .highlight-text .feature-item {
    white-space: pre-line;
    font-size: 3.733vw;
    line-height: 1.6;
  }



  /* ==================== 底部 移动端 ==================== */
  .footer {
    padding: 10.667vw 5.333vw;
    background: #000000;
  }

  .footer-container {
    max-width: 100%;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 8vw;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 6.667vw;
    text-align: center;
  }

  .footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 4vw;
    align-items: center;
  }

  .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
    align-items: center;
  }

  .footer-logo-wrapper img {
    width: 32vw;
    height: auto;
  }

  .footer-logo-title {
    font-size: 4.8vw;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

  .footer-decoration {
    display: flex;
    flex-direction: column;
    gap: 1.333vw;
    width: 100%;
    max-width: 60vw;
  }

  .footer-line {
    height: 0.267vw;
    background: #ffffff;
    opacity: 0.3;
  }

  .footer-gradient-line {
    height: 0.267vw;
    background: linear-gradient(90deg, #D038FF 0%, #462DFF 100%);
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2.667vw;
  }

  .footer-contact p {
    font-size: 3.733vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2.667vw;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 3.2vw;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
  }

  .footer-links span {
    font-size: 3.2vw;
    color: #ffffff;
    opacity: 0.5;
  }

  .footer-nav {
    display: flex;
    justify-content: space-around;
    border-top: 0.267vw solid rgba(255, 255, 255, 0.1);
    padding-top: 6.667vw;
  }

  .footer-nav-column {
    text-align: center;
  }

  .footer-nav-column h5 {
    font-size: 3.733vw;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
  }

  .footer-divider {
    height: 0.267vw;
    background: linear-gradient(90deg, #D038FF 0%, #462DFF 100%);
    margin-top: 6.667vw;
  }

  /* ==================== 响应式调整 ==================== */
  @media (max-width: 480px) {
    .hero {
      height: calc(100vh - 60px); /* 一屏高度减去导航栏高度 */
    }

    .hero-title {
      font-size: 7.2vw;
      bottom: 6vw;
    }

    .main-content {
      padding: 8vw 4vw;
    }

    .content-wrapper {
      gap: 10.667vw;
    }

    .feature-title,
    .advantages-title {
      font-size: 6.4vw;
    }

    .feature-subtitle {
      font-size: 4.8vw;
    }

    .feature-item,
    .advantages-item {
      font-size: 4vw;
    }

    .feature-image,
    .advantages-image {
      height: 55vw;
    }
  }

  @media (max-width: 360px) {
    .hero {
      height: calc(100vh - 60px); /* 一屏高度减去导航栏高度 */
    }

    .hero-title {
      font-size: 8vw;
    }

    .feature-title,
    .advantages-title {
      font-size: 7.2vw;
    }

    .feature-subtitle {
      font-size: 5.333vw;
    }

    .feature-item,
    .advantages-item {
      font-size: 4.267vw;
    }
  }
} 