        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 音乐播放页特定样式 */
        .music-info {
            display: flex;
            margin-bottom: 30px;
            align-items: center;
        }
        
        .cover-image {
            width: 200px;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-right: 30px;
        }
        
        .music-details {
            flex: 1;
        }
        
        .music-title {
            font-size: 28px;
            color: #8B5A2B;
            margin-bottom: 10px;
        }
        
        .music-artist {
            font-size: 16px;
            color: #7a6a5a;
            margin-bottom: 20px;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #8B5A2B;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            margin-right: 15px;
            transition: all 0.3s;
        }
        
        .play-btn:hover {
            background-color: #6d4622;
            transform: scale(1.05);
        }
        
        .loop-btn {
            padding: 8px 15px;
            background-color: #e0d5c0;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .loop-btn:hover {
            background-color: #d0c5b0;
        }
        
        .loop-btn.active {
            background-color: #8B5A2B;
            color: white;
        }
        
        .loop-btn i {
            margin-right: 5px;
        }
        
        .progress-container {
            width: 100%;
            margin-bottom: 30px;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background-color: #e0d5c0;
            border-radius: 3px;
            margin-bottom: 5px;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background-color: #8B5A2B;
            border-radius: 3px;
            width: 0%;
        }
        
        .time-info {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #7a6a5a;
        }
        
        .lyrics-container {
    margin-bottom: 40px;
    background-color: #f5f0e5;
    padding: 20px;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto; /* 保留滚动功能 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE和Edge */
}

/* Chrome, Safari和Opera */
.lyrics-container::-webkit-scrollbar {
    display: none;
}
        
        .lyrics-title {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .lyrics-content {
            line-height: 2;
            font-size: 16px;
            text-align: center;
        }
        .lyrics-container {
    margin-bottom: 40px;
    background-color: #f5f0e5;
    padding: 20px;
    border-radius: 8px;
}

.lyrics-title {
    font-size: 18px;
    color: #8B5A2B;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d5c0;
    background-color: #f5f0e5;
}

.lyrics-scroll-container {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE和Edge */
}

/* Chrome, Safari和Opera */
.lyrics-scroll-container::-webkit-scrollbar {
    display: none;
}

.lyrics-content {
    line-height: 2;
    font-size: 16px;
    text-align: center;
}
        .lyrics-line {
            margin-bottom: 10px;
            transition: all 0.3s;
            opacity: 0.6;
        }
        
        .lyrics-line.active {
            color: #8B5A2B;
            font-weight: bold;
            opacity: 1;
            transform: scale(1.05);
        }
        
        .related-music {
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 22px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d5c0;
        }
        
        .music-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .music-item {
            background-color: #f5f0e5;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .music-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .music-item-cover {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }
        
        .music-item-info {
            flex: 1;
        }
        
        .music-item-title {
            font-size: 16px;
            margin-bottom: 5px;
            color: #8B5A2B;
        }
        
        .music-item-artist {
            font-size: 14px;
            color: #7a6a5a;
            margin-bottom: 5px;
        }
        
        .music-item-meta {
            font-size: 12px;
            color: #999;
        }
        
        .meta-item {
            display: inline-block;
            margin-right: 15px;
        }
        
        .meta-item i {
            margin-right: 3px;
        }
        
        /*下载链接*/
        
        .download {
            margin-bottom: 30px;
        }
        
        .download-title {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .download-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .download-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #8B5A2B;
            color: white;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .download-btn:hover {
            background-color: #A67C52;
            transform: translateY(-2px);
        }
        