@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.container {
    max-width: 900px;
    margin: auto;
    /* border: 1px solid #fff; */
}

.left-menu {
    width: 300px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    /* background-color: rgb(62, 62, 62); */
    background-color: #80dec8;
    /* background-color: #6B238E; */

}

.right-box {
    position: fixed;
    height: 100%;
    left: 300px;
    right: 0;
    background-color: #ffd4a9;
}

.btn-box {
    height: 55px;
    text-align: center;
    line-height: 55px;
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
}

.music-list-box {
    position: absolute;
    width: 100%;
    top: 55px;
    bottom: 0;
    overflow: auto;
}

.music-list-box::-webkit-scrollbar {
    width: 6px;
    background-color: #80dec8;
}

.music-list-box::-webkit-scrollbar-thumb {
    /* background-image: linear-gradient(to bottom,red,orange,yellow,green,#00ff00,blue,purple); */
    border-radius: 5px;
    background-color: aqua;
}



.music-pic {
    width: 34px;
    height: 34px;
    vertical-align: middle;
}

.music-list-item {
    font-size: 14px;
    color: #fff;
    padding: 5px;
    box-sizing: border-box;
    line-height: 34px;
    /* outline: 2px solid #fff; */
    cursor: pointer;
    transition: all 0.2s linear;

}

.music-list-item:hover {
    padding-left: 10px;
    /* background-color: #000; */
    color: orange;
    /* font-size: 15px; */
    /* box-sizing: content-box; */
}

.index-span {
    font-size: 13px;
    font-weight: bold;
    padding: 0 5px 0 0;
    display: inline-block;
    text-align: center;
    /* border: 1px solid #ff0000; */
    width: 16px;

}

/* 音乐播放器控制器 */
.music-control {
    /* border: 2px solid #ff0000; */
    display: flex;
    /* text-align-last: justify; */
    align-items: center;
    /* margin-top: 60px; */
}


.current-time-box,
.duration-time-box {
    color: #000;
    font-size: 14px;
    width: 80px;
    display: flex;
    justify-content: center;
}

.progress {
    flex: 1;
    /* background-color: #00ff00; */
    background-image: linear-gradient(to right, #00ff00, #00ff00);
    background-size: 0%, 100%;
    background-repeat: no-repeat;
    height: 12px;
    border-radius: 12px;
    box-shadow: 0 0 3px 1px #ff0000;
    cursor: pointer;
}

.menu-img {
    position: fixed;
    right: 6px;
    top: 6px;
    /* border: 1px solid #fff; */
    z-index: 2;
    border-radius: 5px;
    display: none;
}

/*  */
.music-list-box>li.active {
    /* background-color: #000; */
    padding-left: 10px;
    color: orange;
}

.lrc-ul>li.active2 {
    font-size: 18px;
    color: #00ffff;
}

.lrc-box {
    height: 340px;
    /* border: 2px solid #eeeeee; */
    overflow: hidden;
}

.one-line {
    height: 35px;
    /* border: 2px solid #ff0000; */
    margin-top: 180px;
    position: relative;
}

.lrc-ul {
    position: absolute;
    width: 100%;
    transition: all 0.3s linear;
}

.lrc-ul>li {
    line-height: 35px;
    text-align: center;
}

#c1 {
    /* border: 1px solid #00ff00; */
    margin: 10px auto;
    display: block;
    -webkit-box-reflect: below 5px linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.control-box {
    color: #fff;
    /* border: 2px solid #ff0000; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 10px;
}

.control-box>.iconfont {
    font-size: 30px;
    cursor: pointer;
}

.control-box>.iconfont:not(:first-child) {
    margin-left: 10px;
}

.control-box>.iconfont:first-child {
    position: absolute;
    left: 24px;
}

.control-box>.iconfont:hover {
    color: #00ffff;
}

.control-box>.icon-play {
    font-size: 42px;
}

.lrc-this {
    color: transparent;
    background-image: linear-gradient(to right, #00ffff, #009966);
    -webkit-background-clip: text;
    background-size: 100% 100%;
    font-size: 20px;
}

.volume {
    height: 34px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /* justify-content: center; */
}

.volume>img {
    margin-left: 24px;
    cursor: pointer;
}

.hover-bar {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    left: 46px;
    top: -14px;
    box-shadow: 0 0 3px 1px #00ffff;
    border-radius: 10px;
    cursor: pointer;
    background-image: (to top, #00ff00, #00ff00);
}

.volume-bar {
    width: 140px;
    height: 12px;
    box-shadow: 0 0 3px 1px #ff0000;
    border-radius: 12px;    
    cursor: pointer;
    margin-left: 24px;
    background-image: linear-gradient(to right, #00ff00, #00ff00);
    background-size: 100%, 100%;
    background-repeat: no-repeat;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #ff0000;
}

@media only screen and (max-width:768px) {
    .left-menu {
        z-index: 1;
        width: 100%;
        background-color: rgba(255, 212, 169, 0.5);
        top: 200px;
        transition: all 0.3s linear;

    }

    .left-menu[data-show="0"] {
        transform: translateY(100%);
    }

    .left-menu[data-show="1"] {
        transform: translateY(0);
    }

    .right-box {
        left: 0;
        transition: all 0.3s linear;
    }

    #c1{
        width: 0;
        height: 0;
    }
    .lrc-box{
        margin: 100px 0 30px 0;
        height: 60%;
    }
    .menu-img {
        display: block;
        cursor: pointer;
        width: 30px;
    }

    .music-list-box::-webkit-scrollbar {
        background-color: #ffd4a9;
    }
}

@media only screen and (min-width:768px) {
    .left-menu {
        transition: all 0.3s linear;
    }
}