/* 封面：底板默认图 + 远程成功后再覆盖，避免远程失败时大面积灰块 */
.tipsy-cover-thumb,
.missav-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #2a2a2a;
  background-image: url("/assets/default-cover.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tipsy-cover-thumb img.tipsy-cover-state-loading,
.missav-card-thumb img.tipsy-cover-state-loading {
  opacity: 0;
}

.tipsy-cover-thumb img.tipsy-cover-state-loaded,
.tipsy-cover-thumb img.tipsy-cover-state-failed,
.missav-card-thumb img.tipsy-cover-state-loaded,
.missav-card-thumb img.tipsy-cover-state-failed {
  opacity: 1;
}

.tipsy-cover-thumb img,
.missav-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
