/* 1. 横向滚动容器：只作用产品详情页 */
.single-product .custom-product-page .style-table,
.single-product .style-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #ebebeb;
    margin: 25px 0;
}

/* 2. 表格基础设置 */
.single-product .custom-product-page table,
.single-product .style-table table {
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

/* 3. 单元格 */
.single-product .custom-product-page td,
.single-product .style-table td {
    padding: 16px 20px;
    white-space: nowrap;
    border-bottom: 1px solid #f0f0f0;
    color: #4a4a4a;
    font-size: 14px;
}

/* 4. 表头 */
.single-product .custom-product-page tr:first-child td,
.single-product .style-table tr:first-child td {
    background: #f8f9fa;
    font-weight: 600;
    color: #262626;
    border-bottom: 1px solid #e8e8e8;
}

/* 5. 悬停效果 */
.single-product .custom-product-page tr:hover td,
.single-product .style-table tr:hover td {
    background-color: #fafafa;
}

/* 6. 圆角处理 */
.single-product .custom-product-page tr:first-child td:first-child,
.single-product .style-table tr:first-child td:first-child {
    border-top-left-radius: 12px;
}

.single-product .custom-product-page tr:first-child td:last-child,
.single-product .style-table tr:first-child td:last-child {
    border-top-right-radius: 12px;
}

.single-product .custom-product-page tr:last-child td:first-child,
.single-product .style-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.single-product .custom-product-page tr:last-child td:last-child,
.single-product .style-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.single-product .custom-product-page tr:last-child td,
.single-product .style-table tr:last-child td {
    border-bottom: none;
}

/* 7. 滚动条美化 */
.single-product .custom-product-page .style-table::-webkit-scrollbar,
.single-product .style-table::-webkit-scrollbar {
    height: 6px;
}

.single-product .custom-product-page .style-table::-webkit-scrollbar-thumb,
.single-product .style-table::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

.single-product .custom-product-page .style-table::-webkit-scrollbar-track,
.single-product .style-table::-webkit-scrollbar-track {
    background: #f4f4f4;
}

/* ==========================================================================
联系页面
========================================================================== */
.map-dak p {
    font-size: 0;
}