
/* 商品图片容器样式 */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;              /* 固定图片高度 */
}


/* 商品卡片悬停效果（可选） */
.product-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.product-image-big {

    width:250px;
    height: 250px;
    overflow: hidden;
    object-fit: fill;
    transition: transform 0.3s ease;
    border-radius: 16px;
}
/* 鼠标悬停时图片放大 */
.product-image-big:hover{
    transform: scale(1.25);
}



