/* 产品详情页专用样式 */
.product-info {
    color: #fff;
}

.product-title {
    font-size: 2rem; /* 可根据需要调整 */
    font-weight: bold;
    margin-bottom: 10px;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: gold;
    margin: 50px 0;
}

.product-model {
    font-size: 1rem;
    margin-bottom: 10px;
}

.highlights p {
    margin-bottom: 5px;
}

.highlights small {
    font-size: 0.9rem;
    font-weight: normal;
    color: #e6e6e6;
}

/*面包屑导航*/
.breadcrumb a{ color:#fff; text-decoration:none}

.breadcrumb a:hover{ color:#002fa7; text-decoration:none}


/*产品截面图*/
.col-md-5-equal {
    flex: 0 0 20%;
    max-width: 20%;
}
@media (max-width: 768px) {
    .col-md-5-equal {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.thumbnail-container {
    background-color: #f8f8f8;
    padding: 8px;
    transition: all 0.3s ease;
}
.thumbnail-container:hover {
    transform: scale(1.03);
}
.section-title {
    font-size: 1.2rem;
    color: #fff;
}



.fk-product-detail {
    background-color: #000;
    color: #fff;
}

.fk-product-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fk-product-detail .product-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden; /* 添加overflow控制 */
}

.fk-product-detail .product-image {
   
    object-fit: cover;
}

.fk-product-detail .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.fk-product-detail .product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fk-product-detail .product-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.fk-product-detail .product-specs {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: #333;
}

.fk-product-detail .specs-table {
    width: 100%;
}

.fk-product-detail .specs-table th,
.fk-product-detail .specs-table td {
    border: 1px solid #ddd;
    padding: 1rem;
}

.fk-product-detail .specs-table th {
    background-color: #f8f9fa;
} 


/*产品详情参数*/
  #product-detail-page .number-box {
            width: 60px;
            height: 60px;
            background-color: #002fa7;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 20px;
            z-index: 1;
            left: 10px;
        }
        #product-detail-page .content-box {
            background-color: #f1f2f3;
            color: #6c757d;
            padding: 20px;
            margin-top: -10px;
            
        }
        #product-detail-page .content-box h3 {
            font-weight: bold;
            color: #6c757d;
            margin-top: 10px;
            border-bottom: 1px solid #0d6efd;
            line-height: 1.8;
        }
        #product-detail-page .content-box p::before {
            content: "✓";
            color: #0d6efd;
            margin-right: 10px;
        }
         #product-detail-page .content-box br::before {
            content: "✓";
            color: #0d6efd;
            margin-right: 10px;
        }