       .music-wall {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .music-heading {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
        }
        
        .music-heading h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 10px;
        }
        
        .music-heading p {
            font-size: 1.1rem;
            color: #666;
            margin: 0;
        }
        
        /* 播放器样式 */
        .music-player {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 40px;
            display: none;
        }
        
        .music-player.active {
            display: block;
        }
        
        .player-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 20px;
        }
        
        .player-cover {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .player-info h2 {
            margin: 0 0 5px;
            font-size: 1.6rem;
            color: #2c3e50;
        }
        
        .player-info p {
            margin: 0 0 10px;
            color: #666;
        }
        
        .player-controls {
            margin-top: 20px;
        }
        
        .progress-container {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: #eee;
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background: #4F9EFD;
            width: 35%;
            border-radius: 3px;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #999;
            margin-top: 5px;
        }
        
        .control-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: #555;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .control-btn:hover {
            color: #4F9EFD;
        }
        
        .play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #4F9EFD;
            color: white;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(79, 158, 253, 0.3);
            transition: transform 0.2s;
        }
        
        .play-btn:hover {
            color: white;
            transform: scale(1.05);
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .volume-slider {
            width: 100px;
            height: 4px;
            background: #eee;
            border-radius: 2px;
        }
        
        /* 音乐卡片样式 */
        .music-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        @media (min-width: 768px) {
            .music-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .music-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: flex-start;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        
        .music-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        .music-card.active {
            border: 2px solid #4F9EFD;
        }
        
        .music-cover {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 6px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .music-info {
            flex: 1;
        }
        
        .music-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 8px;
            display: flex;
            align-items: center;
        }
        
        .creator {
            font-size: 0.85rem;
            color: #999;
            margin-left: 8px;
        }
        
        .music-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin: 0 0 12px;
        }
        
        .music-tags {
            margin-bottom: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .tag {
            display: inline-block;
            padding: 4px 8px;
            background: #f2f2f2;
            border-radius: 4px;
            font-size: 0.8rem;
            color: #555;
        }
        
        .both-like {
            color: #e63946;
            font-weight: 600;
            margin-left: 8px;
            display: inline-flex;
            align-items: center;
        }
        
        .both-like::before {
            content: "❤️";
            margin-right: 4px;
        }
        
        .music-note {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #444;
        }
        
        .append-note {
            color: #666;
            font-style: italic;
            margin-top: 8px;
            font-size: 0.85rem;
        }
        
        /* 分页样式 */
        .pagination-container {
            text-align: center;
            margin: 40px 0 20px;
        }
        
        .pagination {
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .page-link {
            display: inline-block;
            padding: 8px 14px;
            margin: 0 2px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #666;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .page-link:hover {
            background: #f8f9fa;
            border-color: #ccc;
            color: #4F9EFD;
        }
        
        .page-current {
            display: inline-block;
            padding: 8px 14px;
            margin: 0 2px;
            background: #4F9EFD;
            color: #fff;
            border-radius: 4px;
        }
        
        .page-ellipsis {
            display: inline-block;
            padding: 8px 8px;
            color: #999;
        }
        
        .page-info {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* 空状态 */
        .empty-state {
            text-align: center;
            background: #fff;
            border-radius: 8px;
            padding: 40px;
            margin: 20px 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
        }
        
        .empty-state h4 {
            margin: 0 0 10px;
            color: #333;
        }
        
        .empty-state p {
            margin: 0;
            color: #777;
        }