


.audio-player {
    background: white;
    width: 280px;
    height: 350px;
    text-align: center;
    display: flex;
    flex-flow: row;
    position: relative;
}

.album-image {
    width: 280px;
    height: 350px;
    background-size: cover;
}

.player-controls {
    align-items: center;
    justify-content: center;
    margin-top:20px;
    flex: 3;
}

progress {
    width: 90%;
}

progress[value] {
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    color: blue;
    height: 5px;
}

progress[value]::-webkit-progress-bar {
    background-color: white;
    border-radius: 2px;
    border: 1px solid lighten(#acacac, 20%);
    color: blue;
}

progress::-webkit-progress-value {
    background-color: blue;
}

.playbtn {
    background-image: url('../img/ai/bofang.png');
    background-size: cover;
    width: 70px;
    height: 70px;
    left: 50%;
    top: 50%;
    margin-top: -55px;
    margin-left: -35px;
    position: absolute;
}

.playbtn.pause {
    background-image: url('../img/ai/zanting.png');
}
