.musicPlayerMod {
    width: 1438px;
	margin:0 auto;
	margin-top:180px;

    height: 120px;

    background: rgba(248, 249, 251, 0.9);

    display: flex;

    align-items: center;

    justify-content: space-between;

    overflow: hidden;
}

.musicPlayerMod .boxes {
    height: 100%;

    display: flex;

    align-items: center;
}

.musicPlayerMod .title {
    width: 120px;

    height: 100%;

    background: linear-gradient(45deg, #ffa168, #fcb183);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;
}

.musicPlayerMod .title span {
    font: 24px / 1.4 Alibaba-PuHuiTi-Medium;

    color: #fff;
}

.musicPlayerMod .singer {
    width: 228px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.musicPlayerMod .singer .pic {
    width: 93px;

    height: 93px;

    margin-left: 20px;

    border-radius: 50%;

    overflow: hidden;

    background-size: cover;
}

.musicPlayerMod .singer .info {
    flex: 1;

    margin-left: 14px;

    display: flex;

    flex-direction: column;
}

.musicPlayerMod .singer .info .name {
    font: bold 20px / 1.4 Alibaba-PuHuiTi-Medium;

    color: var(--xlc-text-default-bold);
}

.musicPlayerMod .singer .info .text {
    font: 17px / 1.4 Alibaba-PuHuiTi-Regular;

    color: var(--xlc-text-default);

    opacity: 0.6;
}

.musicPlayerMod .lyricTextCon {
    position: relative;

    width: 240px;

    height: 100%;

    overflow: hidden;

    background: linear-gradient(45deg, #ffa168, #fcb183);
}

.musicPlayerMod .lyricTextCon .lyric_txt {
    position: relative;

    top: 0;

    text-align: center;

    overflow: hidden;

    transition: all 0.8s ease-out;
}

.musicPlayerMod .lyricTextCon .lyric_txt p {
    color: #fff;

    font: 16px / 2 Alibaba-PuHuiTi-Regular;
}

.musicPlayerMod .lyricTextCon:after {
    position: absolute;

    content: "";

    display: block;

    top: 0;

    left: 0;

    width: 100%;

    height: 120px;

    z-index: 3;

    background: linear-gradient(180deg, #ffa168, transparent, #ffa168);
}

.playerMain {
    width: 100%;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.playerMain .progress_obj {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.playerMain .progress_obj .ctrl_note {
    width: 94px;
}

.playerMain .progress_obj .ctrl_note img {
    width: 100%;
}

.playerMain .progress_obj .ctrl_btn {
    display: flex;

    align-items: center;

    justify-content: center;
}

.playerMain .progress_obj .ctrl_btn .btn {
    width: 100%;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;
}

.playerMain .progress_obj .ctrl_btn .play_btn {
    margin: 0 32px;

    border: 3px #ffa168 solid;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.playerMain .progress_obj .ctrl_btn .play_btn span {
    display: block;

    background: url(../images/play_btn.png) no-repeat;

    width: 20px;

    height: 20px;

    background-size: 20px;
}

.playerMain .progress_obj .ctrl_btn .play_btn span.on {
    background: url(../images/play_btn_.png) no-repeat;

    background-size: 20px;
}

.playerMain .progress_obj .ctrl_btn .prev_btn {
    background: url(../images/prev_btn_.png) no-repeat;
}

.playerMain .progress_obj .ctrl_btn .next_btn {
    background: url(../images/next_btn_.png) no-repeat;
}

.playerMain .progress_obj .ctrl_btn .prev_btn,
.playerMain .progress_obj .ctrl_btn .next_btn {
    width: 12px;

    height: 12px;

    background-size: 12px;

    transition: all 0.3s ease;
}

.playerMain .progress_obj .ctrl_btn .prev_btn:hover {
    background: url(../images/prev_btn.png) no-repeat;
}

.playerMain .progress_obj .ctrl_btn .next_btn:hover {
    background: url(../images/next_btn.png) no-repeat;
}

.playerMain .progress_obj .ctrl_info {
    opacity: 0;
}

.playerMain .progress_obj .ctrl_info .vol {
    margin-right: 69px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.playerMain .progress_obj .ctrl_info .vol .icon {
    width: 22px;

    height: 16px;

    background: url(../images/vol_bar.png) no-repeat;

    background-size: 22px;
}

.playerMain .progress_obj .ctrl_info .vol_bar {
    position: relative;

    margin-left: 18px;

    width: 84px;

    height: 5px;

    border-radius: 20px;

    background: #d6dde2;

    overflow: hidden;

    cursor: pointer;
}

.playerMain .progress_obj .ctrl_info .vol_bar > div {
    width: 10px;

    height: 100%;

    background: #95a2ab;

    position: absolute;

    left: 0;
}

.playerMain .progress_obj:nth-child(2) {
    margin-top: 6px;

    padding: 0 20px;
}

.playerMain .progress_obj .progress_bar {
    margin: 0 20px;

    position: relative;

    width: 100%;

    height: 6px;

    background: #fcb183;

    border-radius: 20px;

    cursor: pointer;

    overflow: hidden;
}

.playerMain .progress_obj .progress_bar .progress_cube {
    position: absolute;

    top: 0;

    left: 0;

    background: #d6dde2;

    width: 100%;

    height: 100%;
}

/* .playerMain .progress_obj .progress_bar:hover .progress_cube:after {

    opacity: 1;

} */

/* .playerMain .progress_obj .progress_bar .progress_cube:after {

    position: absolute;

    content: "";

    top: -2px;

    left: -5px;

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #0080e2;

    z-index: 2;

    opacity: 0;

    transition: all 0.3s ease;

} */

.playerMain .progress_obj time {
    font: bold 16px / 2 GILROY-BOLD;
    color: var(--xlc-text-default-bold);
    width: 5em;
}

.playerMain .progress_obj time:first-child {
    text-align: right;
}

.playerMain .progress_obj time:last-child {
    text-align: left;
}

.playerMain .progress_obj audio {
    display: none;
}

.lyricMod {
    display: block;
}

.lyricMod .lyricTextCon {
    margin-top: 40px;

    position: relative;

    height: 300px;

    overflow: hidden;
}

.lyricMod .lyricTextCon .lyric_txt {
    position: relative;

    text-align: center;

    overflow: hidden;

    top: 0;

    transition: all 0.8s ease-out;
}

.lyricMod .lyricTextCon .lyric_txt p {
    font: 17px / 2 Alibaba-PuHuiTi-Regular;

    transition: all 0.3s ease;
}
.lyricMod .lyricTextCon .lyric_txt #lyric1 {
    font-size: 22px;
}
.lyricMod .lyricTextCon .lyric_txt p.played {
    color: var(--xlc-text-blue-0);
}

.lyricMod .lyricTextCon .lyric_txt p.active {
    color: red;
}

.lyricPlayerMod {
    width: 100%;
}

.lyricPlayerMod .ctrl_note {
    margin-left: 40px;
}

.lyricPlayerMod > div {
    padding: 70px 0;
}

@media (max-width: 1199px) {
    .musicPlayerMod {
        height: 130px;
    }

    .musicPlayerMod .title {
        width: auto;
        flex: none;
        padding: 0 18px;
    }

    .musicPlayerMod .title span {
        font-size: 22px;
    }

    .musicPlayerMod .singer {
        width: auto;

        flex: none;
    }

    .musicPlayerMod .singer .pic {
        width: 90px;
        height: 90px;
        margin-left: 12px;
    }

    .musicPlayerMod .singer .info {
        margin-left: 10px;
    }

    .musicPlayerMod .singer .info .name {
        font-size: 24px;
        font-weight: normal;
    }

    .musicPlayerMod .singer .info .text {
        margin-top: 2px;
        font-size: 18px;
    }

    .playerMain .progress_obj {
        justify-content: space-around;
    }

    .playerMain .progress_obj .ctrl_info {
        display: none;
    }

    .playerMain .progress_obj .ctrl_note {
        position: absolute;
        left: 313px;
        width: 72px;
        top: 32px;
    }

    .playerMain .progress_obj .ctrl_btn .play_btn {
        margin: 0 30px;
        width: 38px;
        height: 38px;
    }

    .playerMain .progress_obj .ctrl_btn .play_btn span,
    .playerMain .progress_obj .ctrl_btn .play_btn span.on {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }

    .playerMain .progress_obj:nth-child(1) {
        margin-right: 20px;
    }

    .playerMain .progress_obj:nth-child(2) {
        padding: 4px 0 0;

        margin-right: 20px;
    }

    .playerMain .progress_obj time {
        font-size: 14px;
        line-height: 1;
    }

    .playerMain .progress_obj .progress_bar {
        margin: 0 10px;

        height: 4px;
    }

    .homeCultureWrap .lyricTextCon {
        display: none;
    }

    .lyricMod .lyricTextCon {
        margin: 4vw 0;

        height: 4rem;
    }

    .lyricMod .lyricTextCon .lyric_txt p {
        font-size: 4vw;
    }

    .groupSongBox2 .lyricPlayerMod > div {
        padding: 3vw;

        border-radius: 14px 14px 0 0;
    }

    .groupSongBox2 .playerMain .progress_obj:nth-child(1) {
        margin-right: 0;
    }

    .groupSongBox2 .playerMain .progress_obj:nth-child(2) {
        margin-right: 0;
    }

    .groupSongBox2 .lyricPlayerMod .ctrl_note {
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .musicPlayerMod {
        height: 98px;
    }

    .musicPlayerMod .title {
        width: auto;
        flex: none;
        padding: 0 10px;
    }

    .musicPlayerMod .title span {
        font-size: 14px;
    }

    .musicPlayerMod .singer {
        width: auto;

        flex: none;
    }

    .musicPlayerMod .singer .pic {
        width: 45px;
        height: 45px;
        margin-left: 10px;
    }

    .musicPlayerMod .singer .info {
        margin-left: 10px;
    }

    .musicPlayerMod .singer .info .name {
        font-size: 14px;
    }

    .musicPlayerMod .singer .info .text {
        margin-top: 2px;
        font-size: 12px;
    }

    .playerMain .progress_obj {
        justify-content: space-around;
    }

    .playerMain .progress_obj .ctrl_info {
        display: none;
    }

    .playerMain .progress_obj .ctrl_note {
        position: absolute;
        left: 313px;
        width: 72px;
        top: 32px;
        display: none;
    }

    .playerMain .progress_obj .ctrl_btn .play_btn {
        margin: 0 20px;
        width: 26px;
        height: 26px;
    }

    .playerMain .progress_obj .ctrl_btn .play_btn span,
    .playerMain .progress_obj .ctrl_btn .play_btn span.on {
        width: 14px;
        height: 14px;
        background-size: 14px;
    }

    .playerMain .progress_obj:nth-child(1) {
        margin-right: 20px;
    }

    .playerMain .progress_obj:nth-child(2) {
        padding: 4px 0 0;

        margin-right: 20px;
    }

    .playerMain .progress_obj time {
        font-size: 12px;
        line-height: 1;
    }

    .playerMain .progress_obj .progress_bar {
        margin: 0 10px;

        height: 4px;
    }

    .homeCultureWrap .lyricTextCon {
        display: none;
    }

    .lyricMod .lyricTextCon {
        margin: 4vw 0;

        height: 4rem;
    }

    .lyricMod .lyricTextCon .lyric_txt p {
        font-size: 4vw;
    }

    .groupSongBox2 .lyricPlayerMod > div {
        padding: 3vw;

        border-radius: 14px 14px 0 0;
    }

    .groupSongBox2 .playerMain .progress_obj:nth-child(1) {
        margin-right: 0;
    }

    .groupSongBox2 .playerMain .progress_obj:nth-child(2) {
        margin-right: 0;
    }

    .groupSongBox2 .lyricPlayerMod .ctrl_note {
        margin-left: 0;
    }
}
.songList {
}
.songList li {
    position: relative;
    height: 132px;
    padding: 0 30px;
    background: rgba(5, 30, 68, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease all;
}
.songList li.on {
    height: 170px;
    background: #032650;
}
.songList li.on .box .info p {
    opacity: 1;
    height: 20px;
}
.songList li .box {
    display: flex;
    align-items: center;
}
.songList li.on .box .img {
    width: 96px;
    height: 96px;
}
.songList li .triangle {
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -20px;
    opacity: 0;
    height: 0;
    width: 0;
    transition: all 0.3s ease;
    border-left: 20px solid #032650;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}
.songList li.on .triangle {
    opacity: 1;
}
.songList li.on ~ li:nth-child(2) .hi,
.songList li:first-child .hi,
.songList li:nth-child(2).on ~ li:nth-child(3) .hi {
    border-top: 0;
}
.songList li .hi {
    width: 100%;
    height: 100%;
    padding: 0 10px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px #4d7ead solid;
}
.songList li.on .hi {
    border-top: 0;
}
.songList li .box .img {
    width: 75px;
    height: 75px;
    border: 2px #fff solid;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s ease all;
}
.songList li .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.songList li .box .info {
    margin-left: 16px;
    flex: 1;
}
.songList li .box .info h4 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}
.songList li.on .box .info h4 {
    font-size: 24px;
}
.songList li .box .info p {
    color: #fff;
    height: 0;
    opacity: 0;
    font-size: 18px;
    line-height: 2;
}
.songList li .icon-svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    opacity: 1;
    transition: 0.3s ease all;
}
.songList li.on .icon-svg {
    opacity: 0;
}
@media (max-width: 1199px) {
    .songList li {
        height: 100px;
    }
    .songList li.on {
        height: 120px;
    }
    .songList li.on .box .img {
        width: 70px;
        height: 70px;
    }
    .songList li .box .img {
        width: 60px;
        height: 60px;
    }
    .songList li.on .box .info h4 {
        font-size: 18px;
    }
    .songList li.on .box .info p {
        font-size: 14px;
    }
    .songList li .box .info h4 {
        font-size: 16px;
    }
    .songList li .box .info p {
        font-size: 12px;
    }
}
