* {
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 250, 250, 0.933333);
}
body, ul, div, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    position: absolute;
    left: 50%;
    top: 36%;
    width: 1000px;
    height: 300px;
    transform: translate(-50%, -50%);
}
.music {
    padding: 50px 0;
}
.music__title {
    font-weight: normal;
}
.music__singer {
    margin: 8px 0 10px 0;
}
.music__currenttime {
    display: inline-block;
    min-width: 100px;
    font-size: 12px;
    color: #ccc;
}
.music__volumeicon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 14px;
    color: #666;
}
.music__volume {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 2px;
    border-radius: 2px;
    background-color: #dadada;
    cursor: pointer;
}
.music__volumebar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: rgb(155, 155, 155);
}
.music__player {
    float: left;
    width: 450px;
    padding: 0 20px;
    margin-top: 26px;
}
.music__album {
    float: left;
    width: 240px;
    height: 240px;
    border-radius: 120px;
    overflow: hidden;
}
.music__img {
    width: 100%;
    height: 100%;
}
.musics {
    width: 240px;
    padding: 20px;
}
.musics__list {
    height: 260px;
    padding: 0 24px;
    overflow-y: auto;
    overflow-x: hidden;
}
.musics__item {
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.musics__item:hover {
    color: #999;
}
.player__progress {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 10px 0 40px 0;
    background-color: #dadada;
}
.player__progressbar {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    background-color: rgb(107, 189, 122);
}
.player__play {
    margin-left: 8px;
    margin-right: 40px;
}
.player__play > .fa-play, .player__play > .fa-pause {
    font-size: 28px;
    cursor: pointer;
}
.player__speed, .player__next {
    margin-right: 20px;
}
.player__speed > .fa-forward, .player__next > .fa-step-forward, .player__style > .fa-refresh, .player__style > .fa-random {
    font-size: 26px;
    cursor: pointer;
}