/* 歌词组件专属样式 */

.lyric {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1.2rem 0.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    line-height: 2.1;
    scroll-behavior: smooth;
    transition: background 0.3s;
    background: transparent;
}
.lyric-line {
    transition: color 0.2s, font-size 0.2s, background 0.3s;
    color: #888;
    font-size: 1.08rem;
    background: transparent;
    padding: 0.1rem 0;
}
.lyric-line.active {
    color: #C20C0C;
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(90deg, #fff 60%, #ffeaea 100%);
    border-radius: 8px;
    text-shadow: 0 2px 8px rgba(194,12,12,0.10);
    transition: color 0.2s, font-size 0.2s, background 0.3s;
}
.no-lyrics {
    color: #bbb;
    font-size: 1.1rem;
    margin-top: 2rem;
} 