/* 音乐播放器样式 */
.audio-container {
    position: fixed;
    bottom: 0%;
    right: 0%;
    /* transform: translateX(-50%); */
    width: 15rem;
    height: auto;
    padding: 10px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1000;
    cursor: default;
    font-family: MiSans;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    user-select: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.audio-container:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
}

.controls {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: flex-start; /* 左对齐 */
    margin-top: 10px; /* 为控制区留出一些顶部空间 */
}

#progress-container {
    width: 100%;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer; /* 允许点击 */
}

#progress-bar {
    height: 100%;
    background: #4caf50; /* 进度条的颜色 */
    width: 0%; /* 初始宽度为0 */
    border-radius: 5px;
}