feat: 商品的核销逻辑

This commit is contained in:
2026-03-16 22:28:24 +08:00
parent f5c3a3ca2d
commit 40c37ea2e1
4 changed files with 122 additions and 30 deletions

View File

@@ -297,6 +297,30 @@
padding-bottom: 24px;
}
.p-32 {
padding: 32px;
}
.pt-32 {
padding-top: 32px;
}
.pb-32 {
padding-bottom: 32px;
}
.pl-32 {
padding-left: 32px;
}
.pr-32 {
padding-right: 32px;
}
.px-32 {
padding-left: 32px;
padding-right: 32px;
}
.py-32 {
padding-top: 32px;
padding-bottom: 32px;
}
.pb-safe-area {
padding-bottom: Max(env(safe-area-inset-bottom), 12px);
}