【
.product-section {
font-family: Arial, sans-serif;
line-height: 1.8;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
border: 1px solid #eee;
}
.product-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
color: #000;
}
.product-description {
font-size: 16px;
margin-bottom: 30px;
border-left: 4px solid #000;
padding-left: 15px;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.image-gallery img {
width: calc(33.333% – 10px); /* Adjust for 3 columns with gap /
height: auto;
max-width: 100%;
object-fit: cover;
border: 1px solid #ddd;
box-sizing: border-box;
}
@media (max-width: 600px) {
.image-gallery img {
width: calc(50% – 10px); / 2 columns on mobile */
}
}









微信扫一扫
还没有评论呢,快来抢沙发~