@charset "utf-8";
@import "iconfont.css";
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
    --bg: #f5f7fa;
    --card: #ffffff;
    --bar: #ffffff;
    --line: #e8ecf1;
    --text: #1d2129;
    --name: #383838;
    --title: #ff1a44;
    --accent: #ff1a44;
    --primary: #ff1a44;
    --red: #ff4d4f;
    --hot-red: #ff1a44;
    --title-rgb: 255,26,68;
    --accent-rgb: 255,26,68;
    --hot-red-rgb: 255,26,68;
    --hover-bg: #f0f3f7;
    --search-hover: rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(55,99,170,.1);
    --radius: 12px;
    --songs-name: #4e5969;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --tool-btn: linear-gradient(180deg, #f3f5f8, #fff), linear-gradient(180deg, #ff1a44, #ff5c7c);
    --tool-border: 2px solid #fff;
    --hread: #ffffffb0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font: 14px/1.6 var(--font-family);
}
a { color: var(--name); text-decoration: none; transition: color .2s; }
a:hover { color: var(--title); }
li { list-style: none; }
img { max-width: 100%; border: 0; display: block; }
input, button { font-family: inherit; outline: none; }

.logo-dark,.logo-light { transition: opacity 0.3s; }
.logo-light { display: block !important; }
.logo-dark { display: none !important; }

.wrap {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

.main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
}
.mainIn { width: 100%; }
.mainLeft { flex: 1; min-width: 0; }
.mainRight { width: 320px; flex-shrink: 0; }

@media (max-width: 768px) {
    .main { flex-direction: column; }
    .mainRight { width: 100%; }
}

/* header */
.header {
    background: var(--bar);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 999;
}
.headerIn { display: flex; flex-direction: column; }
.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px;
}
.logo img { height: 38px; }

.headerTopNav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex: 1;
    min-width: 0;
    padding: 0 10px;
}
.headerTopNavItemWrap { position: relative; }
.headerTopNavItem {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: calc(var(--radius) * .75);
    color: var(--name);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}
.headerTopNavItem i { font-size: 16px; }
.headerTopNavCaret {
    font-size: 14px !important;
    opacity: .7;
    margin-left: -2px;
}
.headerTopNavItem:hover, .headerTopNavItem.active { color: var(--title); background: var(--hover-bg); }
.headerTopSubNav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 130px;
    padding: 8px 0;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(55,99,170,.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 1000;
}
.headerTopNavItemWrap:hover .headerTopSubNav,
.headerTopNavItemWrap:focus-within .headerTopSubNav {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(4px);
}
.headerTopSubNav a { display: block; padding: 0 18px; line-height: 36px; color: var(--name); }
.headerTopSubNav a:hover { color: var(--title); }

.headerRight {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.headerSearchBtn {
    display: none; width: 36px; height: 36px; border: 0; border-radius: 50%;
    background: var(--bg); color: var(--name); align-items: center; justify-content: center;
    cursor: pointer;
}
.headerSearchBtn:hover { background: var(--hover-bg); color: var(--title); }
.headerSearch {
    display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line);
    border-radius: 999px; padding: 3px; overflow: hidden;
}
.headerSearch input {
    border: 0; background: transparent; color: var(--text); padding: 0 12px;
    width: 160px; font-size: 13px;
}
.headerSearch input::placeholder { color: #8f959e; }
.headerSearch button {
    border: 0; background: var(--title); color: #fff; width: 32px; height: 32px;
    border-radius: 50%; cursor: pointer;
}
.headerSearch button:hover { opacity: .9; }

.headerTools { display: flex; align-items: center; gap: 16px; }
.header-tool-item { display: inline-flex; align-items: center; gap: 5px; color: var(--name); font-size: 13px; }
.header-tool-item:hover { color: var(--title); }
.header-tool-item i { font-size: 18px; }

.header-login-btn {
    display: inline-flex; align-items: center; gap: 6px; color: var(--name); font-size: 13px;
}
.header-login-btn:hover { color: var(--title); }

body.layout-cols-3 .headerTopNav,
body.layout-cols-3 .headerTools { display: flex; }
body.layout-cols-3 .headerTop { justify-content: flex-start; }
body.layout-cols-3 .headerTopNav { justify-content: flex-start; padding: 0; }
body.layout-cols-3 .headerRight { margin-left: auto; }

@media (max-width: 768px) {
    .headerTopNav,
    .headerTools,
    .headerSearch { display: none; }
    .headerSearchBtn { display: flex; }
    .headerTop { gap: 10px; }
    .logo img { height: 32px; }
}

/* x5 user drop */
.lei_login { display: flex; align-items: center; }
.x5_user { position: relative; }
.x5_user .pic { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--name); }
.x5_user .pic img { width: 32px; height: 32px; border-radius: 50%; }
.x5_user .submenu {
    display: none; position: absolute; right: 0; top: 42px; width: 130px;
    background: var(--card); border: 1px solid var(--line); border-radius: 8px;
    box-shadow: var(--shadow); z-index: 1001; padding: 6px 0;
}
.x5_user:hover .submenu { display: block; }
.x5_user .submenu li { padding: 0 14px; line-height: 34px; }
.x5_user .submenu li a { color: var(--name); display: block; }
.x5_user .submenu li:hover { background: var(--hover-bg); }

/* footer */
.footer {
    background: var(--bar);
    border-top: 1px solid var(--line);
    padding: 30px 0;
    color: var(--name);
}
.footerIn { display: flex; flex-direction: column; gap: 16px; }
.footerTop { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footerLogo img { height: 38px; }
.footerLinks { display: flex; gap: 18px; flex-wrap: wrap; }
.footerLinks a { color: var(--name); font-size: 13px; }
.footerLinks a:hover { color: var(--title); }
.footerBottom { text-align: center; font-size: 12px; line-height: 1.8; }

/* suspension */
.suspension {
    width: 40px; padding: 8px 0; position: fixed; right: 12px; bottom: 120px;
    background: var(--card); border: 1px solid var(--line); border-radius: 8px;
    z-index: 999; text-align: center;
    box-shadow: var(--shadow);
}
.suspension li { margin: 8px 0; position: relative; }
.suspension li a { color: var(--name); display: block; }
.suspension li a:hover { color: var(--title); }
.suspension li .icon { font-size: 20px; display: block; }
.suspension li .text { font-size: 12px; }
.suspension li .pic {
    display: none; position: absolute; right: 50px; top: -60px; width: 150px;
    background: var(--card); border: 1px solid var(--line); padding: 8px; border-radius: 8px;
    box-shadow: var(--shadow);
}
.suspension li:hover .pic { display: block; }
.suspension li .pic img { width: 100%; margin-bottom: 5px; }

/* sections */
.section { margin-bottom: 28px; }
.sectionHeader {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.sectionTitle {
    font-size: 18px; font-weight: 600; color: var(--text); display: inline-flex; align-items: center; gap: 8px;
}
.sectionTitle i { color: var(--title); }
.sectionMore { font-size: 13px; color: var(--name); display: inline-flex; align-items: center; gap: 4px; }
.sectionMore:hover { color: var(--title); }
.sectionTabs { display: flex; gap: 12px; }
.sectionTabs a { font-size: 13px; padding: 4px 10px; border-radius: 20px; }
.sectionTabs a.active { background: var(--hover-bg); color: var(--title); }

/* cards */
.djList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.songCard, .mixCard {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.songCard:hover, .mixCard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(255,26,68,.15); }
.songCover {
    display: block; position: relative; border-radius: calc(var(--radius) * .7);
    overflow: hidden; margin-bottom: 12px;
}
.songCover img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.songCover .songPlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35); opacity: 0; transition: opacity .25s;
}
.songCover .songPlay i { font-size: 36px; color: #fff; }
.songCover:hover .songPlay { opacity: 1; }
.songName {
    font-size: 14px; line-height: 1.45; font-weight: 500;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 8px;
}
.songName a { color: var(--text); }
.songName a:hover { color: var(--title); }
.songMeta {
    display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--name); margin-bottom: 12px;
}
.songActions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 4px;
    padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 500;
    border: 1px solid transparent; cursor: pointer; transition: all .2s;
}
.btn--download { background: rgba(255,26,68,.1); color: var(--title); border-color: rgba(255,26,68,.2); }
.btn--download:hover { background: var(--title); color: #fff; }
.btn--burn { background: var(--hover-bg); color: var(--name); border-color: var(--line); }
.btn--burn:hover { color: var(--text); border-color: var(--title); }
.btn--fav { background: var(--hover-bg); color: var(--name); border-color: var(--line); }
.btn--fav:hover { color: var(--text); border-color: var(--title); }
.btn--primary { background: var(--title); color: #fff; }
.btn--primary:hover { opacity: .9; }

.artistList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.artistCard a {
    display: block; position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--card); border: 1px solid var(--line);
    transition: transform .2s, box-shadow .2s;
}
.artistCard a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.artistCard img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.artistTemp {
    position: absolute; top: 10px; left: 10px; font-size: 11px; color: #fff;
    background: rgba(0,0,0,.5); padding: 2px 8px; border-radius: 20px;
}
.artistName {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.85)); color: #fff; font-size: 14px;
}

/* widgets */
.widget { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 20px; }
.widgetTitle {
    padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}
.widgetTitle i { color: var(--title); }
.widgetBody { padding: 14px 16px; }
.sideList li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.sideList li:last-child { border-bottom: 0; }
.sideList em {
    width: 22px; height: 22px; text-align: center; line-height: 22px; border-radius: 4px;
    font-style: normal; font-size: 12px; background: var(--hover-bg); color: var(--name);
}
.sideList li:nth-child(1) em { background: var(--title); color: #fff; }
.sideList li:nth-child(2) em { background: #ff6b6b; color: #fff; }
.sideList li:nth-child(3) em { background: #ffa502; color: #fff; }
.sideList .name { flex: 1; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; }
.sideList .name a { color: var(--text); }
.sideList .name a:hover { color: var(--title); }

.linkList { display: flex; flex-wrap: wrap; gap: 10px; }
.linkList a { padding: 4px 12px; border-radius: 20px; background: var(--hover-bg); font-size: 12px; }
.linkList a:hover { background: var(--title); color: #fff; }

/* list page */
.main--list .mainIn { max-width: 100%; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px; color: var(--name); font-size: 13px; margin-bottom: 16px;
}
.breadcrumb a { color: var(--name); }
.breadcrumb a:hover { color: var(--title); }
.pageHeader { margin-bottom: 18px; }
.pageTitle { font-size: 22px; font-weight: 600; }
.filterBar, .sortBar {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px 16px; margin-bottom: 16px;
}
.filterGroup { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 10px; }
.filterGroup:last-child { margin-bottom: 0; }
.filterLabel { color: var(--name); font-size: 13px; white-space: nowrap; }
.filterTabs, .sortTabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filterTabs a, .sortTabs a { padding: 5px 12px; border-radius: 20px; font-size: 13px; color: var(--name); background: var(--hover-bg); }
.filterTabs a:hover, .sortTabs a:hover { color: var(--title); }
.filterTabs a.active, .sortTabs a.active { background: var(--title); color: #fff; }

.listTableWrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.listTable { width: 100%; border-collapse: collapse; font-size: 13px; }
.listTable th { text-align: left; padding: 12px 14px; color: var(--name); font-weight: 500; border-bottom: 1px solid var(--line); background: var(--bg); }
.listTable td { padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--name); vertical-align: middle; }
.listTable tbody tr:hover { background: var(--hover-bg); }
.listTable tbody tr:last-child td { border-bottom: 0; }
.colCheck { width: 40px; text-align: center; }
.colInfo { width: auto; }
.colMeta { white-space: nowrap; }
.colAction { text-align: right; }
.songRow .songCover { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; float: left; margin-right: 12px; }
.songRow .songCover img { width: 100%; height: 100%; object-fit: cover; }
.songRow .songName { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.songRow .songName a { color: var(--text); }
.songRow .songSub { font-size: 12px; color: var(--name); }
.songRow .tag { display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 11px; margin-left: 8px; }
.tag--hot { background: var(--title); color: #fff; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 20px 0; }
.pageInfo { color: var(--name); font-size: 13px; margin-right: 8px; }
.pageItem {
    min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px; background: var(--card); border: 1px solid var(--line); color: var(--name); font-size: 13px;
}
.pageItem:hover, .pageItem.active { background: var(--title); border-color: var(--title); color: #fff; }

/* play page */
.main--play .playLayout {
    display: flex; gap: 20px; align-items: flex-start;
}
.playMain { flex: 1; min-width: 0; }
.playSidebar { width: 320px; flex-shrink: 0; }
@media (max-width: 768px) {
    .main--play .playLayout { flex-direction: column; }
    .playSidebar { width: 100%; }
}

.playerCard {
    display: flex; gap: 24px; background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.playerCover { width: 200px; height: 200px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.playerCover img { width: 100%; height: 100%; object-fit: cover; }
.playerInfo { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.playerTitle { font-size: 22px; font-weight: 600; margin-bottom: 14px; line-height: 1.3; }
.playerMeta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--name); margin-bottom: 8px; }
.playerMeta a { color: var(--name); }
.playerMeta a:hover { color: var(--title); }
.playerMeta--sub { margin-bottom: 18px; }

.audioPlayer {
    display: flex; align-items: center; gap: 16px;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 20px;
}
.audioControls { display: flex; gap: 10px; }
.apBtn {
    width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--hover-bg);
    color: var(--text); display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
}
.apBtn:hover { background: var(--title); }
.apBtn--play { width: 48px; height: 48px; font-size: 20px; }
.audioProgressWrap { flex: 1; display: flex; align-items: center; gap: 12px; }
.apTime { font-size: 12px; color: var(--name); min-width: 40px; }
.apProgressBar { flex: 1; height: 5px; background: var(--hover-bg); border-radius: 3px; overflow: hidden; cursor: pointer; }
.apProgress { display: block; height: 100%; width: 0; background: var(--title); }
.audioExtra { display: flex; gap: 8px; }

.playInfoSection { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.playInfoSection .sectionTitle { margin-bottom: 12px; }
.playInfoBody { color: var(--name); font-size: 13px; line-height: 1.8; }
.playInfoBody p { margin-bottom: 8px; }
.playInfoBody a { color: var(--title); }

.sideTabs {
    display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; border-bottom: 1px solid var(--line);
}
.sideTab { padding: 6px 12px; border-radius: 20px; font-size: 12px; color: var(--name); background: var(--hover-bg); cursor: pointer; }
.sideTab.active, .sideTab:hover { background: var(--title); color: #fff; }
.sidePanel { padding: 12px; }
.sideSongList li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sideSongList li:last-child { border-bottom: 0; }
.sideSongList a { color: var(--text); font-size: 13px; }
.sideSongList a:hover { color: var(--title); }

/* legacy x5 components used in play.html */
.lei_wz { display: flex; align-items: center; gap: 6px; color: var(--name); font-size: 13px; margin-bottom: 16px; }
.lei_wz a { color: var(--name); }
.lei_wz a:hover { color: var(--title); }

.player-box {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; margin-bottom: 20px; display: flex; gap: 24px; flex-wrap: wrap;
}
.player-left { width: 280px; display: flex; flex-direction: column; align-items: center; }
.player-left .music-player { width: 220px; height: 220px; border-radius: 50%; position: relative; background: var(--hover-bg); }
.player-left .pic { position: absolute; left: 35px; top: 35px; width: 150px; height: 150px; border-radius: 50%; overflow: hidden; }
.player-left .pic img { width: 100%; height: 100%; }
.player-left .pic.active { animation: disc 6s linear infinite; }
.player-left .pointer { width: 70px; height: 140px; position: absolute; right: -10px; top: -10px; transform: rotate(-20deg); transform-origin: 50% 15%; transition: transform .3s; background: var(--title); border-radius: 4px; opacity: .6; }
.player-left .pointer.active { transform: rotate(0deg); }
.player-left .music-dc { width: 100%; margin-top: 20px; display: flex; justify-content: center; gap: 16px; }
.player-left .music-dc li { background: var(--hover-bg); border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; text-align: center; }
.player-left .music-dc li p { color: var(--text); font-size: 13px; }
.player-left .music-dc li .name { color: var(--name); font-size: 12px; margin-bottom: 2px; }

#jp_container_1 { flex: 1; min-width: 0; color: var(--text); }
.play_name { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.jp-progress { width: 100%; height: 6px; background: var(--hover-bg); border-radius: 3px; margin: 16px 0; cursor: pointer; }
.jp-seek-bar { height: 100%; background: var(--hover-bg); border-radius: 3px; }
.jp-play-bar { height: 100%; background: var(--title); border-radius: 3px; position: relative; }
.jp-play-bar:after { content: ''; position: absolute; right: -5px; top: -4px; width: 14px; height: 14px; background: #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.jp-time-holder { display: flex; justify-content: space-between; color: var(--name); font-size: 12px; margin-bottom: 16px; }
.jp-style { display: flex; align-items: center; justify-content: space-between; }
.jp-controls { display: flex; align-items: center; gap: 16px; }
.jp-controls li { list-style: none; }
.jp-controls a { color: var(--text); font-size: 13px; }
.jp-controls a.jp-play, .jp-controls a.jp-pause { display: inline-block; width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%; background: var(--title); color: #fff; font-size: 13px; }
.lei_v { display: flex; align-items: center; gap: 6px; }
.jp-volume-bar { width: 90px; height: 4px; background: var(--hover-bg); border-radius: 2px; cursor: pointer; }
.jp-volume-bar-value { height: 100%; background: var(--title); border-radius: 2px; }
.music-detail { width: 100%; background: var(--bg); border-radius: var(--radius); padding: 20px; margin-top: 20px; display: flex; gap: 20px; flex-wrap: wrap; }
.music-detail .popup-body { flex: 1; min-width: 220px; }
.music-detail .popup-body li { display: flex; gap: 8px; padding: 6px 0; color: var(--name); font-size: 13px; }
.music-detail .popup-body li span { color: var(--text); }
.music-detail .popup-body li span a { color: var(--title); }
.down-share { display: flex; flex-direction: column; gap: 12px; }
.down-share .down { background: linear-gradient(135deg, #ff1a44, #ff5c7c); border-radius: 8px; padding: 12px 20px; color: #fff; text-align: center; }
.down-share .down h1 { font-size: 16px; font-weight: 600; }
.down-share .down a { color: #fff; }
.down-share .share { border: 1px solid var(--line); border-radius: 8px; padding: 10px 20px; text-align: center; color: var(--name); }
.down-share .share a { color: var(--name); }
.down-share .share a:hover { color: var(--title); }

.lei_left { flex: 1; min-width: 0; }
.lei_right { width: 300px; flex-shrink: 0; }
.lei_sm {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px; color: var(--name); font-size: 13px; line-height: 1.8; margin-top: 20px;
}
.lei_sm a { color: var(--title); }

/* x5 login popover */
.lei_popover_mask { z-index: 9998; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: .6; display: none; }
.lei_popover { z-index: 99999; position: fixed; top: 40%; left: 50%; width: 400px; margin: -160px 0 0 -200px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); display: none; color: var(--text); box-shadow: var(--shadow); }
.lei_poptit { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--line); }
.lei_poptit h1 { font-size: 16px; }
.lei_poptit a.close { color: var(--name); font-size: 18px; }
.lei_user { padding: 20px 30px; }
.lei_user .input { width: 100%; height: 40px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; color: var(--text); text-indent: 12px; margin: 10px 0; }
.lei_user .home_btn { width: 100%; height: 42px; background: var(--title); color: #fff; border: 0; border-radius: 6px; cursor: pointer; margin: 10px 0; }

/* pagination x5 */
.lei_page { text-align: center; margin: 20px 0; }
.lei_page a { display: inline-block; padding: 6px 12px; margin: 0 4px; border: 1px solid var(--line); border-radius: 6px; color: var(--name); }
.lei_page a:hover, .lei_page a.current { background: var(--title); border-color: var(--title); color: #fff; }

.no_so { text-align: center; padding: 60px 0; color: var(--name); }

/* legacy hot list used in play.html */
.dance_list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.dance_list > ul { display: contents; }
.dance_list li { display: flex; gap: 12px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.dance_list li:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(255,26,68,.15); }
.dance_list li .pic { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; position: relative; flex-shrink: 0; }
.dance_list li .pic img { width: 100%; height: 100%; object-fit: cover; }
.dance_list li .pic .songPlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .2s; }
.dance_list li .pic:hover .songPlay { opacity: 1; }
.dance_list li .list_c { flex: 1; min-width: 0; }
.dance_list li .name { font-size: 13px; font-weight: 500; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 4px; }
.dance_list li .name a { color: var(--text); }
.dance_list li p { font-size: 12px; color: var(--name); display: flex; gap: 8px; flex-wrap: wrap; }
.dance_list li .class { color: var(--title); }
.dance_list li .user { color: #4991ff; }
.changeall a { font-size: 13px; color: var(--name); }
.changeall a:hover { color: var(--title); }

@keyframes disc { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ===================== dj93 首页风格补充 ===================== */

/* 经典导航栏 */
.nav--classic {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 10px 0 14px;
    border-top: 1px solid var(--line);
    margin-top: 0;
}
.nav--classic .navItem {
    position: relative;
    flex: 1;
    text-align: center;
}
.nav--classic .navItem > a {
    display: block;
    padding: 8px 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: all .2s;
}
.nav--classic .navItem > a:hover,
.nav--classic .navItem > a.active {
    color: var(--title);
    background: var(--hover-bg);
}
.nav--classic .subNav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 120px;
    padding: 8px 0;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(55,99,170,.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 1000;
    text-align: left;
}
.nav--classic .navItem:hover .subNav,
.nav--classic .navItem:focus-within .subNav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}
.nav--classic .subNav a {
    display: block;
    padding: 0 18px;
    line-height: 36px;
    font-size: 13px;
    color: var(--name);
    white-space: nowrap;
}
.nav--classic .subNav a:hover { color: var(--title); background: var(--hover-bg); }

/* 首页卡片 */
.box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}
.box:last-child { margin-bottom: 0; }
.box .boxBody { padding: 16px; }

/* 标题栏 */
.titleBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}
.titleBar h2,
.titleBar h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
.h-icon-1 {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--title);
    border-radius: 2px;
}
.titleBar .more,
.titleBar .moreLink {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: var(--name);
}
.titleBar .more:hover,
.titleBar .moreLink:hover { color: var(--title); }
.titleTabs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.titleTabs a {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--name);
    cursor: pointer;
}
.titleTabs a:hover { color: var(--title); }
.titleTabs a.active { background: var(--hover-bg); color: var(--title); }

/* 轮播图 */
.banner {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
}
.bannerTrack {
    display: flex;
    transition: transform .5s ease;
}
.banner .item {
    min-width: 100%;
    flex-shrink: 0;
}
.banner .item a { display: block; }
.banner .item img {
    width: 100%;
    aspect-ratio: 16/6;
    object-fit: cover;
    display: block;
}
.banner-btn-prev,
.banner-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    opacity: 0;
    transition: opacity .25s, background .2s;
    z-index: 2;
}
.banner:hover .banner-btn-prev,
.banner:hover .banner-btn-next { opacity: 1; }
.banner-btn-prev:hover,
.banner-btn-next:hover { background: #fff; color: var(--title); }
.banner-btn-prev { left: 12px; }
.banner-btn-next { right: 12px; }
.banner-btn-prev i,
.banner-btn-next i { font-size: 20px; }
.dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: all .25s;
}
.dots span.active { width: 20px; border-radius: 4px; background: var(--title); }

/* 独家推荐双列 */
.exclusive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}
.exItem {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    transition: border-color .2s, box-shadow .2s;
}
.exItem:hover { border-color: rgba(255,26,68,.2); box-shadow: 0 4px 12px rgba(55,99,170,.08); }
.exItemRow {
    display: flex;
    align-items: center;
    gap: 12px;
}
.col-cover {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.col-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.col-cover .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: opacity .25s;
}
.col-cover:hover .play-icon { opacity: 1; }
.play-icon i { font-size: 24px; color: #fff; }
.col-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.song-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.song-title:hover { color: var(--title); }
.song-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--name);
    flex-wrap: wrap;
}
.col-op {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.op-icon {
    font-size: 18px;
    color: var(--name);
    cursor: pointer;
    transition: color .2s;
}
.op-icon:hover { color: var(--title); }
.more-btn {
    font-size: 18px;
    color: var(--name);
    cursor: pointer;
    padding: 2px;
}
.more-btn:hover { color: var(--title); }
.song-more-bar {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
}
.song-more-bar.show { display: flex; }
.song-more-bar a {
    flex: 1;
    text-align: center;
    padding: 6px 0;
    border-radius: 6px;
    font-size: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--name);
}
.song-more-bar a:hover { color: var(--title); border-color: var(--title); }

/* 热门DJ制作人 */
.artistGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 16px;
}
.artistGrid .artistCard {
    text-align: center;
}
.artistGrid .artistCard a {
    display: block;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 10px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.artistGrid .artistCard a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(255,26,68,.15);
}
.artistGrid .artistCard img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}
.artistGrid .artistCard h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.artistGrid .artistCard h4 a { color: var(--text); }
.artistGrid .artistCard h4 a:hover { color: var(--title); }
.artistGrid .artistCard p {
    font-size: 12px;
    color: var(--name);
}

/* 右侧推荐舞曲列表 */
.sideSongList {
    padding: 10px 16px 16px;
}
.sideSongItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.sideSongItem:last-child { border-bottom: 0; }
.sideSongItem .num {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    background: var(--hover-bg);
    color: var(--name);
    flex-shrink: 0;
}
.sideSongItem:nth-child(1) .num { background: var(--title); color: #fff; }
.sideSongItem:nth-child(2) .num { background: #ff6b6b; color: #fff; }
.sideSongItem:nth-child(3) .num { background: #ffa502; color: #fff; }
.sideSongItem img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.sideSongItem .info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.sideSongItem .info .name {
    display: block;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sideSongItem .info .name:hover { color: var(--title); }
.sideSongItem .info .singer {
    display: block;
    font-size: 12px;
    color: var(--name);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.sideSongItem .date {
    font-size: 12px;
    color: var(--name);
    flex-shrink: 0;
}

/* 右侧专辑网格 */
.albumGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}
.albumCard {
    text-align: center;
}
.albumCard a { display: block; }
.albumCard img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: transform .2s, box-shadow .2s;
}
.albumCard a:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.albumCard h4 {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.albumCard h4 a { color: var(--text); }
.albumCard h4 a:hover { color: var(--title); }

/* VIP广告 */
.vipAd { padding: 16px; }
.vipAd a { display: block; border-radius: var(--radius); overflow: hidden; }
.vipAd img { width: 100%; display: block; }

/* 本周排行榜 */
.rankList { padding: 10px 16px 16px; }
.rankItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.rankItem:last-child { border-bottom: 0; }
.rankItem .rankNum {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    background: var(--hover-bg);
    color: var(--name);
    flex-shrink: 0;
}
.rankItem:nth-child(1) .rankNum { background: var(--title); color: #fff; }
.rankItem:nth-child(2) .rankNum { background: #ff6b6b; color: #fff; }
.rankItem:nth-child(3) .rankNum { background: #ffa502; color: #fff; }
.rankItem .info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.rankItem .info .name {
    display: block;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rankItem .info .name:hover { color: var(--title); }
.rankItem .info .singer {
    display: block;
    font-size: 12px;
    color: var(--name);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* 页脚多列 */
.site-footer {
    background: var(--bar);
    border-top: 1px solid var(--line);
    padding: 40px 0 24px;
    color: var(--name);
}
.site-footer .footerIn { display: block; }
.footerGrid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.footerCol h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}
.footerCol ul li { margin-bottom: 8px; }
.footerCol ul li a { font-size: 13px; color: var(--name); }
.footerCol ul li a:hover { color: var(--title); }
.footerCol p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--name);
}
.footerBottom2 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    line-height: 2;
}
.footerBottom2 a { color: var(--name); }
.footerBottom2 a:hover { color: var(--title); }

@media (max-width: 1100px) {
    .exclusive { grid-template-columns: 1fr; }
    .artistGrid { grid-template-columns: repeat(3, 1fr); }
    .albumGrid { grid-template-columns: repeat(2, 1fr); }
    .footerGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav--classic { flex-wrap: wrap; justify-content: flex-start; gap: 4px 8px; }
    .nav--classic .navItem { flex: none; width: calc(33.333% - 6px); }
    .artistGrid { grid-template-columns: repeat(2, 1fr); }
    .footerGrid { grid-template-columns: 1fr; }
    .banner .item img { aspect-ratio: 16/9; }
}
