/* 整体布局 */
.container-fluid {
    display: flex;
    gap: 20px;
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
}

/* 中间列表区域 */
.list-container {
    flex: 2;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

/* 标题区域 */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.list-title {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 500;
}

.list-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 搜索区域 */
.list-search {
    display: flex;
    gap: 10px;
    align-items: center;
}

.list-search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.list-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.list-btn-primary {
    background: #1890ff;
    color: white;
}

.list-btn-primary:hover {
    background: #40a9ff;
}

/* 分页区域 */
.list-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    justify-content: center;
    margin: 10px 0;
}

.list-page-btn {
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px 12px;
}

.list-page-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.list-page-btn:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* 列表内容 */
.list-items {
    flex: 1;
    overflow-y: auto;
}

/* 列表项样式 */
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-radius: 4px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.list-item:hover {
    background: #f5f5f5;
}

.list-item-title {
    flex: 1;
    font-size: 16px;
    color: #2c3e50;
}

.list-item-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.list-item-date {
    color: #999;
}

.list-item-hots {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b6b;
}

/* 首页分组样式 */
.list-section {
    margin-bottom: 30px;
}

.list-section-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.list-section-articles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}