互联网搜索独立页面 + 一键保存全部功能

- 新增独立搜索页面 /search
- 支持一键保存所有搜索结果到内容库
- 支持自动抓取和自动保存选项
- 显示保存进度条
- 主页添加搜索入口链接
- 搜索结果状态实时显示(已抓取/已保存)
This commit is contained in:
2026-07-13 16:38:14 +08:00
parent 20f3ec1f18
commit e13e4074f1
6 changed files with 879 additions and 13 deletions
+33
View File
@@ -735,4 +735,37 @@ body {
#internet-search-status i {
font-size: 16px;
}
/* 搜索入口链接 */
.search-entrance-link {
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 15px;
padding: 40px 80px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 12px;
transition: all 0.3s;
}
.search-entrance-link:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.search-entrance-link i {
font-size: 48px;
}
.search-entrance-link span {
font-size: 18px;
font-weight: 500;
}
.search-entrance-link small {
font-size: 13px;
opacity: 0.8;
}