@media (max-width: 1024px) {
  .panel {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
  }

  .panel > .table-scroll {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .panel > table,
  .panel > .table-scroll > table {
    display: table !important;
    width: max-content !important;
    min-width: 100% !important;
    table-layout: auto !important;
    white-space: nowrap !important;
  }

  .panel > table > thead,
  .panel > .table-scroll > table > thead { display: table-header-group !important; }
  .panel > table > tbody,
  .panel > .table-scroll > table > tbody { display: table-row-group !important; }

  .panel > table > thead > tr,
  .panel > .table-scroll > table > thead > tr,
  .panel > table > tbody > tr:not(.row-detail),
  .panel > .table-scroll > table > tbody > tr:not(.row-detail) {
    display: table-row !important;
  }

  .panel > table > thead > tr > th,
  .panel > .table-scroll > table > thead > tr > th,
  .panel > table > tbody > tr:not(.row-detail) > td,
  .panel > .table-scroll > table > tbody > tr:not(.row-detail) > td {
    display: table-cell !important;
    white-space: nowrap !important;
  }

  /* 订单表中只压缩商品名称和渠道，其他列可左右滑动查看 */
  .orders-table .cell-channel .ellipsis-text {
    display: block !important;
    max-width: 110px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  .orders-table .cell-product-name .ellipsis-text {
    display: block !important;
    max-width: 150px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .panel > .table-scroll > table > tbody > tr.row-detail { display: table-row !important; }
  .panel > .table-scroll > table > tbody > tr.row-detail > td {
    display: table-cell !important;
    white-space: normal !important;
  }
}