body {
    padding-top: 60px;
}

/* 参数样式 */
.params-section {
    padding: 40px 0;
}

.params-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.paramsBox {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.product-params-main {
    width: 100%;
}

.product-params-list {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    display: flex;
}

.product-params-list:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-mainTitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    width: 180px;
    padding-right: 15px;
}

.product-list-main {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.product-list {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    align-items: flex-start;
}

.product-list .title {
    width: 180px;
    font-weight: 500;
    color: #333;
    padding-right: 15px;
}

.product-list .params {
    flex: 1;
    color: #666;
    line-height: 1.5;
}

.product-list .remarks {
    color: #999;
    margin-left: 10px;
}

.product-list-imgBox {
    margin-bottom: 20px;
    width: 100%;
}

.product-list-imgBox img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
}

/* 外观图片样式 */
.appearance-section {
    margin-bottom: 40px;
}

.appearance-image {
    text-align: center;
    margin-bottom: 30px;
}

.appearance-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式样式 */
@media (max-width: 768px) {
    .product-list .title {
        width: 120px;
    }

    .paramsBox {
        padding: 20px 15px;
    }
    
    .product-list-main {
        flex-direction: column;
    }
    
    .product-params-list {
        flex-direction: column;
    }
    
    .product-mainTitle {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .product-list {
        flex-direction: column;
        padding: 10px 0;
    }

    .product-list .title {
        width: 100%;
        padding-bottom: 5px;
    }

    .product-list .params {
        width: 100%;
        padding-top: 5px;
    }
    
    .product-mainTitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
}