/* 播放列表整体背景改为透明或深色 */
.aplayer .aplayer-list {
    background: rgba(30, 30, 30, 0.85) !important;
    border: none !important;
    color: #eee !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(10px);
}

/* 播放列表内每一项样式 */
.aplayer .aplayer-list ol li {
    color: #ccc !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

/* 鼠标悬停效果 */
.aplayer .aplayer-list ol li:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

/* 当前播放项高亮 */
.aplayer .aplayer-list ol li.aplayer-list-light {
    background: rgba(66, 185, 131, 0.3) !important;
    color: #fff !important;
}

/* 去掉滚动条的白边（可选） */
.aplayer .aplayer-list ol::-webkit-scrollbar {
    width: 6px;
}
.aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* 播放器整体统一风格 */
.aplayer {
    background: rgba(30, 30, 30, 0.6) !important;
    border: none !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.3) !important;
    border-radius: 12px;
}
