/* 足球推荐卡片样式 */
.mini-master-card {
    min-height: 180px; /* 固定最小高度 */
    height: auto;
    transition: all 0.3s ease; /* 添加平滑过渡效果 */
    position: relative;
    overflow: hidden; /* 防止内容溢出 */
}

/* 图片加载时的占位样式 */
.mini-avatar-container {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.mini-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* 置顶标签样式优化 */
.mini-featured-badge {
    background: #ff2d2d;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 3px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 0;
}

/* 预加载内容时的占位效果 */
#football-panel .category-masters {
    min-height: 200px; /* 确保容器有最小高度 */
}

/* 确保内容区域有固定高度 */
.mini-master-intro {
    min-height: 20px;
    margin-bottom: 5px;
}

/* 确保底部信息区域有固定高度 */
.mini-master-footer {
    min-height: 30px;
} 