feat: 同步今日小程序与后台迭代版本

集中提交今日 API、管理端、小程序与部署文档调整,确保 Gitea 主分支与本地最新开发版本一致。

Made-with: Cursor
This commit is contained in:
卡若
2026-04-20 11:07:55 +08:00
parent 7108f28280
commit ce55c48c64
180 changed files with 11659 additions and 6078 deletions

View File

@@ -297,9 +297,14 @@
letter-spacing: 0.02em;
}
.content-container--with-bottom-tools {
/* 步骤条 (~72rpx) + 按钮行 (~110rpx) + 垂直内边距 (~34rpx) = 216rpx 本体 + 40rpx 留白 = 256rpx */
padding-bottom: calc(80rpx + 320rpx + env(safe-area-inset-bottom));
/*
* 底部固定条占位:须用 .content-container.content-container--with-bottom-tools
* 否则各页 wxss 里单独的 .content-container { padding-bottom: 64rpx } 会晚加载并覆盖单类名修饰符,导致「深度解读」等末尾区块被挡住。
*/
.content-container.content-container--with-bottom-tools {
padding-bottom: calc(
120rpx + 400rpx + env(safe-area-inset-bottom)
);
}
.content-scroll--with-bottom-tools {