fix(miniprogram): 登录页尺寸过大 + 排除关怀模式
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled

- 正常模式大幅缩减:标题 48→32px、按钮高 96→56px、按钮字 32→28px
  logo 128→96px、副标题 26→16px、顶部留白 160→100px
- 登录页不应用 elder-mode class(正常模式已足够大)
- 关怀模式覆写值同步调整:标题 38px、按钮高 64px、副标题 21px

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
iven
2026-05-09 22:45:08 +08:00
parent 7b5138a630
commit 257ca94a25
3 changed files with 58 additions and 27 deletions

View File

@@ -305,22 +305,48 @@
// 登录页
// ═══════════════════════════════════════
.login-page {
padding: 80px 48px 60px;
}
.login-brand {
margin-bottom: 56px;
}
.login-logo {
width: 112px;
height: 112px;
}
.login-logo-mark {
font-size: 56px;
}
.login-title {
font-size: 56px; // 48 × 1.17 标题微增
font-size: 38px; // 32 × 1.19 标题微增
}
.login-subtitle {
font-size: 30px; // 26 × 1.15
font-size: 21px; // 16 × 1.31
}
.login-btn {
height: 96px;
font-size: 34px; // 32 × 1.06
height: 64px;
font-size: 30px; // 28 × 1.07
}
.agreement-text {
font-size: 18px; // 14 × 1.29
}
.agreement-check {
width: 34px;
height: 34px;
}
.skip-btn {
font-size: 24px; // 20 × 1.2
height: 60px;
font-size: 20px; // 16 × 1.25
height: 48px;
}
// ═══════════════════════════════════════