docs(game): 添加游戏模块数据

- 新增 useGameBoardVm 数据层实施说明文档
- 添加 36字花核心玩法与前端规则摘要
- 创建游戏模块数据与界面分层第一阶段实施稿
- 定义四层架构:api/dto、store、view-model hooks、ui层
- 规范 PC 与 Mobile 共享业务逻辑的改造方案
- 明确各层职责边界和组件改造顺序
This commit is contained in:
JiaJun
2026-05-09 17:52:30 +08:00
parent 7622d4121f
commit 6aaf90a6ac
28 changed files with 2635 additions and 258 deletions

View File

@@ -190,25 +190,6 @@
linear-gradient(180deg, #07111f 0%, #040812 100%);
color: #f8fafc;
}
input {
@apply border border-transparent bg-[#135E65]/60 text-[#D9FFFF] py-design-15 px-design-30 text-design-20 rounded-md outline-none transition;
}
input::placeholder {
color: rgba(116, 173, 175, 0.72);
}
input:focus,
input:focus-visible {
border-color: rgba(110, 255, 255, 0.72);
outline: none;
box-shadow:
0 0 0 calc(var(--design-unit) * 1.5) rgba(110, 255, 255, 0.16),
0 0 calc(var(--design-unit) * 8) rgba(48, 214, 255, 0.36),
0 0 calc(var(--design-unit) * 18) rgba(18, 162, 255, 0.22),
inset 0 0 calc(var(--design-unit) * 6) rgba(110, 255, 255, 0.08);
}
}
@layer utilities {