/* SEO / Core Web Vitals 辅助样式
 * 固定卡片图比例，图片加载时不产生布局抖动（减少 CLS，利于搜索排名）。
 * 卡片图外壳类：列表页产品/新闻/案例缩略图容器。
 */
.product-item-img,
.news-item-img,
.case-item-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}
.product-item-img img,
.news-item-img img,
.case-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
