@font-face {
    font-family: 'iconFont';
    src: url('icons/iconfont.ttf');
}
*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    background: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.btn{
    font-family: 'iconFont';
}
.music_player{
    position: relative;
    width: 400px;
    height: 200px;
}
.head,.controls{
    width: 360px;
    height: 120px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 20px 0 rgba(0,0,0,0.75);
}
.head{
    margin: 0 auto;
    background: #ddd;
    cursor: default;
}
.content{
    padding-top: 12px;
    padding-left: 120px;
}
.content>h2{
    font-size: 18px;
}
.content>h3{
    font-size: 12px;
    color: #666;
}
.controls{
    width: 400px;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}
.bg{
    width: 100%;
    height: 100%;
    background: url('pics/1011385325.jpg');
    filter: blur(8px);
    position: absolute;
    z-index: 1;
}
.cd{
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 20px;
    border: 5px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
    
}
.cd>img{
    width: 100%;
    height: 100%;
}
.dot{
    width: 30px;
    height: 30px;
    border-radius: 20px;
    position: absolute;
    background: #fff;
    top: 40px;
    left: 40px;
}
.playing{
    padding-top: 14px;
    position: relative;
}
.playing span{
    font-size: 10px;
    position: absolute;
    margin-top: -14px;
}
.endTime{
    right: 40px;
    text-align: right;
}
.startTime{
    background: rgba(0,0,0,.5);
    padding: 0 .25em;
    color: #fff;
    border-radius: 5px;
}
.line{
    width: 200px;
    height: 5px;
    background: #666;
}
.now{
    width: 5px;
    height: 5px;
    background: skyblue;
}
.box{
    width: 5px;
    height: 5px;
    background: #fff;
    float: right;
}
.btns{
    width: 220px;
    position: absolute;
    padding-left: 160px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    z-index: 2;
}
.btn{
    width: 50px;
    height: 50px;
    font-size: 36px;
    border: 0;
    background: rgba(255,255,255,.25);
    border-radius: 10px;
    color: rgba(0,0,0,0.5);
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
}
#pause{
    display: none;
}
.btn:hover,
.clk{
    color: #fff;
    background: rgba(0,0,0,0.25);
    border: 1px solid #fff;
}
.run{
    animation: run 10s infinite linear ;
}
@keyframes run {
    100%{transform: rotate(360deg);}
    
}
.big{
    background: deepskyblue;
    border: 1px solid #fff;
    box-shadow: 0 0 5px 0 #000;
    margin-top: -1px;
}
#lrc{
    padding: 2em 0;
    color: #999;
    text-align: center;
    width: 360px;
}