codexmate 0.0.32 → 0.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/README.md +147 -363
  2. package/README.zh.md +147 -371
  3. package/cli/agents-files.js +224 -224
  4. package/cli/archive-helpers.js +446 -446
  5. package/cli/auth-profiles.js +375 -375
  6. package/cli/builtin-proxy.js +1725 -1725
  7. package/cli/claude-proxy.js +1022 -1022
  8. package/cli/config-bootstrap.js +402 -402
  9. package/cli/config-health.js +454 -454
  10. package/cli/doctor-core.js +903 -903
  11. package/cli/import-skills-url.js +356 -356
  12. package/cli/local-bridge.js +551 -324
  13. package/cli/openai-bridge.js +1653 -1653
  14. package/cli/openclaw-config.js +629 -629
  15. package/cli/session-convert-args.js +69 -69
  16. package/cli/session-convert-io.js +82 -82
  17. package/cli/session-convert.js +150 -150
  18. package/cli/session-usage.concurrent.js +28 -28
  19. package/cli/session-usage.js +118 -118
  20. package/cli/session-usage.models.js +176 -176
  21. package/cli/skills.js +1141 -1141
  22. package/cli/update.js +162 -0
  23. package/cli/zip-commands.js +510 -510
  24. package/cli.js +16023 -15829
  25. package/lib/automation.js +404 -404
  26. package/lib/cli-file-utils.js +151 -151
  27. package/lib/cli-models-utils.js +440 -440
  28. package/lib/cli-network-utils.js +190 -190
  29. package/lib/cli-path-utils.js +85 -85
  30. package/lib/cli-session-utils.js +121 -121
  31. package/lib/cli-sessions.js +427 -426
  32. package/lib/cli-utils.js +155 -155
  33. package/lib/cli-webhook.js +126 -126
  34. package/lib/download-artifacts.js +92 -92
  35. package/lib/mcp-stdio.js +453 -453
  36. package/lib/task-orchestrator.js +869 -869
  37. package/lib/text-diff.js +303 -303
  38. package/lib/win-tray.js +119 -0
  39. package/lib/workflow-engine.js +340 -340
  40. package/package.json +76 -76
  41. package/plugins/README.md +20 -20
  42. package/plugins/README.zh-CN.md +20 -20
  43. package/plugins/prompt-templates/comment-polish/index.mjs +25 -25
  44. package/plugins/prompt-templates/computed.mjs +253 -253
  45. package/plugins/prompt-templates/index.mjs +8 -8
  46. package/plugins/prompt-templates/manifest.mjs +15 -15
  47. package/plugins/prompt-templates/methods.mjs +553 -553
  48. package/plugins/prompt-templates/overview.mjs +91 -91
  49. package/plugins/prompt-templates/ownership.mjs +19 -19
  50. package/plugins/prompt-templates/rule-ack/index.mjs +21 -21
  51. package/plugins/prompt-templates/storage.mjs +64 -64
  52. package/plugins/registry.mjs +16 -16
  53. package/web-ui/app.js +650 -647
  54. package/web-ui/index.html +36 -36
  55. package/web-ui/logic.agents-diff.mjs +386 -386
  56. package/web-ui/logic.claude.mjs +168 -168
  57. package/web-ui/logic.codex.mjs +69 -69
  58. package/web-ui/logic.mjs +5 -5
  59. package/web-ui/logic.runtime.mjs +128 -128
  60. package/web-ui/logic.session-convert.mjs +70 -70
  61. package/web-ui/logic.sessions.mjs +781 -781
  62. package/web-ui/modules/api.mjs +90 -90
  63. package/web-ui/modules/app.computed.dashboard.mjs +248 -248
  64. package/web-ui/modules/app.computed.index.mjs +17 -17
  65. package/web-ui/modules/app.computed.main-tabs.mjs +205 -205
  66. package/web-ui/modules/app.computed.session.mjs +735 -693
  67. package/web-ui/modules/app.constants.mjs +15 -15
  68. package/web-ui/modules/app.methods.agents.mjs +651 -651
  69. package/web-ui/modules/app.methods.claude-config.mjs +269 -200
  70. package/web-ui/modules/app.methods.codex-config.mjs +861 -861
  71. package/web-ui/modules/app.methods.index.mjs +94 -94
  72. package/web-ui/modules/app.methods.install.mjs +205 -205
  73. package/web-ui/modules/app.methods.navigation.mjs +774 -774
  74. package/web-ui/modules/app.methods.openclaw-core.mjs +814 -814
  75. package/web-ui/modules/app.methods.openclaw-editing.mjs +372 -372
  76. package/web-ui/modules/app.methods.openclaw-persist.mjs +369 -369
  77. package/web-ui/modules/app.methods.providers.mjs +575 -529
  78. package/web-ui/modules/app.methods.runtime.mjs +345 -345
  79. package/web-ui/modules/app.methods.session-actions.mjs +591 -591
  80. package/web-ui/modules/app.methods.session-browser.mjs +1012 -1012
  81. package/web-ui/modules/app.methods.session-timeline.mjs +479 -479
  82. package/web-ui/modules/app.methods.session-trash.mjs +438 -438
  83. package/web-ui/modules/app.methods.startup-claude.mjs +538 -537
  84. package/web-ui/modules/app.methods.task-orchestration.mjs +556 -556
  85. package/web-ui/modules/app.methods.webhook.mjs +79 -79
  86. package/web-ui/modules/config-mode.computed.mjs +124 -124
  87. package/web-ui/modules/config-template-confirm-pref.mjs +33 -33
  88. package/web-ui/modules/i18n.dict.mjs +3192 -3177
  89. package/web-ui/modules/i18n.mjs +62 -62
  90. package/web-ui/modules/plugins.computed.mjs +3 -3
  91. package/web-ui/modules/plugins.methods.mjs +3 -3
  92. package/web-ui/modules/plugins.storage.mjs +11 -11
  93. package/web-ui/modules/provider-url-display.mjs +17 -17
  94. package/web-ui/modules/sessions-filters-url.mjs +85 -85
  95. package/web-ui/modules/skills.computed.mjs +107 -107
  96. package/web-ui/modules/skills.methods.mjs +482 -482
  97. package/web-ui/partials/index/layout-footer.html +13 -13
  98. package/web-ui/partials/index/layout-header.html +499 -503
  99. package/web-ui/partials/index/modal-config-template-agents.html +185 -185
  100. package/web-ui/partials/index/modal-confirm-toast.html +32 -32
  101. package/web-ui/partials/index/modal-health-check.html +45 -45
  102. package/web-ui/partials/index/modal-openclaw-config.html +280 -280
  103. package/web-ui/partials/index/modal-skills.html +200 -200
  104. package/web-ui/partials/index/modals-basic.html +173 -162
  105. package/web-ui/partials/index/panel-config-claude.html +166 -136
  106. package/web-ui/partials/index/panel-config-codex.html +190 -196
  107. package/web-ui/partials/index/panel-config-codex.html.bak +337 -0
  108. package/web-ui/partials/index/panel-config-openclaw.html +83 -83
  109. package/web-ui/partials/index/panel-dashboard.html +186 -219
  110. package/web-ui/partials/index/panel-docs.html +114 -114
  111. package/web-ui/partials/index/panel-market.html +177 -177
  112. package/web-ui/partials/index/panel-orchestration.html +391 -391
  113. package/web-ui/partials/index/panel-plugins.html +253 -253
  114. package/web-ui/partials/index/panel-sessions.html +319 -313
  115. package/web-ui/partials/index/panel-settings.html +190 -190
  116. package/web-ui/partials/index/panel-trash.html +82 -82
  117. package/web-ui/partials/index/panel-usage.html +137 -137
  118. package/web-ui/res/json5.min.js +1 -1
  119. package/web-ui/res/vue.global.prod.js +13 -13
  120. package/web-ui/session-helpers.mjs +591 -591
  121. package/web-ui/source-bundle.cjs +233 -233
  122. package/web-ui/styles/base-theme.css +281 -281
  123. package/web-ui/styles/bridge-pool.css +197 -197
  124. package/web-ui/styles/controls-forms.css +433 -433
  125. package/web-ui/styles/dashboard.css +406 -406
  126. package/web-ui/styles/docs-panel.css +245 -245
  127. package/web-ui/styles/feedback.css +108 -108
  128. package/web-ui/styles/health-check-dialog.css +144 -144
  129. package/web-ui/styles/layout-shell.css +628 -638
  130. package/web-ui/styles/modals-core.css +499 -466
  131. package/web-ui/styles/navigation-panels.css +391 -391
  132. package/web-ui/styles/openclaw-structured.css +266 -266
  133. package/web-ui/styles/plugins-panel.css +564 -564
  134. package/web-ui/styles/responsive.css +392 -392
  135. package/web-ui/styles/sessions-list.css +683 -647
  136. package/web-ui/styles/sessions-preview.css +407 -407
  137. package/web-ui/styles/sessions-toolbar-trash.css +518 -518
  138. package/web-ui/styles/sessions-usage.css +588 -588
  139. package/web-ui/styles/settings-panel.css +349 -349
  140. package/web-ui/styles/skills-list.css +305 -305
  141. package/web-ui/styles/skills-market.css +429 -429
  142. package/web-ui/styles/task-orchestration.css +822 -822
  143. package/web-ui/styles/titles-cards.css +472 -472
  144. package/web-ui/styles/trash-panel.css +90 -90
  145. package/web-ui/styles/webhook.css +81 -81
  146. package/web-ui/styles.css +24 -24
  147. package/web-ui.html +17 -17
@@ -1,638 +1,628 @@
1
- /* ============================================
2
- 容器
3
- ============================================ */
4
- body::before,
5
- body::after {
6
- pointer-events: none;
7
- }
8
-
9
- /* ============================================
10
- 容器
11
- ============================================ */
12
- .container {
13
- width: 100%;
14
- max-width: none;
15
- margin: 0;
16
- padding: 0;
17
- position: relative;
18
- z-index: 1;
19
- min-height: 100vh;
20
- }
21
-
22
- :root {
23
- --side-rail-width: 248px;
24
- }
25
-
26
- /* ============================================
27
- 布局:双栏(侧栏 + 主区)
28
- ============================================ */
29
- .app-shell {
30
- display: grid;
31
- grid-template-columns: 248px minmax(0, 1fr);
32
- gap: 0;
33
- align-items: stretch;
34
- min-height: 100vh;
35
- height: 100vh;
36
- overflow: hidden;
37
- background: transparent;
38
- }
39
-
40
- .app-shell.standalone {
41
- grid-template-columns: 1fr;
42
- }
43
-
44
- .side-rail {
45
- position: sticky;
46
- top: 0;
47
- align-self: stretch;
48
- display: flex;
49
- flex-direction: column;
50
- gap: 0;
51
- padding: 14px 10px;
52
- background:
53
- linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, rgba(255, 248, 241, 0.89) 100%);
54
- border-right: 1px solid rgba(137, 111, 94, 0.10);
55
- border-radius: 0;
56
- box-shadow: 8px 0 28px rgba(92, 68, 52, 0.05), 1px 0 0 rgba(255, 255, 255, 0.5);
57
- min-height: 100vh;
58
- overflow-y: auto;
59
- scrollbar-width: none;
60
- -ms-overflow-style: none;
61
- backdrop-filter: blur(18px) saturate(130%);
62
- }
63
-
64
- .side-rail::-webkit-scrollbar {
65
- display: none;
66
- }
67
-
68
- .side-rail .brand-title {
69
- font-size: 22px;
70
- margin-bottom: 0;
71
- }
72
-
73
- .side-section {
74
- display: flex;
75
- flex-direction: column;
76
- gap: 3px;
77
- padding: 8px 4px;
78
- }
79
-
80
- .side-section + .side-section {
81
- border-top: 1px solid rgba(137, 111, 94, 0.08);
82
- }
83
-
84
- .side-rail-nav {
85
- display: flex;
86
- flex-direction: column;
87
- gap: 0;
88
- flex: 1 1 auto;
89
- }
90
-
91
- .lang-fab {
92
- display: none;
93
- }
94
-
95
- .lang-fab .lang-switch {
96
- width: auto;
97
- }
98
-
99
- .lang-choice {
100
- display: inline-flex;
101
- align-items: center;
102
- gap: 4px;
103
- padding: 4px;
104
- border-radius: 999px;
105
- border: 1px solid rgba(163, 146, 134, 0.32);
106
- background: rgba(255, 253, 252, 0.92);
107
- box-shadow: 0 14px 34px rgba(27, 23, 20, 0.22);
108
- backdrop-filter: blur(10px);
109
- }
110
-
111
- .lang-choice-btn {
112
- min-width: 44px;
113
- height: 30px;
114
- border-radius: 999px;
115
- border: 1px solid transparent;
116
- background: transparent;
117
- color: var(--color-text-secondary);
118
- font-family: var(--font-family-mono);
119
- font-size: 12px;
120
- font-weight: 700;
121
- letter-spacing: 0.08em;
122
- text-transform: uppercase;
123
- transition: background-color var(--transition-fast) var(--ease-smooth), border-color var(--transition-fast) var(--ease-smooth), color var(--transition-fast) var(--ease-smooth), transform var(--transition-fast) var(--ease-smooth);
124
- }
125
-
126
- .lang-choice-btn:hover {
127
- border-color: rgba(163, 146, 134, 0.32);
128
- background: rgba(255, 255, 255, 0.72);
129
- color: var(--color-text-primary);
130
- }
131
-
132
- .lang-choice-btn.active {
133
- border-color: rgba(200, 121, 99, 0.55);
134
- background: rgba(200, 121, 99, 0.14);
135
- color: var(--color-brand-dark);
136
- }
137
-
138
- .lang-choice-btn:active {
139
- transform: translateY(1px);
140
- }
141
-
142
- .lang-fab .lang-switch-track {
143
- box-shadow: 0 14px 34px rgba(27, 23, 20, 0.22);
144
- background: rgba(255, 253, 252, 0.92);
145
- }
146
-
147
- .lang-fab .lang-switch:hover .lang-switch-track {
148
- transform: translateY(-1px);
149
- }
150
-
151
- .lang-fab .lang-switch:active .lang-switch-track {
152
- transform: translateY(0);
153
- }
154
-
155
- .lang-fab .lang-switch-track::after {
156
- opacity: 1;
157
- }
158
-
159
- .lang-fab .lang-switch-text {
160
- color: var(--color-text-primary);
161
- }
162
-
163
- .lang-fab {
164
- position: fixed;
165
- left: 0;
166
- bottom: calc(12px + env(safe-area-inset-bottom, 0px));
167
- width: var(--side-rail-width, 248px);
168
- transform: none;
169
- z-index: 60;
170
- pointer-events: none;
171
- justify-content: center;
172
- }
173
-
174
- .lang-fab .lang-choice {
175
- pointer-events: auto;
176
- position: relative;
177
- z-index: 1;
178
- }
179
-
180
- .lang-fab .lang-switch {
181
- pointer-events: auto;
182
- }
183
-
184
- .lang-fab::before {
185
- content: "";
186
- position: absolute;
187
- inset: -12px -18px;
188
- background: radial-gradient(circle at 50% 70%, rgba(250, 250, 250, 0.92), rgba(250, 250, 250, 0));
189
- filter: blur(2px);
190
- pointer-events: none;
191
- }
192
-
193
- .lang-fab > .lang-switch {
194
- position: relative;
195
- z-index: 1;
196
- }
197
-
198
- .lang-fab .lang-switch-track {
199
- border-color: rgba(163, 146, 134, 0.32);
200
- backdrop-filter: blur(10px);
201
- }
202
-
203
- .lang-fab .lang-switch:hover .lang-switch-track {
204
- border-color: rgba(200, 121, 99, 0.7);
205
- }
206
-
207
- .side-rail-lang {
208
- position: sticky;
209
- bottom: 0;
210
- z-index: 2;
211
- margin-top: auto;
212
- padding: 10px 4px 6px;
213
- background: linear-gradient(180deg, rgba(255, 248, 241, 0), rgba(255, 248, 241, 0.94) 28%);
214
- border-top: 1px solid rgba(137, 111, 94, 0.08);
215
- backdrop-filter: blur(12px);
216
- display: flex;
217
- flex-direction: column;
218
- align-items: center;
219
- gap: 4px;
220
- }
221
-
222
- .side-rail-lang .lang-choice {
223
- background: rgba(255, 253, 252, 0.9);
224
- box-shadow: none;
225
- backdrop-filter: none;
226
- }
227
-
228
- .side-rail-version {
229
- padding: 4px 8px 8px;
230
- text-align: center;
231
- }
232
-
233
- .side-rail-version-text {
234
- font-size: 11px;
235
- color: rgba(137, 111, 94, 0.45);
236
- letter-spacing: 0.02em;
237
- }
238
-
239
- .lang-switch {
240
- width: 100%;
241
- border: none;
242
- background: transparent;
243
- padding: 0;
244
- cursor: pointer;
245
- display: flex;
246
- justify-content: center;
247
- align-items: center;
248
- }
249
-
250
- .lang-switch-track {
251
- width: 52px;
252
- height: 34px;
253
- border-radius: 999px;
254
- border: 1px solid rgba(163, 146, 134, 0.38);
255
- background: rgba(255, 253, 252, 0.78);
256
- box-shadow: 0 1px 2px rgba(36, 31, 28, 0.06);
257
- display: grid;
258
- place-items: center;
259
- position: relative;
260
- overflow: hidden;
261
- transition: border-color var(--transition-fast) var(--ease-smooth), background-color var(--transition-fast) var(--ease-smooth), transform var(--transition-fast) var(--ease-smooth);
262
- }
263
-
264
- .lang-switch:hover .lang-switch-track {
265
- border-color: rgba(200, 121, 99, 0.6);
266
- background: rgba(255, 253, 252, 0.92);
267
- transform: translateY(-1px);
268
- }
269
-
270
- .lang-switch:active .lang-switch-track {
271
- transform: translateY(0);
272
- }
273
-
274
- .lang-switch-text {
275
- position: absolute;
276
- inset: 0;
277
- display: grid;
278
- place-items: center;
279
- font-family: var(--font-family-mono);
280
- font-size: 12px;
281
- font-weight: 700;
282
- letter-spacing: 0.08em;
283
- text-transform: uppercase;
284
- color: var(--color-text-secondary);
285
- transition: transform 220ms var(--ease-spring), opacity 220ms var(--ease-spring);
286
- will-change: transform, opacity;
287
- opacity: 0;
288
- transform: translateY(10px);
289
- }
290
-
291
- .lang-switch-track[data-lang="zh"] .lang-switch-zh {
292
- opacity: 1;
293
- transform: translateY(0);
294
- }
295
-
296
- .lang-switch-track[data-lang="zh"] .lang-switch-en {
297
- opacity: 0;
298
- }
299
-
300
- .lang-switch-track[data-lang="en"] .lang-switch-en {
301
- opacity: 1;
302
- transform: translateY(0);
303
- }
304
-
305
- .lang-switch-track[data-lang="en"] .lang-switch-zh {
306
- opacity: 0;
307
- }
308
-
309
- .lang-switch-track::after {
310
- content: "";
311
- position: absolute;
312
- inset: -20px;
313
- background: radial-gradient(circle at 30% 20%, rgba(200, 121, 99, 0.18), rgba(200, 121, 99, 0) 55%);
314
- opacity: 0;
315
- transform: translateY(10px);
316
- transition: opacity 240ms var(--ease-smooth), transform 240ms var(--ease-smooth);
317
- pointer-events: none;
318
- }
319
-
320
- .lang-switch:hover .lang-switch-track::after {
321
- opacity: 1;
322
- transform: translateY(0);
323
- }
324
-
325
- .side-section-title {
326
- font-size: 10px;
327
- font-weight: 700;
328
- color: var(--color-text-muted);
329
- letter-spacing: 0.08em;
330
- text-transform: uppercase;
331
- padding: 0 8px;
332
- margin-bottom: 6px;
333
- opacity: 0.72;
334
- }
335
-
336
- .side-item {
337
- width: 100%;
338
- text-align: left;
339
- padding: 9px 12px 9px 14px;
340
- border-radius: 12px;
341
- border: 1px solid transparent;
342
- background: transparent;
343
- color: var(--color-text-secondary);
344
- cursor: pointer;
345
- transition: border-color 180ms var(--ease-out-expo), background-color 180ms var(--ease-out-expo), color 180ms var(--ease-out-expo), box-shadow 180ms var(--ease-out-expo), transform 180ms var(--ease-out-expo);
346
- display: flex;
347
- flex-direction: column;
348
- gap: 3px;
349
- box-shadow: none;
350
- position: relative;
351
- }
352
-
353
- .side-item::before {
354
- content: "";
355
- position: absolute;
356
- left: 2px;
357
- top: 50%;
358
- transform: translateY(-50%);
359
- width: 3px;
360
- height: 18px;
361
- border-radius: 0 3px 3px 0;
362
- background: transparent;
363
- }
364
-
365
- .side-item:hover {
366
- background: rgba(255, 255, 255, 0.64);
367
- color: var(--color-text-primary);
368
- transform: translateX(2px);
369
- }
370
-
371
- .side-item.active,
372
- .side-item.nav-intent-active {
373
- border-color: rgba(200, 121, 99, 0.22);
374
- background:
375
- linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(200, 121, 99, 0.10));
376
- color: var(--color-brand-dark);
377
- box-shadow: 0 8px 20px rgba(92, 68, 52, 0.06);
378
- }
379
-
380
- .side-item.nav-intent-inactive,
381
- .side-item.active.nav-intent-inactive {
382
- border-color: transparent;
383
- background: transparent;
384
- color: var(--color-text-secondary);
385
- box-shadow: none;
386
- }
387
-
388
- .side-item.active::before,
389
- .side-item.nav-intent-active::before {
390
- background: var(--color-brand);
391
- }
392
-
393
- .side-item.nav-intent-inactive::before,
394
- .side-item.active.nav-intent-inactive::before {
395
- background: transparent;
396
- }
397
-
398
- .side-item-title {
399
- font-size: 13px;
400
- font-weight: 600;
401
- letter-spacing: -0.01em;
402
- line-height: 1.25;
403
- }
404
-
405
- .side-item-meta {
406
- font-size: 11px;
407
- color: var(--color-text-muted);
408
- display: flex;
409
- opacity: 1;
410
- gap: 5px;
411
- flex-wrap: wrap;
412
- line-height: 1.4;
413
- min-height: 1.4em;
414
- }
415
-
416
- .side-item.active .side-item-meta,
417
- .side-item.nav-intent-active .side-item-meta {
418
- color: var(--color-text-secondary);
419
- }
420
-
421
- .side-item-meta > span {
422
- min-width: 0;
423
- overflow-wrap: anywhere;
424
- word-break: break-word;
425
- }
426
-
427
- @media (min-width: 721px) {
428
- body:not(.force-compact) #app > .top-tabs {
429
- display: none;
430
- }
431
- }
432
-
433
- .brand-block {
434
- display: flex;
435
- flex-direction: column;
436
- align-items: flex-start;
437
- gap: 10px;
438
- margin-bottom: 0;
439
- padding: 14px 10px 16px;
440
- border-bottom: 1px solid rgba(137, 111, 94, 0.10);
441
- }
442
-
443
- .brand-head {
444
- display: flex;
445
- align-items: center;
446
- gap: 12px;
447
- }
448
-
449
- .brand-logo {
450
- width: 38px;
451
- height: 38px;
452
- border-radius: 13px;
453
- object-fit: cover;
454
- flex-shrink: 0;
455
- box-shadow:
456
- 0 8px 20px rgba(92, 68, 52, 0.10),
457
- 0 0 0 1px rgba(200, 121, 99, 0.08);
458
- }
459
-
460
- .brand-copy {
461
- display: flex;
462
- flex-direction: column;
463
- gap: 4px;
464
- min-width: 0;
465
- }
466
-
467
- .brand-kicker {
468
- font-size: 11px;
469
- line-height: 1;
470
- letter-spacing: 0.06em;
471
- text-transform: uppercase;
472
- color: var(--color-text-muted);
473
- font-weight: 700;
474
- }
475
-
476
- .brand-subtitle {
477
- font-size: 12px;
478
- line-height: 1.45;
479
- color: var(--color-text-secondary);
480
- max-width: 22ch;
481
- }
482
-
483
- .brand-title {
484
- font-size: 18px;
485
- line-height: 1.15;
486
- font-family: var(--font-family-display);
487
- color: var(--color-text-primary);
488
- letter-spacing: -0.02em;
489
- font-weight: 700;
490
- }
491
-
492
- .github-badge {
493
- display: inline-flex;
494
- align-items: center;
495
- justify-content: space-between;
496
- gap: 10px;
497
- margin-top: 0;
498
- padding: 8px 10px;
499
- border-radius: 8px;
500
- border: 1px solid var(--color-border);
501
- background: var(--color-surface);
502
- color: var(--color-text-secondary);
503
- font-size: var(--font-size-caption);
504
- text-decoration: none;
505
- box-shadow: none;
506
- transition: border-color var(--transition-fast) var(--ease-smooth), background-color var(--transition-fast) var(--ease-smooth), color var(--transition-fast) var(--ease-smooth), box-shadow var(--transition-fast) var(--ease-smooth);
507
- min-width: 0;
508
- backdrop-filter: none;
509
- }
510
-
511
- .github-badge-rail {
512
- width: calc(100% - 24px);
513
- margin: 0 12px 12px;
514
- align-items: center;
515
- justify-content: flex-start;
516
- gap: 8px;
517
- padding: 8px 10px;
518
- border-radius: 13px;
519
- background: rgba(255, 255, 255, 0.62);
520
- border: 1px solid rgba(137, 111, 94, 0.15);
521
- box-shadow: var(--shadow-subtle);
522
- }
523
-
524
- .github-badge:hover {
525
- border-color: var(--color-border-strong);
526
- background: var(--color-surface-alt);
527
- color: var(--color-text-primary);
528
- box-shadow: none;
529
- }
530
-
531
- .github-badge:focus-visible {
532
- outline: 3px solid rgba(200, 121, 99, 0.18);
533
- outline-offset: 2px;
534
- border-color: var(--color-brand);
535
- color: var(--color-text-primary);
536
- background: var(--color-surface);
537
- }
538
-
539
- .github-badge-icon {
540
- width: 16px;
541
- height: 16px;
542
- flex-shrink: 0;
543
- }
544
-
545
- .github-badge-left {
546
- display: inline-flex;
547
- align-items: center;
548
- gap: 6px;
549
- flex-shrink: 0;
550
- }
551
-
552
- .github-badge-label {
553
- font-size: var(--font-size-caption);
554
- font-weight: var(--font-weight-secondary);
555
- color: var(--color-text-secondary);
556
- }
557
-
558
- .github-badge-text {
559
- min-width: 0;
560
- font-family: var(--font-family-mono);
561
- font-size: var(--font-size-caption);
562
- color: var(--color-text-tertiary);
563
- line-height: 1.3;
564
- display: inline-block;
565
- overflow: hidden;
566
- text-overflow: ellipsis;
567
- white-space: nowrap;
568
- }
569
-
570
- .github-badge-text > span {
571
- white-space: nowrap;
572
- }
573
-
574
- .github-owner {
575
- font-weight: 600;
576
- color: var(--color-text-secondary);
577
- }
578
-
579
- .github-sep {
580
- margin: 0 2px;
581
- color: var(--color-text-tertiary);
582
- }
583
-
584
- .github-repo {
585
- font-weight: 600;
586
- color: var(--color-text-primary);
587
- }
588
-
589
- .github-badge-rail .github-badge-text {
590
- display: flex;
591
- flex-direction: column;
592
- align-items: flex-start;
593
- gap: 2px;
594
- white-space: normal;
595
- overflow: visible;
596
- text-overflow: clip;
597
- color: var(--color-text-secondary);
598
- }
599
-
600
- .github-badge-rail .github-sep {
601
- display: none;
602
- }
603
-
604
- .github-badge-rail .github-owner,
605
- .github-badge-rail .github-repo {
606
- font-weight: 600;
607
- }
608
-
609
- .github-badge-rail .github-badge-left {
610
- padding: 4px;
611
- border-radius: 999px;
612
- background: var(--color-brand-light);
613
- }
614
-
615
- .github-badge-rail .github-badge-label {
616
- display: none;
617
- }
618
-
619
- .github-badge-rail:hover {
620
- border-color: var(--color-border-strong);
621
- }
622
-
623
- /* 侧边栏计数徽标 */
624
- .side-item-badge {
625
- display: inline-flex;
626
- align-items: center;
627
- justify-content: center;
628
- min-width: 20px;
629
- height: 20px;
630
- padding: 0 6px;
631
- border-radius: 10px;
632
- background: var(--color-brand);
633
- color: #fff;
634
- font-size: 11px;
635
- font-weight: 700;
636
- line-height: 1;
637
- box-shadow: 0 2px 6px rgba(200, 121, 99, 0.28);
638
- }
1
+ /* ============================================
2
+ 容器
3
+ ============================================ */
4
+ body::before,
5
+ body::after {
6
+ pointer-events: none;
7
+ }
8
+
9
+ /* ============================================
10
+ 容器
11
+ ============================================ */
12
+ .container {
13
+ width: 100%;
14
+ max-width: none;
15
+ margin: 0;
16
+ padding: 0;
17
+ position: relative;
18
+ z-index: 1;
19
+ min-height: 100vh;
20
+ }
21
+
22
+ :root {
23
+ --side-rail-width: 248px;
24
+ }
25
+
26
+ /* ============================================
27
+ 布局:双栏(侧栏 + 主区)
28
+ ============================================ */
29
+ .app-shell {
30
+ display: grid;
31
+ grid-template-columns: 248px minmax(0, 1fr);
32
+ gap: 0;
33
+ align-items: stretch;
34
+ min-height: 100vh;
35
+ height: 100vh;
36
+ overflow: hidden;
37
+ background: transparent;
38
+ }
39
+
40
+ .app-shell.standalone {
41
+ grid-template-columns: 1fr;
42
+ }
43
+
44
+ .side-rail {
45
+ position: sticky;
46
+ top: 0;
47
+ align-self: stretch;
48
+ display: flex;
49
+ flex-direction: column;
50
+ gap: 0;
51
+ padding: 14px 10px;
52
+ background:
53
+ linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, rgba(255, 248, 241, 0.89) 100%);
54
+ border-right: 1px solid rgba(137, 111, 94, 0.10);
55
+ border-radius: 0;
56
+ box-shadow: 8px 0 28px rgba(92, 68, 52, 0.05), 1px 0 0 rgba(255, 255, 255, 0.5);
57
+ min-height: 100vh;
58
+ scrollbar-width: none;
59
+ -ms-overflow-style: none;
60
+ backdrop-filter: blur(18px) saturate(130%);
61
+ }
62
+
63
+ .side-rail::-webkit-scrollbar {
64
+ display: none;
65
+ }
66
+
67
+ .side-section {
68
+ display: flex;
69
+ flex-direction: column;
70
+ gap: 3px;
71
+ padding: 8px 4px;
72
+ }
73
+
74
+ .side-section + .side-section {
75
+ border-top: 1px solid rgba(137, 111, 94, 0.08);
76
+ }
77
+
78
+ .side-rail-nav {
79
+ display: flex;
80
+ flex-direction: column;
81
+ flex: 1 1 auto;
82
+ gap: 0;
83
+ overflow-y: auto;
84
+ scrollbar-width: none;
85
+ -ms-overflow-style: none;
86
+ }
87
+
88
+ .side-rail-nav::-webkit-scrollbar {
89
+ display: none;
90
+ }
91
+
92
+ .lang-fab {
93
+ display: none;
94
+ }
95
+
96
+ .lang-fab .lang-switch {
97
+ width: auto;
98
+ }
99
+
100
+ .lang-choice {
101
+ display: inline-flex;
102
+ align-items: center;
103
+ gap: 4px;
104
+ padding: 4px;
105
+ border-radius: 999px;
106
+ border: 1px solid rgba(163, 146, 134, 0.32);
107
+ background: rgba(255, 253, 252, 0.92);
108
+ box-shadow: 0 14px 34px rgba(27, 23, 20, 0.22);
109
+ backdrop-filter: blur(10px);
110
+ }
111
+
112
+ .lang-choice-btn {
113
+ min-width: 44px;
114
+ height: 30px;
115
+ border-radius: 999px;
116
+ border: 1px solid transparent;
117
+ background: transparent;
118
+ color: var(--color-text-secondary);
119
+ font-family: var(--font-family-mono);
120
+ font-size: 12px;
121
+ font-weight: 700;
122
+ letter-spacing: 0.08em;
123
+ text-transform: uppercase;
124
+ transition: background-color var(--transition-fast) var(--ease-smooth), border-color var(--transition-fast) var(--ease-smooth), color var(--transition-fast) var(--ease-smooth), transform var(--transition-fast) var(--ease-smooth);
125
+ }
126
+
127
+ .lang-choice-btn:hover {
128
+ border-color: rgba(163, 146, 134, 0.32);
129
+ background: rgba(255, 255, 255, 0.72);
130
+ color: var(--color-text-primary);
131
+ }
132
+
133
+ .lang-choice-btn.active {
134
+ border-color: rgba(200, 121, 99, 0.55);
135
+ background: rgba(200, 121, 99, 0.14);
136
+ color: var(--color-brand-dark);
137
+ }
138
+
139
+ .lang-choice-btn:active {
140
+ transform: translateY(1px);
141
+ }
142
+
143
+ .lang-fab .lang-switch-track {
144
+ box-shadow: 0 14px 34px rgba(27, 23, 20, 0.22);
145
+ background: rgba(255, 253, 252, 0.92);
146
+ }
147
+
148
+ .lang-fab .lang-switch:hover .lang-switch-track {
149
+ transform: translateY(-1px);
150
+ }
151
+
152
+ .lang-fab .lang-switch:active .lang-switch-track {
153
+ transform: translateY(0);
154
+ }
155
+
156
+ .lang-fab .lang-switch-track::after {
157
+ opacity: 1;
158
+ }
159
+
160
+ .lang-fab .lang-switch-text {
161
+ color: var(--color-text-primary);
162
+ }
163
+
164
+ .lang-fab {
165
+ position: fixed;
166
+ left: 0;
167
+ bottom: calc(12px + env(safe-area-inset-bottom, 0px));
168
+ width: var(--side-rail-width, 248px);
169
+ transform: none;
170
+ z-index: 60;
171
+ pointer-events: none;
172
+ justify-content: center;
173
+ }
174
+
175
+ .lang-fab .lang-choice {
176
+ pointer-events: auto;
177
+ position: relative;
178
+ z-index: 1;
179
+ }
180
+
181
+ .lang-fab .lang-switch {
182
+ pointer-events: auto;
183
+ }
184
+
185
+ .lang-fab::before {
186
+ content: "";
187
+ position: absolute;
188
+ inset: -12px -18px;
189
+ background: radial-gradient(circle at 50% 70%, rgba(250, 250, 250, 0.92), rgba(250, 250, 250, 0));
190
+ filter: blur(2px);
191
+ pointer-events: none;
192
+ }
193
+
194
+ .lang-fab > .lang-switch {
195
+ position: relative;
196
+ z-index: 1;
197
+ }
198
+
199
+ .lang-fab .lang-switch-track {
200
+ border-color: rgba(163, 146, 134, 0.32);
201
+ backdrop-filter: blur(10px);
202
+ }
203
+
204
+ .lang-fab .lang-switch:hover .lang-switch-track {
205
+ border-color: rgba(200, 121, 99, 0.7);
206
+ }
207
+
208
+ .side-rail-lang {
209
+ position: absolute;
210
+ bottom: 0;
211
+ left: 0;
212
+ right: 0;
213
+ z-index: 2;
214
+ padding: 10px 4px 6px;
215
+ background: linear-gradient(180deg, rgba(255, 248, 241, 0), rgba(255, 248, 241, 0.94) 28%);
216
+ border-top: 1px solid rgba(137, 111, 94, 0.08);
217
+ backdrop-filter: blur(12px);
218
+ display: flex;
219
+ flex-direction: column;
220
+ align-items: center;
221
+ gap: 4px;
222
+ }
223
+
224
+ .side-rail-lang .lang-choice {
225
+ background: rgba(255, 253, 252, 0.9);
226
+ box-shadow: none;
227
+ backdrop-filter: none;
228
+ }
229
+
230
+ .lang-switch {
231
+ width: 100%;
232
+ border: none;
233
+ background: transparent;
234
+ padding: 0;
235
+ cursor: pointer;
236
+ display: flex;
237
+ justify-content: center;
238
+ align-items: center;
239
+ }
240
+
241
+ .lang-switch-track {
242
+ width: 52px;
243
+ height: 34px;
244
+ border-radius: 999px;
245
+ border: 1px solid rgba(163, 146, 134, 0.38);
246
+ background: rgba(255, 253, 252, 0.78);
247
+ box-shadow: 0 1px 2px rgba(36, 31, 28, 0.06);
248
+ display: grid;
249
+ place-items: center;
250
+ position: relative;
251
+ overflow: hidden;
252
+ transition: border-color var(--transition-fast) var(--ease-smooth), background-color var(--transition-fast) var(--ease-smooth), transform var(--transition-fast) var(--ease-smooth);
253
+ }
254
+
255
+ .lang-switch:hover .lang-switch-track {
256
+ border-color: rgba(200, 121, 99, 0.6);
257
+ background: rgba(255, 253, 252, 0.92);
258
+ transform: translateY(-1px);
259
+ }
260
+
261
+ .lang-switch:active .lang-switch-track {
262
+ transform: translateY(0);
263
+ }
264
+
265
+ .lang-switch-text {
266
+ position: absolute;
267
+ inset: 0;
268
+ display: grid;
269
+ place-items: center;
270
+ font-family: var(--font-family-mono);
271
+ font-size: 12px;
272
+ font-weight: 700;
273
+ letter-spacing: 0.08em;
274
+ text-transform: uppercase;
275
+ color: var(--color-text-secondary);
276
+ transition: transform 220ms var(--ease-spring), opacity 220ms var(--ease-spring);
277
+ will-change: transform, opacity;
278
+ opacity: 0;
279
+ transform: translateY(10px);
280
+ }
281
+
282
+ .lang-switch-track[data-lang="zh"] .lang-switch-zh {
283
+ opacity: 1;
284
+ transform: translateY(0);
285
+ }
286
+
287
+ .lang-switch-track[data-lang="zh"] .lang-switch-en {
288
+ opacity: 0;
289
+ }
290
+
291
+ .lang-switch-track[data-lang="en"] .lang-switch-en {
292
+ opacity: 1;
293
+ transform: translateY(0);
294
+ }
295
+
296
+ .lang-switch-track[data-lang="en"] .lang-switch-zh {
297
+ opacity: 0;
298
+ }
299
+
300
+ .lang-switch-track::after {
301
+ content: "";
302
+ position: absolute;
303
+ inset: -20px;
304
+ background: radial-gradient(circle at 30% 20%, rgba(200, 121, 99, 0.18), rgba(200, 121, 99, 0) 55%);
305
+ opacity: 0;
306
+ transform: translateY(10px);
307
+ transition: opacity 240ms var(--ease-smooth), transform 240ms var(--ease-smooth);
308
+ pointer-events: none;
309
+ }
310
+
311
+ .lang-switch:hover .lang-switch-track::after {
312
+ opacity: 1;
313
+ transform: translateY(0);
314
+ }
315
+
316
+ .side-section-title {
317
+ font-size: 10px;
318
+ font-weight: 700;
319
+ color: var(--color-text-muted);
320
+ letter-spacing: 0.08em;
321
+ text-transform: uppercase;
322
+ padding: 0 8px;
323
+ margin-bottom: 6px;
324
+ opacity: 0.72;
325
+ }
326
+
327
+ .side-item {
328
+ width: 100%;
329
+ text-align: left;
330
+ padding: 9px 12px 9px 14px;
331
+ border-radius: 12px;
332
+ border: 1px solid transparent;
333
+ background: transparent;
334
+ color: var(--color-text-secondary);
335
+ cursor: pointer;
336
+ transition: border-color 180ms var(--ease-out-expo), background-color 180ms var(--ease-out-expo), color 180ms var(--ease-out-expo), box-shadow 180ms var(--ease-out-expo), transform 180ms var(--ease-out-expo);
337
+ display: flex;
338
+ flex-direction: column;
339
+ gap: 3px;
340
+ box-shadow: none;
341
+ position: relative;
342
+ }
343
+
344
+ .side-item::before {
345
+ content: "";
346
+ position: absolute;
347
+ left: 2px;
348
+ top: 50%;
349
+ transform: translateY(-50%);
350
+ width: 3px;
351
+ height: 18px;
352
+ border-radius: 0 3px 3px 0;
353
+ background: transparent;
354
+ }
355
+
356
+ .side-item:hover {
357
+ background: rgba(255, 255, 255, 0.64);
358
+ color: var(--color-text-primary);
359
+ transform: translateX(2px);
360
+ }
361
+
362
+ .side-item.active,
363
+ .side-item.nav-intent-active {
364
+ border-color: rgba(200, 121, 99, 0.22);
365
+ background:
366
+ linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(200, 121, 99, 0.10));
367
+ color: var(--color-brand-dark);
368
+ box-shadow: 0 8px 20px rgba(92, 68, 52, 0.06);
369
+ }
370
+
371
+ .side-item.nav-intent-inactive,
372
+ .side-item.active.nav-intent-inactive {
373
+ border-color: transparent;
374
+ background: transparent;
375
+ color: var(--color-text-secondary);
376
+ box-shadow: none;
377
+ }
378
+
379
+ .side-item.active::before,
380
+ .side-item.nav-intent-active::before {
381
+ background: var(--color-brand);
382
+ }
383
+
384
+ .side-item.nav-intent-inactive::before,
385
+ .side-item.active.nav-intent-inactive::before {
386
+ background: transparent;
387
+ }
388
+
389
+ .side-item-title {
390
+ font-size: 13px;
391
+ font-weight: 600;
392
+ letter-spacing: -0.01em;
393
+ line-height: 1.25;
394
+ }
395
+
396
+ .side-item-meta {
397
+ font-size: 11px;
398
+ color: var(--color-text-muted);
399
+ display: flex;
400
+ opacity: 1;
401
+ gap: 5px;
402
+ flex-wrap: wrap;
403
+ line-height: 1.4;
404
+ min-height: 1.4em;
405
+ }
406
+
407
+ .side-item.active .side-item-meta,
408
+ .side-item.nav-intent-active .side-item-meta {
409
+ color: var(--color-text-secondary);
410
+ }
411
+
412
+ .side-item-meta > span {
413
+ min-width: 0;
414
+ overflow-wrap: anywhere;
415
+ word-break: break-word;
416
+ }
417
+
418
+ @media (min-width: 721px) {
419
+ body:not(.force-compact) #app > .top-tabs {
420
+ display: none;
421
+ }
422
+ }
423
+
424
+ .brand-block {
425
+ display: flex;
426
+ flex-direction: column;
427
+ align-items: flex-start;
428
+ gap: 10px;
429
+ margin-bottom: 0;
430
+ padding: 14px 10px 16px;
431
+ border-bottom: 1px solid rgba(137, 111, 94, 0.10);
432
+ }
433
+
434
+ .brand-head {
435
+ display: flex;
436
+ align-items: center;
437
+ gap: 12px;
438
+ }
439
+
440
+ .brand-logo {
441
+ width: 38px;
442
+ height: 38px;
443
+ border-radius: 13px;
444
+ object-fit: cover;
445
+ flex-shrink: 0;
446
+ box-shadow:
447
+ 0 8px 20px rgba(92, 68, 52, 0.10),
448
+ 0 0 0 1px rgba(200, 121, 99, 0.08);
449
+ }
450
+
451
+ .brand-copy {
452
+ display: flex;
453
+ flex-direction: column;
454
+ gap: 4px;
455
+ min-width: 0;
456
+ }
457
+
458
+ .brand-kicker {
459
+ font-size: 18px;
460
+ line-height: 1.15;
461
+ font-family: var(--font-family-display);
462
+ color: var(--color-text-primary);
463
+ letter-spacing: -0.02em;
464
+ font-weight: 700;
465
+ }
466
+
467
+ .brand-version {
468
+ font-size: 11px;
469
+ font-weight: 500;
470
+ color: var(--color-text-muted);
471
+ vertical-align: middle;
472
+ margin-left: 4px;
473
+ }
474
+
475
+ .brand-subtitle {
476
+ font-size: 12px;
477
+ line-height: 1.45;
478
+ color: var(--color-text-secondary);
479
+ max-width: 22ch;
480
+ }
481
+
482
+ .github-badge {
483
+ display: inline-flex;
484
+ align-items: center;
485
+ justify-content: space-between;
486
+ gap: 10px;
487
+ margin-top: 0;
488
+ padding: 8px 10px;
489
+ border-radius: 8px;
490
+ border: 1px solid var(--color-border);
491
+ background: var(--color-surface);
492
+ color: var(--color-text-secondary);
493
+ font-size: var(--font-size-caption);
494
+ text-decoration: none;
495
+ box-shadow: none;
496
+ transition: border-color var(--transition-fast) var(--ease-smooth), background-color var(--transition-fast) var(--ease-smooth), color var(--transition-fast) var(--ease-smooth), box-shadow var(--transition-fast) var(--ease-smooth);
497
+ min-width: 0;
498
+ backdrop-filter: none;
499
+ }
500
+
501
+ .github-badge-rail {
502
+ width: calc(100% - 24px);
503
+ margin: 0 12px 12px;
504
+ align-items: center;
505
+ justify-content: flex-start;
506
+ gap: 8px;
507
+ padding: 8px 10px;
508
+ border-radius: 13px;
509
+ background: rgba(255, 255, 255, 0.62);
510
+ border: 1px solid rgba(137, 111, 94, 0.15);
511
+ box-shadow: var(--shadow-subtle);
512
+ }
513
+
514
+ .github-badge:hover {
515
+ border-color: var(--color-border-strong);
516
+ background: var(--color-surface-alt);
517
+ color: var(--color-text-primary);
518
+ box-shadow: none;
519
+ }
520
+
521
+ .github-badge:focus-visible {
522
+ outline: 3px solid rgba(200, 121, 99, 0.18);
523
+ outline-offset: 2px;
524
+ border-color: var(--color-brand);
525
+ color: var(--color-text-primary);
526
+ background: var(--color-surface);
527
+ }
528
+
529
+ .github-badge-icon {
530
+ width: 16px;
531
+ height: 16px;
532
+ flex-shrink: 0;
533
+ }
534
+
535
+ .github-badge-left {
536
+ display: inline-flex;
537
+ align-items: center;
538
+ gap: 6px;
539
+ flex-shrink: 0;
540
+ }
541
+
542
+ .github-badge-label {
543
+ font-size: var(--font-size-caption);
544
+ font-weight: var(--font-weight-secondary);
545
+ color: var(--color-text-secondary);
546
+ }
547
+
548
+ .github-badge-text {
549
+ min-width: 0;
550
+ font-family: var(--font-family-mono);
551
+ font-size: var(--font-size-caption);
552
+ color: var(--color-text-tertiary);
553
+ line-height: 1.3;
554
+ display: inline-block;
555
+ overflow: hidden;
556
+ text-overflow: ellipsis;
557
+ white-space: nowrap;
558
+ }
559
+
560
+ .github-badge-text > span {
561
+ white-space: nowrap;
562
+ }
563
+
564
+ .github-owner {
565
+ font-weight: 600;
566
+ color: var(--color-text-secondary);
567
+ }
568
+
569
+ .github-sep {
570
+ margin: 0 2px;
571
+ color: var(--color-text-tertiary);
572
+ }
573
+
574
+ .github-repo {
575
+ font-weight: 600;
576
+ color: var(--color-text-primary);
577
+ }
578
+
579
+ .github-badge-rail .github-badge-text {
580
+ display: flex;
581
+ flex-direction: column;
582
+ align-items: flex-start;
583
+ gap: 2px;
584
+ white-space: normal;
585
+ overflow: visible;
586
+ text-overflow: clip;
587
+ color: var(--color-text-secondary);
588
+ }
589
+
590
+ .github-badge-rail .github-sep {
591
+ display: none;
592
+ }
593
+
594
+ .github-badge-rail .github-owner,
595
+ .github-badge-rail .github-repo {
596
+ font-weight: 600;
597
+ }
598
+
599
+ .github-badge-rail .github-badge-left {
600
+ padding: 4px;
601
+ border-radius: 999px;
602
+ background: var(--color-brand-light);
603
+ }
604
+
605
+ .github-badge-rail .github-badge-label {
606
+ display: none;
607
+ }
608
+
609
+ .github-badge-rail:hover {
610
+ border-color: var(--color-border-strong);
611
+ }
612
+
613
+ /* 侧边栏计数徽标 */
614
+ .side-item-badge {
615
+ display: inline-flex;
616
+ align-items: center;
617
+ justify-content: center;
618
+ min-width: 20px;
619
+ height: 20px;
620
+ padding: 0 6px;
621
+ border-radius: 10px;
622
+ background: var(--color-brand);
623
+ color: #fff;
624
+ font-size: 11px;
625
+ font-weight: 700;
626
+ line-height: 1;
627
+ box-shadow: 0 2px 6px rgba(200, 121, 99, 0.28);
628
+ }