
  /* 联系板块基础设置 */
  .neway-contact-section,
  .neway-contact-section * {
    box-sizing: border-box;
  }

  /* 背景横向延伸到浏览器左右边缘；内容宽度保持不变 */
  .neway-contact-section {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 112px 24px;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    background:
      radial-gradient(
        circle at 80% 45%,
        rgba(27, 173, 194, 0.24),
        transparent 30%
      ),
      linear-gradient(120deg, #087f99, #0a566c);
  }

  .neway-contact-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 顶部小标题 */
  .neway-contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #b8fff5;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .neway-contact-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    flex-shrink: 0;
    background: currentColor;
  }

  /* 主标题 */
  .neway-contact-title {
    margin: 34px 0 26px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(50px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  /* 描述文字 */
  .neway-contact-description {
    max-width: 760px;
    margin: 0;
    color: #c4e1e6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
  }

  /* 邮箱按钮外层 */
  .neway-contact-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 38px;
  }

  /* 小尺寸邮箱按钮 */
  .neway-email-button {
    width: min(430px, 100%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 5px;
    color: #07546a;
    background: #ffffff;
    text-align: left;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(2, 38, 54, 0.14);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .neway-email-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 38px rgba(2, 38, 54, 0.24);
  }

  .neway-email-label {
    color: #168aa4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .neway-email-address {
    color: #07546a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .neway-email-arrow {
    color: #07546a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    line-height: 1;
  }

  /* 平板适配 */
  @media (max-width: 768px) {
    .neway-contact-section {
      padding: 90px 22px;
    }

    .neway-contact-title {
      font-size: clamp(46px, 9vw, 60px);
    }

    .neway-contact-description {
      font-size: 16px;
    }
  }

  /* 手机适配 */
  @media (max-width: 560px) {
    .neway-contact-section {
      padding: 76px 18px;
    }

    .neway-contact-eyebrow {
      font-size: 10px;
      letter-spacing: 0.14em;
    }

    .neway-contact-eyebrow::before {
      width: 25px;
    }

    .neway-contact-title {
      margin-top: 28px;
      font-size: clamp(42px, 12vw, 52px);
    }

    .neway-contact-title br {
      display: none;
    }

    .neway-contact-description {
      font-size: 15px;
      line-height: 1.6;
    }

    .neway-contact-actions {
      margin-top: 32px;
    }

    .neway-email-button {
      grid-template-columns: 1fr auto;
      gap: 5px 12px;
      padding: 14px 16px;
    }

    .neway-email-label {
      grid-column: 1;
      font-size: 10px;
    }

    .neway-email-address {
      grid-column: 1;
      font-size: 15px;
      overflow-wrap: anywhere;
    }

    .neway-email-arrow {
      grid-column: 2;
      grid-row: 1 / 3;
      font-size: 20px;
    }
  }

  /* 减少动画设置 */
  @media (prefers-reduced-motion: reduce) {
    .neway-email-button {
      transition: none;
    }
  }
