@keyframes audio_rotate {
    0%{
        transform: rotateZ(0deg);
    }
    50%{
        transform: rotateZ(180deg);
    }
    100%{
        transform: rotateZ(360deg);
    }
}
@keyframes progress_move {
    0%{
        width: 0;
    }
    50%{
        width: 50%;
    }
    100%{
        width: 100%;
    }
}
.audio_main {
    position: relative;
}
#audio_box{
    width: 230px;
    max-height: 372px;
    box-sizing: border-box;
    position: fixed;
    z-index: 99999;
    right: -230px;
    top: 300px;
    color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    /* box-shadow: -4px 7px 5px rgba(0,0,0,.5); */
    padding: 0 10px 10px 10px;
    font-size: 18px;
    transition: right .5s;


    -webkit-touch-callout: none; /* iOS Safari */

    -webkit-user-select: none; /* Chrome/Safari/Opera */

    -khtml-user-select: none; /* Konqueror */

    -moz-user-select: none; /* Firefox */

    -ms-user-select: none; /* Internet Explorer/Edge */

    user-select: none; /* Non-prefixed version, currently

not supported by any browser */
}
#play_speed_box{
    font-size: 0;
    justify-content: space-around;
    width: 100%;
    display: flex;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 2px solid #fff;
    position: relative;
    z-index: 2;
}
.speed_item {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
}
#play_speed_box .active{
    background-color: #fff;
    color: #b29370;
    border: 1px solid #D1AC7C;
}
#audio_play_box{
    /*font-weight: 700;*/
    height: 130px;
    position: relative;
    z-index: 2;
    margin-top: 18px;
    overflow: hidden;
}
#audio_canvas{
    position: absolute;
    top: -20px;
    left: 11px;
    width: 190px;
    height: 190px;
    z-index: 99;
}
#audio_image{
    position: absolute;
    left: 61px;
    top: 30px;
    width: 90px;
    height: 90px;
    content: '';
    background: url("./image/header.png");
    background-size: cover;
    text-align: center;
    border-radius: 50%;
    box-shadow: -2px 3px 5px rgba(0,0,0,.5);
    z-index: 100;
}
#audio_image_contro{
    display: inline-block;
    margin-top: 25px;
    width: 50px;
    height: 50px;
}
/*#audio_box:before{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #fff url("./image/audio_bg.jpg") no-repeat;*/
/*    background-size: cover;*/
/*    opacity: .2;*/
/*    z-index: -999;*/
/*}*/

#audio_box li{
    list-style: none;
    padding: 0;
    margin: 0;
}
#audio_lists_ul li .list_contro{
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;

}
#audio_lists_ul .active .audio_name{
    color: #cca78c;
    font-size: 15px;
    font-weight: 700;
}
.list_contro img{
    width: 24px;
    height: 24px;
}
#audio_lists_ul{
    overflow: scroll;
    max-height: 130px;
    padding: 0;
    margin: 0;
}
#audio_lists_ul::-webkit-scrollbar {display:none}

#current_contro_img{
    width: 25px;
    height: 28px;
}
#audio_current_name{
    width: 108px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#audio_show_contro{
    position: fixed;
    right: -30px;
    border-radius: 50%;
    top: 300px;
    width: 60px;
    height: 60px;
    background: url("./image/header.png");
    background-size: cover;
    transition: right 1s;
    z-index: 9;
}

.xl_audio{
    display: none;
}

#progress_time, #progress_current_time{
    position: absolute;
    top: 85px;
    font-size: 12px;
    right: 5px;
}
#progress_current_time{
    left: 8px;
}
#audio_lists_ul .audio_list_li{
    position: relative;
    list-style: none;
    padding: 5px 0;
    padding-right: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    height: 24px;
}

.player-box--bg {
    background: url(../image/wulai3.jpg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: blur(5px);
    opacity: 0.6;
    transform: translateZ(0);
}

.bg_player_mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .35);
}