feat: 新增搜索标签页面及相关功能

refactor: 优化搜索页面样式和交互逻辑

style: 调整热门标签和热门搜索组件样式

fix: 修复登录状态判断逻辑

chore: 更新图片资源和SVG图标

docs: 更新README文档

test: 添加搜索功能测试用例

build: 更新依赖包版本

ci: 配置自动化测试和部署流程

perf: 优化页面加载性能和响应速度
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-10-31 19:09:58 +08:00
parent 91dab6d446
commit 38028167c0
38 changed files with 2561 additions and 501 deletions

View File

@@ -1659,15 +1659,17 @@ body {
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(233, 238, 242, 1);
border-radius: 10px;
padding: 21px;
padding: 21px 10px 15px 21px;
margin-bottom: 12px;
.hot-tag-title {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 16px;
color: #000000;
position: relative;
margin-bottom: 15px;
.icon {
position: absolute;
@@ -1680,6 +1682,8 @@ body {
}
.list {
flex-wrap: wrap;
.item {
line-height: 36px;
color: #333333;
@@ -1688,8 +1692,12 @@ body {
line-height: 32px;
padding: 0 14px;
background-color: rgba(246, 246, 246, 1);
border: rgba(242, 242, 242, 1);
border: 1px solid rgba(242, 242, 242, 1);
border-radius: 16px;
margin-bottom: 14px;
margin-right: 9px;
cursor: pointer;
text-decoration: none;
}
}
}