.music-player-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
    /* 增大上下内边距，比如将原本的 10px 改为 20px */
    padding: 3px 0;
    z-index: 999;
}

.music-player {
    max-width: 250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playing-file {
    font-size: 12px;
    margin-bottom: 5px;
}

.player-controls {
    display: flex;
    align-items: center;
    width: 100%;
}

.progress-bar {
    flex: 1;
    margin: 0 5px;
    height: 3px;
}

.control-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    min-width: 20px;
}

.control-btn:hover {
    background-color: #eaeaea;
}

.current-time,
.total-time {
    width: 30px;
    text-align: center;
    font-size: 12px;
}
.audio-menu {
    display: none;
    position: absolute;
    bottom: 40px; /* 根据实际情况调整位置 */
    left: 10px; /* 修改为左边定位 */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}