feat: add student checkout pages

This commit is contained in:
Codex
2026-06-29 13:17:49 +08:00
parent 2776ce12a5
commit 65905aaf8f
13 changed files with 666 additions and 15 deletions

View File

@@ -242,3 +242,51 @@
border-radius: 8px;
background: #0f172a;
}
.checkout-toolbar {
align-items: center;
overflow-x: visible;
}
.checkout-toolbar .input {
flex: 1;
min-width: 0;
}
.checkout-actions {
margin-top: 18px;
}
.amount-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 12px;
}
.amount-text {
display: block;
margin-top: 8px;
color: #0f172a;
font-size: 40px;
font-weight: 850;
line-height: 1.15;
}
.status-badge {
display: inline-flex;
align-items: center;
min-height: 40px;
padding: 0 14px;
border-radius: 8px;
background: #ecfdf5;
color: #047857;
font-size: 22px;
font-weight: 750;
}
.break-text {
word-break: break-all;
overflow-wrap: anywhere;
}