
    /* =========================================================
       V19 MOBILE STRATEGY
       手机端不再使用任何复制表头/复制首列覆盖层：
       1) 第一行直接使用原始 table thead；
       2) 上下滚动时仅用原生 sticky 固定第一行；
       3) 左右滑动时，整行表头与正文一起移动；
       4) 手机端第一列不固定，避免覆盖层抢占触摸；
       5) 底部常驻横向滚动条继续保留。
       ========================================================= */
    @media screen and (max-width: 767px) {
      /* 彻底关闭手机端的镜像覆盖层，避免它挡住原始表格的触摸区域。 */
      .comiled-detail .comiled-fixed-header-viewport,
      .comiled-detail .comiled-fixed-left-viewport,
      .comiled-detail .comiled-fixed-corner {
        display: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
      }

      /* 手机端由原始滚动容器直接接收横向和纵向手势。 */
      .richtext .comiled-spec-scroll,
      .rich-text-description .comiled-spec-scroll,
      #J-rich-text-description .comiled-spec-scroll,
      .comiled-detail .comiled-spec-scroll,
      .richtext .comiled-table-wrap,
      .rich-text-description .comiled-table-wrap,
      #J-rich-text-description .comiled-table-wrap,
      .comiled-detail .comiled-table-wrap {
        overflow-x: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x pan-y pinch-zoom !important;
        overscroll-behavior-x: auto !important;
        overscroll-behavior-y: auto !important;
        scroll-behavior: auto !important;
      }

      .comiled-detail .comiled-spec-scroll *,
      .comiled-detail .comiled-table-wrap * {
        touch-action: inherit !important;
      }

      /* 第一行只固定上下方向；不设置 left，因此会随正文一起左右滑动。 */
      .comiled-detail .comiled-spec-table thead th,
      .comiled-detail .comiled-info-table thead th {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 12 !important;
        transform: none !important;
        will-change: auto !important;
        background: #f2f4f7 !important;
        box-shadow: 0 2px 5px rgba(22, 28, 45, 0.08) !important;
      }

      /* 左上角也不固定横向，和其他型号表头一起移动。 */
      .comiled-detail .comiled-spec-table thead th:first-child,
      .comiled-detail .comiled-info-table thead th:first-child {
        left: auto !important;
        z-index: 12 !important;
        box-shadow: 0 2px 5px rgba(22, 28, 45, 0.08) !important;
      }

      /* 手机端第一列完全取消固定。 */
      .comiled-detail .comiled-spec-table tbody th[scope="row"],
      .comiled-detail .comiled-info-table tbody th,
      .comiled-detail .comiled-spec-table tbody td:first-child,
      .comiled-detail .comiled-info-table tbody td:first-child {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: auto !important;
        transform: none !important;
        will-change: auto !important;
        box-shadow: none !important;
      }
    }
  