/*音频播放器*/
@keyframes rotate-disk {
    100% {
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes rotate-disk {
    100% {
        -webkit-transform: rotateZ(360deg);
    }
}
/*主面板*/
.wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/*背景图片*/
.bg {
    background-color: #a0a0a0;
    background-attachment:fixed;
background-position:center;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 110%;
    width: 110%;    
    margin: -5%;
    background-size: cover;
    filter: url(blur.svg#blur);
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=20, MakeShadow=false); /* IE6~IE9 */   
   
}
.bg-cover {
    background: rgba(0, 0, 0, .4);
    height: 100%;
    width: 100%;
}
/*播放面板*/
.play-board {
    position: absolute;
    overflow: hidden;    
    width: 100%;
    height: 100%;
    color: white;    
}
/*右上角播放图标*/
.play-needle {
    position: absolute;
    top: -23px;
    left: 50%;
    margin: 0px -12px;
    z-index: 10;
    width: 100px;
    transform-origin: 20px 20px;
    transition: transform 0.4s;
    -webkit-transform-origin: 20px 20px;
    -webkit-transition: -webkit-transform 0.4s;
}
.pause-needle {
    transform: rotateZ(-25deg);
    -webkit-transform: rotateZ(-25deg);
}

.resume-needle {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
}
/*中间的播放图标*/
.disk-bg {
    width: 282px;
    height: 282px;
    position: absolute;
    left: 50%;
    top: 64px;
    margin: 0px -141px;
    background-color: rgba(251, 251, 251, 0.08);
    border-radius: 141px;
}
.disk-cover {
    width: 280px;
    height: 280px;
    position: absolute;
    left: 50%;
    top: 65px;
    margin: 0% -140px;
}

.disk-cover-animation {
    animation: rotate-disk 20s infinite normal linear;
    animation-play-state: paused;
    -webkit-animation: rotate-disk 20s infinite normal linear;
    -webkit-animation-play-state: paused;
}

.disk-transition {
    transition: left 0.8s ease-in-out;
    -webkit-transition: left 0.8s ease-in-out;
}

.disk-cover img {
    display: block;
    width: 100%;
}

.disk-cover .album {
    width: 68%;
    height: 68%;
    margin: 16%;
}

.disk-cover .disk-border {
    position: absolute;
    top: 0px;
}
#player {
    display: none;
}
/*控制面板*/
.process {
    width: 350px;
    height: 50px;
    position: absolute;
    bottom: 100px;
    margin: 0px -175px;
    left: 50%;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;

}
/*进度条*/
.process .process-bar {
    position: absolute;
    left: 36px;
    width: 280px;
    margin-top: 5px;
    background-color: #615D5C;
}

.process-bar .rdy {
    background-color: #B1ADAC;
    height: 2px;

}

.process-bar .cur {
    background-color: #FB0D0D;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
}

.cur .process-btn {
    cursor: pointer;
    background-image: url(../../Images/process_btn.png);
    background-size: cover;
    position: absolute;
    top: -9px;
    right: -13px;
    width: 22px;
    height: 22px;
    margin-left: -11px;
}

.process > span:first-child {
    position: absolute;
    left: 0px;
}

.process > span:last-child {
    position: absolute;
    right: 0px;
}
.c-btn {
    background-position: center;
    display: inline-block;
    -webkit-filter: brightness(0.9);
}

.c-btn:hover {
    -webkit-filter: brightness(1);
}


.control {
    position: absolute;
    text-align: center;
    width: 350px;
    bottom: 10px;
    height:105px;
    left: 50%;
    margin: 0px -175px;
}
.control .c-btn {
    cursor: pointer;
    background-position:center;
    background-size: contain;
    width: 50px;
    height: 50px;
    margin: 20px 10px;
}

.control .c-btn.pre {
    background-image: url(../../Images/play_btn_prev.png);
}

.control .c-btn.play, .c-btn.pause {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.control .c-btn.play {
    background-image: url(../../Images/play_rdi_btn_play.png);
}

.control .c-btn.pause {
    background-image: url(../../Images/play_rdi_btn_pause.png);
}

.control .c-btn.next {
    background-image: url(../../Images/play_btn_next.png);
}

.control .c-btn.list-btn,.control .c-btn.loop-btn {
    width: 32px;
    height: 32px;
    margin-bottom: 30px;
}

.control .c-btn.list-btn{
    background-image: url(../../Images/play_icn_src.png);
}

.control .c-btn.loop-btn {
    position: relative;
    background-image: url(../../Images/play_icn_loop.png);
}

.control .c-btn.loop-btn.active:after {
    content: '1';
    position: absolute;
    top: 14px;
    font-size: 12px;
    left: 14px;
}

/*列表*/
.play-list {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 60%;
    max-height: 390px;    
    
    margin: 0 auto;
    bottom: -60%;
    overflow: hidden;
}

.play-list .list-title {
    position: relative;
    background: inherit;
    text-align: center;
    border-bottom: #ccc solid 1px;
    /*height: 20px;*/
    
    margin: 0px auto;
    font-size: 16px;
    height:45px;
    line-height:45px;
}

.play-list ul.list-content {
    /*
    margin: -20px 0 0 0;
    padding: 20px 4% 0 0;*/
    height: calc(100% - 45px);
    width: 100%;
    
    overflow-x: hidden;
    overflow-y: scroll;
}

ul.list-content > li {
    /*height: 16px;*/
    border-bottom: #E2DFDF solid 1px;
    font-size: 14px;
    padding: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul.list-content > li > span {
    font-size: 14px;
    color: #A0A0A0;
    overflow: hidden;
}

li.active, li.active > span {
    color: #CF3D3A !important;
}

.song-play {
    display: inline-block;
    width: 17px;
    height: 15px;
    margin-right: 5px;
    background-size: cover;
    background-image: url("../Images/song_play_icon.png");
}

@media screen and (max-height: 650px) {
    .process {
        width: 320px;
        height: 20px;
        position: absolute;
        margin: 0px -160px;
    }

    .process .process-bar {
        left: 40px;
        width: 240px;
    }

    .disk-bg {
        width: 252px;
        height: 252px;
        position: absolute;
        left: 50%;
        top: 50px;
        margin: 0px -126px;
        background-color: rgba(251, 251, 251, 0.08);
        border-radius: 126px;
    }

    .disk-cover {
        width: 250px;
        height: 250px;
        left: 50%;
        top: 52px;
        margin: 0px -125px;
    }

    .play-needle {
        top: -20px;
        margin: 0px -12px;
        width: 85px;
        transform-origin: 16px 16px;
    }

    .control .c-btn {
        width: 45px;
        height: 45px;
        margin: 14px 8px;
    }

    .control .c-btn.play, .c-btn.pause {
        width: 62px;
        height: 62px;
        margin-bottom: 8px;
    }

    .control .c-btn.list-btn,.control .c-btn.loop-btn {
        width: 36px;
        height: 36px;
        margin-bottom: 20px;
    }

    .cur .process-btn {
        width: 20px;
        height: 20px;
    }
}
