        /* 右侧内容区 */
        
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            min-height: 100vh;
        }
        
        .page-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .page-title {
            font-size: 24px;
            color: #8B5A2B;
            font-weight: bold;
        }
        
        /* 分类筛选样式 */
        .filter-rows {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .filter-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .filter-label {
            font-size: 14px;
            color: #8B5A2B;
            min-width: 30px;
        }
        
        .category-btn {
            padding: 6px 13px;
            background-color: #E8D5B5;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .category-btn.active, .category-btn:hover {
            background-color: #D4C19C;
            color: #8B5A2B;
            transform: translateY(-2px);
        }
        /* 更多按钮样式 */
        .more-authors-btn {
            padding: 5px 10px;
            background-color: #E8D5B5;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
            cursor: pointer;
            border: none;
            outline: none;
        }
        
        .more-authors-btn:hover {
            background-color: #D4C19C;
            color: #8B5A2B;
            transform: translateY(-2px);
        }
        
        /* 作者弹窗样式 */
        .authors-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .authors-modal-content {
            background-color: #f9f9f5;
            padding: 20px;
            border-radius: 8px;
            max-width: 80%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .authors-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #E8D5B5;
        }
        
        .authors-modal-title {
            font-size: 18px;
            color: #8B5A2B;
            font-weight: bold;
        }
        
        .close-modal {
            cursor: pointer;
            font-size: 24px;
            color: #8B5A2B;
        }
        
        .authors-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
                
        
        
        /* 音频列表 */
        .audio-list {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-top: 20px;
        }
        .audio-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px dashed #eee;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .audio-item:last-child {
            border-bottom: none;
        }
        
        .audio-item:hover {
            background-color: #F9F5ED;
        }
        
        .audio-item.playing {
            background-color: #F0E6D2;
        }
        
        .audio-cover {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
            background-color: #F5F0E6;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .audio-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .audio-cover .icon {
            font-size: 24px;
            color: #8B5A2B;
        }
        
        .audio-info {
            flex-grow: 1;
            min-width: 0;
        }
        
        .audio-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #5a4a3a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .audio-meta {
            display: flex;
            font-size: 13px;
            color: #999;
        }
        
        .audio-author {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        .audio-author i {
            margin-right: 5px;
        }
        
        .audio-duration {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .audio-plays {
            margin-right: 15px;
        }
        
        .audio-date {
            margin-right: 15px;
        }
        
        .audio-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .play-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #8B5A2B;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        
        .play-btn:hover {
            background-color: #A67C52;
            transform: scale(1.05);
        }
        
        .play-btn.playing {
            background-color: #CB9966;
        }
        
        .play-btn .icon {
            font-size: 16px;
        }
        
        .favorite-btn {
            color: #8B5A2B;
            font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .favorite-btn:hover {
            color: #A67C52;
        }
        
        .favorite-btn.favorited {
            color: #D4A76A;
        }
        
        .favorite-btn .icon {
            font-size: 30px;
        }
        
        /* 音频播放器条 */
        .audio-player-bar {
            position: fixed;
            bottom: 0;
            left: 260px;
            right: 0;
            background-color: white;
            height: 80px;
            display: flex;
            align-items: center;
            padding: 0 30px;
            box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
            border-top: 1px solid #eee;
            z-index: 100;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .audio-player-bar.visible {
            transform: translateY(0);
        }
        
        .player-cover {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            overflow: hidden;
            margin-right: 15px;
            background-color: #F5F0E6;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .player-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .player-cover .icon {
            font-size: 20px;
            color: #8B5A2B;
        }
        
        .player-info {
            flex: 1;
            min-width: 0;
        }
        
        .player-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .player-author {
            font-size: 14px;
            color: #999;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 0 30px;
        }
        
        .player-btn {
            color: #5a4a3a;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .player-btn:hover {
            color: #8B5A2B;
        }
        
        .player-btn.disabled {
            color: #ccc;
            cursor: not-allowed;
        }
        
        .player-progress {
            flex: 2;
            height: 4px;
            background-color: #eee;
            border-radius: 2px;
            position: relative;
            cursor: pointer;
            display: none; /* 默认隐藏进度条 */
        }
        
        .player-progress.visible {
            display: block; /* 显示进度条 */
        }
        
        .player-progress-filled {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background-color: #8B5A2B;
            border-radius: 2px;
        }
        
        .player-time {
            font-size: 14px;
            color: #999;
            margin-left: 15px;
            min-width: 80px;
            text-align: right;
            display: none; /* 默认隐藏时间 */
        }
        
        .player-time.visible {
            display: block; /* 显示时间 */
        }
            .audio-player-bar {
        transition: all 0.3s ease;
        margin-top: 0;
    }
    .audio-player-bar.visible {
        margin-top: 100px;
    }
    .audio-player-bar.hidden {
        display: none;
    }
    .pagination {
        margin-top: 20px;
        transition: margin-top 0.3s ease;
    }
    .audio-player-bar.visible + .pagination {
        margin-top: 120px;
    }