.播放器 {
    display: flex;
    align-items: center;
    width: 90%; 
    max-width: 960px;
    padding: 5px 5px 8px 5px;
    
    position: relative;
    margin: 10px auto; 
    z-index: 100;

    background: #ffd8d8;
    border-radius: 10px;
    box-shadow: 0 4px 8px 1px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    
    overflow: hidden;
    font-family: sans-serif;
    transition: 0.3s;

    /*禁止选中与拖拽*/
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    touch-action: manipulation;
    outline: none;
}

.播放器::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("专辑图.webp");
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.9);
    z-index: -1;
    transform: scale(1.2);
}

.专辑图 {
    width: auto;
    height: 360px;
    margin: 2px 2px 0px;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
    border-radius: 6px;/*圆角*/
    aspect-ratio: 1 / 1;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.播放按钮 {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.按钮 {
    height: 72px;
    width: 72px;
    border: none;
    border-radius: 50%;
    background: #ff3a3ad0;
    box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    color: white;
    cursor: pointer;
    font-size: 32px;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.按钮:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.按钮:active {
    transform: scale(0.95);
}

.进度条 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    display: flex;
    align-items: flex-end;
}

.条 {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1); 
    outline: none;
    cursor: pointer;
    margin: 0;
    transition: height 0.2s;
}

.进度条:hover .条 {
    height: 6px;
}

.条::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}

.进度条:hover .条::-webkit-slider-thumb {
    background: #ff3a3a;
}