:root {
    --bg: #131518;
    --card: #0d0d0d;
    --bar: #0d0d0d;
    --line: #101218;
    --text: #fff;
    --name: #8f8f8f;
    --title: #ff2d55;
    --red: #f44;
    --hot-red: #ff2d55;
    --hover-bg: #f1f3f8;
    --shadow: 0 2px 12px rgba(0,30,80,0.06);
    --radius: 12px;
    --font-family: OPPOSans2
}

@font-face {
    font-family: OPPOSans2;
    src: url(https://dsfs.oppo.com/store/public/font/OPPOSans-Regular.woff2) format("woff2"),url(https://dsfs.oppo.com/store/public/font/OPPOSans-Regular.woff) format("woff"),url(https://dsfs.oppo.com/store/public/font/OPPOSans-Regular.ttf) format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-family),-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;
    line-height: 1.5
}

a {
    text-decoration: none;
    color: var(--name);
    transition: color .2s ease
}

a:hover {
    color: var(--title)
}

li {
    list-style: none
}

.wrap {
    width: 96%;
    max-width: 1350px;
    margin: 0 auto
}

.hide {
    display: none
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: .3s
}

.mask.show {
    opacity: 1;
    pointer-events: auto
}

.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg);
    z-index: 99;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: .3s;
    padding: 20px;
    overflow-y: auto
}

.sidebar.show {
    left: 0
}

.sidebarLogo {
    text-align: center;
    padding: 10px 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sidebarLogo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain
}

.sidebarNav {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.sidebarNav a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px
}

.sidebarNav a.active,.sidebarNav a:hover {
    background: var(--title);
    color: #fff
}

.sidebarItem {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.sidebarSub {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-left: 12px
}

.sidebarSub a {
    padding: 10px 14px;
    font-size: 13px
}

.sidebarItem:hover .sidebarSub {
    display: flex
}

.header {
    height: auto;
    padding: 10px 0 0;
    background: var(--bar);
    box-shadow: 0 1px 4px rgba(0,20,60,0.04);
    position: relative;
    z-index: 999
}

.headerIn {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 6px
}

.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px
}

.logo {
    height: 50px;
    display: flex;
    align-items: center
}

.logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain
}

.nav-wrapper {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none
}

.nav li {
    position: relative;
    margin: 0;
    padding: 0;
    margin-right: clamp(24px,3vw,48px)
}

.nav li:last-child {
    margin-right: 0
}

.nav li a {
    color: var(--name);
    line-height: 44px;
    position: relative;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    padding: 0 4px;
    transition: color .3s cubic-bezier(0.2,0.9,0.4,1.1);
    text-decoration: none;
    font-size: 15px
}

.nav li a.active,.nav li a:hover {
    color: var(--title,#ff2d55)
}

.nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--title,#ff2d55);
    border-radius: 2px;
    transition: all .3s cubic-bezier(0.25,0.46,0.45,0.94);
    transform: translateX(-50%);
    opacity: 0
}

.nav li a:hover::after,.nav li a.active::after {
    width: 28px;
    opacity: 1
}

.nav li .subNav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: max-content;
    min-width: 100%;
    background: rgba(13,13,13,0.98);
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25),0 2px 4px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s cubic-bezier(0.2,0.9,0.4,1.1);
    z-index: 999;
    box-sizing: border-box;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08)
}

.nav li:hover .subNav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

.nav li .subNav a {
    display: block;
    color: #e0e0e0!important;
    padding: 0 28px;
    line-height: 38px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    transition: all .2s cubic-bezier(0.2,0.9,0.4,1.1);
    letter-spacing: .3px;
    text-align: left;
    position: relative
}

.nav li .subNav a::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 4px;
    height: 4px;
    background: var(--title,#ff2d55);
    border-radius: 50%;
    transition: transform .2s cubic-bezier(0.2,0.9,0.4,1.1)
}

.nav li .subNav a:hover {
    color: #ff2d55!important;
    background: rgba(255,45,85,0.08);
    padding-left: 36px
}

.nav li .subNav a:hover::before {
    transform: translateY(-50%) scale(1)
}

.nav li .subNav a:hover::after {
    display: none
}

@media(max-width: 1200px) {
    .nav-wrapper {
        padding:0 24px
    }

    .nav li {
        margin-right: clamp(16px,2.5vw,32px)
    }
}

@media(max-width: 992px) {
    .nav-wrapper {
        padding:0 16px
    }

    .nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch
    }

    .nav::-webkit-scrollbar {
        height: 3px
    }

    .nav::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05);
        border-radius: 3px
    }

    .nav::-webkit-scrollbar-thumb {
        background: var(--title,#ff2d55);
        border-radius: 3px
    }

    .nav li {
        margin-right: 20px;
        flex-shrink: 0
    }

    .nav li:last-child {
        margin-right: 0
    }
}

@media(max-width: 768px) {
    .nav-wrapper {
        padding:0 12px
    }

    .nav li {
        margin-right: 14px
    }

    .nav li a {
        font-size: 14px;
        padding: 0 2px
    }

    .nav li .subNav {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(-10px);
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        border-radius: 12px
    }

    .nav li:hover .subNav {
        transform: translateX(0) translateY(0)
    }

    .nav li .subNav a {
        padding: 0 20px;
        text-align: center
    }

    .nav li .subNav a:hover {
        padding-left: 28px
    }
}

@media(hover: none) and (pointer:coarse) {
    .nav li .subNav {
        transition:none
    }

    .nav li a::before {
        display: none
    }
}

.headerRight {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative
}

.search {
    position: relative;
    width: 260px;
    height: 34px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: .3s;
    border: 1px solid transparent;
    flex-shrink: 0
}

.search:hover {
    background: #e8ebf2
}

.search:focus-within {
    border-color: var(--title,#ff2d55);
    background: var(--bg)
}

.search i {
    color: #999;
    font-size: 16px;
    margin-right: 8px;
    flex-shrink: 0
}

.search input {
    flex: 1;
    background: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    font-size: 13px;
    height: 100%;
    padding: 0;
    min-width: 0
}

.search input::placeholder {
    color: #999
}

#ser_result {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card,#0d0d0d);
    border: 1px solid var(--line,#101218);
    border-radius: 8px;
    margin-top: 8px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3)
}

#ser_result ul {
    list-style: none;
    margin: 0;
    padding: 4px 0
}

#ser_result a {
    display: block;
    padding: 8px 12px;
    color: var(--text,#fff);
    text-decoration: none;
    font-size: 13px;
    transition: .2s;
    cursor: pointer
}

#ser_result a:hover {
    background: rgba(255,45,85,0.1);
    color: var(--title,#ff2d55)
}

#ser_result::-webkit-scrollbar {
    width: 4px
}

#ser_result::-webkit-scrollbar-track {
    background: var(--line,#101218);
    border-radius: 4px
}

#ser_result::-webkit-scrollbar-thumb {
    background: var(--title,#ff2d55);
    border-radius: 4px
}

@media(max-width: 768px) {
    .search {
        width:200px
    }
}

@media(max-width: 480px) {
    .headerRight {
        gap:8px
    }

    .search {
        width: 160px;
        padding: 0 8px
    }

    .search i {
        margin-right: 4px;
        font-size: 14px
    }

    .search input {
        font-size: 12px
    }

    .user {
        width: 30px;
        height: 30px
    }

    #ser_result a {
        padding: 6px 10px;
        font-size: 12px
    }
}

.mobileSearchDown {
    top: -80px;
    left: 0;
    right: 0;
    background: var(--card,#0d0d0d);
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: top .3s ease;
    z-index: 9;
    border-bottom: 1px solid var(--line,#101218);
    box-sizing: border-box;
    position: fixed
}

.mobileSearchDown.show {
    top: 60px
}

.mobileSearchContainer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg,#1a1a1a);
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line,#101218);
    width: 100%;
    box-sizing: border-box
}

.mobileSearchContainer i {
    color: #999;
    font-size: 18px;
    flex-shrink: 0
}

.mobileSearchContainer i.ri-close-line {
    cursor: pointer;
    flex-shrink: 0
}

.mobileSearchContainer input {
    flex: 1;
    min-width: 0;
    background: 0;
    border: 0;
    outline: 0;
    color: var(--text,#fff);
    font-size: 15px;
    padding: 0;
    width: 100%
}

.mobileSearchContainer input::placeholder {
    color: #999
}

#mobile_ser_result {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card,#0d0d0d);
    border-top: 1px solid var(--line,#101218);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-sizing: border-box
}

#mobile_ser_result ul {
    list-style: none;
    margin: 0;
    padding: 8px 0
}

#mobile_ser_result a {
    display: block;
    padding: 12px 16px;
    color: var(--text,#fff);
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
    cursor: pointer;
    border-bottom: 1px solid var(--line,#101218);
    word-break: break-all;
    box-sizing: border-box
}

#mobile_ser_result a:active {
    background: rgba(255,45,85,0.1);
    color: var(--title,#ff2d55)
}

@media(max-width: 768px) {
    .mobileSearchDown.show {
        top:50px
    }

    .mobileSearchDown {
        padding: 10px 12px
    }

    .mobileSearchContainer {
        padding: 8px 10px;
        gap: 8px
    }

    .mobileSearchContainer i {
        font-size: 16px
    }

    .mobileSearchContainer input {
        font-size: 14px
    }

    #mobile_ser_result a {
        padding: 10px 12px;
        font-size: 13px
    }
}

.mobileLogo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 16px;
    font-weight: bold;
    color: var(--title);
    white-space: nowrap
}

.mobileLogo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain
}

.user {
    display: flex;
    align-items: center;
    gap: 20px
}

.user-login-info {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding: 4px 8px;
    border-radius: 40px;
    transition: background .2s
}

.user-login-info:hover {
    background: rgba(255,255,255,0.05)
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,45,85,0.3);
    transition: all .25s ease
}

.user-avatar:hover {
    border-color: #ff2d55
}

.user-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3
}

.user-name span {
    font-size: 13px;
    font-weight: 500;
    color: #f0f0f5
}

.user-name .user-vip {
    font-size: 11px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px
}

.user-name .user-vip i {
    font-size: 12px
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--bar);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
    display: none
}

.user-dropdown.show {
    display: block;
    animation: dropdownFadeIn .2s ease
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #a0a0b0;
    font-size: 13px;
    text-decoration: none;
    transition: all .2s
}

.user-dropdown a:hover {
    color: #ff2d55
}

.user-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 6px 0
}

.mobileHeader {
    background: var(--bar,#0d0d0d);
    border-bottom: 1px solid var(--line,#101218);
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 90
}

.mobileIn {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box
}

.menuBtn {
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between
}

.mobileUser {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
    position: relative
}

.mobileUser a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent
}

.mobileUser a:active {
    background: rgba(255,255,255,0.15)
}

.user-login-info-mobile {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center
}

.user-login-info-mobile .user-avatar {
    width: 32px;
    height: 32px;
    margin: 0;
    border: 2px solid rgba(255,45,85,0.3);
    border-radius: 50%;
    object-fit: cover
}

.mobile-user-menu {
    position: absolute;
    top: 100%;
    right: -5px;
    margin-top: 8px;
    width: 180px;
    background: var(--card);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08)
}

.mobile-user-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: var(--card);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: rotate(45deg);
    z-index: -1
}

.mobile-user-menu.show {
    display: block;
    animation: dropdownFadeIn .2s ease
}

.mobile-user-menu a {
    width: auto!important;
    height: auto!important;
    border-radius: 0!important;
    display: flex!important;
    align-items: center!important;
    justify-content: flex-start!important;
    gap: 10px!important;
    padding: 10px 14px!important;
    color: #a0a0b0!important;
    font-size: 13px!important;
    text-decoration: none!important;
    transition: all .2s;
    width: 100%!important;
    box-sizing: border-box!important;
    min-height: 40px!important;
    -webkit-tap-highlight-color: transparent;
    background: transparent!important
}

.mobile-user-menu a:active {
    background: rgba(255,45,85,0.1)!important;
    color: #ff2d55!important
}

.mobile-user-menu .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 6px
}

.mobile-user-menu .user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover
}

.mobile-user-menu .user-info .user-name {
    font-size: 14px;
    font-weight: 500;
    color: #f0f0f5;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mobile-user-menu .user-info .user-vip-badge {
    font-size: 10px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    flex-wrap: wrap
}

.mobile-user-menu .dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 6px 0
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.bannerBox {
    display: flex;
    gap: 1.5%;
    margin: 20px 0
}

.banner {
    width: 75%;
    height: 385px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow)
}

.banner .item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s
}

.banner .item.active {
    opacity: 1
}

.banner .dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.banner .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .3s
}

.banner .dots span.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,255,255,0.5)
}

.rightRec {
    width: 23.5%;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow)
}

.rightRec:hover {
    box-shadow: 0 8px 24px rgba(0,30,80,0.1);
    transform: translateY(-2px)
}

.recHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 16px 14px
}

.recTitle {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.recTab {
    display: flex;
    gap: 8px;
    font-size: 12px
}

.recTab span {
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s;
    background: var(--bg)
}

.recTab span:hover {
    background: var(--title);
    color: #fff
}

.recTab span.active {
    background: var(--title);
    color: #fff
}

.recList {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden
}

.recList.hide {
    display: none!important
}

.recList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 6px;
    transition: .2s;
    color: var(--name)
}

.recList li:hover {
    color: var(--title)
}

.recList li a {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.recList li span {
    color: #999;
    flex-shrink: 0;
    margin-left: 10px;
    width: 50px;
    text-align: right
}

.main {
    display: flex;
    gap: 1.5%;
    margin: 20px 0;
    position: relative
}

.mainLeft {
    width: 75%
}

.mainRight {
    width: 23.5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    align-self: flex-start
}

.titleBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 16px 14px;
    white-space: nowrap;
    overflow: hidden
}

.titleBar h3 {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0
}

.titleBar a {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0
}

.titleBar a:hover {
    color: var(--title)
}

.titleBar .tabGroup {
    display: flex;
    gap: 8px
}

.titleBar .tabBtn {
    padding: 4px 10px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer
}

.titleBar .tabBtn.active {
    background: var(--title);
    color: #fff
}

.box {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: var(--shadow)
}

.box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,30,80,0.1)
}

.exclusive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 15px;
    padding: 15px
}

.exItem {
    display: flex;
    align-items: center;
    line-height: 40px;
    border-radius: 6px;
    transition: .2s;
    min-width: 0
}

.exNum {
    width: 22px;
    line-height: 22px;
    height: 22px;
    background: var(--title);
    margin-right: 8px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    flex-shrink: 0
}

.exName {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0
}

.exDate {
    color: #999;
    margin-left: 8px;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0
}

.exItem {
    color: var(--name)
}

.exItem:nth-child(-n+10) .exNum {
    background: var(--hot-red)
}

.exItem:nth-child(n+11) .exNum {
    background: #555
}

.singleList {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.singleList li {
    display: flex;
    justify-content: space-between;
    line-height: 40px;
    transition: .2s;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
    color: var(--name)
}

.singleList li:hover {
    color: var(--title)
}

.singleList li a {
    flex: 1;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0
}

.singleList li span {
    color: #999;
    min-width: 50px;
    text-align: right;
    flex-shrink: 0
}

.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.double>* {
    margin-top: 20px!important
}

.djBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow);
    margin-top: 20px
}

.djList {
    display: grid;
    grid-template-columns: 240px repeat(5,1fr);
    gap: 14px;
    padding: 16px;
    box-sizing: border-box
}

.djMainItem {
    position: relative;
    grid-row: span 2;
    width: 100%;
    height: 100%
}

.djMainItem a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%
}

.djMainItem img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    top: 0;
    left: 0
}

.djItem {
    display: block;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1
}

.djItem a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%
}

.djItem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,20,60,0.1);
    top: 0;
    left: 0
}

.djBadge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #2dce89;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2
}

.djTemp {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2
}

.djTemp i {
    color: #ff3b30
}

.djName {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 8px 4px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    background: linear-gradient(transparent,rgba(0,0,0,0.7));
    border-radius: 0 0 10px 10px;
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.djMainItem .djName {
    border-radius: 0 0 12px 12px
}

.djItem:hover {
    transform: scale(1.03)
}

.djItem:hover img {
    box-shadow: 0 6px 18px rgba(44,80,255,0.15)
}

.djList {
    display: grid;
    grid-template-columns: 240px repeat(5,1fr);
    gap: 14px
}

.djMainItem {
    grid-row: 1 / 3;
    grid-column: 1 / 2
}

.djList .djItem:nth-child(2),.djList .djItem:nth-child(3),.djList .djItem:nth-child(4),.djList .djItem:nth-child(5),.djList .djItem:nth-child(6) {
    grid-row: 1
}

.djList .djItem:nth-child(7),.djList .djItem:nth-child(8),.djList .djItem:nth-child(9),.djList .djItem:nth-child(10),.djList .djItem:nth-child(11) {
    grid-row: 2
}

.djList .djItem:nth-child(2) {
    grid-column: 2
}

.djList .djItem:nth-child(3) {
    grid-column: 3
}

.djList .djItem:nth-child(4) {
    grid-column: 4
}

.djList .djItem:nth-child(5) {
    grid-column: 5
}

.djList .djItem:nth-child(6) {
    grid-column: 6
}

.djList .djItem:nth-child(7) {
    grid-column: 2
}

.djList .djItem:nth-child(8) {
    grid-column: 3
}

.djList .djItem:nth-child(9) {
    grid-column: 4
}

.djList .djItem:nth-child(10) {
    grid-column: 5
}

.djList .djItem:nth-child(11) {
    grid-column: 6
}

@media(max-width: 992px) {
    .djBox {
        overflow:visible
    }

    .djList {
        display: flex;
        gap: 12px;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 15px
    }

    .djList::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0
    }

    .djItem,.djMainItem {
        flex-shrink: 0;
        width: 110px;
        aspect-ratio: 1 / 1;
        scroll-snap-align: start;
        border-radius: 10px;
        overflow: hidden;
        position: relative
    }

    .djMainItem {
        width: 110px
    }

    .djItem a,.djMainItem a {
        display: block;
        width: 100%;
        height: 100%
    }

    .djItem img,.djMainItem img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
        border-radius: 10px
    }

    .djMainItem img {
        border-radius: 10px
    }

    .djName {
        font-size: 11px;
        padding: 10px 4px 6px;
        white-space: nowrap
    }

    .djMainItem .djName {
        font-size: 11px
    }

    .djBadge {
        top: 6px;
        left: 6px;
        font-size: 9px;
        padding: 3px 6px
    }

    .djTemp {
        top: 6px;
        right: 6px;
        font-size: 9px;
        padding: 2px 6px
    }

    .djTemp i {
        font-size: 9px
    }
}

@media(max-width: 768px) {
    .djList {
        gap:10px;
        padding: 15px 0
    }

    .djItem,.djMainItem {
        width: 100px
    }

    .djName {
        font-size: 10px;
        padding: 8px 3px 5px
    }
}

@media(max-width: 480px) {
    .djList {
        gap:12px
    }

    .djItem,.djMainItem {
        width: 90px
    }

    .djName {
        font-size: 9px;
        padding: 6px 2px 4px;
        white-space: normal;
        line-height: 1.2;
        word-break: break-word
    }

    .djMainItem .djName {
        font-size: 9px;
        padding: 6px 2px 4px
    }

    .djBadge {
        font-size: 7px;
        padding: 2px 4px;
        top: 4px;
        left: 4px
    }

    .djTemp {
        font-size: 7px;
        padding: 2px 4px;
        top: 4px;
        right: 4px
    }

    .djTemp i {
        font-size: 7px
    }
}

.rankBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow);
    margin-bottom: 0
}

.rankBox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,30,80,0.1)
}

.rankTab {
    display: flex;
    gap: 8px
}

.rankTab span {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: .2s;
    background: var(--bg)
}

.rankTab span:hover {
    background: var(--red);
    color: #fff
}

.rankTab span.active {
    background: var(--red);
    color: #fff
}

#rank1,#rank2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px
}

#rank1.hide,#rank2.hide {
    display: none!important
}

.rankItem {
    display: flex;
    align-items: center;
    transition: .2s;
    line-height: 40px;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
    color: var(--name)
}

.rankNum {
    width: 24px;
    font-weight: bold;
    margin-right: 8px;
    text-align: center;
    flex-shrink: 0
}

.rankTxt {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0
}

.rankTxt a {
    color: var(--name)
}

.rankTxt a:hover {
    color: var(--hot-red)
}

.rankItem:nth-child(1) .rankNum {
    color: #ffb700
}

.rankItem:nth-child(2) .rankNum {
    color: #6c757d
}

.rankItem:nth-child(3) .rankNum {
    color: #ff9500
}

.rankList {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px
}

.adBox {
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow)
}

.adBox img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rightAlbumBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow)
}

.rightAlbumBox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,30,80,0.1)
}

.rightAlbumList {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 16px
}

.rightAlbumItem {
    text-align: center;
    transition: .2s
}

.rightAlbumItem:hover {
    transform: scale(1.05)
}

.album-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,20,60,0.08)
}

.album-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    transition: .3s;
    display: block;
    background: #f5f5f5
}

.album-wrap:hover img {
    transform: scale(1.1)
}

.album-num {
    position: absolute;
    left: 4px;
    bottom: 4px;
    font-size: 11px;
    color: #fff;
    background: rgba(0,0,0,.5);
    padding: 1px 4px;
    border-radius: 2px
}

.album-icon {
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transition: .3s
}

.album-wrap:hover .album-icon {
    opacity: 1
}

.rightAlbumItem p {
    font-size: 12px;
    color: #777;
    margin-top: 8px
}

.linkBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow)
}

.linkList {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.linkList a {
    padding: 6px 10px;
    background: var(--bg);
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    transition: .2s
}

.linkList a:hover {
    background: var(--title);
    color: #fff
}

.songListBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s;
    box-shadow: var(--shadow)
}

.songListBox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,30,80,0.1)
}

.songListGrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    padding: 15px
}

.songListItem {
    text-align: center;
    transition: .2s;
    min-width: 0
}

.songCover {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,20,60,0.08);
    width: 100%;
    max-width: 180px;
    margin: 0 auto
}

.songCover img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    transition: .3s;
    display: block
}

.songCover:hover img {
    transform: scale(1.1)
}

.songTag {
    position: absolute;
    left: 6px;
    bottom: 6px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px
}

.songIcon {
    position: absolute;
    right: 6px;
    top: 6px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: .3s
}

.songCover:hover .songIcon {
    opacity: 1
}

.songInfo {
    margin-top: 8px
}

.songInfo a {
    display: block;
    font-size: 12px;
    color: var(--name);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.songInfo p {
    font-size: 11px;
    margin-top: 3px
}

.cardFilter {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.filterRow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px
}

.filterRow:last-child {
    margin-bottom: 0
}

.filterLabel {
    font-size: 14px;
    color: #ccc;
    min-width: 56px
}

.filterTag {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--bg);
    font-size: 13px;
    cursor: pointer;
    transition: .2s
}

.filterTag a {
    color: var(--name);
    display: block
}

.filterTag.active {
    background: var(--title)
}

.filterTag.active a {
    color: #fff!important
}

.filterTag:hover {
    background: var(--line)
}

.filterTag:hover a {
    color: #fff
}

.sortTabBox {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.sortTabList {
    display: flex!important;
    flex-wrap: wrap!important;
    gap: 10px!important;
    justify-content: flex-start!important
}

.sortTabList .sortItem {
    flex: 1!important;
    min-width: 90px!important;
    text-align: center!important;
    padding: 10px 15px;
    border-radius: 6px;
    background: var(--bg);
    color: #ccc;
    font-size: 13px;
    transition: .2s
}

.sortItem.active {
    background: var(--hot-red);
    color: #fff
}

.sortItem:hover {
    background: var(--line)
}

.listHeader {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    color: #aaa;
    font-weight: bold;
    width: 100%
}

.col-check {
    width: 40px;
    flex-shrink: 0
}

.col-cover {
    width: 50px;
    flex-shrink: 0
}

.col-name {
    flex: 1;
    min-width: 0
}

.col-bg {
    padding: 5px 10px;
    border-radius: 8px
}

.col-hot {
    width: 100px;
    flex-shrink: 0;
    text-align: center;
    color: var(--name)
}

.col-time {
    width: 140px;
    flex-shrink: 0;
    text-align: center;
    color: var(--name)
}

.col-op {
    width: 100px;
    flex-shrink: 0;
    text-align: center
}

.songList {
    padding: 0;
    width: 100%
}

.songItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    transition: all .2s ease;
    width: 100%;
    position: relative
}

.songItemRow {
    display: flex;
    align-items: center;
    width: 100%
}

.col-cover {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-right: 10px
}

.col-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.col-cover .play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    backdrop-filter: blur(4px)
}

.col-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
    flex: 1
}

#tooltips {
    position: absolute;
    background: var(--hot-red);
    color: #FFF;
    display: none;
    font-size: 14px;
    padding: 0 15px;
    line-height: 32px;
    border-radius: 2px;
    margin-top: -42px;
    z-index: 9
}

#tooltips:after {
    left: 50%;
    bottom: -10px;
    position: absolute;
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--hot-red);
    margin-left: -10px
}

.song-progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,45,85,0.12);
    pointer-events: none;
    z-index: 0;
    transition: width .1s linear
}

.song-title,.song-info {
    position: relative;
    z-index: 1
}

.hot-icon {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 8px;
    padding: 0 6px;
    background: rgba(255,77,79,0.1);
    color: #ff4d4f;
    border-radius: 10px;
    font-size: 10px
}

.song-title {
    font-weight: 500;
    color: var(--name);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.song-title:hover {
    color: var(--title)
}

.song-info {
    font-size: 10px;
    color: #717171;
    display: flex;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.col-check input {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #444;
    border-radius: 6px;
    background: #111;
    cursor: pointer;
    position: relative
}

.col-check input:checked {
    background: #ff2d55;
    border-color: #ff2d55
}

.col-check input:checked::after {
    content: "\eb7b";
    font-family: remixicon;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 8px
}

.col-check input:hover {
    border-color: #ff2d55
}

.col-op {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100px;
    flex-shrink: 0
}

.col-op i {
    font-size: 17px;
    color: #aaa;
    cursor: pointer;
    transition: all .25s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #16181c
}

.col-op i:hover {
    color: #fff;
    background: #252525;
    transform: scale(1.1)
}

.col-op i:hover {
    color: var(--title)
}

.more-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ccc;
    cursor: pointer
}

.song-more-bar {
    width: 100%;
    height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    background: #1a1a1a;
    border-radius: 6px;
    margin-top: 0;
    transition: all .3s ease
}

.song-more-bar.show {
    height: 44px;
    margin-top: 8px;
    padding: 0 10px
}

.song-more-bar i {
    font-size: 14px;
    color: #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center
}

.song-more-bar i:hover {
    color: var(--title)
}

.list_box {
    display: flex;
    justify-content: space-between
}

.list_controllbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bar);
    flex-wrap: wrap;
    gap: 25px;
}

.list_left_actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.list_selectall {
    display: flex;
    align-items: center;
    gap: 8px
}

.list_selectall span {
    font-size: 13px;
    color: var(--text);
    cursor: pointer
}

.list_selectall input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid #444;
    border-radius: 6px;
    background: #111;
    cursor: pointer;
    position: relative
}

.list_selectall input[type="checkbox"]:checked {
    background: #ff2d55;
    border-color: #ff2d55
}

.list_selectall input[type="checkbox"]:checked::after {
    content: "\eb7b";
    font-family: remixicon;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 8px
}

.index-typeicon {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0
}

.playall,.addall {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    background: #222;
    color: #fff;
    border: 0
}

.playall {
    background: var(--title)
}

.playall:hover {
    background: #e60039
}

.addall:hover {
    background: #333
}

.list_split_page {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 16px
}

.list_split_page ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none
}

.list_split_page li {
    display: inline-block;
    list-style: none
}

.list_split_page .active span {
    background: var(--title);
    color: #fff
}

.list_split_page a,.list_split_page span {
    display: inline-block;
    min-width: 32px;
    padding: 6px 12px;
    border: 1px solid var(--bg);
    border-radius: 6px;
    background: var(--bg);
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    text-align: center;
    transition: all .2s
}

.list_split_page a:hover {
    border-color: var(--title);
    color: var(--title);
    background: rgba(255,45,85,0.1)
}

.list_split_page .active a,.list_split_page .current {
    background: var(--title);
    border-color: var(--title);
    color: #fff
}

.list_split_page .f input {
    width: 50px;
    border: 0;
    background: var(--bg);
    color: #ccc;
    text-align: center
}

.list_split_page .f input:focus {
    outline: 0;
    border-color: var(--title)
}

.list_split_page .g a {
    background: var(--bg)
}

.list_split_page .e span {
    background: transparent;
    border: 0
}

@media(max-width: 768px) {
    .list_box {
        display:block
    }

    .list_controllbox {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px 16px;
    }

    .list_left_actions {
        justify-content: flex-start;
        gap: 15px;
        flex: 1
    }

    .index-typeicon {
        justify-content: flex-end;
        flex-shrink: 0
    }

    .list_split_page {
        justify-content: center;
        margin-top: 0;
        padding: 12px 16px;
        border-top: 0
    }
}

@media(max-width: 550px) {
    .list_controllbox {
        flex-wrap:wrap;
        gap: 10px
    }

    .list_left_actions {
        flex: 1;
        min-width: auto
    }

    .index-typeicon {
        flex-shrink: 0
    }

    .list_split_page {
        justify-content: center;
        padding: 12px 8px;
        gap: 8px
    }

    .list_split_page a,.list_split_page span {
        min-width: 28px;
        padding: 4px 8px;
        font-size: 12px
    }

    .list_split_page .f input {
        width: 45px
    }
}

.searchLogList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 16px
}

.searchLogItem {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    font-size: 13px;
    transition: all .2s
}

.searchLogItem:hover {
    background: rgba(255,45,85,0.2)
}

.searchLogItem a {
    color: var(--text);
    text-decoration: none
}

.searchLogItem .delete-btn {
    color: var(--name);
    cursor: pointer;
    font-size: 14px;
    line-height: 1
}

.searchLogItem .delete-btn:hover {
    color: var(--red)
}

.empty-log {
    text-align: center;
    padding: 30px 0;
    color: var(--name);
    font-size: 12px
}

.hotSearchList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 16px
}

.hotSearchItem {
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    transition: all .2s
}

.hotSearchItem:hover {
    background: rgba(255,45,85,0.2)
}

.hotSearchItem a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px
}

.empty-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--name);
    font-size: 14px
}

.empty-data .btn-link {
    color: var(--title);
    text-decoration: none;
    margin-left: 8px
}

.empty-data .btn-link:hover {
    text-decoration: underline
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    display: none
}

.modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    z-index: 9999;
    display: none;
    overflow: hidden
}

.modal-header {
    padding: 18px 20px;
    background: var(--card,#0d0d0d);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500
}

.modal-header h4 i {
    margin-right: 8px
}

.modal-close {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: opacity .2s
}

.modal-close:hover {
    opacity: .8
}

.modal-body {
    padding: 25px 20px
}

.modal-body .alert {
    background: rgba(255,45,85,0.1);
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--title);
    line-height: 1.6;
    border-radius: 6px
}

.modal-body textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    resize: vertical;
    box-sizing: border-box
}

.modal-body textarea:focus {
    outline: 0;
    border-color: var(--title)
}

.modal-footer {
    padding: 15px 20px 20px;
    text-align: center;
    border-top: 1px solid var(--line)
}

.modal-footer .btn {
    padding: 10px 30px;
    font-size: 14px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    margin: 0 8px
}

.modal-footer .btn-primary {
    background: var(--title);
    color: #fff
}

.modal-footer .btn-primary:hover {
    opacity: .85
}

.modal-footer .btn-default {
    background: rgba(255,255,255,0.08);
    color: var(--text)
}

.modal-footer .btn-default:hover {
    background: rgba(255,255,255,0.15)
}

@media(max-width: 768px) {
    .col-hot,.col-time {
        display:none
    }

    .col-op {
        width: 80px
    }
    .col-cz {
        width: 80px;
        text-align: end;
    }
    .more-btn {
        display: block;
        width: 30px !important;
    }

    .songItemRow .col-op i {
        display: none
    }
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none
}

.pagination li {
    display: inline-block
}

.pagination a,.pagination span {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 6px;
    color: #8f8f8f;
    transition: .2s;
    text-decoration: none;
    padding: 0 10px
}

.pagination a:not(.prev):not(.next):not(.more) {
    width: 36px;
    padding: 0
}

.pagination a:hover {
    background: var(--hot-red);
    color: #fff
}

.pagination .active span,.pagination .current {
    background: var(--hot-red)!important;
    color: #fff!important
}

.pagination a.more {
    background: transparent!important;
    cursor: default
}

.page-jump {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--name)
}

.page-jump input {
    width: 55px;
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
    background: var(--card);
    color: var(--text)
}

.page-jump input:focus {
    outline: 0;
    border-color: var(--title)
}

.page-jump a {
    padding: 6px 14px;
    background: var(--bg);
    border-radius: 6px;
    text-decoration: none;
    color: var(--name);
    cursor: pointer;
    transition: .2s
}

.page-jump a:hover {
    background: var(--title);
    color: #fff
}

.page-info {
    font-size: 12px;
    color: var(--name)
}

@media(max-width: 768px) {
    .pagination {
        flex-direction:row;
        justify-content: center;
        flex-wrap: wrap
    }

    .pagination-wrapper {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap
    }

    .page-jump {
        margin-left: 0
    }
}

@media(max-width: 480px) {
    .pagination {
        gap:5px
    }

    .pagination a,.pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 12px
    }

    .pagination a:not(.prev):not(.next):not(.more) {
        width: 32px
    }

    .page-jump input {
        width: 50px;
        padding: 4px 6px
    }

    .page-jump a {
        padding: 4px 10px
    }
}

.albumGrid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    padding: 20px
}

.albumCard {
    transition: .3s;
    border-radius: var(--radius);
    overflow: hidden
}

.albumCard:hover {
    transform: scale(1.03)
}

.albumCover {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 2px 8px rgba(0,20,60,0.1)
}

.albumCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
    display: block
}

.albumCover:hover img {
    transform: scale(1.1)
}

.albumTag {
    position: absolute;
    left: 6px;
    bottom: 6px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px
}

.albumPlay {
    position: absolute;
    right: 6px;
    top: 6px;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: .3s
}

.albumCover:hover .albumPlay {
    opacity: 1
}

.albumInfo {
    margin-top: 10px;
    text-align: center
}

.albumInfo h4 {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text)
}

.albumInfo p {
    font-size: 12px;
    color: var(--name);
    margin-top: 4px
}

.tabContainer {
    border-top: 1px solid var(--line);
    background: #0a0a0a
}

.tabHeader {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    background: transparent;
    position: relative
}

.tabItem {
    text-align: center;
    padding: 16px 8px;
    background: transparent;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    transition: all .28s ease;
    border: 0;
    position: relative;
    white-space: nowrap;
    font-weight: 500
}

.tabItem:hover {
    color: #fff
}

.tabItem.active {
    color: #fff;
    font-weight: 600
}

.tabItem.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--title);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(44,80,255,0.4)
}

.tabContent {
    display: none;
    padding: 0;
    background: #0d0d0d;
    max-height: 390px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--title) #0d0d0d
}

.tabContent.active {
    display: block
}

.tabContent::-webkit-scrollbar {
    width: 0;
    transition: width .3s ease
}

.tabContent:hover::-webkit-scrollbar,.tabContent:active::-webkit-scrollbar {
    width: 6px
}

.tabContent::-webkit-scrollbar-track {
    background: #0d0d0d;
    border-radius: 3px
}

.tabContent::-webkit-scrollbar-thumb {
    background: var(--title);
    border-radius: 3px
}

.tabContent::-webkit-scrollbar-thumb:hover {
    background: #3a62ff
}

.descList {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 16px
}

.descItem {
    font-size: 12.5px;
    color: #aaa;
    line-height: 1.6;
    padding-left: 14px;
    position: relative
}

.descItem::before {
    content: "1";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--title);
    font-weight: bold;
    width: 12px
}

.descItem:nth-child(1)::before {
    content: "1"
}

.descItem:nth-child(2)::before {
    content: "2"
}

.descItem:nth-child(3)::before {
    content: "3"
}

.descItem:nth-child(4)::before {
    content: "4"
}

.descItem:nth-child(5)::before {
    content: "5"
}

.descItem a {
    color: var(--title);
    font-weight: 500
}

.playWrap {
    display: flex;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.playCover {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.playCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.coverPlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,45,85,0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: .2s;
}

.coverPlay:hover {
    transform: translate(-50%,-50%) scale(1.08);
}

.playInfo {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    z-index: 1;
}

.playTitle {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.playSub {
    font-size: 14px;
    color: var(--name);
}

.playParams {
    display: flex;
    gap: 20px;
    color: var(--name);
    font-size: 13px;
}

.playBtns {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.playBtn {
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--title);
    color: #fff;
    border: 0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: .2s;
    min-width: 100px;
    white-space: nowrap;
}

.playBtn:hover {
    background: #3a62ff;
}

.playBtn.gray {
    background: #222;
}

.playBtn.gray:hover {
    background: #333;
}

.playerBox {
    padding: 20px;
    border-top: 1px solid var(--line);
}

.playerProgress {
    width: 100%;
    height: 100px;
    background: #1a1a1a;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}
.playBgBlur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.playBgBlur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
    transform: scale(1.1);
    opacity: 0.6;
}

.playBgBlur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
.playerProgress .wave-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 360%;
    background: #0d0d0d;
    background-repeat: round;
    background-position: center;
    background-size: cover;
    image-rendering: pixelated;
    pointer-events: none;
}

.playerProgress .wave-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,#8dcb04,#3bc1d9);
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

.progressBar {
    position: relative;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,#f459886b,#ff2a2aeb);
    background-size: 200% 100%;
    transition: width .1s linear;
    z-index: 2;
    animation: gradientShift 2s ease infinite;
}

.playerProgress:hover {
    background: #222;
}

.playerProgress:hover .progressBar {
    background: linear-gradient(90deg,#f459886b,#ff2a2aeb);
    background-size: 200% 100%;
}

.playerControl {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.playerTime {
    color: var(--name);
    font-size: 12px;
}

.playerTools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.playerTools i {
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: .2s;
}

.playerTools i:hover {
    color: #fff;
    background: #252525;
}

/* ========= è‡ªé€‚åº”ä¸Šä¸‹æ˜¾ç¤ºï¼šç§»åŠ¨ç«¯/å°å±å¹•æ—¶å°é¢åœ¨ä¸Šæ–¹ï¼Œä¿¡æ¯åœ¨ä¸‹æ–¹ ========= */
@media (max-width: 768px) {
    .playWrap {
        flex-direction: column;  /* æ”¹ä¸ºåž‚ç›´å¸ƒå±€ */
        align-items: center;      /* æ°´å¹³å±…ä¸­ï¼Œç¾Žè§‚ */
        gap: 20px;               /* ç¼©å°ä¸Šä¸‹é—´è· */
        text-align: center;      /* è®©å†…éƒ¨æ–‡å­—å¯é€‰å±…ä¸­ï¼Œä½†ä¼šå½±å“éƒ¨åˆ†å·¦å¯¹é½å…ƒç´ ï¼Œå¦‚éœ€å¯å•ç‹¬æŽ§åˆ¶ */
        padding: 40px 20px;
    }

    .playCover {
        width: 220px;            /* ç¨å¾®æ”¾å¤§ä¸€ç‚¹ç‚¹æ›´é€‚åˆç§»åŠ¨ç«¯æ‹‡æŒ‡ç‚¹å‡» */
        height: 220px;
        margin-bottom: 0;
    }

    .playInfo {
        min-width: auto;          /* ç§»é™¤æœ€å°å®½åº¦é™åˆ¶ï¼Œå……åˆ†åˆ©ç”¨å±å¹•å®½åº¦ */
        width: 100%;
        align-items: center;      /* å†…éƒ¨å†…å®¹å±…ä¸­ï¼Œæ›´ç¬¦åˆç§»åŠ¨ç«¯å¡ç‰‡é£Žæ ¼ */
        text-align: center;
        gap: 16px;
    }

    /* ä¿æŒæ ‡é¢˜/æè¿°ç­‰å±…ä¸­ï¼Œä½†æŒ‰é’®ç»„å¯ä»¥å·¦å¯¹é½æˆ–å±…ä¸­ï¼Œè¿™é‡Œè®©æŒ‰é’®ç»„ä¹Ÿå±…ä¸­æ›´åè°ƒ */
    .playTitle {
        font-size: 20px;
        text-align: center;
    }

    .playSub {
        text-align: center;
    }

    .playParams {
        justify-content: center;  /* å‚æ•°å±…ä¸­ */
        flex-wrap: wrap;
        gap: 12px;
    }

    .playBtns {
        justify-content: center;  /* æŒ‰é’®ç»„å±…ä¸­æ˜¾ç¤ºï¼Œç¬¦åˆç§»åŠ¨ç«¯ä¹ æƒ¯ */
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .playBtn {
        white-space: normal;      /* å…è®¸æŒ‰é’®æ–‡å­—æ¢è¡Œï¼Œé˜²æ­¢è¿‡é•¿ */
        min-width: auto;
        padding: 8px 16px;
    }

    /* æ’­æ”¾å™¨è¿›åº¦æ¡åŒºåŸŸå¾®è°ƒ */
    .playerBox {
        padding: 16px;
    }

    .playerProgress {
        height: 80px;            /* ç§»åŠ¨ç«¯è¿›åº¦æ¡ç¨å¾®çŸ®ä¸€ç‚¹ */
    }

    .playerTools i {
        width: 40px;             /* å¢žåŠ è§¦æŽ§åŒºåŸŸ */
        height: 40px;
        font-size: 20px;
    }
}

/* é’ˆå¯¹è¶…å°è®¾å¤‡ (å®½åº¦â‰¤480px) åšè¿›ä¸€æ­¥ä¼˜åŒ– */
@media (max-width: 480px) {
    .playCover {
        width: 180px;
        height: 180px;
    }

    .playTitle {
        font-size: 18px;
    }

    .playBtn {
        padding: 12px;
        font-size: 13px;
    }

    .playerProgress {
        height: 50px;
    }
}

.relateList {
    padding: 15px 20px
}

.relateItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line)
}

.relateItem:last-child {
    border-bottom: 0
}

.relateCover {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0
}

.relateCover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.relateName {
    flex: 1;
    min-width: 0
}

.relateTitle {
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.relateSinger {
    font-size: 12px;
    color: var(--name);
    margin-top: 3px
}

.relatePlay {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ccc;
    font-size: 14px;
    cursor: pointer
}

.rightFixedTool {
    position: fixed;
    right: 2%;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 88;
    pointer-events: none
}

.rightFixedTool .toolBtn {
    pointer-events: all
}

.toolBtn {
    width: 44px;
    height: 44px;
    background: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: .3s
}

.toolBtn:hover {
    background: var(--title);
    color: #fff;
    transform: scale(1.05)
}

#mobileNavBtn {
    display: flex
}

@media(min-width: 769px) {
    #mobileNavBtn {
        display:none
    }
}

@media(max-width: 768px) {
    .rightFixedTool {
        right:3%;
        bottom: 70px;
        gap: 8px
    }

    .toolBtn {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

@media(max-width: 480px) {
    .rightFixedTool {
        right:4%;
        bottom: 60px;
        gap: 8px
    }

    .toolBtn {
        width: 38px;
        height: 38px;
        font-size: 15px
    }
}

.serviceQrcode {
    position: fixed;
    right: -180px;
    bottom: 115px;
    width: 160px;
    background: var(--card);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: .3s ease;
    pointer-events: none
}

.serviceQrcode.show {
    right: 70px
}

.serviceQrcode img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px
}

.serviceQrcode p {
    font-size: 12px;
    color: var(--name)
}

.login-dialog-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px)
}

.login-dialog-mask.show {
    display: flex
}

.login-dialog {
    width: 90%;
    max-width: 400px;
    background: var(--card,#0d0d0d);
    border-radius: var(--radius,12px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid var(--line,#101218);
    animation: dialogFadeIn .3s ease
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.login-dialog-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--line,#101218);
    position: relative
}

.login-dialog-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text,#fff);
    letter-spacing: 1px;
    margin: 0
}

.login-dialog-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--name,#8f8f8f);
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: all .25s ease
}

.login-dialog-close:hover {
    color: var(--text,#fff);
    background: rgba(44,80,255,0.15)
}

.login-avatar {
    text-align: center;
    padding: 20px 0 8px
}

.login-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(255 45 85 / 40%);
    padding: 3px;
    background: var(--bg,#131518)
}

.login-info {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 8px
}

.login-info li {
    color: var(--title,#2c50ff);
    font-size: 12px;
    list-style: none
}

.login-form {
    padding: 8px 24px 24px
}

.login-input-group {
    margin-bottom: 16px
}

.login-input {
    width: 100%;
    height: 48px;
    background: var(--bg,#131518);
    border: 1px solid var(--line,#101218);
    border-radius: 10px;
    padding: 0 16px;
    color: var(--text,#fff);
    font-size: 14px;
    outline: 0;
    transition: all .25s ease
}

.login-input:focus {
    border-color: var(--title,#2c50ff);
    background: rgba(44,80,255,0.05)
}

.login-input::placeholder {
    color: var(--name,#8f8f8f)
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 12px
}

.login-links a {
    color: var(--name,#8f8f8f);
    text-decoration: none;
    transition: color .2s
}

.login-links a:hover {
    color: var(--title,#2c50ff)
}

.login-btn {
    width: 100%;
    height: 48px;
    background: var(--title);
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgb(255 45 85 / 40%)
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(255 45 85 / 40%);
    background: #ff2d55
}

.login-btn.loading {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
    pointer-events: none
}

.login-other {
    padding: 0 24px 24px;
    border-top: 1px solid var(--line,#101218);
    margin-top: 8px
}

.login-other-title {
    text-align: center;
    font-size: 12px;
    color: var(--name,#8f8f8f);
    margin: 20px 0 16px;
    position: relative
}

.login-other-title::before,.login-other-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--line,#101218)
}

.login-other-title::before {
    left: 0
}

.login-other-title::after {
    right: 0
}

.login-other-icons {
    display: flex;
    justify-content: center;
    gap: 24px
}

.login-other-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all .25s ease
}

.login-other-icon.qq {
    background: #12B7F5
}

.login-other-icon.wechat {
    background: #07C160
}

.login-other-icon.phone {
    background: var(--red,#f44)
}

.login-other-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.1)
}

@media(max-width: 768px) {
    .login-avatar img {
        width:60px;
        height: 60px
    }
}

@media(max-width: 480px) {
    .login-dialog {
        max-width:92%
    }

    .login-dialog-header {
        padding: 20px 20px 12px
    }

    .login-dialog-header h3 {
        font-size: 16px
    }

    .login-avatar img {
        width: 80px;
        height: 80px
    }

    .login-form {
        padding: 8px 20px 20px
    }

    .login-input {
        height: 44px;
        font-size: 13px
    }

    .login-btn {
        height: 44px;
        font-size: 13px
    }

    .login-other-icon {
        width: 40px;
        height: 40px;
        font-size: 18px
    }

    .login-other-icons {
        gap: 20px
    }

    .login-other-title {
        font-size: 11px;
        margin: 16px 0 12px
    }
}

.footer {
    background: var(--card);
    border-top: 1px solid var(--line);
    padding: 30px 0 20px 0;
    margin-top: 20px
}

.footerWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between
}

.footerCol h4 {
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text)
}

.footerCol ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.footerCol a {
    color: var(--name);
    font-size: 13px;
    text-decoration: none;
    transition: all .2s
}

.footerCol a:hover {
    color: var(--title)
}

.footer_social_list {
    position: relative
}

.footer_social_item {
    position: relative
}

.footer_social_link {
    display: inline-block
}

.footer_qrcode {
    position: absolute;
    left: 0;
    bottom: 100%;
    margin-bottom: 10px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    min-width: 110px
}

.footer_qrcode img {
    width: 90px;
    height: 90px;
    display: block;
    margin-bottom: 6px
}

.footer_qrcode span {
    font-size: 11px;
    color: var(--name);
    display: block;
    white-space: nowrap
}

.footer_social_item:hover .footer_qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px)
}

.footer_qrcode::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--card) transparent transparent transparent
}

.footerCopy {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.8;
    color: var(--name)
}

.footerLinks {
    margin-top: 10px
}

@media(max-width: 768px) {
    .footerWrap {
        display:none
    }

    .footerCopy {
        padding-top: 0;
        margin-top: 0;
        border-top: 0;
        font-size: 11px
    }

    .footer {
        padding: 20px 0
    }
}

@media(max-width: 480px) {
    .footer {
        padding:16px 0
    }

    .footerCopy {
        font-size: 11px
    }
}

@media(max-width: 1200px) {
    .bannerBox,.main {
        flex-direction:column;
        gap: 15px;
        margin: 15px 0
    }

    .banner,.mainLeft,.mainRight,.rightRec {
        width: 100%!important;
        gap: 15px
    }

    .banner {
        height: 260px
    }

    .mainRight {
        position: static
    }

    .rightFixedTool {
        right: 10px
    }

    .albumGrid {
        grid-template-columns: repeat(4,1fr)
    }

    .djBox {
        margin-top: 15px
    }

    .double {
        gap: 0
    }
}

@media(min-width: 769px) {
    .mobileHeader {
        display:none!important
    }

    .header {
        display: block!important
    }

    .tabHeader {
        flex-wrap: nowrap
    }

    .tabItem {
        flex: 1;
        min-width: auto
    }
}

@media(max-width: 768px) {
    .header {
        display:none!important
    }

    .mobileHeader {
        display: block!important
    }

    .double,.exclusive {
        grid-template-columns: 1fr
    }

    .albumGrid {
        grid-template-columns: repeat(4,1fr);
        gap: 15px
    }

    .songListGrid {
        grid-template-columns: repeat(3,1fr)!important
    }

    .rightAlbumList {
        grid-template-columns: repeat(3,1fr)!important
    }

    .col-hot,.col-time {
        display: none!important
    }

    .col-op {
        display: none!important;
    }
    .col-cz {
        display: block !important;
    }
    }

    .more-btn {
        display: none;
        width: 40px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
    }

    .songFooter {
        justify-content: flex-start
    }

    .playWrap {
        gap: 20px
    }


@media(max-width: 480px) {
    .banner {
        height:160px
    }

    .albumGrid {
        grid-template-columns: repeat(3,1fr)
    }

    .playTitle {
        font-size: 16px
    }

    .serviceQrcode {
        width: 130px
    }
}

.fav-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.fav-mask.show {
    opacity: 1;
    visibility: visible
}

.fav-modal {
    background: var(--card,#0d0d0d);
    width: 90%;
    max-width: 460px;
    border-radius: var(--radius,12px);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform .3s ease;
    border: 1px solid var(--line,#101218)
}

.fav-mask.show .fav-modal {
    transform: scale(1)
}

.fav-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line,#101218)
}

.fav-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text,#fff);
    display: flex;
    align-items: center;
    gap: 8px
}

.fav-modal-header h3 i {
    font-size: 18px;
    color: var(--title,#ff2d55)
}

.fav-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--name,#8f8f8f);
    transition: all .2s;
    background: 0;
    border: 0
}

.fav-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text,#fff)
}

.fav-modal-body {
    padding: 20px
}

.fav-music-name {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg,#131518);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--line,#101218)
}

.fav-music-name i {
    font-size: 18px;
    color: var(--title,#ff2d55)
}

.fav-music-name span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text,#fff);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.fav-select-box {
    margin-bottom: 16px
}

.fav-select-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text,#fff);
    margin-bottom: 8px;
    display: block
}

.fav-select-current {
    padding: 8px 12px;
    background: var(--bg,#131518);
    border-radius: 6px;
    font-size: 13px;
    color: var(--title,#ff2d55);
    border: 1px solid var(--line,#101218);
    cursor: pointer;
    transition: all .2s
}

.fav-select-current:hover {
    border-color: var(--title,#ff2d55)
}

.fav-box-list {
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 20px;
    border: 1px solid var(--line,#101218);
    border-radius: 8px;
    background: var(--bg,#131518)
}

.fav-box-list::-webkit-scrollbar {
    width: 4px
}

.fav-box-list::-webkit-scrollbar-track {
    background: var(--line,#101218);
    border-radius: 2px
}

.fav-box-list::-webkit-scrollbar-thumb {
    background: var(--name,#8f8f8f);
    border-radius: 2px
}

.fav-box-list::-webkit-scrollbar-thumb:hover {
    background: var(--title,#ff2d55)
}

.fav-box-item {
    border-bottom: 1px solid var(--line,#101218)
}

.fav-box-item:last-child {
    border-bottom: 0
}

.fav-box-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 13px;
    color: var(--text,#fff);
    transition: all .2s
}

.fav-box-item a:hover {
    background: rgba(255,255,255,0.05)
}

.fav-box-item.active a {
    background: rgba(255,45,85,0.1);
    color: var(--title,#ff2d55);
    border-left: 2px solid var(--title,#ff2d55)
}

.fav-box-count {
    font-size: 11px;
    color: var(--name,#8f8f8f);
    background: rgba(255,255,255,0.08);
    padding: 2px 8px;
    border-radius: 20px
}

.fav-add-box {
    margin-bottom: 20px;
    display: flex;
    gap: 10px
}

.fav-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--line,#101218);
    border-radius: 8px;
    font-size: 13px;
    background: var(--bg,#131518);
    color: var(--text,#fff);
    box-sizing: border-box;
    transition: all .2s
}

.fav-input:focus {
    outline: 0;
    border-color: var(--title,#ff2d55)
}

.fav-input::placeholder {
    color: var(--name,#8f8f8f);
    font-size: 12px
}

.fav-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end
}

.fav-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    border: 0;
    background: 0
}

.fav-btn-primary {
    background: var(--title,#ff2d55);
    color: #fff
}

.fav-btn-primary:hover {
    opacity: .85
}

.fav-btn-danger {
    background: var(--title,#ff2d55);
    color: #fff
}

.fav-btn-danger:hover {
    opacity: .85
}

.fav-btn-default {
    background: rgba(255,255,255,0.08);
    color: var(--text,#fff);
    border: 1px solid var(--line,#101218)
}

.fav-btn-default:hover {
    background: rgba(255,255,255,0.12)
}

.fav-message {
    margin-top: 16px;
    font-size: 12px;
    text-align: center
}

.fav-msg-error {
    padding: 8px 12px;
    background: rgba(255,45,85,0.1);
    border-radius: 6px;
    color: var(--title,#ff2d55)
}

.fav-msg-success {
    padding: 8px 12px;
    background: rgba(0,200,100,0.1);
    border-radius: 6px;
    color: #00c864
}

.fav-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 12px;
    color: var(--title,#ff2d55)
}

.fav-loading i {
    font-size: 14px;
    animation: fav-spin .8s linear infinite
}

.fav-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.9);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(0.68,-0.55,0.265,1.55);
    white-space: nowrap;
    text-align: center;
    letter-spacing: .5px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.3)
}

.fav-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1)
}

.fav-toast-success {
    background: linear-gradient(135deg,#10b981 0,#059669 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16,185,129,0.35)
}

.fav-toast-error {
    background: linear-gradient(135deg,#ef4444 0,#dc2626 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(239,68,68,0.35)
}

.fav-toast-warning {
    background: linear-gradient(135deg,#f59e0b 0,#d97706 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(245,158,11,0.35)
}

.fav-toast-info {
    background: linear-gradient(135deg,#3b82f6 0,#2563eb 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(59,130,246,0.35)
}

.fav-toast-loading {
    background: rgba(30,30,35,0.95);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    border: 0
}

.fav-toast-success i,.fav-toast-error i,.fav-toast-warning i,.fav-toast-info i,.fav-toast-loading i {
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle
}

.fav-toast-loading i {
    animation: fav-spin .8s linear infinite
}

@keyframes fav-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@media(max-width: 600px) {
    .fav-modal {
        width:92%
    }

    .fav-modal-body {
        padding: 16px
    }

    .fav-add-box {
        flex-direction: column
    }

    .fav-actions {
        flex-direction: column
    }

    .fav-btn {
        justify-content: center
    }

    .fav-music-name span {
        white-space: normal;
        word-break: break-all
    }

    .fav-toast {
        white-space: normal;
        max-width: 85%;
        text-align: center;
        padding: 10px 20px;
        font-size: 12px
    }

    .fav-toast i {
        font-size: 14px;
        margin-right: 8px
    }
}

.albumDetail {
    display: flex;
    gap: 30px;
    padding: 24px
}

.albumDetail_cover {
    width: 220px;
    flex-shrink: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden
}

.albumDetail_cover img {
    width: 100%;
    height: auto;
    display: block
}

.albumDetail_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    opacity: 0
}

.albumDetail_cover:hover .albumDetail_play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.05)
}

.albumDetail_play i {
    font-size: 48px;
    color: rgba(44,80,255,0.9)
}

.albumDetail_info {
    flex: 1
}

.albumDetail_info h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text)
}

.albumDetail_meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    color: var(--name);
    font-size: 13px;
    flex-wrap: nowrap;
    justify-content: flex-start
}

.albumDetail_meta i {
    margin-right: 6px;
    color: var(--title)
}

@media(max-width: 768px) {
    .albumDetail_meta {
        gap:12px;
        font-size: 12px
    }
}

@media(max-width: 480px) {
    .albumDetail_meta {
        gap:8px;
        font-size: 11px
    }
}

.albumDetail_desc {
    background: var(--bg);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--name);
    margin-bottom: 20px
}

.albumDetail_desc i {
    color: var(--title);
    margin-right: 6px
}

.albumDetail_actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap
}

.actionBtn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
    border: 0;
    background: var(--bg);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.actionBtn.primary {
    background: var(--title);
    color: #fff
}

.actionBtn.primary:hover {
    transform: translateY(-2px)
}

.shareBox {
    position: relative
}

.shareDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 10;
    border: 1px solid var(--line)
}

.shareBox:hover .shareDropdown {
    opacity: 1;
    visibility: visible
}

.shareDropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--name);
    transition: .2s
}

.shareDropdown a:hover {
    color: var(--title)
}

@media(max-width: 900px) {
    .albumDetail {
        flex-direction:column;
        align-items: center;
        text-align: center
    }

    .albumDetail_meta {
        justify-content: center
    }

    .albumDetail_actions {
        justify-content: center;
        flex-wrap: nowrap
    }

    .actionBtn {
        flex: 0 0 auto
    }
}

@media(max-width: 600px) {
    .albumDetail_actions {
        gap:8px
    }

    .actionBtn {
        padding: 6px 12px;
        font-size: 12px
    }
}

@media(max-width: 480px) {
    .albumDetail_actions {
        flex-wrap:wrap;
        gap: 8px
    }

    .actionBtn {
        flex: 1;
        min-width: calc(33.33% - 8px);
        justify-content: center
    }
}

.albumRankList {
    padding: 12px
}

.albumRankItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: .2s;
    min-height: 70px
}

.albumRankItem:hover {
    margin: 0 -8px;
    padding: 10px 8px;
    border-radius: 8px
}

.albumRankCover {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
}

.albumRankCover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.albumRankPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .2s
}

.albumRankCover:hover .albumRankPlay {
    opacity: 1
}

.albumRankPlay i {
    color: #fff;
    font-size: 12px
}

.albumRankInfo {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50px
}

.albumRankName {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
    line-height: 2;
    margin-bottom: 5px
}

.albumRankMeta {
    font-size: 11px;
    color: var(--name);
    line-height: 2
}

.empty-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--name);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.empty-data i {
    font-size: 48px
}

@media(max-width: 900px) {
    .albumDetail {
        flex-direction:column;
        align-items: center;
        text-align: center;
        padding: 50px 24px;
    }

    .albumDetail_meta {
        justify-content: center
    }

    .albumDetail_actions {
        justify-content: center
    }

    .sortTabList {
        justify-content: center
    }

    .col-time,.col-hot {
        display: none
    }

    .songItemRow .col-time,.songItemRow .col-hot {
        display: none
    }

    .listHeader .col-time,.listHeader .col-hot {
        display: none
    }
}

@media(max-width: 600px) {
    .song-info {
        flex-wrap:nowrap;
        gap: 6px;
        font-size: 10px
    }
}

.filter_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px
}

.filter_tabs {
    display: flex;
    gap: 8px
}

.filter_tab {
    padding: 6px 18px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-radius: 30px;
    transition: .2s;
    background: var(--bg)
}

.filter_tab:hover {
    background: rgba(44,80,255,0.1);
    color: var(--title)
}

.filter_tab.active {
    background: var(--hot-red);
    color: #fff
}

.search_box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border-radius: 30px;
    padding: 4px 8px 4px 16px
}

.search_box input {
    background: transparent;
    border: 0;
    padding: 8px 0;
    color: var(--text);
    font-size: 13px;
    outline: 0;
    width: 160px
}

.search_box input::placeholder {
    color: var(--name)
}

.search_box button {
    background: var(--title);
    border: 0;
    padding: 6px 16px;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: .2s
}

.search_box button:hover {
    opacity: .85
}

.artist_row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px
}

.artist_cover {
    position: relative;
    width: 130px;
    flex-shrink: 0
}

.artist_cover a {
    position: relative;
    display: block
}

.artist_cover img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px
}

.cover_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease;
    cursor: pointer
}

.cover_play_btn i {
    font-size: 18px;
    color: #fff;
    margin-left: 2px
}

.artist_cover:hover .cover_play_btn {
    opacity: 1
}

.cover_play_btn:hover {
    background: var(--title);
    transform: translate(-50%,-50%) scale(1.1)
}

.artist_songs_preview {
    flex: 3;
    min-width: 0
}

.artist_info_top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px
}

.artist_info_top .artist_name {
    font-size: 14px;
    color: var(--name);
    text-decoration: none;
    white-space: nowrap
}

.artist_info_top .artist_name:hover {
    text-decoration: underline
}

.artist_info_top .artist_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap
}

.artist_info_top .artist_meta span {
    font-size: 12px;
    color: var(--name);
    white-space: nowrap
}

.artist_info_top .artist_meta i {
    margin-right: 4px;
    font-size: 12px
}

.artist_info_top .view_more {
    font-size: 12px;
    color: var(--title);
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto
}

.artist_info_top .view_more:hover {
    text-decoration: underline
}

.song_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px
}

.song_item:last-child {
    border-bottom: 0
}

.song_arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--name);
    border-bottom: 2px solid var(--name);
    transform: rotate(-45deg);
    flex-shrink: 0
}

.song_name {
    flex: 1;
    font-size: 13px;
    color: var(--name);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.song_name:hover {
    color: var(--title)
}

.song_actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.song_action {
    width: 30px;
    height: 30px;
    background: var(--bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s
}

.song_action:hover {
    background: var(--title)
}

.song_action i {
    font-size: 12px;
    color: var(--name)
}

.song_action:hover i {
    color: #fff
}

.corred1 {
    color: #94d500!important
}

@media screen and (max-width: 768px) {
    .artist_row {
        flex-direction:row;
        flex-wrap: wrap
    }

    .artist_cover {
        width: 100px
    }

    .artist_cover img {
        height: 100px
    }

    .artist_info_top {
        display: none!important
    }

    .artist_songs_preview {
        flex: 1;
        padding-left: 0
    }

    .song_item {
        margin-bottom: 10px
    }

    .song_name {
        font-size: 12px
    }

    .song_actions {
        gap: 5px
    }

    .song_action {
        width: 24px;
        height: 24px
    }

    .song_action i {
        font-size: 11px
    }

    .filter_tab {
        padding: 4px 12px;
        font-size: 12px
    }

    .search_box input {
        width: 120px
    }
}

@media screen and (max-width: 768px) {
    .artist_row {
        flex-direction:row;
        flex-wrap: wrap
    }

    .artist_cover {
        width: 100px
    }

    .artist_cover img {
        height: 100px
    }

    .artist_info_top {
        display: none!important
    }

    .artist_songs_preview {
        flex: 1;
        padding-left: 0
    }

    .song_name {
        font-size: 12px
    }

    .song_actions {
        gap: 5px
    }

    .song_action {
        width: 24px;
        height: 24px
    }

    .song_action i {
        font-size: 11px
    }

    .filter_bar {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px
    }

    .filter_tabs {
        flex: 1;
        gap: 5px
    }

    .filter_tab {
        padding: 4px 10px;
        font-size: 11px;
        white-space: nowrap
    }

    .search_box {
        flex-shrink: 0;
        padding: 2px 6px 2px 12px
    }

    .search_box input {
        width: 100px;
        font-size: 11px;
        padding: 5px 0
    }

    .search_box button {
        padding: 4px 10px;
        font-size: 11px
    }
}

@media screen and (max-width: 480px) {
    .filter_tab {
        padding:5px 10px;
        font-size: 10px
    }

    .search_box input {
        width: 80px
    }

    .search_box button {
        padding: 4px 8px
    }
}

.actionBtn i {
    pointer-events: none
}

#icogz.followed i,#collectBtn.followed i {
    color: #ff4d4f
}

.actionBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--bg,#f5f5f5);
    border: 1px solid var(--line,#e0e0e0);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text,#333);
    cursor: pointer;
    transition: all .2s ease
}

.actionBtn i {
    font-size: 16px
}

.actionBtn.primary {
    background: #2c50ff;
    border-color: #2c50ff;
    color: #fff
}

.actionBtn.primary i {
    color: #fff
}

.actionBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1)
}

.shareBox {
    position: relative;
    display: inline-block
}

.shareDropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 140px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    z-index: 100;
    border: 1px solid var(--line,#eee)
}

.shareDropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--line,#eee);
    border-top: 1px solid var(--line,#eee)
}

.shareBox:hover .shareDropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.shareDropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text,#333);
    text-decoration: none;
    transition: background .2s
}

.shareDropdown a:hover {
    background: #f5f5f5
}

.artistDetail {
    display: flex;
    gap: 30px;
    padding: 24px
}

.artistDetail_cover {
    width: 220px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden
}

.artistDetail_cover img {
    width: 100%;
    height: auto;
    display: block
}

.artistDetail_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    background: rgba(0,0,0,0.5)
}

.artistDetail_cover:hover .artistDetail_play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.05)
}

.artistDetail_play i {
    font-size: 48px;
    color: rgba(44,80,255,0.9)
}

.artistDetail_info {
    flex: 1;
    min-width: 0
}

.artistDetail_header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px
}

.artistDetail_header h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text,#333);
    margin: 0
}

.artistDetail_meta {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    color: var(--name,#666);
    font-size: 13px;
    flex-wrap: wrap
}

.artistDetail_meta i {
    margin-right: 6px;
    color: var(--title,#2c50ff)
}

.artistDetail_desc {
    background: var(--bg,#f5f5f5);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--name,#666);
    margin-bottom: 20px
}

.artistDetail_actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.followBtn {
    margin-left: 0!important;
    padding: 6px 16px!important;
    font-size: 13px!important;
    background: var(--bg,#f0f0f0)!important;
    color: var(--text,#333)!important;
    border: 1px solid var(--line,#e0e0e0)!important
}

.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 8px;
    padding: 0 6px;
    background: rgba(255,77,79,0.1);
    color: #ff4d4f;
    border-radius: 10px;
    font-size: 10px
}

.artistRankList {
    padding: 8px 12px
}

.artistRankItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line,#f0f0f0);
    cursor: pointer;
    transition: .2s
}

.artistRankCover {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0
}

.artistRankCover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.artistRankPlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .2s
}

.artistRankCover:hover .artistRankPlay {
    opacity: 1
}

.artistRankPlay i {
    color: #fff;
    font-size: 12px
}

.artistRankInfo {
    flex: 1;
    min-width: 0
}

.artistRankName {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text,#333);
    margin-bottom: 4px
}

.artistRankMeta {
    font-size: 11px;
    color: var(--name,#999)
}

@media(max-width: 900px) {
    .artistDetail {
        flex-direction:column;
        align-items: center;
        text-align: center
    }

    .artistDetail_meta {
        justify-content: center
    }

    .artistDetail_actions {
        justify-content: center
    }

    .sortTabList {
        justify-content: center;
        flex-wrap: wrap
    }

    .col-time,.col-hot {
        display: none
    }

    .listHeader .col-time,.listHeader .col-hot {
        display: none
    }
}

@media(max-width: 768px) {
    .artistDetail_cover {
        width:160px
    }

    .shareDropdown {
        min-width: 120px;
        right: 0;
        left: auto;
        transform: translateX(0) translateY(-10px)
    }

    .shareBox:hover .shareDropdown {
        transform: translateX(0) translateY(0)
    }

    .shareDropdown::before {
        left: auto;
        right: 20px;
        transform: rotate(45deg)
    }
}

.sgGrid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    padding: 20px
}

@media(max-width: 1200px) {
    .sgGrid {
        grid-template-columns:repeat(4,1fr)
    }
}

@media(max-width: 992px) {
    .sgGrid {
        grid-template-columns:repeat(3,1fr)
    }
}

@media(max-width: 768px) {
    .sgGrid {
        grid-template-columns:repeat(2,1fr);
        gap: 15px;
        padding: 15px
    }
}

.sgCard {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease,box-shadow .3s ease;
    cursor: pointer;
    box-shadow: var(--shadow)
}

.sgCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.3)
}

.sgCard a {
    text-decoration: none;
    display: block
}

.sgCover {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--bg)
}

.sgCover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .4s ease
}

.sgCard:hover .sgCover img {
    transform: scale(1.05)
}

.sgStats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: linear-gradient(to top,rgba(0,0,0,0.8),transparent);
    z-index: 2;
    border-radius: 0 0 var(--radius) var(--radius)
}

.sgStats span {
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px
}

.sgStats span i {
    font-size: 11px
}

.sgOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 3;
    border-radius: var(--radius) var(--radius) 0 0
}

.sgCard:hover .sgOverlay {
    opacity: 1
}

.sgPlayBtn {
    transform: scale(0.8);
    transition: transform .3s ease
}

.sgCard:hover .sgPlayBtn {
    transform: scale(1)
}

.sgPlayBtn i {
    font-size: 44px;
    color: #fff;
    transition: all .2s
}

.sgPlayBtn i:hover {
    transform: scale(1.08);
    color: var(--title)
}

.sgInfo {
    padding: 10px 12px 12px
}

.sgInfo h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4
}

.musicPlaylistContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 16px;
    border-top: 1px solid var(--line)
}

.playlistHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.playlistHeader h4 {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px
}

.playlistHeader span {
    font-size: 12px;
    color: var(--name)
}

#playlistContent {
    flex: 1;
    overflow-y: auto;
    max-height: 550px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

#playlistContent::-webkit-scrollbar {
    display: none
}

.songRow1,.songRow2,.songRowActive {
    display: flex;
    align-items: center;
    height: 44px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 13px;
    margin: 0;
    transition: all .2s ease;
    cursor: pointer
}

.songRow2 {
    background: #0a0909
}

.songRowActive {
    background: var(--bar);
    color: var(--hot-red)
}

.songNumber {
    width: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--name);
    flex-shrink: 0
}

.songNameWrapper {
    flex: 1;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.songNameWrapper a {
    color: inherit;
    text-decoration: none
}

.songNameWrapper a:hover {
    color: var(--title)
}

.emptyMessage {
    text-align: center;
    padding: 40px 0;
    color: var(--name);
    font-size: 12px
}

.loadingMessage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px
}

.loadingMessage span {
    color: var(--name);
    font-size: 12px
}
.playlist {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    border-top: 1px solid var(--line);
    overflow: hidden
}

.playlist_menu {
    width: 100%;
    height: 50px;
    background: transparent;
    flex-shrink: 0
}

.playlist_menu ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    height: 100%
}

.playlist_menu li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
    height: 100%
}

.playlist_menu li.ptoff:hover {
    color: #fff
}

.playlist_menu li.pton {
    color: #fff;
    font-weight: 600
}

.playlist_menu li.pton::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--title)
}

@media(min-width: 769px) {
    .playlist_menu ul {
        flex-wrap:nowrap
    }

    .playlist_menu li {
        flex: 1;
        min-width: auto
    }
}

@media(max-width: 768px) {
    .playlist_menu {
        overflow-x:auto;
        overflow-y: hidden
    }

    .playlist_menu::-webkit-scrollbar {
        display: none
    }

    .playlist_menu li {
        flex: 0 0 auto;
        min-width: 85px
    }
}

#playlist_ct {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0d0d0d;
    min-height: 0
}

#playlist_ct::-webkit-scrollbar {
    width: 4px
}

#playlist_ct::-webkit-scrollbar-track {
    background: #1a1a1a
}

#playlist_ct::-webkit-scrollbar-thumb {
    background: var(--title)
}

#playlist_ct1 {
    width: 100%
}

#playlist_ct1 ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box
}

#playlist_ct1 .td1,#playlist_ct1 .td2,#playlist_ct1 .td3,#playlist_ct1 .tdhover {
    display: flex;
    align-items: center;
    height: 48px;
    border-bottom: 1px solid #1a1a1a;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

#playlist_ct1 .td1 {
    background: #0f0f0f
}

#playlist_ct1 .td2 {
    background: #0a0a0a
}

#playlist_ct1 .td3 {
    background: #0f0f0f;
    color: var(--title)
}

#playlist_ct1 .tdhover {
    background: #1a1a1a
}

#playlist_ct1 .tdhover .bt a {
    color: var(--title)
}

#playlist_ct1 .num,#playlist_ct1 .num2 {
    width: 44px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

#playlist_ct1 .num input,#playlist_ct1 .num2 input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--title)
}

#playlist_ct1 .bt {
    flex: 1;
    padding: 0 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0
}

#playlist_ct1 .bt a {
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#playlist_ct1 .icodel,#playlist_ct1 .icoadd {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

#playlist_ct1 .icodel i,#playlist_ct1 .icoadd i {
    font-size: 18px;
    color: #888;
    cursor: pointer
}

#playlist_ct2 {
    flex-shrink: 0;
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a
}

.caozuo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #0a0a0a;
    font-size: 12px;
    color: #ccc;
    box-sizing: border-box;
    width: 100%
}

.tag_lv_sel {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #aaa
}

.tag_lv_sel input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--title);
    margin: 0
}

.tag_lv {
    padding: 6px 16px;
    background: #181818;
    cursor: pointer;
    color: #ccc;
    font-size: 12px
}

.tag_lv:hover {
    color: var(--title)
}

.load1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center
}

.load1 img {
    width: 30px;
    height: 30px;
    margin-bottom: 12px
}

.load1 span {
    color: #666;
    font-size: 12px
}

.nonere {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 13px
}

#playlist_box {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #0a0a0a;
    flex-wrap: wrap;
    border-bottom: 1px solid #1a1a1a
}

#playlist_box a {
    padding: 6px 16px;
    background: #181818;
    color: #aaa;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer
}

#playlist_box a.boxon {
    background: var(--title);
    color: #fff
}

.featuredPlaylistBox {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden
}

.featuredHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.featuredHeader h3 {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px
}

.featuredHeader a {
    font-size: 12px;
    color: var(--name);
    text-decoration: none;
    cursor: pointer
}

.featuredHeader a:hover {
    color: var(--title)
}

.featuredGrid {
    display: grid;
    gap: 15px;
    padding: 16px
}

.featuredItem {
    overflow: hidden;
    transition: .2s;
    cursor: pointer
}

.featuredItem:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1)
}

.featuredCover {
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.featuredCover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: .3s;
    display: block
}

.featuredCover:hover img {
    transform: scale(1.05)
}

.featuredTag {
    position: absolute;
    left: 6px;
    bottom: 6px;
    font-size: 10px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 3px
}

.featuredIcon {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    transition: .3s
}

.featuredCover:hover .featuredIcon {
    opacity: 1
}

.featuredInfo {
    padding: 8px 4px
}

.featuredInfo a {
    font-size: 12px;
    color: var(--text);
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.featuredInfo a:hover {
    color: var(--title)
}

.featuredGroup {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px
}

.featuredGroupHidden {
    display: none
}

.rankHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    flex-wrap: wrap;
    gap: 20px
}

.rankHeader_info h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text,#333);
    text-align: justify
}

.rankHeader_desc {
    font-size: 13px;
    color: var(--name,#666);
    margin: 0 0 12px 0;
    text-align: justify
}

.rankHeader_meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--name,#666)
}

.rankHeader_meta i {
    margin-right: 6px;
    color: var(--title,#2c50ff)
}

.rankHeader_actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.filterSection {
    display: none;
    background: var(--card,#fff);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: var(--shadow,0 2px 8px rgba(0,0,0,0.1))
}

.filterSection .rankBox {
    margin-bottom: 0;
    border-bottom: 1px solid var(--line,#eee)
}

.filterSection .rankBox:last-child {
    border-bottom: 0
}

.filterSection .titleBar {
    padding: 12px 16px
}

.filterSection .rankNavList,.filterSection .timeFilterList {
    padding: 15px
}

.filterSection .adBox {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line,#eee)
}

.timeFilterList {
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.timeFilterItem {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: var(--bg,#f5f5f5);
    color: var(--name,#666);
    text-decoration: none;
    transition: all .2s ease
}

.timeFilterItem:hover,.timeFilterItem.active {
    background: var(--title,#2c50ff);
    color: #fff
}

.col-rank {
    width: 55px;
    flex-shrink: 0;
    text-align: center
}

.rankNum {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    width: 32px;
    text-align: center
}

.rankNum.rank1 {
    color: #ff4d4f;
    text-shadow: 0 0 2px rgba(255,77,79,0.3)
}

.rankNum.rank2 {
    color: #ff7a45
}

.rankNum.rank3 {
    color: #ffa940
}

.rankNum.rankOther {
    color: var(--name,#999);
    font-size: 16px
}

.rankNavList {
    padding: 8px 12px
}

.rankNavItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    text-decoration: none;
    font-size: 13px;
    color: var(--text,#333);
    transition: .2s
}

.rankNavItem i {
    color: var(--name,#999);
    font-size: 16px
}

.rankNavItem:hover,.rankNavItem.active {
    background: var(--bg,#f0f2f5);
    color: var(--title,#2c50ff)
}

.rankNavItem.active i {
    color: var(--title,#2c50ff)
}

.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #ff4d4f
}

.hot-badge i {
    font-size: 12px
}

.empty-data {
    text-align: center;
    padding: 60px 20px;
    color: var(--name,#999);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.empty-data i {
    font-size: 48px
}

.shareBox {
    position: relative
}

.shareDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card,#fff);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 10;
    border: 1px solid var(--line,#eee)
}

.shareBox:hover .shareDropdown {
    opacity: 1;
    visibility: visible
}

.shareDropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--name,#666);
    text-decoration: none;
    transition: .2s
}

.shareDropdown a:hover {
    color: var(--title,#2c50ff);
    background: var(--bg,#f5f5f5)
}

.actionBtn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
    border: 0;
    background: var(--bg,#f5f5f5);
    color: var(--text,#333);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.actionBtn.primary {
    background: var(--title,#2c50ff);
    color: #fff
}

.actionBtn.primary:hover {
    transform: translateY(-2px)
}

@media(max-width: 900px) {
    .rankHeader {
        flex-direction:column;
        text-align: center
    }

    .rankHeader_meta {
        justify-content: center
    }

    .rankHeader_actions {
        justify-content: center
    }

    .col-rank,.col-time,.col-hot {
        display: none
    }

    .listHeader .col-rank,.listHeader .col-time,.listHeader .col-hot {
        display: none
    }

    .batchBar {
        justify-content: center
    }

    .filterSection {
        display: block
    }
}

.playlog-dropdown-container {
    position: fixed;
    width: 300px;
    max-height: 400px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10000;
    overflow-y: auto;
    margin-top: 0;
    border: 1px solid var(--line)
}

.playlog-dropdown-container::-webkit-scrollbar {
    width: 0;
    background: transparent
}

.playlog-dropdown-container::-webkit-scrollbar-track {
    background: transparent
}

.playlog-dropdown-container::-webkit-scrollbar-thumb {
    background: transparent
}

.playlog-trigger {
    position: relative;
    cursor: pointer;
    color: var(--name);
    transition: color .2s
}

.playlog-trigger:hover {
    color: var(--title)
}

.playlog-list {
    padding: 0
}

.playlog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    transition: background .2s
}

.playlog-item-info {
    flex: 1;
    overflow: hidden
}

.playlog-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--name)
}

.playlog-item-title i {
    font-size: 18px;
    color: var(--name);
    transition: color .2s
}

.playlog-item-title:hover i {
    color: var(--title)
}

.playlog-item-title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.playlog-item-title span:hover {
    color: var(--hot-red)
}

.playlog-item-artist {
    font-size: 12px;
    color: var(--name);
    margin-top: 4px;
    margin-left: 28px
}

.playlog-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.playlog-duration {
    font-size: 12px;
    color: var(--name)
}

.playlog-delete {
    color: var(--red);
    cursor: pointer;
    font-size: 18px;
    opacity: .6;
    transition: opacity .2s;
    text-decoration: none
}

.playlog-delete:hover {
    opacity: 1
}

.playlog-footer {
    padding: 12px 16px;
    text-align: center;
    border-top: 1px solid var(--line)
}

.playlog-clear-btn {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all .2s
}

.playlog-clear-btn:hover {
    background: var(--red);
    color: var(--text);
    border-color: var(--red)
}

.playlog-empty {
    text-align: center;
    padding: 40px 20px
}

.playlog-empty i {
    font-size: 48px;
    color: var(--name);
    margin-bottom: 16px;
    display: block
}

.playlog-empty p {
    color: var(--name);
    font-size: 14px;
    margin-bottom: 20px
}

.playlog-browse-btn {
    display: inline-block;
    padding: 8px 24px;
    background: var(--title);
    color: var(--text);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: opacity .2s
}

.playlog-browse-btn:hover {
    opacity: .9
}

.playlog-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--name)
}

.playlog-loading i {
    font-size: 24px;
    margin-right: 8px;
    animation: spin 1s linear infinite
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.header .user {
    position: relative
}

@media(max-width: 768px) {
    .playlog-dropdown-container {
        width:300px;
        right: 10px!important;
        max-height: 350px
    }

    .playlog-item {
        padding: 10px 14px
    }

    .playlog-item-title {
        font-size: 13px
    }

    .playlog-item-artist {
        font-size: 11px;
        margin-left: 26px
    }
}

.engraving-link,.engraving-link-mobile {
    position: relative;
    display: inline-flex;
    align-items: center
}

.engraving-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background-color: #ff2d55;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap
}

.engraving-link-mobile .engraving-badge {
    top: -6px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px
}

.engraving-badge:empty {
    display: none
}

#musicBugOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998
}

#musicBugModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 520px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 9999;
    font-family: var(--font-family)
}

#musicBugModal .modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center
}

#musicBugModal .modal-header .close-btn {
    cursor: pointer;
    font-size: 20px;
    color: var(--name);
    transition: color .2s
}

#musicBugModal .modal-header .close-btn:hover {
    color: var(--text)
}

#musicBugModal .modal-body {
    padding: 20px
}

#musicBugModal .form-group {
    margin-bottom: 20px
}

#musicBugModal .form-group:last-child {
    margin-bottom: 0
}

#musicBugModal .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text)
}

#musicBugModal .form-label .required {
    color: var(--red)
}

#musicBugModal .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

#musicBugModal .radio-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text);
    font-size: 13px
}

#musicBugModal .radio-inline input {
    margin: 0;
    cursor: pointer;
    accent-color: var(--title)
}

#musicBugModal textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    resize: vertical;
    box-sizing: border-box
}

#musicBugModal textarea:focus {
    outline: 0;
    border-color: var(--title)
}

#musicBugModal textarea::placeholder {
    color: var(--name)
}

#musicBugModal .btn-danger {
    background: var(--red);
    color: #fff;
    border: 0;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity .2s
}

#musicBugModal .btn-danger:hover {
    opacity: .85
}

#musicBugModal .btn-default {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s
}

#musicBugModal .btn-default:hover {
    border-color: var(--title);
    color: var(--title)
}

.orderInfoList {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.orderInfoItem {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line,#101218)
}

.orderInfoItem:last-child {
    border-bottom: 0
}

.orderInfoLabel {
    width: 100px;
    font-size: 13px;
    color: var(--name,#8f8f8f)
}

.orderInfoValue {
    flex: 1;
    font-size: 13px;
    color: var(--text,#fff)
}

.orderInfoValue .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 12px
}

.orderInfoValue .badge-cs {
    background: rgba(255,45,85,0.12);
    color: var(--title,#ff2d55)
}

.orderInfoValue .badge-dq {
    background: rgba(52,152,219,0.12);
    color: #3498db
}

.orderInfoValue .price {
    color: var(--title,#ff2d55);
    font-size: 20px;
    font-weight: 700
}

.addressTip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px
}

.addressTip span {
    font-size: 13px;
    color: var(--text,#fff)
}

.addressTip a {
    font-size: 12px;
    color: var(--title,#ff2d55);
    text-decoration: none;
    transition: color .2s
}

.addressTip a:hover {
    text-decoration: underline
}

.addressList {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bar);
    border: 1px solid var(--line,#101218);
    border-radius: 10px;
    overflow: hidden
}

.addressList li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line,#101218);
    transition: background .2s
}

.addressList li:last-child {
    border-bottom: 0
}

.addressList li:hover {
    background: rgba(255,255,255,0.02)
}

.addressList li input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--title,#ff2d55)
}

.addressList li label {
    flex: 1;
    font-size: 13px;
    color: var(--text,#fff);
    cursor: pointer
}

.delimg {
    cursor: pointer;
    opacity: .5;
    transition: opacity .2s
}

.delimg:hover {
    opacity: 1
}

.addressForm {
    background: var(--bg,#131518)!important;
    border: 1px solid var(--line,#101218)!important;
    border-radius: 12px!important;
    padding: 20px!important;
    margin-top: 16px!important;
    overflow-x: auto
}

.addressForm table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse
}

.addressForm td {
    padding: 8px 6px!important;
    font-size: 13px!important;
    color: var(--text,#fff)
}

.addressForm .inputord {
    background: rgba(255,255,255,0.05)!important;
    border: 1px solid var(--line,#101218)!important;
    color: var(--text,#fff)!important;
    border-radius: 8px!important;
    padding: 8px 12px!important;
    height: 38px!important;
    width: 100%;
    max-width: 200px
}

.addressForm .inputord:focus {
    outline: 0;
    border-color: var(--title,#ff2d55)
}

.corred {
    color: var(--title,#ff2d55);
    margin-left: 4px
}

.cor33 {
    font-size: 11px;
    color: var(--name,#8f8f8f);
    margin-left: 8px
}

.remarkItem {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap
}

.remarkItem label {
    font-size: 13px;
    color: var(--text,#fff);
    width: 80px;
    flex-shrink: 0
}

.remarkItem input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line,#101218);
    border-radius: 8px;
    color: var(--text,#fff);
    font-size: 13px
}

.remarkItem input:focus {
    outline: 0;
    border-color: var(--title,#ff2d55)
}

.remarkItem input::placeholder {
    color: var(--name,#8f8f8f)
}

@media(max-width: 550px) {
    .remarkItem {
        flex-direction:column;
        align-items: stretch
    }

    .remarkItem label {
        width: auto
    }
}

.submitOrderBox {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line,#101218)
}

#addorder {
    min-width: 260px;
    height: 48px;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    background: var(--title,#ff2d55);
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

#addorder:hover {
    background: #e01e46;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255,45,85,0.3)
}

@media(max-width: 480px) {
    #addorder {
        min-width:100%;
        height: 44px;
        font-size: 14px
    }
}

.loginTipCard {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,45,85,0.08);
    border: 1px solid rgba(255,45,85,0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.loginTipCard i {
    font-size: 20px;
    color: var(--title,#ff2d55)
}

.loginTipCard span {
    flex: 1;
    font-size: 13px;
    color: var(--text,#fff)
}

.loginBtn {
    padding: 6px 18px;
    background: var(--title,#ff2d55);
    color: #fff;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-size: 12px;
    transition: background .2s
}

.loginBtn:hover {
    background: #e01e46
}

.unpaidCard {
    background: rgba(255,45,85,0.08);
    border: 1px solid rgba(255,45,85,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.unpaidCard i {
    font-size: 18px;
    color: var(--title,#ff2d55)
}

.unpaidCard span {
    color: var(--text,#fff);
    font-size: 13px
}

.unpaidCard .unpaidCount {
    font-size: 15px;
    font-weight: 700;
    color: var(--title,#ff2d55);
    margin: 0 4px
}

.unpaidTableBox {
    overflow-x: auto;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid var(--line,#101218);
    background: var(--bg,#131518)
}

.unpaidTable {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse
}

.unpaidTable th {
    background: rgba(255,255,255,0.03);
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text,#fff);
    border-bottom: 1px solid var(--line,#101218);
    text-align: center
}

.unpaidTable td {
    padding: 10px 12px;
    font-size: 12px;
    color: var(--name,#8f8f8f);
    border-bottom: 1px solid var(--line,#101218);
    text-align: center
}

.unpaidTable .orderNo {
    color: var(--title,#ff2d55);
    font-weight: 600;
    font-size: 11px
}

.unpaidTable .price {
    color: var(--title,#ff2d55);
    font-weight: 700
}

.btnGroup {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap
}

.btnSmall {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 20px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: 0
}

.btnView {
    background: #3498db;
    color: #fff
}

.btnPay {
    background: var(--title,#ff2d55);
    color: #fff
}

.btnCancel {
    background: #7f8c8d;
    color: #fff
}

.cartActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cartBtn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 30px;
    border: 0;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.cartBtn-primary {
    background: var(--title,#ff2d55);
    color: #fff
}

.cartBtn-default {
    background: rgba(255,255,255,0.08);
    color: var(--text,#fff);
    border: 1px solid var(--line,#101218)
}

.cartBtn-danger {
    background: rgba(255,255,255,0.05);
    color: #e74c3c;
    border: 1px solid #e74c3c
}

.orderTotalBox {
    background: var(--bg,#131518);
    border: 1px solid var(--line,#101218);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px
}

.orderTotalRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.orderTotalRow:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line,#101218)
}

.orderTotalLabel {
    font-size: 13px;
    color: var(--name,#8f8f8f)
}

.orderTotalPrice {
    font-size: 14px;
    color: var(--text,#fff);
    font-weight: 500
}

.orderTotalAmount {
    font-size: 20px;
    font-weight: 700;
    color: var(--title,#ff2d55)
}

.formActions {
    padding: 20px 15px
}

.securityBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    border: 0;
    width: 100%;
    max-width: 280px;
    background: var(--bg);
    color: var(--name)
}

.securityBtn_primary {
    background: var(--title,#ff2d55);
    color: #fff
}

.securityCard {
    background: var(--card,#0d0d0d);
    border-radius: var(--radius,12px);
    margin-top: 16px;
    border: 1px solid var(--line,#101218);
    overflow: hidden
}

.securityCard_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line,#101218)
}

.securityCard_title {
    display: flex;
    align-items: center;
    gap: 8px
}

.securityCard_title i {
    font-size: 18px;
    color: var(--title,#ff2d55)
}

.securityCard_title h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text,#fff)
}

.noticeList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px
}

.noticeSection {
    padding: 12px;
    background: var(--bg,#131518);
    border-radius: 8px
}

.noticeTitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--text,#fff);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px
}

.noticeTitle i {
    color: var(--title,#ff2d55);
    font-size: 14px
}

.noticeContent {
    font-size: 12px;
    color: var(--name,#8f8f8f);
    line-height: 1.7
}

.noticeContent p {
    margin: 4px 0
}

.highlight {
    color: var(--title,#ff2d55);
    font-weight: 600
}

#carlist_cs,#carlist_dq {
    display: flex;
    flex-direction: column;
    width: 100%
}

.songRow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border: 1px solid var(--line,#101218);
    margin: 8px;
    border-radius: var(--radius);
    transition: all .2s ease;
    box-sizing: border-box
}

.songRow:last-child {
    margin-bottom: 0
}

.songRow:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,45,85,0.3)
}

.songRow-empty {
    opacity: .6;
    background: rgba(255,255,255,0.01)
}

.songRow_num {
    width: 44px;
    font-size: 13px;
    font-weight: 600;
    color: var(--title,#ff2d55);
    text-align: center;
    flex-shrink: 0
}

.songRow_cover {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.songRow_cover i {
    font-size: 24px;
    color: var(--title,#ff2d55);
    opacity: .8
}

.songRow_numBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,45,85,0.12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--title,#ff2d55)
}

.songRow_numBadge-off {
    background: rgba(255,255,255,0.05);
    color: var(--name,#8f8f8f)
}

.songRow_info {
    flex: 1;
    min-width: 0
}

.songRow_name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px
}

.songRow_name a {
    color: var(--text,#fff);
    text-decoration: none;
    transition: color .2s;
    word-break: break-all
}

.songRow_name a:hover {
    color: var(--title,#ff2d55)
}

.songRow_name span {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 500;
    vertical-align: middle
}

.songRow_id {
    font-size: 10px;
    color: var(--name,#8f8f8f);
    font-family: monospace
}

.songRow_type {
    width: 60px;
    flex-shrink: 0
}

.typeBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    width: 28px;
    height: 28px
}

.type-cs {
    background: rgba(255,45,85,0.12);
    color: var(--title,#ff2d55)
}

.type-dq {
    background: rgba(52,152,219,0.12);
    color: #3498db
}

.type-empty {
    background: rgba(255,255,255,0.05);
    color: var(--name,#8f8f8f)
}

#cartitleInfo {
    font-size: 12px;
    color: var(--name,#8f8f8f);
    background: rgba(255,255,255,0.02);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px
}

#cartitleInfo span {
    color: var(--title,#ff2d55);
    font-weight: 700;
    font-size: 14px;
    margin: 0 4px
}

#buyInfo {
    font-size: 13px;
    color: var(--name,#8f8f8f);
    background: rgba(255,255,255,0.02);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: right;
    margin-top: 12px
}

#buyInfo span {
    color: var(--title,#ff2d55);
    font-weight: 700;
    font-size: 14px;
    margin: 0 2px
}

#buyInfo .totalPrice {
    font-size: 18px;
    margin-left: 6px
}

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

    .cartBtn {
        justify-content: center;
        width: 100%
    }

    .btnGroup {
        flex-direction: column;
        align-items: stretch;
        gap: 6px
    }

    .btnSmall {
        justify-content: center;
        width: 100%
    }

    .unpaidTable th,.unpaidTable td {
        padding: 8px 10px;
        font-size: 11px
    }
}

@media(max-width: 550px) {
    .songRow {
        flex-direction:column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        margin-bottom: 10px
    }

    .songRow_num {
        width: 100%;
        text-align: left;
        font-size: 14px
    }

    .songRow_cover {
        width: 100%;
        justify-content: flex-start;
        display: none
    }

    .songRow_info {
        width: 100%
    }

    .songRow_name {
        font-size: 14px
    }

    .songRow_type {
        width: 100%;
        text-align: left;
        display: none
    }

    .typeBadge {
        width: auto;
        padding: 4px 12px;
        height: auto
    }

    .songRow_actions {
        width: 100%;
        justify-content: flex-start;
        gap: 12px
    }

    .actionBtn {
        width: 36px;
        height: 36px
    }

    .actionBtn i {
        font-size: 16px
    }

    #cartitleInfo,#buyInfo {
        text-align: center
    }

    #buyInfo {
        text-align: center
    }

    .orderTotalRow {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .orderTotalLabel,.orderTotalPrice,.orderTotalAmount {
        width: 100%
    }

    .orderTotalAmount {
        font-size: 22px
    }

    .securityBtn {
        width: 100%;
        max-width: none;
        padding: 12px 20px
    }

    .noticeList {
        padding: 12px
    }

    .noticeSection {
        padding: 10px
    }

    .unpaidCard {
        justify-content: center;
        text-align: center
    }
}

@media(max-width: 375px) {
    .main {
        padding:0 8px
    }

    .songRow {
        padding: 10px;
        gap: 8px
    }

    .songRow_name {
        font-size: 13px
    }

    .songRow_id {
        font-size: 9px
    }

    .actionBtn {
        width: 32px;
        height: 32px
    }

    .cartBtn {
        padding: 8px 14px;
        font-size: 12px
    }

    .orderTotalBox {
        padding: 12px
    }

    .orderTotalAmount {
        font-size: 20px
    }

    .noticeTitle {
        font-size: 12px
    }

    .noticeContent {
        font-size: 11px
    }
}

@media(prefers-reduced-motion:reduce) {
    .songRow {
        animation: none
    }
}

.songRow {
    animation: fadeInRow .2s ease
}

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width: 768px) {
    .actionBtn,.cartBtn,.btnSmall,.securityBtn {
        cursor:pointer;
        -webkit-tap-highlight-color: transparent
    }

    .actionBtn:active,.cartBtn:active,.btnSmall:active {
        transform: scale(0.96)
    }
}

.orderTableBox {
    margin-top: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch
}

.orderTable {
    min-width: 800px;
    width: 100%;
    border-collapse: collapse;
    font-size: var(--order-text-size)
}

.orderTable thead th {
    background: rgba(255,255,255,0.04);
    padding: 12px 10px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    white-space: nowrap
}

.orderTable tbody td {
    padding: 12px 10px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    vertical-align: middle
}

.orderTable tbody tr:last-child td {
    border-bottom: 0
}

.orderTable td:first-child {
    min-width: 140px
}

.orderTable td:first-child img {
    height: 38px;
    width: 38px;
    border-radius: 6px;
    object-fit: cover;
    vertical-align: middle
}

.orderTable td:first-child span {
    margin-left: 8px;
    font-weight: 500
}

.orderTable td:nth-child(3) {
    max-width: 180px;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4
}

.orderTable .price {
    color: var(--title);
    font-weight: 600;
    font-size: var(--order-price-size);
    white-space: nowrap
}

.orderTable .price.total {
    font-size: var(--order-price-size);
    color: #ff5a5a
}

.orderTotalInfo {
    background: rgba(255,255,255,0.02);
    padding: 14px 16px!important;
    font-size: var(--order-text-size);
    color: var(--name);
    text-align: right
}

.orderTotalInfo .corred {
    color: var(--title);
    font-weight: 700;
    font-size: var(--order-price-size);
    margin: 0 2px
}

.orderTotalInfo .price2 {
    color: #ff5a5a;
    font-size: var(--order-total-size);
    font-weight: 800;
    margin-left: 8px
}

.sectionGroup {
    padding: 20px
}

@media(max-width: 768px) {
    .sectionGroup {
        padding:16px!important
    }
}

.addressSelectBox {
    margin-bottom: 20px
}

.addressTip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px
}

.addressTip span {
    font-size: var(--order-text-size);
    color: var(--text)
}

.addressTip a {
    font-size: var(--order-small-size);
    color: var(--title)
}

.addressList {
    list-style: none;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px;
    margin: 0
}

.addressList li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: var(--order-text-size);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap
}

.addressList li:last-child {
    border-bottom: 0
}

.addressList li input {
    flex-shrink: 0
}

.addressList li label {
    flex: 1;
    word-break: break-word;
    color: var(--text)
}

.delAddr {
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
    flex-shrink: 0
}

.delAddr:hover {
    opacity: 1
}

.addressForm {
    background: var(--bg)!important;
    border: 1px solid var(--line)!important;
    border-radius: 12px!important;
    padding: 20px!important;
    margin: 20px 0!important;
    overflow-x: auto
}

.addressForm table {
    width: 100%;
    min-width: 280px
}

.addressForm td {
    padding: 8px 6px!important;
    font-size: var(--order-text-size)!important
}

.addressForm .inputord {
    background: var(--card)!important;
    border: 1px solid var(--line)!important;
    color: var(--text)!important;
    border-radius: 8px!important;
    padding: 8px 12px!important;
    height: 40px!important;
    width: 100%;
    max-width: 200px
}

@media(max-width: 600px) {
    .addressForm .inputord {
        max-width:100%;
        width: 100%;
        margin-bottom: 6px
    }

    .addressForm td {
        display: block;
        width: 100%
    }
}

.remarkItem {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap
}

.remarkItem label {
    font-size: var(--order-text-size);
    color: var(--text);
    width: 80px;
    flex-shrink: 0
}

.remarkItem input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font-size: var(--order-text-size);
    min-width: 180px
}

@media(max-width: 550px) {
    .remarkItem {
        flex-direction:column;
        align-items: stretch
    }

    .remarkItem label {
        width: auto
    }
}

.submitOrderBox {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line)
}

#addorder {
    min-width: 240px;
    height: 48px;
    line-height: 48px;
    padding: 0 28px;
    font-size: 1rem;
    border-radius: 40px;
    background: var(--title);
    color: #fff;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

#addorder:hover {
    background: #ff4a4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255,70,70,0.2)
}

@media(max-width: 480px) {
    #addorder {
        min-width:100%;
        height: 44px;
        line-height: 44px;
        font-size: .9375rem
    }
}

.loginTipCard {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,45,85,0.08);
    border: 1px solid rgba(255,45,85,0.25);
    border-radius: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.loginTipCard i {
    color: var(--title);
    font-size: 20px
}

.loginTipCard span {
    flex: 1;
    font-size: var(--order-text-size)
}

.loginBtn {
    padding: 6px 18px;
    background: var(--title);
    color: #fff;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-size: var(--order-small-size)
}

.sectionTitle {
    font-size: var(--order-title-size);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text)
}

.price,.price2 {
    letter-spacing: .5px
}

.corred {
    color: #ff5a5a
}

.servers_left {
    flex-shrink: 0;
    width: 240px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden
}

.servers_left_menu {
    list-style: none;
    margin: 0;
    padding: 8px 0
}

.servers_left_item {
    margin: 0;
    padding: 0
}

.servers_left_link {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
    border-left: 3px solid transparent
}

.servers_left_link:hover {
    background: rgba(255,45,85,0.05);
    color: var(--title);
    border-left-color: var(--title)
}

.servers_left_link_active {
    display: block;
    padding: 12px 20px;
    color: var(--title);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    background: rgba(255,45,85,0.08);
    border-left: 3px solid var(--title)
}

.servers_right {
    flex: 1;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden
}

.servers_right_header {
    padding: 16px 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.01)
}

.servers_right_title {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px
}

.servers_right_content {
    padding: 24px 28px;
    color: var(--name);
    font-size: .9rem;
    line-height: 1.8
}

.servers_right_content img {
    max-width: 100%;
    height: auto
}

.servers_right_content p {
    margin-bottom: 1em
}

.servers_right_content h1,.servers_right_content h2,.servers_right_content h3,.servers_right_content h4 {
    color: var(--text);
    margin: 1em 0 .5em
}

.servers_right_spacer {
    height: 30px
}

@media(max-width: 900px) {
    .page_bai {
        padding:16px 12px
    }

    .servers_left {
        width: 100%
    }

    .servers_left_menu {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px
    }

    .servers_left_item {
        flex: 1;
        min-width: 100px
    }

    .servers_left_link,.servers_left_link_active {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 10px 16px;
        border-radius: 30px
    }

    .servers_left_link:hover {
        border-left-color: transparent;
        border-bottom-color: var(--title)
    }

    .servers_left_link_active {
        border-left-color: transparent;
        border-bottom: 2px solid var(--title)
    }

    .servers_right_header {
        padding: 14px 20px
    }

    .servers_right_title {
        font-size: 1.1rem
    }

    .servers_right_content {
        padding: 20px;
        font-size: .85rem
    }
}

@media(max-width: 600px) {
    .servers_left_menu {
        flex-direction:column
    }

    .servers_left_item {
        min-width: auto
    }

    .servers_left_link,.servers_left_link_active {
        text-align: left;
        border-radius: var(--radius)
    }
}
