* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:'PingFang SC','Helvetica Neue',system-ui,-apple-system,Roboto,sans-serif;
	transition:background-color 0.2s ease,color 0.2s ease,border-color 0.2s
}
body {
	background-color:#f5f5f5;
	display:flex;
	justify-content:center;
	align-items:flex-start;
	min-height:100vh
}
.phone-mock {
	width:100%;
	/*max-width:580px;*/
	background-color:white;
	box-shadow:0 0 30px rgba(0,0,0,0.1);
	min-height:100vh;
	position:relative;
	border-radius:0;
	overflow:hidden;
	display:flex;
	flex-direction:column
}
.phone-mock a {
	text-decoration:none;
	color:#525050
}
body.night-mode .phone-mock,body.night-mode .header-container,body.night-mode .header,body.night-mode .content,body.night-mode .tab-bar,body.night-mode .mini-player,body.night-mode .card,body.night-mode .search-bar,body.night-mode .category-chip,body.night-mode .side-menu,body.night-mode .right-content,body.night-mode .left-tabs,body.night-mode .sub-cat-item {
	background-color:#1e1e1e;
	color:#f0f0f0;
	border-color:#333
}
body.night-mode .phone-mock {
	background-color:#1e1e1e
}
body.night-mode .header h1 {
	color:#ff7b5c
}
body.night-mode .tab-item {
	color:#aaa
}
body.night-mode .tab-item.active {
	color:#ff7b5c
}
body.night-mode .category-chip {
	background-color:#2a2a2a;
	border-color:#444;
	color:#ddd
}
body.night-mode .category-chip.active {
	background-color:#ff7b5c;
	color:white;
	border-color:#ff7b5c
}
body.night-mode .search-bar {
	background-color:#2a2a2a;
	color:#bbb
}
body.night-mode .playlist-item {
	border-bottom-color:#333
}
body.night-mode .cover-img {
	filter:brightness(0.9)
}
body.night-mode .progress-bar {
	background-color:#3a3a3a
}
.menu-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
	z-index:1000;
	display:none;
	opacity:0;
	transition:opacity 0.3s ease
}
.menu-overlay.active {
	display:block;
	opacity:1
}
.side-menu {
	position:fixed;
	top:0;
	left:-280px;
	width:280px;
	height:100%;
	background-color:white;
	z-index:999999999999999999999999;
	transition:left 0.3s ease;
	box-shadow:2px 0 15px rgba(0,0,0,0.2);
	overflow-y:auto
}
body.night-mode .side-menu {
	background-color:#1e1e1e;
	color:#f0f0f0;
}
.side-menu.active {
	left:0
}
.menu-header {
	padding:40px 20px 20px;
	border-bottom:1px solid #f0f0f0;
	background:linear-gradient(135deg,#e34b2b 0%,#ff7b5c 100%);
	color:white
}
body.night-mode .menu-header {
	border-bottom-color:#333
}
.user-info {
	display:flex;
	align-items:center;
	gap:15px
}
.user-avatar {
	width:60px;
	height:60px;
	border-radius:50%;
	background-color:rgba(255,255,255,0.2);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:30px
}
.user-name h4 {
	font-size:18px;
	margin-bottom:5px
}
.user-name p {
	font-size:12px;
	opacity:0.9
}
.menu-items {
	padding:15px 0
}
.menu-items a {
	text-decoration:none;
	color:#484848;
	font-weight:500
}
.menu-item {
	display:flex;
	align-items:center;
	gap:15px;
	padding:15px 25px;
	color:#333;
	border-bottom:1px solid #f5f5f5;
	cursor:pointer
}
body.night-mode .menu-item {
	color:#f0f0f0;
	border-bottom-color:#333
}
.menu-item i {
	width:24px;
	color:#e34b2b
}
.menu-item:hover {
	background-color:#f9f9f9
}
body.night-mode .menu-item:hover {
	background-color:#2a2a2a
}
.header-container {
    position: fixed;
	width:100%;
	background-color:white;
	border-bottom:1px solid #f0f0f0;
	z-index: 9999999;
}
.page {
	flex-direction:column;
	flex:1
}
.page.active {
	display:flex
}
.header {
	padding:12px 16px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	background-color:white
}
.header h1 {
	font-size:20px;
	font-weight:600;
	color:#e34b2b
}
.header i {
	font-size:22px;
	color:#333;
	cursor:pointer
}
.header-logo {
	margin-left:40px
}
.header-logo img {
	height:30px
}
body.night-mode .header i {
	color:#f0f0f0
}
.header-left,.header-right {
	display:flex;
	gap:18px
}
.tab-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 6px;
    border-top: 1px solid #eee;
    background-color: white;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.02);
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    left: 0;
}
.tab-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	color:#8a8a8a;
	font-size:12px;
	transition:0.2s;
	text-align: center;
	cursor:pointer
}
.tab-item i {
	font-size:22px;
	margin-bottom:2px
}
.tab-item.active {
	color:#e34b2b
}
.content {
	flex:1;
	overflow-y:auto;
	padding:70px 16px 20px;
	background-color:white;
	scroll-behavior:smooth
}
.expand-search {
	display:none;
	margin:8px 16px 16px;
	padding:0
}
.expand-search.active-search {
	display:block
}
.search-input-wrapper {
	background-color:#f2f2f2;
	border-radius:30px;
	padding:12px 18px;
	display:flex;
	align-items:center;
	gap:8px;
	border:1px solid #e0e0e0
}
.search-input-wrapper form {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}
body.night-mode .search-input-wrapper {
	background-color:#2a2a2a;
	border-color:#444
}
.search-input-wrapper i {
	color:#e34b2b
}
.search-input-wrapper input {
	flex:1;
	margin-left: 10px;
	border:none;
	background:transparent;
	font-size:16px;
	outline:none
}
body.night-mode .search-input-wrapper input {
	color:#f0f0f0
}
.search-input-wrapper input::placeholder {
	color:#aaa
}
.search-bar {
	background-color:#f2f2f2;
	border-radius:24px;
	padding:10px 18px;
	margin:12px 0;
	display:flex;
	align-items:center;
	gap:8px;
	color:#888;
	font-size:15px
}
.section-title {
	display:flex;
	justify-content:space-between;
	align-items:baseline;
	margin:20px 0 10px;
	padding: 0px 0px 0px 10px;
	border-left: 5px solid #F44336;
}
.section-title h3 {
	font-size:18px;
	font-weight:600
}
.section-title span {
	font-size:13px;
	color:#999
}
.section-title a {
	text-decoration:none
}
.section-title i {
	margin-left:5px
}
.hor-scroll {
	display:flex;
	gap:12px;
	overflow-x:auto;
	padding:4px 0 12px;
	scrollbar-width:none
}
.hor-scroll::-webkit-scrollbar {
	display:none
}
.category-chip {
	background-color:#f5f5f5;
	padding:8px 18px;
	border-radius:30px;
	font-size:14px;
	white-space:nowrap;
	border:1px solid #eee
}
.category-chip.active {
	background-color:#e34b2b;
	color:white;
	border-color:#e34b2b
}
.category-chip.topid-0 {
    display: none;
}
.card {
	background:white;
	border-radius:12px;
	overflow:hidden;
	box-shadow:0 2px 12px rgba(0,0,0,0.04);
	border:1px solid #f0f0f0
}
.cover-img {
	}.cover-img img {
	width:100%;
	border:1px solid #ddd;
	border-radius:5px
}
.grid-2 {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:14px;
	margin-top:10px
}
.album-item .cover-img {
	width:100%;
	border-radius:5px;
	margin-bottom:6px
}
.album-item .title {
	font-weight:500;
	font-size:14px;
	margin:4px 0 2px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	text-align:center
}
.album-item .sub {
	font-size:12px;
	color:#999
}
body.night-mode .album-item .sub {
	color:#aaa
}
.list-header {
	display:flex;
	align-items:center;
	gap:16px;
	padding:8px 0 16px
}
.list-header .big-cover {
	border-radius:5px
}
.list-header .big-cover img {
	width:100px;
	border:1px solid #ddd;
	border-radius:5px
}
.list-header .info h2 {
	font-size:20px;
	font-weight:650
}
.list-header .info p {
	color:#777;
	font-size:13px;
	margin-top:6px
}
body.night-mode .list-header .info p {
	color:#bbb
}
.subscribe-btn {
	background-color:#e34b2b;
	color:white;
	border:none;
	padding:10px 24px;
	border-radius:30px;
	font-weight:600;
	font-size:15px;
	margin:16px 0 20px;
	width:fit-content
}
.playlist-item {
	display:flex;
	align-items:center;
	padding:12px 0;
	border-bottom:1px solid #f2f2f2;
	cursor:pointer
}
.playlist-item .logo {
	width:100px;
	margin-right:10px
}
.playlist-item .logo img {
	width:100%;
	border:1px solid #ddd;
	border-radius:5px
}
.playlist-item .info {
	flex:1
}
.playlist-item .info .name {
	font-weight:500;
	margin-bottom:4px
}
.playlist-item .info .meta {
	font-size:12px;
	color:#999;
	margin-bottom:4px
}
.playlist-item .info .desc {
	display:-webkit-box;
	font-size:12px;
	font-weight:400;
	color:#999;
	overflow:hidden;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical
}
body.night-mode .playlist-item .info .meta {
	color:#aaa
}
.playlist-item .listen-btn {
	color:#ffffff;
	font-size:13px;
	background:#F44336;
	border-radius:5px;
	padding:2px 5px
}
.playlist-item.active-audio .name {
	color:#e34b2b;
	font-weight:600
}
.player-album-art {
	width:110px;
	height:80px;
	border-radius:5px;
	background-color:#333;
	margin:20px auto 20px;
	box-shadow:0 20px 30px rgba(0,0,0,0.2);
	background-image:url(/player/images/playj.gif);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:bottom
}
.player-album-art img {
	width:100%
}
.player-info {
	text-align:center;
	margin:20px 0 16px
}
.player-info h3 {
	font-size:18px;
	font-weight:650
}
.player-info p {
	color:#999;
	margin-top:6px
}
body.night-mode .player-info p {
	color:#bbb
}
.mini-player {
	background-color:white;
	border-top:1px solid #f0f0f0;
	padding:10px 16px;
	display:flex;
	align-items:center;
	gap:12px;
	box-shadow:0 -4px 12px rgba(0,0,0,0.04);
	cursor:pointer;
	position:relative;
	z-index:10
}
.mini-cover {
	width:44px;
	height:44px;
	border-radius:10px;
	background-color:#ccc;
	background-size:cover
}
.mini-detail {
	flex:1
}
.mini-detail .title {
	font-weight:600;
	font-size:14px
}
.mini-detail .sub {
	font-size:12px;
	color:#999
}
body.night-mode .mini-detail .sub {
	color:#aaa
}
.mini-player i {
	font-size:28px;
	color:#e34b2b
}
.radio-desc {
	font-size:14px;
	color:#6b6b6b
}
.line-list {
	padding:5px;
	display:flex;
	gap:10px;
	justify-content:center
}
.line-list button {
	background:#4CAF50;
	border:none;
	padding:5px 10px;
	border-radius:10px
}
.line-list button:hover {
	background:#8BC34A
}
.line-list button a {
	color:#fff
}
.pagination-wrapper {
	width:100%;
	padding:20px 0 60px;
	display:flex;
	justify-content:center;
	background-color:transparent
}
ul.pagination {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	list-style:none;
	padding:0;
	margin:0;
	justify-content:center
}
ul.pagination img {
	height:60px
}
ul.pagination  a {
	display:flex;
	align-items:center;
	justify-content:center;
	min-width:30px;
	height:30px;
	padding:0 6px;
	background-color:white;
	border:1px solid #e0e0e0;
	border-radius:5px;
	color:#666;
	font-size:14px;
	font-weight:500;
	text-decoration:none;
	transition:all 0.2s ease;
	cursor:pointer
}
li.thisclass a {
    background: #F44336;
    color: #fff;
    border: 1px solid #F44336;
}
.pagination a:hover {
	background-color:#f5f5f5;
	border-color:#e34b2b;
	color:#e34b2b
}
.hot-label {
	background-color:#f13c3c;
	color:white;
	font-size:0.6rem;
	font-weight:bold;
	padding:0.15rem 0.5rem;
	border-radius:20px;
	letter-spacing:0.5px
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffebee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    color: #ff5722;
    font-size: 20px;
}
.category-name {
    font-size: 14px;
    text-align: center;
}
.banner-slider {
    position: relative;
    width: 100%;
    margin: 59px 0 0px;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.banner-container {
    display: flex;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.banner-slide {
    flex: 0 0 100%;
    aspect-ratio: 3/1.2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.banner-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 13px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.banner-dots {
    position: absolute;
    bottom: 8px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.banner-dot.active {
    width: 16px;
    border-radius: 3px;
    background-color: white;
}

body.night-mode .banner-slider {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.banner-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.banner-slider:hover::before {
    opacity: 1;
}
.category-container {
            display: flex;
            min-height: 600px;
            background-color: #fff;
            margin-top: 10px;
        }

        .left-tabs {
            width: 100px;
            background-color: #f8f9fb;
            border-right: 1px solid #eeeeef;
            overflow-y: auto;
            flex-shrink: 0;
        }

        .left-tab-item {
            padding: 18px 8px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: #4a4a4a;
            border-bottom: 1px solid #eaeef2;
            cursor: pointer;
            transition: all 0.15s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .left-tab-item i {
            font-size: 22px;
            color: #9a9fa4;
        }

        .left-tab-item.active {
            background-color: white;
            color: #f86442;
            border-right: 3px solid #f86442;
            font-weight: 600;
            box-shadow: -2px 0 8px rgba(248, 100, 66, 0.08);
        }

        .left-tab-item.active i {
            color: #f86442;
        }

        .right-content {
            flex: 1;
            background-color: white;
            padding: 16px 12px;
            overflow-y: auto;
        }

        .category-panel {
            display: none;
        }

        .category-panel.active-panel {
            display: block;
        }

        .panel-title {
            font-size: 18px;
            font-weight: 650;
            color: #525050;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .panel-title i {
            color: #f86442;
            font-size: 18px;
        }

        .sub-cat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 12px;
            margin-bottom: 24px;
        }
        .sub-cat-grid a {
            text-decoration: none;
        }
        .sub-cat-item {
            background: #f5f7f9;
            border-radius: 5px;
            padding: 5px 5px;
            text-align: center;
            transition: 0.1s;
            border: 1px solid #f0f0f0;
        }

        .sub-cat-item i {
            font-size: 28px;
            color: #f86442;
            margin-bottom: 8px;
            display: block;
        }

        .sub-cat-item span {
            font-size: 14px;
            font-weight: 500;
            color: #2e2e2e;
        }

        .hot-scroll {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            margin: 12px 0 20px 0;
            padding-bottom: 8px;
        }

        .hot-scroll .mini-card {
            flex: 0 0 120px;
            background: #f5f5f5;
            border-radius: 12px;
            padding: 12px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .mini-card i {
            font-size: 32px;
            color: #f86442;
            margin-bottom: 8px;
        }

        .mini-card span {
            font-size: 13px;
            font-weight: 500;
        }

        .mini-card small {
            font-size: 11px;
            color: #898989;
            margin-top: 4px;
        }

        .right-list-item {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
            align-items: center;
            border-bottom: 1px dashed #f0f0f0;
            padding-bottom: 12px;
        }

        .right-list-img {
            width: 60px;
            height: 60px;
            background: #ddd;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            background-color: #eaeef2;
        }

        .right-list-detail {
            flex: 1;
        }

        .right-list-detail h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .right-list-detail .meta {
            font-size: 12px;
            color: #8a8a8a;
        }

        .page {
            display: none;
        }

        .page.active-page {
            display: block;
        }

        .category-header {
            padding: 12px 16px;
            font-size: 18px;
            font-weight: 650;
            border-bottom: 1px solid #f2f2f2;
            background: white;
        }