<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
* @Author: zxp
* @Date: 2020/4/2
* 音频展示
*/
.music_box{
    width: 95%;
    color: #333;
    background-color: #f2f2f2;
    line-height: 1.6;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
}
.audio_card {
    padding: 20px 20px 16px;
    line-height: 1.4;
}
.music_title{
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: rgba(0,0,0,0.9);
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.music_span{
    display: block;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 72px 0 0;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.music_left{
    float: left;
    width:  80%;
}
/*S icon*/
.wifi-circle {
    border: 2.5px solid rgb(7,193,96);
    border-radius: 50%;
    position: absolute;
    right: 1px;
    float: right;
}
.wifi-circle-bc{
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    right: 13px;
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.wifi-symbol {
    position: absolute;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    overflow: hidden;
    transform: rotate(135deg);
    /*position: relative;*/
    /*float: right;*/
    margin: 10px auto;
    margin-left: 13px;
}

.first {
    width: 6px;
    height: 6px;
    background: #cccccc;
    top: 15.5px;
    left: 15.5px;
    border: 3px solid rgb(7,193,96);
    border-radius: 50%;
}
.second {
    width: 18px;
    height: 18px;
    top: 9px;
    left: 9px;

}
.third {
    width: 30px;
    height: 30px;
    top: 2px;
    left: 2px;

}
.second-circle{
    animation: fadeInOut 1s infinite 0.2s;
}
.third-circle{
    animation: fadeInOut 1s infinite 0.4s;
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
        /*初始状态 透明度为0*/
    }

    100% {
        opacity: 1;
        /*结尾状态 透明度为1*/
    }
}
/*E icon*/
.music_bottom{
    width: 100%;
    height: 50px;
}

.progress {
    width: 100%;
    display: block;
    /*height: 4px;*/
    /*background: red;*/
    position: relative;
    padding-top: 20px;
    padding-bottom: 10px;
}
.info{
    width:  100%;
}
.current_time{
    float: left;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.total_time{
    float: right;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.progress_bg{
    width: 100%;
    background-color: #ccc;
    position: absolute;
    height: 2px;
}
.progress_bar {
    height: 2px;
    /*width: 15px;*/
    background: rgba(0,0,0,0.9);
    position: absolute;
    /*top: 0;*/
    /*left: 0;*/
    z-index: 1234;
}
.progress_btn{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    /*top: -4px;*/
    /*left: 15px;*/
    bottom: 4px;
    cursor: pointer;
}
.bc{
    width: 100%;
    background: #fff;
	padding-bottom: 40px;
}</pre></body></html>