/**
 * 全站 H5 / 窄屏适配（≤1023px）
 * 与桌面 1440 设计稿并存：通过覆盖 width/min-width/margin 与顶栏抽屉导航避免横向滚动。
 */

@media (max-width: 1023px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
  }

  /* 顶栏高度与正文上内边距（与 .page.flex-col padding-top 对齐） */
  .es-site-header .es-site-nav {
    height: 72px;
    flex-wrap: nowrap;
    padding: 0 12px 0 16px;
    box-sizing: border-box;
  }

  .page.flex-col {
    padding-top: 72px;
  }

  .es-site-header .es-site-nav__title {
    margin-right: 12px !important;
    font-size: clamp(22px, 5vw, 32px);
    width: auto !important;
    height: auto !important;
  }

  .es-site-header .es-site-nav__lang {
    margin: 0 0 0 8px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .es-site-nav__toggle {
    display: inline-flex;
    z-index: 1002;
    margin-left: auto;
  }

  /* 抽屉：全屏覆盖（顶栏保持可点关闭） */
  .es-site-nav__panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    padding: 20px 20px 32px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(12, 17, 17, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.32s;
  }

  .es-site-header--nav-open .es-site-nav__panel {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }

  .es-site-header .es-site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    width: 100%;
    gap: 0;
  }

  .es-site-header .es-site-nav a.es-nav__link {
    width: 100%;
    padding: 14px 4px;
    border-radius: 10px;
  }

  .es-site-header .es-site-nav a.es-nav__link span {
    margin: 0 !important;
    height: auto !important;
    line-height: 1.35 !important;
    font-size: 18px !important;
    white-space: normal !important;
  }

  .es-site-header .es-site-nav a.es-nav__contact {
    margin: 20px 0 0 0 !important;
    width: 100%;
    max-width: 100%;
    height: 52px;
    line-height: 52px;
    font-size: 18px;
  }

  .es-site-nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      visibility 0s linear 0.28s;
  }

  .es-site-header--nav-open .es-site-nav__backdrop {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.28s ease,
      visibility 0s linear 0s;
  }

  .es-site-nav__backdrop:not([hidden]) {
    display: block;
  }

  /* ——— 页面根容器：取消 1440 固定宽 ——— */
  .page {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
  }

  .es-page-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* 典型蓝湖块：拉满宽、清掉左侧大 margin */
  .page div[class^="box_"],
  .page div[class^="group_"],
  .page div[class^="section_"],
  .page div[class^="block_"],
  .page div[class^="text-group_"],
  .page div[class^="text-wrapper_"] {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .page div[class^="box_"],
  .page div[class^="group_"],
  .page div[class^="section_"],
  .page div[class^="block_"] {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page .flex-row {
    flex-wrap: wrap;
  }

  /* 避免影响页脚社交图标行 */
  .page .flex-row.justify-between:not(.es-site-footer__social) {
    justify-content: flex-start;
  }

  .page img {
    max-width: 100%;
    height: auto;
  }

  /* 页脚 */
  .es-site-footer {
    padding: 32px 16px 24px;
    height: auto !important;
    min-height: 0 !important;
    box-sizing: border-box;
  }

  .es-site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .es-site-footer__legal .text_40 {
    margin-left: 0 !important;
  }

  .es-site-footer__social {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
  }

  .es-site-footer__social .text_38 {
    font-size: clamp(22px, 6vw, 30px);
  }

  /*
   * 首页：index.css 里 .box_12 / .text_38 为蓝湖整页坐标（如 margin-top:741px、height:30px），
   * 且 page_css 晚于本文件加载，会撑坏 H5 页脚高度。用更高优先级覆盖。
   */
  .page--home .es-site-footer__social.box_12 {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    align-items: center;
  }

  .page--home .es-site-footer__social .text_38 {
    line-height: 1.15 !important;
    height: auto !important;
    letter-spacing: normal !important;
  }

  .page--home .es-site-footer__social img.label_10,
  .page--home .es-site-footer__social img.label_11,
  .page--home .es-site-footer__social img.label_12,
  .page--home .es-site-footer__social img.label_13 {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    margin: 0 !important;
    flex-shrink: 0;
  }

  .page--home .es-site-footer__legal .text_39,
  .page--home .es-site-footer__legal .text_40,
  .page--home .es-site-footer__legal .text_41 {
    white-space: normal !important;
    height: auto !important;
    width: auto !important;
    max-width: 100%;
  }

  /* Solutions：步骤栅格改为单列 */
  .es-how-work {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .es-how-work__title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .es-how-work__desc {
    font-size: clamp(16px, 4vw, 20px);
  }

  /* ================= Solutions H5 ================= */
  .page--solutions .section_2.es-solutions-hero::before {
    height: 460px;
    background-position: center top;
    background-size: cover;
  }

  .page--solutions .box_1.flex-row {
    width: 100% !important;
    margin: 116px 0 0 !important;
    align-items: center;
    gap: 10px;
  }

  .page--solutions .box_1 .text_8 {
    height: auto !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    display: block;
  }

  /* Solutions 顶部小圆点：避免被 flex 拉伸、修正垂直位置 */
  .page--solutions .box_1 .group_1 {
    display: block !important;
    flex: 0 0 auto !important;
    align-self: center !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    margin-top: 0 !important;
    border-radius: 50% !important;
    aspect-ratio: 1;
    box-sizing: border-box;
  }

  .page--solutions .text-wrapper_2 {
    width: 100% !important;
    margin: 14px 0 0 !important;
    white-space: normal !important;
  }

  .page--solutions .text_9,
  .page--solutions .text_10 {
    width: 100% !important;
    font-size: clamp(34px, 8vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
  }

  .page--solutions .text_11 {
    width: 100% !important;
    height: auto !important;
    margin: 16px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .page--solutions .text_12 {
    margin: 34px 0 12px !important;
    font-size: clamp(26px, 6vw, 34px) !important;
    line-height: 1.2 !important;
  }

  .page--solutions .es-how-work {
    width: 100% !important;
    margin: 20px 0 0 !important;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page--solutions .es-how-work__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 0;
  }

  .page--solutions .es-how-work__head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin: 0 !important;
  }

  .page--solutions .es-how-work__step {
    margin: 20px 0 0 0;
    line-height: 1;
    white-space: nowrap;
  }

  .page--solutions .es-how-work__title {
    margin: -24px 0 0 68px !important;
    font-size: clamp(18px, 4.8vw, 24px) !important;
    line-height: 1.2 !important;
  }

  .page--solutions .es-how-work__desc {
    margin: 10px 0 0 0 !important;
  }

  .page--solutions .box_4,
  .page--solutions .box_6,
  .page--solutions .box_8 {
    width: 100% !important;
    height: auto !important;
    margin: 44px 0 0 !important;
    flex-direction: column !important;
    gap: 18px;
  }

  /* Solutions：移动端板块分层（增强分区感） */
  .page--solutions .box_4,
  .page--solutions .box_6,
  .page--solutions .box_8,
  .page--solutions .box_10 {
    position: relative;
  }

  .page--solutions .box_4::before,
  .page--solutions .box_6::before,
  .page--solutions .box_8::before,
  .page--solutions .box_10::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(117, 255, 158, 0), rgba(117, 255, 158, 0.45), rgba(117, 255, 158, 0));
    margin: 0 0 18px;
  }

  .page--solutions .box_5,
  .page--solutions .group_9,
  .page--solutions .box_9 {
    width: 100% !important;
    height: auto !important;
  }

  .page--solutions .image_1,
  .page--solutions .image_2,
  .page--solutions .image_3 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 14px;
    object-fit: cover;
  }

  /* H5：Vertical Market 01 / 03 图片置顶 */
  .page--solutions .box_4 .image_1,
  .page--solutions .box_8 .image_3 {
    order: -1;
    margin: 0 0 10px 0 !important;
  }

  .page--solutions .box_4::before {
    order: -2;
  }

  .page--solutions .box_8::before {
    order: -2;
  }

  /* ================= Why Name H5 ================= */
  .page--why-name .box_2 {
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .page--why-name .text-group_1 {
    width: 100% !important;
    height: auto !important;
    margin: 44px 0 0 !important;
    align-items: flex-start !important;
  }

  .page--why-name .text-wrapper_2 {
    width: 100% !important;
    height: auto !important;
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.08 !important;
  }

  .page--why-name .text_8,
  .page--why-name .text_9,
  .page--why-name .text_10 {
    display: inline;
    width: auto !important;
    height: auto !important;
    font-size: clamp(32px, 8vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
  }

  .page--why-name .text_11 {
    width: 100% !important;
    height: auto !important;
    margin: 18px 0 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  .page--why-name .group_1 {
    display: block !important;
    width: 100% !important;
    max-width: 420px;
    height: 1px !important;
    min-height: 1px !important;
    margin: 28px auto 0 !important;
    background: linear-gradient(90deg, rgba(117, 255, 158, 0), rgba(117, 255, 158, 0.45), rgba(117, 255, 158, 0)) !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    rotate: 0deg !important;
  }

  .page--why-name .text-group_2 {
    width: 100% !important;
    height: auto !important;
    margin: 36px 0 0 !important;
  }

  .page--why-name .text_12 {
    width: 100% !important;
    height: auto !important;
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  .page--why-name .text_13 {
    width: 100% !important;
    height: auto !important;
    margin: 10px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
  }

  .page--why-name .group_2.flex-row {
    width: 100% !important;
    height: auto !important;
    margin: 28px 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .page--why-name .text-group_3,
  .page--why-name .text-group_4,
  .page--why-name .text-group_5,
  .page--why-name .text-group_6 {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .page--why-name .text_14,
  .page--why-name .text_16,
  .page--why-name .text_18,
  .page--why-name .text_20 {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
  }

  .page--why-name .text_15,
  .page--why-name .text_17,
  .page--why-name .text_19,
  .page--why-name .text_21 {
    width: auto !important;
    height: auto !important;
    margin: 6px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .page--why-name .text_22 {
    width: 100% !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    font-size: clamp(26px, 6.5vw, 36px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  .page--why-name .group_3.flex-row {
    width: 100% !important;
    height: auto !important;
    margin: 18px 0 0 !important;
    flex-direction: column !important;
    gap: 12px;
  }

  .page--why-name .list_1.flex-row {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page--why-name [class^="text-wrapper_3-"] {
    width: 100% !important;
    height: auto !important;
    min-height: 82px;
    margin: 0 !important;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(26, 29, 29, 0.7);
  }

  .page--why-name .text_23-0,
  .page--why-name .text_23-1,
  .page--why-name .text_23-2,
  .page--why-name .text_24-1,
  .page--why-name .text_24-2,
  .page--why-name .text_25-0,
  .page--why-name .text_26,
  .page--why-name .text_27 {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: clamp(20px, 6vw, 30px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-align: left !important;
  }

  .page--why-name .text-wrapper_4 .text_26,
  .page--why-name .text-wrapper_4 .text_27 {
    flex: 1 1 0;
    min-height: 52px;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 10px;
    background: rgba(26, 29, 29, 0.7);
    display: flex;
    align-items: center;
  }

  .page--why-name .text-wrapper_4 {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    flex-direction: row !important;
    gap: 10px;
  }

  .page--why-name .text_28 {
    width: 100% !important;
    height: auto !important;
    margin: 34px 0 0 !important;
    font-size: clamp(26px, 6.5vw, 36px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
  }

  .page--why-name .es-why-project-list.flex-row {
    width: 100% !important;
    margin: 18px 0 0 !important;
    flex-direction: column !important;
    gap: 16px;
  }

  .page--why-name .es-why-project-item {
    width: 100% !important;
    gap: 10px;
  }

  .page--why-name .image_1,
  .page--why-name .image_2 {
    width: 100% !important;
    height: auto !important;
    border-radius: 14px;
    object-fit: cover;
  }

  .page--why-name .es-why-project-title,
  .page--why-name .text_29,
  .page--why-name .text_30 {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
  }

  .page--solutions .text_24,
  .page--solutions .text_30,
  .page--solutions .text_35 {
    font-size: clamp(24px, 6vw, 32px) !important;
    letter-spacing: 0 !important;
    line-height: 1.15 !important;
    margin-top: 8px !important;
  }

  .page--solutions .text_40 {
    letter-spacing: 0 !important;
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.15 !important;
  }

  .page--solutions .text_41 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-top: 12px !important;
  }

  /* Solutions：图标+标题保持一行，避免 H5 下折行错位 */
  .page--solutions .group_7.flex-row,
  .page--solutions .group_8.flex-row,
  .page--solutions .box_7.flex-row,
  .page--solutions .image-text_6.flex-row,
  .page--solutions .group_10.flex-row,
  .page--solutions .group_11.flex-row,
  .page--solutions .box_10 .block_1 .image-text_7.flex-row,
  .page--solutions .box_10 .block_1 .image-text_8.flex-row,
  .page--solutions .box_10 .block_1 .image-text_9.flex-row,
  .page--solutions .box_10 .block_1 .image-text_10.flex-row,
  .page--solutions .box_10 .block_1 .image-text_11.flex-row {
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .page--solutions .group_7,
  .page--solutions .group_8,
  .page--solutions .box_7,
  .page--solutions .image-text_6,
  .page--solutions .group_10,
  .page--solutions .group_11 {
    width: 100% !important;
    height: auto !important;
    margin: 16px 0 0 0 !important;
  }

  .page--solutions .group_7 .text_25,
  .page--solutions .group_8 .text_27,
  .page--solutions .box_7 .text_31,
  .page--solutions .image-text_6 .text-group_8,
  .page--solutions .group_10 .text_36,
  .page--solutions .group_11 .text_38 {
    white-space: nowrap !important;
    width: auto !important;
    min-width: 0;
    line-height: 1.25 !important;
  }

  .page--solutions .text_26,
  .page--solutions .text_28,
  .page--solutions .text_32,
  .page--solutions .text_33,
  .page--solutions .text_37,
  .page--solutions .text_39 {
    width: 100% !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    height: auto !important;
    margin: 8px 0 0 0 !important;
  }

  .page--solutions .box_10 {
    width: 100% !important;
    height: auto !important;
    margin: 52px 0 0 !important;
    padding: 20px 14px 24px !important;
    box-sizing: border-box;
  }

  .page--solutions .group_12,
  .page--solutions .text-group_10 {
    margin-top: 0 !important;
  }

  .page--solutions .group_13 {
    width: 100% !important;
    margin-top: 18px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .page--solutions .block_1 {
    width: 100% !important;
    gap: 14px !important;
  }

  .page--solutions .box_10 .block_1 .image-text_7,
  .page--solutions .box_10 .block_1 .image-text_8,
  .page--solutions .box_10 .block_1 .image-text_9,
  .page--solutions .box_10 .block_1 .image-text_10,
  .page--solutions .box_10 .block_1 .image-text_11 {
    gap: 8px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .page--solutions .box_10 .block_1 .label_13,
  .page--solutions .box_10 .block_1 .label_14,
  .page--solutions .box_10 .block_1 .label_15,
  .page--solutions .box_10 .block_1 .label_16,
  .page--solutions .box_10 .block_1 .label_17 {
    margin-left: 0 !important;
    flex-shrink: 0;
  }

  .page--solutions .image_4 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 240px;
    object-fit: cover;
  }

  .page--solutions .text-group_11,
  .page--solutions .text-group_12,
  .page--solutions .text-group_13,
  .page--solutions .text-group_14,
  .page--solutions .text-group_15 {
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
  }

  /* 产品详情：子 Tab 等宽不溢出 */
  .page--product-detail .es-pd-subtab,
  .page--product-detail .group_2.flex-col > .section_1 .es-pd-subtab,
  .page--product-detail .group_2.flex-col > .block_1 .es-pd-subtab {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .page--product-detail .text-wrapper_2 {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 12px;
    box-sizing: border-box;
  }

  .page--product-detail .text-wrapper_2::-webkit-scrollbar {
    display: none;
  }

  .page--product-detail a.es-pd-cat-tab {
    flex: 0 0 auto;
    font-size: 14px !important;
    line-height: 1.25 !important;
    padding: 8px 10px;
    white-space: nowrap !important;
    text-align: center;
    border-radius: 999px;
    background: rgba(42, 41, 45, 0.9);
  }

  .page--product-detail .es-pd-mobile-select-wrap {
    display: none;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin: 0 0 10px;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select-label {
    color: rgba(186, 203, 185, 0.95);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(42, 41, 45, 0.96);
    color: rgba(255, 255, 255, 0.98);
    font-size: 14px;
    line-height: 1.25;
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    text-align: left;
    cursor: pointer;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select:focus {
    border-color: rgba(117, 255, 158, 0.65);
    box-shadow: 0 0 0 2px rgba(117, 255, 158, 0.18);
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select__value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select[aria-expanded="true"] .es-pd-mobile-select__arrow {
    transform: rotate(180deg);
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select__menu {
    margin-top: 8px;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(31, 30, 34, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
    padding: 6px;
    box-sizing: border-box;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select__item {
    display: block;
    width: 100%;
    min-height: 40px;
    border-radius: 10px;
    border: 0;
    padding: 0 10px;
    background: transparent;
    color: rgba(236, 238, 236, 0.96);
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
  }

  .page--product-detail.es-pd-mobile-dropdown .es-pd-mobile-select__item[aria-selected="true"] {
    color: rgba(117, 255, 158, 1);
    background: rgba(117, 255, 158, 0.12);
  }

  /* 与 -webkit-line-clamp 搭配，消除兼容性告警 */
  .page--product-detail .es-pd-datasheet-label {
    line-clamp: 2;
  }

  .page--product-detail.es-pd-mobile-dropdown .group_2 > .text-wrapper_2,
  .page--product-detail.es-pd-mobile-dropdown .group_2 > .section_1,
  .page--product-detail.es-pd-mobile-dropdown .group_2 > .block_1 {
    display: none !important;
  }

  .page--product-detail .group_2.flex-col > .section_1.flex-row,
  .page--product-detail .group_2.flex-col > .block_1.flex-row {
    flex-wrap: wrap !important;
    justify-content: center !important;
    column-gap: 12px !important;
    row-gap: 8px;
  }

  .page--product-detail .group_2.flex-col > .section_1,
  .page--product-detail .group_2.flex-col > .block_1 {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px !important;
    padding-bottom: 2px;
  }

  .page--product-detail .group_2.flex-col > .section_1::-webkit-scrollbar,
  .page--product-detail .group_2.flex-col > .block_1::-webkit-scrollbar {
    display: none;
  }

  .page--product-detail .group_2.flex-col > .section_1 .text-wrapper_3.flex-col,
  .page--product-detail .group_2.flex-col > .section_1 .text-wrapper_4.flex-col,
  .page--product-detail .group_2.flex-col > .section_1 .text-wrapper_5.flex-col,
  .page--product-detail .group_2.flex-col > .block_1 .text-wrapper_3.flex-col,
  .page--product-detail .group_2.flex-col > .block_1 .text-wrapper_4.flex-col,
  .page--product-detail .group_2.flex-col > .block_1 .text-wrapper_5.flex-col {
    flex: 0 0 auto;
    width: auto !important;
    max-width: none !important;
  }

  .page--product-detail .group_2.flex-col > .section_1 .es-pd-subtab,
  .page--product-detail .group_2.flex-col > .block_1 .es-pd-subtab {
    width: auto !important;
    min-width: 220px;
    max-width: 78vw;
    min-height: 64px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    border-radius: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .page--product-detail {
    --pd-band-inset: 12px;
  }

  .page--product-detail .group_3.flex-col {
    padding: 16px 12px 28px !important;
    border-radius: 14px;
  }

  .page--product-detail .es-pd-hero-actions.flex-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page--product-detail .es-pd-hero-model-line {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page--product-detail .es-pd-datasheet-wrap {
    width: auto;
    max-width: none;
    min-height: 36px;
    border-radius: 12px;
    padding: 6px 8px;
    flex: 0 0 auto;
    align-self: auto;
  }

  .page--product-detail .es-pd-datasheet-label {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
    white-space: normal;
    text-align: center;
    max-width: 78px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .page--product-detail .es-pd-hero-gallery,
  .page--product-detail .es-pd-hero-gallery--carousel {
    min-height: 0 !important;
    margin: 16px auto 24px !important;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0 2px;
    box-sizing: border-box;
  }

  .page--product-detail .es-pd-hero-carousel__main-wrap {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    height: clamp(320px, 58vh, 520px);
    min-height: 320px;
    max-height: 520px;
    overflow: hidden;
    border-radius: 10px;
  }

  .page--product-detail .es-pd-hero-carousel__nav-face {
    max-height: 64px !important;
  }

  .page--product-detail .es-pd-hero-carousel__main-wrap .es-pd-hero-carousel__main,
  .page--product-detail .es-pd-hero-carousel__main-wrap .es-pd-hero-gallery__main {
    max-height: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .page--product-detail .text-group_1 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: flex-start !important;
  }

  .page--product-detail .text-group_1 .text_17 {
    font-size: clamp(22px, 5vw, 30px) !important;
    line-height: 1.15 !important;
    height: auto !important;
    width: 100% !important;
  }

  .page--product-detail .text-group_1 .text_18 {
    font-size: 15px !important;
    line-height: 1.5 !important;
    height: auto !important;
    width: 100% !important;
    white-space: normal !important;
  }

  .page--product-detail .block_2.flex-row,
  .page--product-detail .block_3.flex-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: nowrap !important;
    justify-content: stretch !important;
    gap: 16px 24px !important;
    width: 100% !important;
  }

  .page--product-detail .block_2 [class^="text-group_"],
  .page--product-detail .block_3 [class^="text-group_"] {
    min-width: 0;
    width: auto !important;
    max-width: 100% !important;
  }

  .page--product-detail .es-pd-model-strip {
    grid-template-columns: 1fr;
    row-gap: 8px;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 12px 10px;
  }

  .page--product-detail .es-pd-model-strip__label {
    text-align: center;
  }

  .page--product-detail .es-pd-model-strip > .es-pd-model-strip__value,
  .page--product-detail .es-pd-model-strip__values {
    justify-content: center;
  }

  .page--product-detail .es-product-spec.flex-row {
    flex-direction: column !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 20px !important;
  }

  .page--product-detail .text-wrapper_8.es-product-spec,
  .page--product-detail .es-product-spec:has(.es-product-spec-table) {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page--product-detail .es-product-spec .paragraph_1,
  .page--product-detail .es-product-spec .paragraph_2 {
    flex: 1 1 auto !important;
    width: 100% !important;
    text-align: left !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .page--product-detail .es-pd-features--cols343 .es-pd-feature__title,
  .page--product-detail .es-pd-features--cols22 .es-pd-feature__title {
    font-size: clamp(18px, 4.5vw, 22px) !important;
  }

  .page--product-detail .es-pd-features--cols343 .es-pd-feature__desc,
  .page--product-detail .es-pd-features--cols22 .es-pd-feature__desc {
    font-size: 15px !important;
  }

  .page--product-detail .es-pd-features--cols343 .es-pd-feature-col,
  .page--product-detail .es-pd-features--cols22 .es-pd-feature-col {
    gap: 28px !important;
  }

  /* H5：特性区装饰线与文案拉开间距 */
  .page--product-detail .es-pd-features {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .page--product-detail .es-pd-features .es-pd-feature-col {
    padding-left: 12px !important;
    box-sizing: border-box;
  }

  .page--product-detail .es-pd-features .es-pd-feature {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .page--product-detail .es-pd-features--cols343 .es-pd-feature-col:nth-child(2),
  .page--product-detail .es-pd-features--cols343 .es-pd-feature-col:nth-child(3) {
    margin-top: 25px !important;
  }

  .page--product-detail .es-pd-content-image {
    max-height: min(48vh, 380px);
  }

  .page--product-detail .text-wrapper_7.flex-row {
    padding: 0 4px;
    gap: 16px !important;
  }

  /* Portable（三个型号）H5：主图按横长图处理，减少竖向占比 */
  .page--product-swift-1k-1kpro .es-pd-hero-carousel__main-wrap,
  .page--product-swift-2k .es-pd-hero-carousel__main-wrap,
  .page--product-swift-4k-5k .es-pd-hero-carousel__main-wrap {
    height: clamp(220px, 42vh, 320px) !important;
    min-height: 220px !important;
    max-height: 320px !important;
    aspect-ratio: 16 / 9;
    margin-left: auto;
    margin-right: auto;
  }

  .page--product-swift-1k-1kpro .es-pd-hero-carousel__main-wrap .es-pd-hero-carousel__main,
  .page--product-swift-1k-1kpro .es-pd-hero-carousel__main-wrap .es-pd-hero-gallery__main,
  .page--product-swift-2k .es-pd-hero-carousel__main-wrap .es-pd-hero-carousel__main,
  .page--product-swift-2k .es-pd-hero-carousel__main-wrap .es-pd-hero-gallery__main,
  .page--product-swift-4k-5k .es-pd-hero-carousel__main-wrap .es-pd-hero-carousel__main,
  .page--product-swift-4k-5k .es-pd-hero-carousel__main-wrap .es-pd-hero-gallery__main {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  /* Utility 详情 H5：特性区防重叠，避免文本压到页脚 */
  .page--product-lfp-utility-scale-ess .es-pd-features--cols22,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 18px !important;
    padding: 20px 0 10px !important;
  }

  .page--product-lfp-utility-scale-ess .es-pd-features--cols22 .es-pd-feature-col,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 .es-pd-feature-col {
    width: 100% !important;
    height: auto !important;
    min-height: fit-content !important;
    gap: 14px !important;
    padding: 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
  }

  .page--product-lfp-utility-scale-ess .es-pd-features--cols22 .es-pd-feature,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 .es-pd-feature {
    margin-top: 0 !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .page--product-lfp-utility-scale-ess .es-pd-features--cols22 .es-pd-feature:first-child,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 .es-pd-feature:first-child {
    border-top: 0 !important;
    padding-top: 0 !important;
  }

  .page--product-lfp-utility-scale-ess .es-pd-feature[style],
  .page--product-sodium-ion-utility-scale-ess .es-pd-feature[style] {
    margin-top: 0 !important;
  }

  .page--product-lfp-utility-scale-ess .group_3.flex-col,
  .page--product-sodium-ion-utility-scale-ess .group_3.flex-col {
    overflow: visible !important;
    display: block !important;
    height: auto !important;
    min-height: fit-content !important;
    padding-bottom: 36px !important;
    margin-bottom: 22px !important;
  }

  .page--product-lfp-utility-scale-ess .es-page-main,
  .page--product-sodium-ion-utility-scale-ess .es-page-main {
    overflow: visible !important;
    padding-bottom: 20px;
  }

  .page--product-lfp-utility-scale-ess .es-pd-features--cols22 .es-pd-feature-col,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 .es-pd-feature-col,
  .page--product-lfp-utility-scale-ess .es-pd-features--cols22 .es-pd-feature,
  .page--product-sodium-ion-utility-scale-ess .es-pd-features--cols22 .es-pd-feature {
    transform: none !important;
    animation: none !important;
    filter: none !important;
  }

  .page--product-lfp-utility-scale-ess .es-site-footer,
  .page--product-sodium-ion-utility-scale-ess .es-site-footer {
    margin-top: 20px !important;
    clear: both;
    position: relative;
    z-index: 3;
  }

  /* Utility 指标数字（截图区域）H5 缩小一半 */
  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_19,
  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_21,
  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_23,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_25,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_27,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_29,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_19,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_21,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_23,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_25,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_27,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_29 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_20,
  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_22,
  .page--product-lfp-utility-scale-ess .group_3 .block_2 .text_24,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_26,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_28,
  .page--product-lfp-utility-scale-ess .group_3 .block_3 .text_30,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_20,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_22,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_2 .text_24,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_26,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_28,
  .page--product-sodium-ion-utility-scale-ess .group_3 .block_3 .text_30 {
    font-size: 16px !important;
    margin-top: 8px !important;
  }

  /* ========== 首页 H5：Hero 纵向排版、取消负 margin 与绝对定位表单 ========== */
  .page--home .group_2 {
    position: relative;
    padding-bottom: 32px;
  }

  .page--home .box_1.flex-row {
    width: 100% !important;
    margin-top: 8px !important;
    margin-left: 0 !important;
    align-items: flex-start;
    gap: 10px;
  }

  /* 绿点：避免 flex 交叉轴 stretch 把 10×10 拉成竖条椭圆 */
  .page--home .box_1 .group_3 {
    display: block !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: flex-start !important;
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
    aspect-ratio: 1;
    border-radius: 50% !important;
    margin-top: 4px;
    box-sizing: border-box;
  }

  .page--home .text_8 {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    white-space: normal !important;
    font-size: 13px;
    line-height: 1.4;
  }

  /* 主标题 + 配图：上下排列，避免 96px 标题裁切与图文重叠 */
  .page--home .box_2.flex-row {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 16px !important;
    margin-left: 0 !important;
    gap: 20px;
  }

  .page--home .text_9 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-right: 2px;
    box-sizing: border-box;
    font-size: clamp(30px, 7.2vw, 44px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
  }

  .page--home .image_1 {
    width: 100% !important;
    max-width: min(100%, 520px) !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain;
    display: block;
  }

  /* 桌面用负 margin 把说明拉上 hero；H5 取消，避免压在配图上 */
  .page--home .text_10 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 18px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(198, 212, 198, 0.98) !important;
    position: relative;
    z-index: 2;
  }

  .page--home .box_3.flex-row {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 20px 0 0 0 !important;
    gap: 12px;
  }

  .page--home a.es-cta {
    width: 100%;
    max-width: 100%;
  }

  .page--home .text-wrapper_2,
  .page--home .text-wrapper_3 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 工厂区 */
  .page--home .box_4.es-factory-section {
    margin-top: 40px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 24px;
    min-height: 0 !important;
  }

  .page--home .box_4.es-factory-section .box_5 {
    width: 100% !important;
  }

  .page--home .text-wrapper_4.es-factory-headline .paragraph_1,
  .page--home .text-wrapper_4.es-factory-headline .text_13 {
    font-size: clamp(24px, 5.5vw, 32px) !important;
    line-height: 1.2 !important;
  }

  .page--home .es-stats-grid {
    margin-top: 28px !important;
    max-width: 100% !important;
    gap: 18px 14px;
  }

  .page--home .es-stats-grid__item:nth-child(1),
  .page--home .es-stats-grid__item:nth-child(3) {
    width: auto !important;
  }

  .page--home .es-stats-grid .text_14,
  .page--home .es-stats-grid .text_15,
  .page--home .es-stats-grid .text_18,
  .page--home .es-stats-grid .text_20 {
    font-size: clamp(22px, 5vw, 30px) !important;
  }

  .page--home .image_2.es-factory-photo {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: min(88vw, 420px);
    object-fit: cover;
  }

  .page--home .text-group_3 {
    margin-top: 36px !important;
    height: auto !important;
    width: 100% !important;
    align-items: flex-start !important;
  }

  .page--home .text_22 {
    height: auto !important;
    font-size: clamp(24px, 5.5vw, 34px) !important;
    line-height: 1.15 !important;
  }

  .page--home .text_23 {
    width: 100% !important;
    height: auto !important;
    white-space: normal !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-top: 8px !important;
  }

  /* 产品卡：单列居中 */
  .page--home .box_7.es-product-cards {
    width: 100% !important;
    margin: 36px 0 0 0 !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }

  .page--home .es-product-card {
    width: 100% !important;
    max-width: 420px;
    min-height: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 底部 CTA 文案 */
  .page--home .text_36 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 40px 0 0 0 !important;
    font-size: clamp(24px, 5.5vw, 34px) !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    text-align: left !important;
  }

  .page--home .text_37 {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 12px 0 0 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  /* 装饰光晕在窄屏易错位，隐藏 */
  .page--home .box_13 {
    display: none !important;
  }

  /* 表单卡：取消绝对定位，随文档流 */
  .page--home .box_14 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 24px 0 0 0 !important;
    padding: 22px 16px 28px;
    box-sizing: border-box;
  }

  .page--home .es-home-form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  .page--home .es-home-form__row {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }

  .page--home .es-home-form__field {
    width: 100% !important;
  }

  .page--home .es-home-form__input,
  .page--home .es-home-form__select {
    font-size: 17px !important;
  }

  /* WhatsApp 浮动：高于正文、低于全屏菜单顶栏 */
  .page--home .label_2 {
    right: 12px !important;
    bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
    z-index: 1005;
  }

  /* ROI：表单双列变单列 */
  .page--calculate-roi .block_2 {
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .page--calculate-roi .text-group_1 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 44px 0 0 !important;
  }

  .page--calculate-roi .text-wrapper_2 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.06 !important;
  }

  .page--calculate-roi .text-wrapper_2 .text_8,
  .page--calculate-roi .text-wrapper_2 .text_9 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(34px, 8.5vw, 48px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em !important;
  }

  .page--calculate-roi .text-group_1 .text_10 {
    width: 100% !important;
    height: auto !important;
    margin: 14px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .page--calculate-roi .box_1.flex-row {
    width: 100% !important;
    height: auto !important;
    margin: 26px 0 0 !important;
    flex-direction: column !important;
    gap: 14px;
  }

  .page--calculate-roi .group_1,
  .page--calculate-roi .group_2 {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  .page--calculate-roi .group_1 {
    padding: 16px 14px 18px !important;
    box-sizing: border-box;
  }

  .page--calculate-roi .group_2 {
    padding: 18px 14px !important;
    box-sizing: border-box;
  }

  .page--calculate-roi .group_1 > *,
  .page--calculate-roi .group_2 > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page--calculate-roi .es-roi-form,
  .page--calculate-roi .es-roi-form > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page--calculate-roi .es-roi-form > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page--calculate-roi .es-roi-form .box_2 {
    margin-top: 0 !important;
    height: auto !important;
    align-items: center;
    justify-content: space-between !important;
  }

  .page--calculate-roi .es-roi-form .es-roi-help-btn {
    margin-left: auto !important;
  }

  .page--calculate-roi .es-roi-form .text_11,
  .page--calculate-roi .es-roi-form .text_20 {
    height: auto !important;
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_3,
  .page--calculate-roi .es-roi-form .text-wrapper_7,
  .page--calculate-roi .es-roi-form .text-wrapper_9,
  .page--calculate-roi .es-roi-form .text-wrapper_12 {
    height: auto !important;
    margin-top: 16px !important;
  }

  .page--calculate-roi .es-roi-form .text_12,
  .page--calculate-roi .es-roi-form .text_13,
  .page--calculate-roi .es-roi-form .text_21,
  .page--calculate-roi .es-roi-form .text_23,
  .page--calculate-roi .es-roi-form .text_24 {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_3 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    column-gap: 12px;
    row-gap: 8px;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_9 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    column-gap: 12px;
    row-gap: 8px;
    width: 100% !important;
    min-width: 0 !important;
  }

  .page--calculate-roi .es-roi-form .box_3.flex-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_4,
  .page--calculate-roi .es-roi-form .text-wrapper_5,
  .page--calculate-roi .es-roi-form .text-wrapper_8,
  .page--calculate-roi .es-roi-form .text-wrapper_10,
  .page--calculate-roi .es-roi-form .text-wrapper_11 {
    width: 100% !important;
    height: 52px !important;
    border-radius: 16px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .page--calculate-roi .es-roi-input {
    min-height: 52px !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 22px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_4 .es-roi-input,
  .page--calculate-roi .es-roi-form .text-wrapper_5 .es-roi-input,
  .page--calculate-roi .es-roi-form .text-wrapper_10 .es-roi-input,
  .page--calculate-roi .es-roi-form .text-wrapper_11 .es-roi-input {
    padding: 0 16px !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_8 .es-roi-input {
    padding: 0 16px !important;
  }

  .page--calculate-roi .es-roi-form .box_4.flex-row,
  .page--calculate-roi .es-roi-form .box_3.flex-row,
  .page--calculate-roi .es-roi-form .box_5.flex-row,
  .page--calculate-roi .es-roi-form .box_6.flex-row,
  .page--calculate-roi .es-roi-form .box_7.flex-row {
    width: 100% !important;
    height: auto !important;
    margin-top: 14px !important;
    min-width: 0 !important;
  }

  .page--calculate-roi .es-roi-form .box_4.flex-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 10px;
    align-items: start;
  }

  .page--calculate-roi .es-roi-form .box_6.flex-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page--calculate-roi .es-roi-form .text-group_2,
  .page--calculate-roi .es-roi-form .text-group_3 {
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
  }

  .page--calculate-roi .es-roi-form .text_16,
  .page--calculate-roi .es-roi-form .text_18 {
    width: auto !important;
    height: auto !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .page--calculate-roi .es-roi-form .text_17,
  .page--calculate-roi .es-roi-form .text_19 {
    width: auto !important;
    height: auto !important;
    margin: 6px 0 0 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .page--calculate-roi .es-roi-form .text-wrapper_12 .text_27 {
    margin-left: 0 !important;
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-align: left !important;
  }

  .page--calculate-roi .es-roi-calc-btn,
  .page--calculate-roi .text-wrapper_14.es-roi-pill-btn {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    margin: 0 !important;
  }

  .page--calculate-roi .es-roi-calc-btn .text_28,
  .page--calculate-roi .text-wrapper_14 .text_34 {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .page--calculate-roi .group_2 .text_29,
  .page--calculate-roi .group_2 .text_30,
  .page--calculate-roi .group_2 .text_32 {
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .page--calculate-roi .group_2 .text-group_4 {
    width: 100% !important;
    height: auto !important;
    margin-top: 16px !important;
  }

  .page--calculate-roi .group_2 .paragraph_1 {
    width: 100% !important;
    height: auto !important;
    font-size: clamp(40px, 11vw, 54px) !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
  }

  .page--calculate-roi .group_2 .text_31,
  .page--calculate-roi .group_2 .text_33 {
    width: 100% !important;
    height: auto !important;
    margin-top: 12px !important;
    font-size: clamp(28px, 8.8vw, 38px) !important;
    line-height: 1.05 !important;
  }

  .page--calculate-roi .group_2 .text_32 {
    margin-top: 18px !important;
  }

  .page--calculate-roi .group_2 .text-wrapper_14 {
    margin-top: 18px !important;
  }

  /* Contact：H5 完整适配 */
  .page--contact .section_2 {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .page--contact .box_1.es-contact-kicker {
    width: 100% !important;
    margin: 44px 0 0 !important;
  }

  .page--contact .box_3,
  .page--contact .text-group_1 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 12px 0 0 !important;
  }

  /* 避免 PC 稿的 min-height + justify-between 在 H5 把标题与说明撑到两端 */
  .page--contact .text-group_1.flex-col.justify-between {
    justify-content: flex-start !important;
    gap: 10px;
  }

  .page--contact .text-wrapper_2 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  .page--contact .text-wrapper_2 .text_9,
  .page--contact .text-wrapper_2 .text_10 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(34px, 8.5vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
  }

  .page--contact .text_11 {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .page--contact .box_4.flex-row {
    width: 100% !important;
    height: auto !important;
    margin: 24px 0 0 !important;
    flex-direction: column;
    gap: 14px;
  }

  .page--contact .group_1,
  .page--contact .group_2 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    border-radius: 20px !important;
    box-sizing: border-box;
  }

  .page--contact .group_1 {
    padding: 16px 14px 18px !important;
  }

  .page--contact .group_2 {
    padding: 18px 14px !important;
  }

  .page--contact .group_1 > *,
  .page--contact .group_2 > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page--contact .es-contact-form,
  .page--contact .es-contact-form > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page--contact .es-contact-form > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page--contact .es-contact-form .text_12 {
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    height: auto !important;
  }

  .page--contact .es-contact-form .text-wrapper_3,
  .page--contact .es-contact-form .text-wrapper_4 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    column-gap: 12px;
    row-gap: 8px;
    height: auto !important;
    margin-top: 16px !important;
  }

  .page--contact .es-contact-form .section_3,
  .page--contact .es-contact-form .section_4 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100% !important;
    height: auto !important;
    margin-top: 10px !important;
    min-width: 0 !important;
  }

  .page--contact .es-contact-form .section_3 .es-contact-field,
  .page--contact .es-contact-form .section_4 .es-contact-field {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 52px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .page--contact .es-contact-input {
    min-height: 52px !important;
    height: 100% !important;
    font-size: 20px !important;
    border-radius: 16px !important;
    padding: 0 16px !important;
  }

  .page--contact .es-contact-form .text_13,
  .page--contact .es-contact-form .text_14,
  .page--contact .es-contact-form .text_15,
  .page--contact .es-contact-form .text_16,
  .page--contact .es-contact-form .text_17 {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .page--contact .es-contact-form .text_17 {
    margin-top: 16px !important;
  }

  .page--contact .es-contact-interest-block {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 6px !important;
  }

  /* MESSAGE：与上方下拉区拉开间距（单独规则，避免与其它 label 的 margin 混写） */
  .page--contact .es-contact-form .text_19 {
    width: auto !important;
    height: auto !important;
    margin: 18px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .page--contact .es-contact-interest-trigger-wrap .es-home-form__select {
    height: 52px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
    padding: 0 14px 0 16px !important;
  }

  .page--contact .es-contact-interest-trigger-wrap .es-home-form__select-arrow {
    width: 22px !important;
    height: 22px !important;
  }

  .page--contact .es-contact-interest-menu.es-home-form__menu {
    bottom: calc(100% + 8px) !important;
    border-radius: 14px !important;
    padding: 6px !important;
  }

  .page--contact .es-contact-interest-menu .es-home-form__menu-item {
    min-height: 42px !important;
    font-size: 14px !important;
    padding: 10px 40px 10px 12px !important;
    border-radius: 10px !important;
  }

  .page--contact .es-contact-interest-menu .es-home-form__menu-item::after {
    width: 18px !important;
    height: 18px !important;
    right: 12px !important;
  }

  .page--contact .section_6.es-contact-field--message {
    width: 100% !important;
    min-height: 132px !important;
    height: auto !important;
    border-radius: 16px !important;
    margin-top: 10px !important;
  }

  .page--contact .es-contact-textarea {
    min-height: 132px !important;
    border-radius: 16px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
  }

  .page--contact button.es-contact-submit {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    margin: 14px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .page--contact .es-contact-submit .image-text_1 {
    width: auto !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page--contact .es-contact-submit .text-group_2 {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .page--contact .es-contact-submit .label_3 {
    margin: 0 !important;
    flex-shrink: 0;
    align-self: center !important;
  }

  .page--contact .group_2 .text_20 {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .page--contact .group_2 .label_4,
  .page--contact .group_2 .group_3,
  .page--contact .group_2 .image_1,
  .page--contact .group_2 .text_22,
  .page--contact .group_2 .image-text_2,
  .page--contact .group_2 .text_23,
  .page--contact .group_2 .text_24 {
    margin-top: 14px !important;
  }

  .page--contact .group_2 .group_3 {
    width: 100% !important;
    height: auto !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px;
  }

  .page--contact .group_2 .group_3 .label_5 {
    flex: 0 0 auto;
    margin: 0 !important;
  }

  .page--contact .group_2 .text_21,
  .page--contact .group_2 .text_22,
  .page--contact .group_2 .text_23,
  .page--contact .group_2 .text_24 {
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .page--contact .group_2 .text_21 {
    margin: 0 !important;
    flex: 1 1 auto;
    line-height: 1.35 !important;
    white-space: nowrap !important;
  }

  .page--contact .group_2 .image_1 {
    width: min(220px, 68vw) !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }

  /* 产品详情：规格表横向滑动 */
  .page--product-detail .es-product-spec,
  .page--product-detail .text-wrapper_8.es-product-spec {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  /* Media 页：首屏左右栏改为上下堆叠 */
  .page--media .box_1.flex-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page--media .box_1 .image_1 {
    width: 100% !important;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* 极窄屏：再收紧内边距 */
@media (max-width: 380px) {
  .page {
    padding-left: 12px;
    padding-right: 12px;
  }
}
