/* 全站统一占位图组件
 * 用途：把详情页 tab 缩略图、猜你喜欢、楼盘页房源列表、周边楼盘等
 * 原本分散的 emoji/文字占位块统一替换为 placeholder.jpg 图片占位。
 */
.unified-placeholder-img,
img.unified-placeholder-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background-color: #f5f5f5;
  border-radius: inherit;
}

/* 兼容：原有 emoji 占位容器若未被替换，也强制使用统一占位图 */
.pc-prop-thumb-placeholder,
.pc-nearby-thumb-placeholder,
.guess-card-img-placeholder,
.guess-card-img-ph {
  background-color: #f5f5f5 !important;
  background-image: url('/uploads/site/placeholder.jpg?v=1') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: transparent !important;
}
