/* 播放器大小 */
.music-player {
    width: 300px;
	
}

/* 播放器位置 */
.music-player {
    position: relative;
    margin: 0 auto;
}

/* 歌曲列表 */

.music-player__list {
    width: 100%;
    padding: 10px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.music__list__item {
    padding-left: 25px;
    color: #ccc;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}

.music__list__item:last-of-type {
    margin: 0;
}

.music__list__item.play {
    color: #fff;
}

.music__list__item.play:before {
    font-family: 'iconfont';
    content: "\e87a";
    position: absolute;
    left: 0px;
    top: 4px;
}


/* 播放器主体 */
.music-player__main {
    height: 353px;
    padding: 25px;
  background:url(/images/bfqb.jpg) top center no-repeat;
    box-shadow: 0 0 10px rgba(47, 117, 231, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.music-player30__main {
    width: 430px;
	height:550px;
    padding: 25px;
  background:url(/images/qccdb.jpg) top center no-repeat;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* 播放器主体模糊背景 */
.music-player__blur {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('../images/songs/choubaguai.jpg') no-repeat center;
    background-size: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-filter: blur(20px);
    filter: blur(20px);
}
.qd-main-right {
    float: right;
    /* width: 70%; */
}

/* 播放器唱片效果 */
.music-player__disc {
    float: left;
    width: 130px;
    height: 130px;
    background: url(../images/cd.png) no-repeat center;
    background-size: 100%;
    position: relative;
}

/* 唱片指针 */
.music-player__pointer {
    width: 25px;
    position: absolute;
    right: -10px;
    top: 0;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 唱片指针播放状态 加play类名 */
.music-player__pointer.play {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* 唱片歌曲图片 */
.music-player__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}


/* 播放器控件 */

.music-player__controls {
   width: 250px;
    height: 30px;
    margin-top: 140px;
    float: right;
}
.music-player__controls30 {
   width: 380px;
    height: 30px;
    margin-top: 260px;
    float: right;
}
/* 歌曲信息 */
.music__info {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
}

.music__info .music__info--title,
.music__info .music__info--singer {
    color: #fff;
}

.music__info .music__info--title {
    font-size: 16px;
}

.music__info .music__info--singer {
    color: #ccc;
    font-size: 14px;
    margin-top: 10px;
}

/* 控件 */

.player-control {
    width: 100%;
}

.player-control__content {
    margin-bottom: 5px;
    overflow: hidden;
}

/* 播放暂停按钮 */
.player-control__btns {
   
    overflow: hidden;
    background: #2f75e7;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.player-control__btns30 {
   
    overflow: hidden;
    background: #ff6965;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
}

.player-control__btn {
  
      margin: 0 auto;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 95px;
    height: 80px;
    width: 80px;
}


.player-control__volume {
    float: right;
    overflow: hidden;
}

.control__volume--progress {
    float: left;
    width: 100px;
    position: relative;
    top: 8px;
}

.player__song--timeProgess{
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    padding: 0px 3px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.nowTime{
    float: left;
}
.totalTime{
    float: right;
}

.progress {
    background: rgba(0, 0, 0, 0.3);
    height: 5px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) inset;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress .back {
    width: 0px;
    height: 100%;
    border-radius: 2px;
    background: rgb(12, 182, 212);
}

.progress .pointer {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: absolute;
    top: -1px;
    left: 0;
}

.progress:hover .pointer {
    opacity: 1;
}


/* 播放 画片 动画 */

@-webkit-keyframes disc {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes disc {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.music-player__image.play {
    -webkit-animation: disc 5s linear 0s infinite;
    animation: disc 5s linear 0s infinite;
}


/*  播放进度  */

.player__song--progress {
    width: 100%;
    margin-top: 15px;
}

.music-player30__main {
    width: 430px;
    height: 500px;
    padding: 25px;
    background: url(/images/qccdb.jpg) top center no-repeat;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 2560px) {

.qd-main-right {
    float: right;
    width: 55%;
}
}
@media (max-width: 1450px) {

.music-player30__main {
    width: 320px;
    height: 400px;
    padding: 25px;
    background: url(/images/qccdb.jpg) top center no-repeat;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.music-player__controls30 {
    width: 270px;
    height: 30px;
    margin-top: 180px;
    float: right;
}
}

@media (max-width: 1366px) {
.qd-main-right {
    float: right;
   width: 70%;
}
.music-player__controls30 {
    width: 220px;
    height: 30px;
    margin-top: 140px;
    float: right;
}
.music-player30__main {
    width: 280px;
    height: 350px;
    padding: 25px;
    background: url(/images/qccdb.jpg) top center no-repeat;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
}
@media (max-width: 991px) {
.qd-main-right {
    float: right;
    width: 55%;
    margin-top: 30px;
}
.music-player30__main {
    width: 300px;
    height: 360px;
    padding: 25px;
    background: url(/images/qccdb.jpg) top center no-repeat;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.music-player__controls30 {
    width: 250px;
    height: 30px;
    margin-top: 150px;
    float: right;
}
}
@media (max-width: 767px) {

.qd-main-right {
    float: right;
    width: 100%;
    margin-top: 30px;
}
}
@media (max-width: 680px) {
	.player-control {
    width: 260px;
    margin-left: 0px;
}
.music-player__controls30 .player-control {
    width: 250px;
    margin-left: -50px;
}
.player-control__btns30 {
    overflow: hidden;
    background: #ff6965;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
}
@media (max-width: 375px) {
.player-control {
    width: 250px;
    margin-left: 0px;
}
.music-player__controls30 .player-control {
    width: 250px;
    margin-left: -50px;
}
.player-control__btns30 {
    overflow: hidden;
    background: #ff6965;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
}
@media (max-width: 320px) {
.player-control {
    width: 250px;
    margin-left: 0px;
}
.music-player__controls30 .player-control {
    width: 250px;
    margin-left: -50px;
}
.player-control__btns30 {
    overflow: hidden;
    background: #ff6965;
    border-radius: 100px;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
.music-player30__main {
    width: 282px;
    height: 320px;
    padding: 25px;
    background: url(/images/qccdb.jpg) top center no-repeat;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(179, 50, 42, 0.5);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.music-player__controls30 {
    width: 240px;
    height: 30px;
    margin-top: 135px;
    float: right;
}
}