互联网搜索支持多搜索引擎选择

- 新增搜索引擎选择下拉框
- 支持 Bing 中国(默认)、Bing 国际、Google、百度
- 后端 API 支持 engine 参数
- 添加百度搜索结果解析方法
This commit is contained in:
2026-07-13 17:03:26 +08:00
parent 9d6481bd06
commit c3eef4fa21
5 changed files with 95 additions and 12 deletions
+15
View File
@@ -87,6 +87,21 @@
font-size: 16px;
}
.engine-select {
padding: 15px;
border: 2px solid #e9ecef;
border-radius: 8px;
font-size: 16px;
background: white;
cursor: pointer;
min-width: 120px;
}
.engine-select:focus {
outline: none;
border-color: #667eea;
}
.search-options {
display: flex;
gap: 20px;