/* ============================================
   music.css — 白色浅灰浅粉 INS风 (v2)
   ============================================ */
.music-overlay {
    position: absolute;
    inset: 0;
    z-index: 850;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border-radius: 44px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .32s, transform .38s cubic-bezier(.32, .72, 0, 1);
}

.music-overlay.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ===== 顶部 ===== */
.mu-header {
    display: flex;
    align-items: center;
    padding: 54px 18px 10px;
    gap: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.mu-back {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .03);
}

.mu-back:active {
    background: rgba(0, 0, 0, .07);
}

.mu-back svg {
    width: 15px;
    height: 15px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.mu-header-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1.5px;
}

.mu-header-spacer {
    width: 30px;
}

/* ===== 页面主体 ===== */
.mu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mu-body::-webkit-scrollbar {
    width: 0;
}

/* ===== 底部导航 ===== */
.mu-dock {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, .04);
}

.mu-dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    padding: 4px 16px;
    border-radius: 10px;
    transition: background .2s;
}

.mu-dock-item:active {
    background: rgba(0, 0, 0, .04);
}

.mu-dock-item svg {
    width: 20px;
    height: 20px;
    stroke: #bbb;
    stroke-width: 1.8;
    fill: none;
}

.mu-dock-item .mu-dock-label {
    font-size: 9px;
    color: #bbb;
    font-weight: 500;
}

.mu-dock-item.active svg {
    stroke: #333;
}

.mu-dock-item.active .mu-dock-label {
    color: #333;
    font-weight: 700;
}

/* ===== 首页 ===== */
.mu-home {
    padding: 16px 15px 12px;
}

.mu-greeting {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 2px;
}

.mu-greeting-sub {
    font-size: 10px;
    color: #bbb;
    margin-bottom: 16px;
}

/* 搜索栏 */
.mu-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 14px;
    background: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, .03);
    margin-bottom: 20px;
}

.mu-search svg {
    width: 14px;
    height: 14px;
    stroke: #bbb;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.mu-search input {
    flex: 1;
    border: none;
    background: none;
    font-size: 11.5px;
    color: #333;
    outline: none;
    font-family: inherit;
}

.mu-search input::placeholder {
    color: #ccc;
}

/* 每日推荐 */
.mu-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mu-section-title svg {
    width: 16px;
    height: 16px;
    stroke: #daa;
    stroke-width: 2;
    fill: none;
}

.mu-daily-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    margin-bottom: 18px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .03);
}

.mu-daily-card:active {
    background: #f9f9f9;
}

.mu-daily-cover {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5e8e0 0%, #ede0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    cursor: pointer;
    overflow: hidden;
}

.mu-daily-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-daily-info {
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.mu-daily-name {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-daily-edit-hint {
    font-size: 10px;
    color: #ccc;
    font-weight: 400;
}

.mu-daily-artist {
    font-size: 10px;
    color: #aaa;
}

.mu-daily-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.mu-daily-play:active {
    background: rgba(0, 0, 0, .08);
}

.mu-daily-play svg {
    width: 16px;
    height: 16px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

/* 歌曲列表 */
.mu-song-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mu-song-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}

.mu-song-item:active {
    background: rgba(0, 0, 0, .03);
}

.mu-song-item.playing {
    background: rgba(0, 0, 0, .02);
}

.mu-song-idx {
    width: 18px;
    font-size: 11px;
    color: #ccc;
    text-align: center;
    flex-shrink: 0;
    font-weight: 600;
}

.mu-song-item.playing .mu-song-idx {
    color: #999;
}

.mu-song-cover {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    overflow: hidden;
}

.mu-song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-song-info {
    flex: 1;
    min-width: 0;
}

.mu-song-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-song-item.playing .mu-song-name {
    color: #666;
}

.mu-song-artist {
    font-size: 9px;
    color: #bbb;
    margin-top: 1px;
}

.mu-song-del {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s;
}

.mu-song-item:hover .mu-song-del,
.mu-song-item:active .mu-song-del {
    opacity: 1;
}

.mu-song-del svg {
    width: 12px;
    height: 12px;
    stroke: #ccc;
    stroke-width: 2;
    fill: none;
}

/* 空状态 */
.mu-empty {
    text-align: center;
    padding: 36px 20px;
    font-size: 10.5px;
    color: #ccc;
    line-height: 1.8;
}

/* 导入区域 */
.mu-import-sec {
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px dashed rgba(0, 0, 0, .08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .02);
}

.mu-import-title {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.mu-import-row {
    display: flex;
    gap: 8px;
}

.mu-import-input {
    flex: 1;
    border: none;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 10.5px;
    color: #333;
    outline: none;
    font-family: inherit;
    border: 1px solid rgba(0, 0, 0, .04);
}

.mu-import-input::placeholder {
    color: #ccc;
}

.mu-import-btn {
    padding: 8px 14px;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, .04);
    font-size: 10px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}

.mu-import-btn:active {
    background: #e5e5e5;
}

.mu-import-btn.file {
    flex: 1;
    text-align: center;
    background: rgba(220, 170, 170, .08);
    border-color: rgba(220, 170, 170, .12);
    color: #a88;
}

.mu-import-btn.file:active {
    background: rgba(220, 170, 170, .18);
}

/* ===== 播放器悬浮条 ===== */
.mu-player-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, .04);
    flex-shrink: 0;
    cursor: pointer;
}

.mu-player-bar-cover {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0ece8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.mu-player-bar-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-player-bar-info {
    flex: 1;
    min-width: 0;
}

.mu-player-bar-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-player-bar-artist {
    font-size: 9px;
    color: #bbb;
}

.mu-player-bar-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, .03);
}

.mu-player-bar-btn:active {
    background: rgba(0, 0, 0, .08);
}

.mu-player-bar-btn svg {
    width: 14px;
    height: 14px;
    stroke: #444;
    stroke-width: 2;
    fill: none;
}

.mu-player-bar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: rgba(200, 160, 160, .4);
    border-radius: 1px;
    transition: width .3s linear;
}

/* ===== 全屏播放器 ===== */
.mu-player-full {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: linear-gradient(180deg, #fafafa 0%, #f2efec 50%, #f5f2f0 100%);
    display: flex;
    flex-direction: column;
    border-radius: 44px;
    overflow: hidden;
}

.mu-pf-header {
    display: flex;
    align-items: center;
    padding: 54px 18px 10px;
    flex-shrink: 0;
}

.mu-pf-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .03);
}

.mu-pf-close:active {
    background: rgba(0, 0, 0, .07);
}

.mu-pf-close svg {
    width: 15px;
    height: 15px;
    stroke: #888;
    stroke-width: 2;
    fill: none;
}

.mu-pf-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #bbb;
    letter-spacing: 1px;
}

.mu-pf-spacer {
    width: 30px;
}

.mu-pf-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.mu-pf-disc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e2dc 0%, #d8d0c8 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06), inset 0 0 0 6px rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}

.mu-pf-disc.spinning {
    animation: muDiscSpin 8s linear infinite;
}

@keyframes muDiscSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mu-pf-disc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-pf-disc::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f5f2f0;
    box-shadow: inset 0 0 0 3px rgba(0, 0, 0, .06);
}

.mu-pf-song {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 4px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-pf-artist {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 24px;
}

.mu-pf-progress {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.mu-pf-time {
    font-size: 9px;
    color: #bbb;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.mu-pf-bar-wrap {
    flex: 1;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.mu-pf-bar-bg {
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    background: rgba(0, 0, 0, .06);
}

.mu-pf-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    border-radius: 1.5px;
    background: rgba(200, 160, 160, .5);
    transform: translateY(-50%);
    transition: width .3s linear;
}

.mu-pf-bar-dot {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8a0a0;
    box-shadow: 0 1px 4px rgba(200, 160, 160, .3);
    transform: translate(-50%, -50%);
    transition: left .3s linear;
}

.mu-pf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mu-pf-ctrl {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.mu-pf-ctrl:active {
    background: rgba(0, 0, 0, .05);
}

.mu-pf-ctrl svg {
    width: 18px;
    height: 18px;
    stroke: #444;
    stroke-width: 2;
    fill: none;
}

.mu-pf-ctrl.big {
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .05);
}

.mu-pf-ctrl.big svg {
    width: 22px;
    height: 22px;
    stroke: #333;
}

/* ===== 我的页面 ===== */
.mu-me {
    padding: 0 15px 20px;
}

/* 学生证个人卡 */
.mu-profile-card {
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .03);
    display: flex;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.mu-profile-card::before {
    content: 'MUSIC ID';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, .08);
    font-weight: 700;
}

.mu-profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e0c0c0, #d0b0b0, #e0c0c0);
    opacity: .35;
}

.mu-profile-avatar {
    width: 72px;
    height: 90px;
    border-radius: 6px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, .05);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.mu-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-profile-avatar svg {
    width: 28px;
    height: 28px;
    stroke: #ddd;
    stroke-width: 1.5;
    fill: none;
}

.mu-profile-avatar .mu-av-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px 0;
    text-align: center;
    font-size: 7px;
    color: rgba(255, 255, 255, .7);
    background: rgba(0, 0, 0, .15);
}

.mu-profile-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-top: 8px;
}

.mu-profile-name {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    cursor: pointer;
}

.mu-profile-name:hover {
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, .1);
    text-underline-offset: 2px;
}

.mu-profile-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mu-profile-tag {
    font-size: 9px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.mu-profile-tag svg {
    width: 10px;
    height: 10px;
    stroke: #ccc;
    stroke-width: 2;
    fill: none;
}

.mu-profile-sig {
    font-size: 10px;
    color: #bbb;
    font-style: italic;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

/* 歌单板块 */
.mu-playlist-sec {
    margin-top: 18px;
}

.mu-playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mu-playlist-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.mu-playlist-add {
    font-size: 10px;
    color: #888;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .03);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mu-playlist-add:active {
    background: rgba(0, 0, 0, .07);
}

.mu-playlist-add svg {
    width: 10px;
    height: 10px;
    stroke: #888;
    stroke-width: 2;
    fill: none;
}

.mu-playlist-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mu-playlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .03);
    cursor: pointer;
    transition: background .2s;
}

.mu-playlist-item:active {
    background: #f7f7f7;
}

.mu-playlist-cover {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.mu-playlist-info {
    flex: 1;
    min-width: 0;
}

.mu-playlist-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-playlist-count {
    font-size: 9px;
    color: #ccc;
    margin-top: 1px;
}

.mu-playlist-empty {
    text-align: center;
    padding: 24px;
    font-size: 10px;
    color: #ccc;
}

/* 全部歌曲 */
.mu-allsongs-sec {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .04);
}

/* 编辑弹窗 */
.mu-edit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, .9);
    backdrop-filter: blur(10px);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: muFadeIn .2s ease-out;
}

@keyframes muFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mu-edit-modal {
    width: 85%;
    max-width: 300px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.mu-edit-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 14px;
}

.mu-edit-field {
    margin-bottom: 10px;
}

.mu-edit-label {
    font-size: 9px;
    color: #bbb;
    margin-bottom: 4px;
    font-weight: 600;
}

.mu-edit-input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .06);
    background: #f8f8f8;
    font-size: 11px;
    color: #333;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.mu-edit-input:focus {
    border-color: rgba(200, 160, 160, .3);
}

.mu-edit-btns {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.mu-edit-btn {
    flex: 1;
    padding: 9px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.mu-edit-btn.cancel {
    background: #f2f2f2;
    color: #888;
}

.mu-edit-btn.save {
    background: rgba(200, 160, 160, .12);
    color: #a88;
    border: 1px solid rgba(200, 160, 160, .12);
}

.mu-edit-btn:active {
    opacity: .7;
}

/* 歌单详情 */
.mu-pl-detail {
    padding: 14px 0 12px;
}

.mu-pl-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mu-pl-detail-cover {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.mu-pl-detail-info {
    flex: 1;
    min-width: 0;
}

.mu-pl-detail-name {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    margin-bottom: 2px;
}

.mu-pl-detail-count {
    font-size: 10px;
    color: #bbb;
}

/* ===== 歌单导入弹窗 ===== */
.mu-import-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, .92);
    backdrop-filter: blur(12px);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: muFadeIn .2s ease-out;
}

.mu-import-modal {
    width: 90%;
    max-width: 320px;
    max-height: 80%;
    background: #fff;
    border-radius: 18px;
    padding: 20px 16px 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mu-import-modal-title {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 4px;
}

.mu-import-modal-sub {
    font-size: 9.5px;
    color: #bbb;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5;
}

.mu-import-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
}

.mu-import-tab {
    flex: 1;
    padding: 7px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    background: #fafafa;
    transition: all .2s;
}

.mu-import-tab.active {
    background: #fff;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.mu-import-tab:active {
    opacity: .7;
}

.mu-import-textarea {
    width: 100%;
    min-height: 120px;
    max-height: 200px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 10.5px;
    font-family: inherit;
    color: #333;
    background: #f9f9f9;
    resize: vertical;
    outline: none;
    line-height: 1.6;
    box-sizing: border-box;
}

.mu-import-textarea::placeholder {
    color: #ccc;
    font-size: 10px;
}

.mu-import-textarea:focus {
    border-color: rgba(200, 160, 160, .3);
}

.mu-import-format-hint {
    font-size: 8.5px;
    color: #ccc;
    margin-top: 6px;
    line-height: 1.5;
    padding: 0 2px;
}

.mu-import-format-hint code {
    background: rgba(0, 0, 0, .03);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 8px;
    color: #aaa;
}

.mu-import-modal-btns {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.mu-import-modal-btn {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.mu-import-modal-btn.cancel {
    background: #f2f2f2;
    color: #888;
}

.mu-import-modal-btn.ok {
    background: rgba(200, 160, 160, .12);
    color: #a88;
    border: 1px solid rgba(200, 160, 160, .1);
}

.mu-import-modal-btn:active {
    opacity: .6;
}

/* 导出按钮 */
.mu-export-btn {
    font-size: 10px;
    color: #999;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .03);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.mu-export-btn:active {
    background: rgba(0, 0, 0, .07);
}

.mu-export-btn svg {
    width: 10px;
    height: 10px;
    stroke: #999;
    stroke-width: 2;
    fill: none;
}

/* 平台图标行 */
.mu-platform-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.mu-platform-btn {
    flex: 1;
    padding: 10px 6px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .02);
}

.mu-platform-btn:active {
    background: #f5f5f5;
    transform: scale(.97);
}

.mu-platform-icon {
    font-size: 22px;
    margin-bottom: 3px;
}

.mu-platform-name {
    font-size: 9px;
    color: #999;
    font-weight: 500;
}

/* 导入结果预览 */
.mu-import-preview {
    margin-top: 10px;
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 10px;
    background: #fafafa;
}

.mu-import-preview::-webkit-scrollbar {
    width: 0;
}

.mu-import-preview-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    font-size: 10px;
}

.mu-import-preview-item:last-child {
    border-bottom: none;
}

.mu-import-preview-idx {
    color: #ccc;
    font-size: 9px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.mu-import-preview-name {
    color: #444;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-import-preview-artist {
    color: #bbb;
    font-size: 9px;
    flex-shrink: 0;
}

/* 选择目标歌单弹窗 */
.mu-target-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    max-height: 160px;
    overflow-y: auto;
}

.mu-target-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    font-size: 11px;
    color: #444;
    font-weight: 500;
    transition: background .2s;
}

.mu-target-item:active {
    background: #f0f0f0;
}

.mu-target-item .mu-target-emoji {
    font-size: 16px;
}

/* ===== 每日推荐 v4 — 横向滚动多卡片 ===== */
.mu-daily-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.mu-daily-scroll::-webkit-scrollbar {
    height: 0;
}

.mu-daily-card-v4 {
    min-width: 150px;
    max-width: 170px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .03);
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
}

.mu-daily-card-v4.add-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    cursor: pointer;
    border-style: dashed;
    border-color: rgba(0, 0, 0, .08);
    background: #fdfdfd;
}

.mu-daily-card-v4.add-card:active {
    background: #f5f5f5;
}

.mu-daily-add-inner {
    text-align: center;
    color: #ccc;
}

.mu-daily-add-inner svg {
    width: 24px;
    height: 24px;
    stroke: #ddd;
    stroke-width: 1.5;
    fill: none;
    display: block;
    margin: 0 auto 4px;
}

.mu-daily-add-inner span {
    font-size: 9px;
}

.mu-daily-cover-v4 {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f5e8e0, #ede0d8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.mu-daily-cover-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-daily-cover-v4 .mu-daily-cover-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px 0;
    text-align: center;
    font-size: 7px;
    color: rgba(255, 255, 255, .6);
    background: rgba(0, 0, 0, .12);
    opacity: 0;
    transition: opacity .2s;
}

.mu-daily-cover-v4:active .mu-daily-cover-hint {
    opacity: 1;
}

.mu-daily-body-v4 {
    padding: 8px 10px 10px;
}

.mu-daily-name-v4 {
    font-size: 11px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1px;
}

.mu-daily-artist-v4 {
    font-size: 9px;
    color: #bbb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.mu-daily-actions-v4 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mu-daily-play-v4 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.mu-daily-play-v4:active {
    background: rgba(0, 0, 0, .08);
}

.mu-daily-play-v4 svg {
    width: 12px;
    height: 12px;
    stroke: #555;
    stroke-width: 2;
    fill: none;
}

.mu-daily-del-v4 {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    opacity: .3;
    transition: opacity .2s;
}

.mu-daily-del-v4:active {
    opacity: 1;
}

.mu-daily-del-v4 svg {
    width: 11px;
    height: 11px;
    stroke: #999;
    stroke-width: 2;
    fill: none;
}

/* 选歌弹窗 */
.mu-pick-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, .92);
    backdrop-filter: blur(12px);
    z-index: 30;
    display: flex;
    flex-direction: column;
    animation: muFadeIn .2s ease-out;
}

.mu-pick-header {
    display: flex;
    align-items: center;
    padding: 54px 16px 10px;
    gap: 8px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.mu-pick-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .03);
}

.mu-pick-close svg {
    width: 14px;
    height: 14px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.mu-pick-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.mu-pick-spacer {
    width: 28px;
}

.mu-pick-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 14px;
    -webkit-overflow-scrolling: touch;
}

.mu-pick-body::-webkit-scrollbar {
    width: 0;
}

.mu-pick-song {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}

.mu-pick-song:active {
    background: rgba(0, 0, 0, .04);
}

.mu-pick-song-idx {
    width: 18px;
    font-size: 10px;
    color: #ccc;
    text-align: center;
    flex-shrink: 0;
}

.mu-pick-song-info {
    flex: 1;
    min-width: 0;
}

.mu-pick-song-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-pick-song-artist {
    font-size: 9px;
    color: #bbb;
}

.mu-pick-song-star {
    font-size: 14px;
    flex-shrink: 0;
    opacity: .25;
}

.mu-pick-song.in-daily .mu-pick-song-star {
    opacity: 1;
}

.mu-pick-empty {
    text-align: center;
    padding: 30px;
    font-size: 10px;
    color: #ccc;
}

/* 歌曲列表中的推荐星标按钮 */
.mu-song-star {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 12px;
    opacity: .2;
    transition: opacity .2s;
}

.mu-song-star:active {
    opacity: 1;
}

.mu-song-star.active {
    opacity: 1;
}

/* ===== 每日推荐 v5 — 竖向列表INS风 ===== */
.mu-daily-list-v5 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.mu-daily-item-v5 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .03), inset 0 1px 0 rgba(255, 255, 255, .8);
    position: relative;
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
}

.mu-daily-item-v5:active {
    transform: scale(.98);
    box-shadow: 0 0 4px rgba(0, 0, 0, .04);
}

.mu-daily-item-v5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(200, 160, 160, .3), rgba(180, 160, 180, .15));
    border-radius: 2px 0 0 2px;
}

.mu-daily-cover-v5 {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0ece8, #e8e0dc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
    position: relative;
}

.mu-daily-cover-v5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-daily-info-v5 {
    flex: 1;
    min-width: 0;
}

.mu-daily-name-v5 {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .2px;
}

.mu-daily-artist-v5 {
    font-size: 9px;
    color: #aaa;
    margin-top: 1px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-daily-rank-v5 {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 8px;
    font-weight: 800;
    color: rgba(200, 160, 160, .25);
    font-style: italic;
    letter-spacing: 1px;
}

.mu-daily-btns-v5 {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.mu-daily-btn-v5 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.mu-daily-btn-v5:active {
    background: rgba(0, 0, 0, .04);
}

.mu-daily-btn-v5 svg {
    width: 13px;
    height: 13px;
    stroke: #999;
    stroke-width: 2;
    fill: none;
}

.mu-daily-btn-v5.play svg {
    stroke: #555;
}

.mu-daily-btn-v5.del {
    opacity: .25;
}

.mu-daily-btn-v5.del:active {
    opacity: 1;
}

.mu-daily-add-v5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 14px;
    border: 1px dashed rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: 10px;
    color: #bbb;
    transition: background .2s;
}

.mu-daily-add-v5:active {
    background: rgba(0, 0, 0, .02);
}

.mu-daily-add-v5 svg {
    width: 14px;
    height: 14px;
    stroke: #ccc;
    stroke-width: 1.5;
    fill: none;
}

/* ===== 歌词区域 ===== */
.mu-pf-lyrics {
    width: 100%;
    max-height: 160px;
    overflow-y: auto;
    margin: 12px 0 0;
    padding: 0 10px;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.mu-pf-lyrics::-webkit-scrollbar {
    width: 0;
}

.mu-pf-lyric-line {
    padding: 5px 0;
    font-size: 11px;
    color: rgba(0, 0, 0, .2);
    transition: color .3s, font-size .3s, font-weight .3s;
    line-height: 1.6;
}

.mu-pf-lyric-line.active {
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.mu-pf-lyric-line.near {
    color: rgba(0, 0, 0, .35);
}

.mu-pf-no-lyrics {
    padding: 20px 0;
    font-size: 10px;
    color: rgba(0, 0, 0, .12);
    text-align: center;
    font-style: italic;
}

/* 全屏播放器调整 - 缩小唱片给歌词留空间 */
.mu-pf-body.has-lyrics .mu-pf-disc {
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
}

.mu-pf-body.has-lyrics .mu-pf-song {
    font-size: 15px;
    margin-bottom: 2px;
}

.mu-pf-body.has-lyrics .mu-pf-artist {
    margin-bottom: 6px;
}

.mu-pf-body.has-lyrics .mu-pf-disc::after {
    width: 18px;
    height: 18px;
}

/* ============================================
   桌面歌词悬浮窗 — INS毛玻璃风 (紧凑版)
   ============================================ */
.mu-float-widget {
    position: absolute;
    z-index: 900;
    top: 60px;
    right: 12px;
    width: 200px;
    /* ★ 固定宽度，不再拉伸 */
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow:
        0 3px 18px rgba(0, 0, 0, .05),
        0 1px 2px rgba(0, 0, 0, .03),
        inset 0 1px 0 rgba(255, 255, 255, .6);
    overflow: hidden;
    display: none;
    flex-direction: column;
    touch-action: none;
    user-select: none;
    transition: opacity .25s, transform .25s;
    font-family: -apple-system, 'SF Pro', 'Helvetica Neue', sans-serif;
}

.mu-float-widget.visible {
    display: flex;
}

/* — 顶部 — */
.mu-fw-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px 4px;
    cursor: grab;
}

.mu-fw-top:active {
    cursor: grabbing;
}

.mu-fw-cover {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(220, 210, 205, .5), rgba(200, 195, 190, .3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .05);
}

.mu-fw-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-fw-info {
    flex: 1;
    min-width: 0;
}

.mu-fw-name {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(30, 30, 30, .85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .15px;
    line-height: 1.25;
}

.mu-fw-artist {
    font-size: 8px;
    color: rgba(100, 100, 100, .5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 1.25;
    margin-top: 1px;
}

.mu-fw-ctrls {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.mu-fw-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
}

.mu-fw-btn:active {
    background: rgba(0, 0, 0, .06);
}

.mu-fw-btn svg {
    width: 11px;
    height: 11px;
    stroke: rgba(60, 60, 60, .6);
    stroke-width: 2;
    fill: none;
}

.mu-fw-btn.close-btn svg {
    width: 8px;
    height: 8px;
    stroke: rgba(0, 0, 0, .2);
    stroke-width: 2.5;
}

/* — 歌词 — */
.mu-fw-lyrics {
    max-height: 42px;
    overflow-y: hidden;
    padding: 0 12px;
    text-align: center;
    scroll-behavior: smooth;
    mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

.mu-fw-lyrics::-webkit-scrollbar {
    width: 0;
}

.mu-fw-lrc-line {
    padding: 1.5px 0;
    font-size: 9px;
    color: rgba(0, 0, 0, .1);
    transition: color .35s, font-weight .35s;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-fw-lrc-line.active {
    color: rgba(30, 30, 30, .72);
    font-weight: 600;
    font-size: 9.5px;
}

.mu-fw-lrc-line.near {
    color: rgba(0, 0, 0, .2);
}

.mu-fw-no-lrc {
    padding: 3px 0;
    font-size: 8px;
    color: rgba(0, 0, 0, .09);
    text-align: center;
    font-style: italic;
}

/* — 进度条 — */
.mu-fw-progress {
    height: 1.5px;
    margin: 3px 10px 6px;
    border-radius: 1px;
    background: rgba(0, 0, 0, .03);
    overflow: hidden;
}

.mu-fw-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(200, 160, 160, .4), rgba(180, 150, 170, .35));
    border-radius: 1px;
    width: 0%;
    transition: width .4s linear;
}

/* ============================================
   一起听 Listen Together v4 — 最终版
   ============================================ */
.mu-lt {
    padding: 0 0 20px;
}

/* -- 顶栏 -- */
.mu-lt-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 88px;
    overflow: hidden;
}

.mu-lt-topbar-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e8ecf5, #d8dff0, #c8d8eb);
}

.mu-lt-topbar-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mu-lt-topbar-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 18px;
}

.mu-lt-topbar-t {
    font-size: 17px;
    font-weight: 800;
    color: #333;
    letter-spacing: 2px;
}

.mu-lt-topbar-s {
    font-size: 9px;
    color: #999;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* -- 双头像 (白底) -- */
.mu-lt-pair-wrap {
    background: #fff;
    padding: 22px 0 16px;
}

.mu-lt-pair {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 0 12px;
}

.mu-lt-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 80px;
    cursor: pointer;
}

.mu-lt-hp-tag {
    font-size: 10px;
    color: #d0d0d0;
    letter-spacing: 3px;
    margin-bottom: 2px;
}

.mu-lt-av-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    padding: 3px;
    box-sizing: border-box;
}

.mu-lt-av-ring:active {
    transform: scale(.93);
}

.mu-lt-av {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mu-lt-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mu-lt-av svg {
    width: 26px;
    height: 26px;
    stroke: #ccc;
    stroke-width: 1.5;
    fill: none;
}

.mu-lt-av-plus {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
}

.mu-lt-pname {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    max-width: 80px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* -- 耳机线 -- */
.mu-lt-cable {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin: 0 -10px;
    padding-top: 4px;
}

.mu-lt-wire-svg {
    width: 120px;
    height: 46px;
}

.mu-lt-cable-txt {
    font-size: 9px;
    color: #bbb;
    text-align: center;
    max-width: 140px;
    margin-top: 2px;
}

.mu-lt-cable-txt.playing {
    color: #999;
}

/* -- 当前播放 -- */
.mu-lt-now {
    margin: 14px 20px 0;
    padding: 14px 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .04);
}

.mu-lt-now-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.mu-lt-now-artist {
    font-size: 10px;
    color: #999;
    text-align: center;
    margin: 2px 0 8px;
}

.mu-lt-now-wave {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.mu-lt-now-wave span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: #999;
    animation: mu-lt-wv .8s ease-in-out infinite;
}

.mu-lt-now-wave span:nth-child(1) {
    height: 10px;
}

.mu-lt-now-wave span:nth-child(2) {
    height: 16px;
    animation-delay: .15s;
}

.mu-lt-now-wave span:nth-child(3) {
    height: 12px;
    animation-delay: .3s;
}

.mu-lt-now-wave span:nth-child(4) {
    height: 8px;
    animation-delay: .45s;
}

@keyframes mu-lt-wv {

    0%,
    100% {
        transform: scaleY(.5)
    }

    50% {
        transform: scaleY(1.2)
    }
}

.mu-lt-now-prog {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.mu-lt-now-t {
    font-size: 9px;
    color: #bbb;
    min-width: 28px;
}

.mu-lt-now-t:last-child {
    text-align: right;
}

.mu-lt-now-bar {
    flex: 1;
    height: 3px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.mu-lt-now-fill {
    height: 100%;
    background: #555;
    border-radius: 2px;
    transition: width .4s;
}

.mu-lt-now-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.mu-lt-btn {
    cursor: pointer;
    transition: transform .15s;
}

.mu-lt-btn:active {
    transform: scale(1.15);
}

.mu-lt-btn svg {
    width: 22px;
    height: 22px;
    stroke: #333;
    stroke-width: 2;
    fill: none;
}

.mu-lt-btn.big svg {
    width: 30px;
    height: 30px;
    fill: #333;
    stroke: #333;
}

/* -- 对话框 -- */
.mu-lt-chat {
    margin: 14px 0 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .04);
}

.mu-lt-chat-hd {
    padding: 12px 18px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.mu-lt-chat-box {
    max-height: 180px;
    overflow-y: auto;
    padding: 0 18px 8px;
}

.mu-lt-chat-box::-webkit-scrollbar {
    width: 0;
}

.mu-lt-chat-hint {
    text-align: center;
    color: #ccc;
    font-size: 11px;
    padding: 20px 0;
}

.mu-lt-msg {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.mu-lt-msg.user {
    flex-direction: row-reverse;
}

.mu-lt-msg-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-lt-msg-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-lt-msg-av svg {
    width: 14px;
    height: 14px;
    stroke: #ccc;
    stroke-width: 1.5;
    fill: none;
}

.mu-lt-msg-bbl {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.6;
    word-break: break-word;
}

.mu-lt-msg.char .mu-lt-msg-bbl {
    background: #f5f5f5;
    color: #333;
    border-bottom-left-radius: 4px;
}

.mu-lt-msg.user .mu-lt-msg-bbl {
    background: #333;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.mu-lt-typing {
    color: #999;
    font-size: 11px;
    animation: mu-lt-blink .8s ease-in-out infinite;
}

@keyframes mu-lt-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.mu-lt-chat-irow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 14px;
    border-top: 1px solid rgba(0, 0, 0, .03);
}

.mu-lt-chat-inp {
    flex: 1;
    border: none;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 12px;
    color: #333;
    outline: none;
    font-family: inherit;
}

.mu-lt-chat-inp::placeholder {
    color: #bbb;
}

.mu-lt-chat-send {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    padding: 6px 4px;
    white-space: nowrap;
}

.mu-lt-chat-send:active {
    opacity: .5;
}

/* -- Feed -- */
.mu-lt-feed {
    margin-top: 10px;
    border-top: 6px solid #f5f5f5;
}

.mu-lt-feed-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 8px;
}

.mu-lt-feed-hd span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.mu-lt-feed-ref {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: #bbb;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .03);
}

.mu-lt-feed-ref:active {
    background: rgba(0, 0, 0, .06);
}

.mu-lt-feed-ref svg {
    width: 11px;
    height: 11px;
    stroke: #bbb;
    stroke-width: 2;
    fill: none;
}

.mu-lt-feed-empty {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    padding: 40px 20px;
}

/* -- 卡片 -- */
.mu-lt-card {
    background: #fff;
    margin-bottom: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    padding-bottom: 4px;
}

.mu-lt-card-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
}

.mu-lt-card-hav {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-lt-card-hav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-lt-card-hav svg {
    width: 14px;
    height: 14px;
    stroke: #bbb;
    stroke-width: 1.5;
    fill: none;
}

.mu-lt-card-hi {
    flex: 1;
    min-width: 0;
}

.mu-lt-card-hn {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mu-lt-card-ht {
    font-size: 9px;
    color: #bbb;
}

.mu-lt-card-hm {
    font-size: 14px;
    color: #aaa;
    cursor: pointer;
    padding: 4px;
}

/* 歌曲行（非全宽封面） */
.mu-lt-card-song {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 16px 8px;
    padding: 10px 12px;
    background: #f8f8f8;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .03);
}

.mu-lt-card-song:active {
    background: #f2f2f2;
}

.mu-lt-card-scv {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0eaee, #eae6f0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-lt-card-scv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-lt-card-scvph {
    font-size: 20px;
    color: rgba(0, 0, 0, .1);
}

.mu-lt-card-sinfo {
    flex: 1;
    min-width: 0;
}

.mu-lt-card-sn {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mu-lt-card-sa {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.mu-lt-card-splay {
    flex-shrink: 0;
    cursor: pointer;
}

.mu-lt-card-splay svg {
    width: 18px;
    height: 18px;
    fill: #555;
    stroke: none;
}

.mu-lt-card-splay:active {
    transform: scale(1.1);
}

.mu-lt-card-cap {
    padding: 0 16px 4px;
    font-size: 11px;
    color: #333;
    line-height: 1.5;
}

.mu-lt-card-capn {
    font-weight: 700;
    color: #222;
}

.mu-lt-card-acts {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 16px;
}

.mu-lt-card-abtn {
    cursor: pointer;
    transition: transform .15s;
}

.mu-lt-card-abtn:active {
    transform: scale(1.2);
}

.mu-lt-card-abtn svg {
    width: 20px;
    height: 20px;
    stroke: #333;
    stroke-width: 1.8;
    fill: none;
}

.mu-lt-card-abtn.liked svg {
    fill: #ed4956;
    stroke: #ed4956;
}

.mu-lt-card-lk {
    padding: 2px 16px 0;
    font-size: 11px;
    font-weight: 700;
    color: #222;
}

.mu-lt-card-cmts {
    padding: 2px 16px 2px;
}

.mu-lt-card-cmt {
    font-size: 11px;
    color: #333;
    line-height: 1.6;
}

.mu-lt-card-cmn {
    font-weight: 700;
    color: #222;
}

.mu-lt-card-cmn.char {
    color: #7b68ae;
}

.mu-lt-card-cmmore {
    font-size: 10px;
    color: #999;
    cursor: pointer;
    margin-top: 2px;
}

.mu-lt-card-addcm {
    padding: 6px 16px 10px;
    font-size: 10px;
    color: #bbb;
    cursor: pointer;
}

/* -- 评论弹窗 -- */
/* ===== 评论弹窗遮罩 ===== */
.mu-lt-cmt-ov {
    position: absolute;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, .4);
}

/* ===== 评论弹窗面板 ===== */
.mu-lt-cmt-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 60vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* ★ iOS键盘安全区 */
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* ★ 评论输入行 */
.mu-lt-cmt-irow {
    padding: 10px 16px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
}

/* ★ 评论输入框 */
.mu-lt-cmt-inp {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
    background: #fafafa;
    /* ★ 防止iOS自动缩放 */
    font-size: 16px;
}

.mu-lt-cmt-inp:focus {
    border-color: #ddd;
    background: #fff;
}

.mu-lt-cmt-inp::placeholder {
    color: #bbb;
}

@keyframes mu-lt-su {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes mu-lt-fi {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.mu-lt-cmt-ti {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mu-lt-cmt-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    max-height: 40vh;
}

.mu-lt-cmt-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.mu-lt-cmt-rav {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-lt-cmt-rav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-lt-cmt-rav svg {
    width: 14px;
    height: 14px;
    stroke: #bbb;
    stroke-width: 1.5;
    fill: none;
}

.mu-lt-cmt-rb {
    flex: 1;
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}

.mu-lt-cmt-rn {
    font-weight: 700;
    color: #222;
    margin-right: 4px;
}

.mu-lt-cmt-rn.char {
    color: #7b68ae;
}

.mu-lt-cmt-irow {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    background: #fafafa;
}

.mu-lt-cmt-inp {
    flex: 1;
    border: none;
    background: #f0f0f0;
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 12px;
    color: #333;
    outline: none;
    font-family: inherit;
}

.mu-lt-cmt-inp::placeholder {
    color: #bbb;
}

.mu-lt-cmt-send {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    padding: 6px 4px;
    white-space: nowrap;
}

.mu-lt-cmt-send:active {
    opacity: .6;
}

/* -- 角色选择器 -- */
.mu-lt-pick-ov {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: mu-lt-fi .2s;
}

.mu-lt-pick-md {
    width: 100%;
    max-width: 420px;
    max-height: 55vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    animation: mu-lt-su .25s ease-out;
}

.mu-lt-pick-ti {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    padding: 18px 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.mu-lt-pick-empty {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    padding: 32px 20px;
    line-height: 1.8;
}

.mu-lt-pick-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mu-lt-pick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .15s;
}

.mu-lt-pick-item:active {
    background: rgba(0, 0, 0, .03);
}

.mu-lt-pick-item.active {
    background: rgba(0, 0, 0, .02);
}

.mu-lt-pick-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mu-lt-pick-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mu-lt-pick-av svg {
    width: 20px;
    height: 20px;
    stroke: #bbb;
    stroke-width: 1.5;
    fill: none;
}

.mu-lt-pick-nm {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.mu-lt-pick-ck {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

.mu-lt-pick-cancel {
    text-align: center;
    padding: 14px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.mu-lt-pick-cancel:active {
    background: rgba(0, 0, 0, .02);
}