微信小程序上传

This commit is contained in:
2026-07-12 14:45:57 +08:00
parent d271ac5b13
commit becf91da52
45 changed files with 1815 additions and 23 deletions
+102
View File
@@ -0,0 +1,102 @@
@import './styles/tokens.css';
@import './styles/home.css';
page,
body {
background: var(--color-background);
color: var(--color-on-surface);
font-family: var(--font-body);
margin: 0;
}
.u-page {
min-height: 100vh;
padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
background: var(--color-background);
box-sizing: border-box;
}
.u-page--tab {
padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}
.u-card {
background: var(--color-card);
border-radius: var(--radius-lg);
margin: 12px var(--space-page);
padding: 16px;
box-shadow: var(--shadow-card);
box-sizing: border-box;
}
.u-muted {
color: var(--color-subtle-gray);
font-size: 13px;
}
.u-title {
font-family: var(--font-headline);
font-size: 18px;
font-weight: 600;
margin: 0 0 8px;
color: var(--color-on-surface);
}
.u-btn {
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: var(--radius-md);
padding: 12px 18px;
font-size: 15px;
font-weight: 600;
line-height: 1.2;
background: var(--color-heritage-red);
color: #fff;
}
.u-btn--block {
width: 100%;
}
.u-btn:active {
opacity: 0.85;
}
.u-empty {
text-align: center;
padding: 48px 24px;
color: var(--color-subtle-gray);
font-size: 14px;
}
.u-store-row {
display: flex;
gap: 12px;
align-items: center;
padding: 14px 0;
border-bottom: 1px solid var(--color-surface-container);
}
.u-store-row:last-child {
border-bottom: none;
}
.u-store-avatar {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(166, 29, 36, 0.08);
flex-shrink: 0;
}
.u-store-name {
font-size: 15px;
font-weight: 600;
color: var(--color-on-surface);
}
.u-safe-top {
padding-top: env(safe-area-inset-top, 0px);
}