/* 右侧内容区域基础布局 */
.list-content {
    margin-left: 220px;
    padding: 20px;
    display: flex;
    gap: 20px;
}

/* 列表区域 */
.list-container {
    flex: 6;  /* 占60% */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* 分割线 */
.list-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

/* 列表顶部 */
.list-header {
    position: relative;
    padding: 10px 0;
}

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

.list-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

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

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

.list-pagination button {
    font-size: 12px;
    padding: 2px 6px;
    line-height: 1.5;
}

.list-pagination span {
    font-size: 12px;
    color: #666;
}

.list-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.list-search-input {
    width: 300px;
    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-grid {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

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

.list-item:last-child {
    border-bottom: none;
}

.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-page-btn {
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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