        /* 新增：整体布局容器 */
        .main-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        /* 左侧搜索结果区域 */
        .left-content {
            flex: 3;
            /* 占3/4宽度 */
        }

        /* 右侧播放器区域 */
        .right-player {
            flex: 1;
            /* 占1/4宽度 */
            min-width: 300px;
        }

        #lyrics {
            height: 200px;
            overflow-y: auto;
            border: 1px solid #ccc;
            padding: 10px;
            font-family: Arial, sans-serif;
            margin-bottom: 10px;
            position: relative;
        }

        .lyric-line {
            font-size: 16px;
            color: #666;
            transition: all 0.2s;
            text-align: center;
        }

        .lyric-line.active {
            font-size: 20px;
            font-weight: bold;
            color: #89e076;
        }

        .search-area {
            margin: 20px 0;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        #searchInput {
            padding: 8px 12px;
            width: 300px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        #musicSource {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: #fff;
        }

        button {
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            background: #007bff;
            color: #fff;
            cursor: pointer;
        }

        button:hover {
            background: #0056b3;
        }

        .song-card {
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            display: flex;
            align-items: center;
            transition: box-shadow 0.3s;
        }

        .song-card:hover {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .song-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
        }

        .song-info {
            margin-left: 15px;
            line-height: 1.6;
        }

        .song-info button {
            margin-top: 8px;
            background: #28a745;
        }

        .song-info button:hover {
            background: #1e7e34;
        }

        /* 进度条样式 */
.progress-container {
    width: 100%;
    margin: 15px 0;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
}

.progress {
    position: absolute;
    height: 100%;
    background-color: #4a90e2;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #4a90e2;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.1s ease;
}

.progress-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

.progress-handle:hover {
    background-color: #357abd;
}

/* 时间显示样式 */
#time {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}