/* 修改 products.css */



.nav-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nav-pills .nav-link {
    color: #3D3D3D;
    background: none;
    border-radius: 0;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    font-size: 26px;
}

.nav-pills .nav-link.active {
    background: none;
    color: #0C71C0;
    font-weight: bold;
    position: relative;
    width: 100%;
    &::after{
        content: '';
        bottom:-2px;
        height: 6px;
        left: 16px;
        right:  16px;
        position: absolute;
        background: linear-gradient( 90deg,#0C71C0 0%,  rgba(216,216,216,0) 100%);
        border-radius: 24px;
    }
}

.nav-pills .nav-link:hover {
    color: #0C71C0;
}

/* 产品卡片样式 */
.product-card {
    background: #FFFFFF;
    box-shadow: 4px 4px 12px 0 #DCDCDC !important;
    border-radius: 0;
    padding: 20px;
    border: none;
    height: 100%;
}
.product-card-like{
    background: #FFFFFF;
    box-shadow: 4px 4px 12px 0 #DCDCDC !important;
    border-radius: 0;
    border: none;
    height: 100%;
    min-height: 287px;
    text-decoration: none;
}

/* 产品详情页样式 */
.product-detail {
    padding: 2rem 0;
    h1{
        font-weight: bold;
        font-size: 36px;
        color: #000000cc;
    }
    .lead{
        font-size: 20px;
        color: rgba(0,0,0,0.6);
        line-height: 36px;
    }
    .tab-content .tab-pane{
        font-size: 20px;
        color: rgba(0,0,0,0.8);
        line-height: 47px;
    }
}

.product-gallery {
    margin-bottom: 2rem;
}

.swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    margin-bottom: 1rem;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 4rem;
    display: flex;
    gap: 5.8rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #00000099;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    padding: 0;
}

.nav-tabs .nav-link.active {
    color: #0C71C0;
    border-bottom: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 10px;
    }

    .product-card {
        padding: 15px;
    }

    .nav-pills {
        justify-content: flex-start;
    }

    .nav-pills .nav-link {
        padding: 0.25rem 0.75rem;
    }

    .swiper {
        height: 300px;
    }

    .nav-tabs{
        gap: 0;
        margin-bottom: 2rem;
    }
    .nav-tabs .nav-link {
        padding: 0.5rem 0.4rem;
        font-size: 1.2rem;
    }
}