/* 产品参数表格样式 */
.product-specs-table {
    margin-bottom: 0;
}

.product-specs-table .table-section-header td {
    background-color: var(--bg-light) !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    padding: 12px;
}

.product-specs-table .spec-label {
    width: 30%;
    font-weight: 600;
    color: var(--text-secondary);
    background-color: #fafbfc;
}

.product-specs-table .spec-value {
    width: 70%;
    color: var(--text-primary);
}

.product-specs-table td {
    padding: 12px 20px;
    vertical-align: middle;
}

/* 响应式处理 */
@media (max-width: 767.98px) {
    .product-specs-table .spec-label {
        width: 40%;
        font-size: 14px;
    }

    .product-specs-table .spec-value {
        width: 60%;
        font-size: 14px;
    }

    .product-specs-table td {
        padding: 10px 15px;
    }
}


/* ================================================
   产品详情页优化样式
   ================================================ */

/* 标签导航样式 */
.product-tab-nav {
    background: none;
    border-bottom: 2px solid var(--border-light);
}

.product-tab-nav .nav-link {
    background: none;
    border: none;
    border-radius: 0;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 12px 30px;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-fast);
}

.product-tab-nav .nav-link:hover {
    color: var(--primary-color);
}

.product-tab-nav .nav-link.active {
    color: var(--primary-color);
    background: none;
}

.product-tab-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

/* 现代化表格样式 */
.specs-table-modern {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-table-modern table {
    margin: 0;
    width: 100%;
}

.specs-table-modern table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.specs-table-modern table tbody tr:last-child {
    border-bottom: none;
}

/* 表格分组标题 */
.table-group-header td {
    background: var(--bg-light);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    padding: 15px 30px;
    text-align: center;
}

/* 表格内容单元格 */
.specs-table-modern .spec-name {
    width: 30%;
    background: #fafbfc;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 15px 30px;
    border-right: 1px solid var(--border-light);
}

.specs-table-modern .spec-content {
    width: 70%;
    color: var(--text-primary);
    padding: 15px 30px;
    text-align: left;
}

/* 详情介绍内容样式 */
.detail-intro-content {
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.detail-intro-content h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
}

.feature-detail-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.feature-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 下载内容样式 */
.download-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.download-item {
    padding: 20px 0;
}

.download-item h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .product-tab-nav .nav-link {
        padding: 10px 15px;
        margin: 0 5px;
        font-size: 14px;
    }

    .specs-table-modern .spec-name,
    .specs-table-modern .spec-content {
        padding: 12px 20px;
    }

    .specs-table-modern .spec-name {
        width: 40%;
        font-size: 14px;
    }

    .table-group-header td {
        padding: 12px 20px;
        font-size: 15px;
    }

    .download-item {
        text-align: center;
    }

    .download-item .col-md-4 {
        margin-top: 15px;
    }
}

/* 悬停效果 */
.specs-table-modern tbody tr:hover {
    background-color: var(--bg-hover);
}

/* 标签内容过渡效果 */
.tab-content .tab-pane {
    animation: fadeIn 0.3s ease;
}

