/**
 * 自定义收藏功能样式
 * 只添加收藏状态支持，保持原有的 btn-collect 样式
 */

/* 已收藏状态 - 使用金色样式 */
.custom-collect-btn.collected {
    background: linear-gradient(45deg, #ffd700, #ffa500) !important;
    color: #333 !important;
}

.custom-collect-btn.collected:hover {
    background: linear-gradient(45deg, #ffa500, #ffd700) !important;
    color: #333 !important;
}

/* 星形脉冲动画 - 已收藏状态 */
.custom-collect-btn.collected i.fa-star {
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 