/* 骨架的公共样式 */
.skeleton-card .skeleton-img,
.skeleton-card .skeleton-text {
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* 图片骨架 */
.skeleton-card .skeleton-img {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
}

/* 文本骨架 */
.skeleton-card .skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-card .skeleton-text.short {
  width: 60%;
}

/* 动画 */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
