/* 修复WooCommerce产品页面表格显示问题 */
.woocommerce table,
.woocommerce-page table,
.wp-block-table table,
.entry-content table {
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table td,
.woocommerce table th,
.woocommerce-page table td,
.woocommerce-page table th,
.wp-block-table td,
.wp-block-table th,
.entry-content table td,
.entry-content table th {
    border: 1px solid #ddd !important;
    padding: 8px;
}

.woocommerce table thead,
.woocommerce-page table thead,
.wp-block-table thead,
.entry-content table thead {
    background-color: #f5f5f5;
    border-bottom: 2px solid #333 !important;
}

.woocommerce table tbody tr:nth-child(even),
.woocommerce-page table tbody tr:nth-child(even),
.wp-block-table tbody tr:nth-child(even),
.entry-content table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
