* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

html {
    font-size: calc(100vw / 375 * 100);
}

body {
    font-size: 16px;
}

/* 弹性盒子常用属性 */
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.j-s-a {
    justify-content: space-around;
}

.j-s-b {
    justify-content: space-between;
}

.j-c {
    justify-content: center;
}

.a-c {
    align-items: center;
}

#app {
    width: 100vw;
    height: 100vh;
}

/* img标签当成了背景图片在处理 */
.bgImg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: blur(80px);
    z-index: -1;
}

.title-bar {
    height: 80px;
    border-bottom: 1px solid lightgray;
    box-sizing: border-box;
    padding: 0px 10px;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0px 0px 3px  white;
}

.title-bar>.iconfont {
    font-size: 26px;
    color: gray;
    font-weight: normal;
}

.content-box {
    flex: 1;
}

.center-box {
    flex: 1;
    position: relative;
    perspective: 300px;
}

.bottom-box {
    
}

.progress-box {
    padding: 0px 10px;
    height: 40px;
    color: black;
    text-shadow: 0px 0px 3px  white;
}

.progress {
    height: 3px;
    width: 100%;
    background-color: gray;
    border-radius: 3px;
    background-image: linear-gradient(to right, red, red);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    
}

.ctrl-box {
    padding: 0px 10px;
    box-sizing: border-box;
    text-shadow: 0px 0px 3px  white;
}

.ctrl-box .iconfont {
    font-size: 28px;
    color: black;
}

.ctrl-box-inner>.iconfont {
    font-size: 42px;
}

.ctrl-box-inner>.iconfont:nth-child(2) {
    font-size: 60px;
}

.disc-outer-box {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all 0.2s linear;
    backface-visibility: hidden;
}

.disc-box {
    /*border: 1px solid red;*/
    width: 2.6rem;
    height: 2.6rem;
    background-image: url("../img/disc.png");
    background-size: 100% 100%;
    margin-top: 0.5rem;
    border-radius: 50%;
    animation: playAni 25s linear infinite paused;
}

.disc-box.play {
    animation-play-state: running;
}

.disc-box.paused {
    animation-play-state: paused;
}

.music-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0.65);
}

.play-bar {
    height: 0.9rem;
    position: absolute;
    transform-origin: left top;
    transition: all 0.3s linear;
    transform: rotateZ(-45deg);
}

.play-bar.play {
    transform: rotateZ(0deg);
}

.play-bar.paused {
    transform: rotateZ(-45deg);
}

@keyframes playAni {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.loading-box {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    flex-direction: column;
    font-size: 12px;
    color: white;
    z-index: 9999;
}

#loadingImg {
    margin-bottom: 10px;
    transform: scale(1.4);
}

.play-list-box {
    position: fixed;
    bottom: 0px;
    left: 0px;
    top: 150px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    box-sizing: border-box;
    overflow: auto;
    color: white;
    transition: all 0.2s linear;
    transform: translateY(100%);
}

.play-list-box.show {
    transform: translateY(0px);
}

.play-list {
    box-sizing: border-box;
    height: 100%;
    overflow: auto;
    padding: 5px 0.1rem;
}

.play-list>li {
    height: 0.35rem;
    font-size: 0.12rem;
    display: flex;
    align-items: center;
    border-bottom: 1px lightgray dotted;
}
.play-list>li.active{
    color: red;
}

.play-list>li>span {
    margin: 0px 0.05rem;
    font-weight: bold;
}

.play-list-box>.icon-iconddgb {
    font-size: 0.28rem;
    position: absolute;
    right: 5px;
    top: 5px;
}

.lrc-outer-box{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all 0.2s linear;
    backface-visibility: hidden;
    transform: rotateY(-180deg);
    overflow: hidden;
    font-size: 0.12rem;
}
.scroll-one-box{
    height: 0.22rem;
    margin-top: 1.2rem;
    position: relative;
}
.lrc-outer-box li{
    text-align:center;
    height: 0.22rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-shadow: 0px 0px 2px white;
}
.lrc-outer-box li.active{
    /* color: red; */
    color: white;
    text-shadow: 0px 0px 5px red;
    font-weight: bold;
}

.ul-lrc{
    position: absolute;
    width: 100%;
    top: 0px;
    transition: all 0.2s linear;
}

.center-box.show-lrc>.disc-outer-box{
    transform: rotateY(180deg);
    opacity: 0;
}
.center-box.show-lrc>.lrc-outer-box{
    transform: rotateX(0deg);
}
