/* 
 * 产品图片尺寸标准化
 * 确保首页的三张产品图片大小一致
 */

/* 首页产品展示部分 */
.products .product-image {
    position: relative;
    width: 100%;
    height: 250px; /* 调整为更小的固定高度 */
    overflow: hidden;
}

.products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 产品页面产品展示部分 */
.product-list .product-image {
    position: relative;
    width: 100%;
    height: 250px; /* 与首页保持一致的高度 */
    overflow: hidden;
}

.product-list .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} 

/* 强制覆盖其他可能的样式 */
.product-item .product-image {
    height: 250px !important;
}

.product-item .product-image img {
    height: 100% !important;
    object-fit: cover !important;
} 