@charset "utf-8";

/* 移动端的样式 */

body {
    background-color: transparent;
}

.music-list-box {
    width: 100%;
    top: 150px;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.music-list-box .li-music-item {
    background-color: transparent;
}

.icon-app-close {
    color: white;
    font-size: 22px !important;
    position: absolute;
    right: 5px;
    display: block;
}
.icon-app-close:active{
    color: lightseagreen;
}

.content-box {
    left: 0;
    display: flex;
    flex-direction: column;
}

.bg-img {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    filter: blur(80px);
}

.title-bar {
    display: flex;
    height: 45px;
    border-bottom: 1px solid lightgray;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 10px;
}

.title-bar>* {
    color: black;
}

.title-bar>.title-name {
    font-weight: bold;
}

.title-bar>.iconfont {
    font-size: 23px;
}

.music-list-box{
    transition: all 0.2s linear;
}

.music-list-box[data-show="0"] {
    transform: translateY(100%);
}

.music-list-box[data-show="1"] {
    transform: translateY(0);
}

.canvas-box {
    display: none;
}

.center-show-box {
    flex: 1;
    overflow: auto;
    position: relative;
}

.img-play-bar {
    display: block;
    width: 70px;
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: left top;
    z-index: 9999;
    transition: transform 0.2s linear;
}

.img-play-bar[data-play-state="paused"] {
    transform: rotateZ(-50deg);
}

.img-play-bar[data-play-state="playing"] {
    transform: rotateZ(0deg);
}

.circle-box {
    display: block;
    width: 200px;
    height: 200px;
    margin: 50px auto;
    position: relative;
    border-radius: 50%;
    animation: dist-ani 20s linear infinite var(--play-state);
}

.disc-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.music-img {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(0.6);
    border-radius: 50%;
}

@keyframes dist-ani {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(1turn);
    }
}

.icon-bofangliebiao {
    display: block;
}

.control-box {
    gap: 0;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px;
}

.icon-shunxubofang1,
.icon-bofangliebiao {
    font-size: 20px !important;
}

.progress{
    height: 4px;
}
