/* 产品列表展示 */
.page-product-list {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.page-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .page-product-card:hover {
        transform: translateY(-6px);
    }

    .page-product-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
    }

.page-product-info {
    padding: 15px;
    text-align: center;
}

    .page-product-info h3 {
        font-size: 16px;
        margin: 8px 0;
        color: #333;
    }

    .page-product-info p a{
        color: #E60012;
        font-weight: bold;
        font-size: 16px;
    }


/* 产品详情页展示 */
.productDetail-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
}

.productDetail-image {
    flex: 1 1 260px;
}

    .productDetail-image img {
        width: 100%;
        border-radius: 12px;
    }

.productDetail-details {
    flex: 1 1 400px;
}

    .productDetail-details h1 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #E60012;
    }

    .productDetail-details .price {
        font-size: 22px;
        color: #E60012;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .productDetail-details p {
        line-height: 1.6;
        margin-bottom: 20px;
    }

.productDetail-specs {
    background: #fff0f0;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
}



/* 新增：图文详情模块 */
.productDetail-section {
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .productDetail-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
        color: #E60012;
        text-align: center;
    }

    .productDetail-section p {
        margin-bottom: 20px;
        line-height: 1.8;
        text-align: justify;
        font-size: 15px;
    }

    .productDetail-section img {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        margin: 20px 0;
    }
