/* 横向滚动核心 */
.woocommerce-Tabs-panel .style-table,
.wp-singular.page .style-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 表格最小宽度（关键！决定是否出现滚动） */
.woocommerce-Tabs-panel table,
.wp-singular.page table {
    min-width: 700px; /* 按你表格列数调 */
    border-collapse: collapse;
}

/* 单元格 */
.woocommerce-Tabs-panel td,
.wp-singular.page td {
    padding: 12px 16px;
    white-space: nowrap; /* 防止挤压换行 */
    border-bottom: 1px solid #e5e5e5;
}

/* 表头 */
.woocommerce-Tabs-panel tr:first-child td,
.wp-singular.page tr:first-child td {
    background: #f3f3f3;
    font-weight: 600;
}


.woocommerce-Tabs-panel .table-scroll::-webkit-scrollbar ,
.wp-singular.page .table-scroll::-webkit-scrollbar {
    height: 6px;
}

.woocommerce-Tabs-panel .table-scroll::-webkit-scrollbar-thumb ,
.wp-singular.page .table-scroll::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.woocommerce-Tabs-panel .table-scroll::-webkit-scrollbar-track ,
.wp-singular.page .table-scroll::-webkit-scrollbar-track {
    background: #eee;
}
