.prod-spec-header {
    margin-bottom: 50px;
    text-align: center;
}

.prod-spec-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.prod-spec-desc {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 参数列表容器 */
.prod-spec-container {
    max-width: 1200px;
    margin: 0 auto !important;
    background: #ffffff;
    /* border: 1px solid #e2e8f0; */
    /* border-radius: 20px; */
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03); */
    overflow: hidden;
}

/* 参数项：两列布局+分隔线 */
.prod-spec-item {
    display: flex;
    align-items: center;
    padding: 22px 30px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.25s ease;
}

/* 最后一项去掉分隔线 */
.prod-spec-item:last-child {
    border-bottom: none;
}

/* hover高亮：克制高级 */
.prod-spec-item:hover {
    background-color: #dddddd;
}

/* 参数分类图标：点缀作用 */
.prod-spec-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f1f5f9; */
    color: #64748b;
    border-radius: 10px;
    /* margin-right: 20px; */
    flex-shrink: 0;
}

/* 参数名称：深灰+加粗，视觉重点 */
.prod-spec-name {
    flex: 0 0 100px;
    font-weight: 600;
    font-size: 16px;
    color: #334155;
}

/* 参数值：中灰，清晰易读 */
.prod-spec-value {
    flex: 1;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}
.product-image-container img {
    max-height: 25rem;

}
/* 响应式适配：移动端优化 */
@media (max-width: 1100px) {
    .prod-spec-title {
        font-size: 1.8rem;
    }

    .prod-spec-container {
        margin: 0 15px;
        border-radius: 16px;
    }

    .prod-spec-item {
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .prod-spec-icon {
        margin-right: 15px;
        width: 36px;
        height: 36px;
    }

    .prod-spec-name {
        flex: 0 0 75%;
        margin-bottom: 8px;
    }

    .prod-spec-value {
        flex: 1;
        margin-left: calc(36px + 15px);
        /* 对齐图标右侧 */
    }
    .product-image-container{
        margin-bottom: 20px;
    }
    .product-image-container img{
        object-fit: contain !important;
        height: 300px !important;
        display: block;
        margin:auto;
        
    }
    .wide-container .product-text-container{
        padding: 0 2rem !important;
    }

    .product-banner .wide-container .row{
        flex-direction: column-reverse;
    }

    #navbar-container{
        height: 0px !important;
    }
}