@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

#app {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
}

.left-slide {
    width: 330px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #333333;
}

.right-slide {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    left: 330px;
    background-color: #000000;
    overflow: auto;
}

.control-box {
    text-align: center;
    height: 60px;
    line-height: 60px;
}

.control-box>button {
    cursor: pointer;
    height: 35px;
    width: 120px;
    outline: none;
    background-color: transparent;
    color: white;
    border: 1px solid currentColor;
    border-radius: 10000px;
    margin: 0px 10px;
}

.list-box {
    position: absolute;
    top: 60px;
    bottom: 0px;
    overflow: auto;
    width: 100%;
    color: white;
}

.list-box::-webkit-scrollbar {
    width: 5px;
    background-color: #808080;
    border-radius: 5px;
}

.list-box::-webkit-scrollbar-thumb {
    background-image:  radial-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.5),rgba(0,0,0,0.1));
}

.list-box>li {
    height: 40px;
    line-height: 40px;
    padding: 0px 5px;
    transition: all 0.3s linear;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.list-box>li.active{
    padding-left: 10px;
    background-color: #000000;
    color: orange;
}
.list-box>li:hover {
    padding-left: 10px;
    background-color: #000000;
}


.music-pic {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 5px;
    vertical-align: middle;
}

#c1 {
    display: block;
    margin: auto;
    margin-top: 50px;
    background-color: black;
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,rgba(0,0,0,0.3));
}
.lrc-box{
    width: 900px;
    height: 400px;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.one-line{
    height: 35px;
    position: absolute;
    width: 100%;
    top: 150px;
}
.ul-lrc{
    position: absolute;
    width: 100%;
    top: 0px;
    transition: all 0.2s linear;
}
.ul-lrc>li{
    height: 35px;
    line-height: 35px;
    font-size: 22px;
    text-align: center;
    font-family: "微软雅黑";
    color: #aaaaaa;
}
.ul-lrc>li.active{
    color: white;
}
.progress-box{
    height: 45px;
    width: 900px;
    margin: 20px auto;
    color: white;
    position: relative;
}
.progress-box>span{
    width: 70px;
    text-align: center;
    height: 100%;
    line-height: 45px;
}
.progress-box>span:first-child{
    float: left;    
}
.progress-box>span:last-child{
    float: right;
}
.progress{
    height: 10px;
    background-color: gray;
    position: absolute;
    left: 75px;
    right: 75px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right,white,white);
    background-size: 50% 100%;
}