新增独立内容库页面

- 创建 /library 内容库独立页面
- 支持文章列表展示、搜索、分类筛选
- 支持查看详情、编辑、删除
- 支持批量选择和批量删除
- 支持导出为 JSON 文件
- 分页显示
- 主页内容库区域改为入口链接
This commit is contained in:
2026-07-13 17:35:34 +08:00
parent 898c2407e9
commit 4d1fffccd1
6 changed files with 1016 additions and 11 deletions
+33
View File
@@ -768,4 +768,37 @@ body {
.search-entrance-link small {
font-size: 13px;
opacity: 0.8;
}
/* 内容库入口链接 */
.library-entrance-link {
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 15px;
padding: 40px 80px;
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
text-decoration: none;
border-radius: 12px;
transition: all 0.3s;
}
.library-entrance-link:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}
.library-entrance-link i {
font-size: 48px;
}
.library-entrance-link span {
font-size: 18px;
font-weight: 500;
}
.library-entrance-link small {
font-size: 13px;
opacity: 0.8;
}