.bg {
    width: 100%;
    height: 100vh;
    background: url(../img/1.jpg)no-repeat 50%/cover;
    filter: blur(5px);
    position: fixed;
    top: 0px;
    transform: scale(1.1);
}

.mask {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background: rgba(158, 149, 149, 0.2);
    z-index: 2;
}

.all {
    font-size: 12px;
    font-family: 'Courier New', Courier, monospace;
    /* border: 1px solid red; */
    width: 340px;
    height: 80px;
    position: absolute;
    margin: 100px auto 0;
    left: 0;
    right: 0;
    border-radius: 30px 0px 0px 30px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .8);
    z-index: 99;
}

.player {
    width: 65%;
    height: 100%;
    position: absolute;
    border-radius: 50% 50% 5px 5px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.616);
    right: 0;
    top: 0;
    box-shadow: 0 0 2px rgba(0, 0, 0, 1), inset 0 0 3px rgba(226, 79, 79, 0.541);
    transition: top .5s ease-in-out;
}

.sname {
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(219, 60, 60, 0.836);
    margin: 8px auto 8px;
}

.sn {
    text-align: left;
    color: rgb(62, 65, 65);
    margin-bottom: 6px;
    padding-left: 20px;
    font-family: monospace;
}

.time {
    color: rgba(32, 30, 30, 0.959);
    font-size: 11px;
}

.current-time {
    float: left;
    padding-left: 5px;
}

.total-time {
    float: right;
    padding-right: 5px;
}

.track {
    height: 3px;
    margin-bottom: 4px;
}

.track .track-time {
    display: none;
}

 .bar {
    height: 3px;
    width: 154px;
    left: 32px;
    position: absolute;
    border-radius: 1px;
}

.track .all-bar {
    background-color: rgba(206, 215, 224, 0.637);
    outline: 1px solid rgba(37, 36, 36, 0.459);
}

.all-bar:hover{
    cursor: pointer;
}

.track .track-bar {
    background-color: rgb(226, 95, 95);
    width: 20px;
}

.active {
    top: -85px;
}

.homepage {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 104, 133, 0.699);
    transition: all .5s linear;
    border-radius: 30px 0px 0px 30px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 1), inset 0 0 3px rgba(226, 79, 79, 0.541);
}
.homecolor{
    background-color: rgba(255, 255, 255, 0.582);
}

.singer {
    width: 73px;
    height: 73px;
    border: 3px solid rgba(245, 244, 244, 0.507);
    position: absolute;
    border-radius: 50%;
    left: 20px;
    top: 0;
    background: url(../img/1.jpg) no-repeat 50%/cover;
    background-clip: content-box;
    transition: top .3s linear,width .3s linear,height .3s linear,border .3s linear,left .3s linear;
}

.round {
    animation: turn 2s linear infinite;
    width: 85px;
    height: 85px; 
    top: -50px;
    left: 8px;
    border: 11px double rgba(228, 95, 95, 0.596);
    
    
}
 .point{
    width: 0;
    height: 0;
}
.singer .po{
    width: 11px;
    height: 11px;
    border: 1px solid rgba(0, 0, 0, 0.671);
    background-clip: content-box;
    border-radius: 50%;
    background-color: rgba(250, 245, 245, 0.726);
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s linear,height .3s linear;
}

@keyframes turn {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.control {
    background-color: white;
    /* background-image: linear-gradient(160deg, #e22453b7 20%,#ce5cebb7 80%); */
    height: 100%;
    width: 65%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
}

.control .colo{
background-color: rgba(255, 255, 255, 0.322);
padding: 4px;
box-shadow: 0 0 5px rgba(77, 75, 75, 0.63);
}

.con{
    /* background-color:rgba(228, 95, 95, 0.9); */
    background-image: linear-gradient(160deg, #eb9dbc 20%,#90659b9c 80%);
}

.control div {
    text-align: center;
    color: rgba(75, 72, 72, 0.836);
    cursor: pointer;
    padding: 8px;
    box-shadow: 1px 1px 1px rgba(77, 75, 75, 0.76);
    transition: padding .3s ease-in-out;
}

.control .fa {
    font-size: 25px;
}

.b {
    font-weight: bold; 
}

.control .click {
    box-shadow: inset 1px 1px 1px rgba(77, 75, 75, 0.76);
    color: rgba(75, 72, 72, 0.836);
}

.b .play {
    display: none;
}

i {
    font-family: iconfont;
    font-style: normal;
}