/* 产品详情页样式 */

/* 产品详情容器 */
.product-detail-container {
    display: flex;
    margin: 100px 0 40px 0;
    gap: 50px;
}

@media (min-width: 992px) {
    .product-detail-image {
        flex: 0 0 45%;
    }
}

/* 左侧产品图片 */
.product-detail-image {
    background: #f9f9f9;

}

.product-detail-image img {
    width: 100%;
    display: block;
}

/* 右侧产品信息 */
.product-detail-info {
    flex: 1;
    padding: 20px 0;
}

.product-detail-title {
    font-size: 35px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-specs {
    margin-bottom: 25px;
}

.product-specs h3 {
    font-size: 16px;
    color: #444;
    font-weight: bold;
}

.product-advantages {
    margin-bottom: 40px;
}

.product-advantages h3 {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-advantages ol {
    padding-left: 20px;
}

.product-advantages li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* 按钮样式 */
.product-buttons {
    display: flex;
    gap: 15px;
    margin-top: 200px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold   ;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gray {
    background: #666;
    color: #fff;
}

.btn-blue {
    background: #165eb2;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}

/* 更多产品详情 */
.more-details {
    margin: 160px 0;
}

.more-details h2 {
    font-size:33px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.product-table {
    margin-bottom: 40px;
    overflow-x: auto;
}

.product-table img {
    width: 100%;
}

.text-introduction {
    margin-bottom: 40px;
}

.text-introduction h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.text-introduction p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .product-detail-container {
        flex-direction: column;
    }
    
    .product-detail-image {
        flex: none;
    }
    
    .product-buttons {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .product-detail-title {
        font-size: 24px;
    }
    
    .more-details {
        margin-top: 30px;
    }
    .more-details h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    .product-table{
        margin-bottom: 0;
    }
}