#audioBox {
    border-radius: 5px;
    box-sizing: border-box;
    border: 1px solid #ebf5ff;
    background: #ebf5ff;
}
#audioBox .audioControls {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}
#audioBox .audioControls .play {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#audioBox .audioControls .loading {
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#audioBox .audioControls .loading .svg{
    width: 20px;
    height: 20px;
    display: block;
    background: url('../img/loading.gif') center center no-repeat;
    background-size: 100%;
}
#audioBox .audioControls .pause {
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
#audioBox .audioControls .pause .svg{
    width: 20px;
    height: 20px;
    display: block;
    background: url('../img/bf.gif') center center no-repeat;
    background-size: 100%;
}
#audioBox .audioControls .play .svg{
    width: 20px;
    height: 20px;
    display: block;
    background: url('../img/bf1.png') center center no-repeat;
    background-size: 100%;
}
#audioBox .audioControls .time {
    width: 100px;
    font-size: 14px;
    display: flex;
    color: #2e7cf1;
}
#audioBox .audioControls .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
#audioBox .audioControls .right .bf {
    width: 112px;
    height: 28px;
    padding-left: 38px;
    border: 1px solid #597aba;
    border-radius: 28px;
    font-size: 14px;
    line-height: 27px;
    color: #597aba;
    background: url(../img/bg2.png) left 16px center no-repeat;
    box-sizing: border-box;
    cursor: pointer;
}
#audioBox .audioControls .time span {
    display: block;
    /*width: 50px;*/
}
#audioBox .audioControls .progressBox {
    flex: 1;
}
#audioBox .audioControls .progressBox .progress {
    width: 100%;
    height: 6px;
    border-radius: 20px;
    background: rgba(0,0,0,0.2);
    padding: 1px;
    box-sizing: border-box;
    overflow: hidden;
}
#audioBox .audioControls .progressBox .progress .progressBar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 20px;
    background: #2e7cf1;
}
#audioBox .audioControls .volume {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
#audioBox .audioControls .volume svg {
    width: 20px;
    height: 20px;
}