门店页面修改

This commit is contained in:
2026-07-07 00:18:29 +08:00
parent 1fcafac2a7
commit 5d19089f91
11 changed files with 432 additions and 39 deletions
+110 -2
View File
@@ -152,23 +152,31 @@
.shop-login-code-row {
display: flex;
gap: 8px;
align-items: stretch;
}
.shop-login-code-row .shop-login-input-wrap {
flex: 1;
min-width: 0;
}
.shop-login-code-btn {
flex-shrink: 0;
align-self: stretch;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
border: none;
border-radius: var(--radius-sm);
padding: 0 16px;
padding: 0 14px;
background: #ffdad7;
color: var(--color-heritage-red);
font-family: var(--font-label);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.05em;
letter-spacing: 0.02em;
line-height: 1.2;
cursor: pointer;
white-space: nowrap;
}
@@ -618,6 +626,106 @@
color: var(--color-heritage-red);
}
.shop-home-scan-msg {
margin-top: 8px;
font-size: 13px;
color: var(--color-heritage-red);
text-align: center;
max-width: 280px;
}
.shop-scan-auth-overlay {
position: fixed;
inset: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(0, 0, 0, 0.45);
}
.shop-scan-auth-card {
width: 100%;
max-width: 320px;
padding: 28px 24px 24px;
border-radius: var(--radius-md);
background: var(--color-card);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
text-align: center;
}
.shop-scan-auth-icon {
width: 56px;
height: 56px;
margin: 0 auto 16px;
border-radius: 50%;
background: rgba(166, 29, 36, 0.08);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-heritage-red);
}
.shop-scan-auth-icon .material-symbols-outlined {
font-size: 28px;
}
.shop-scan-auth-title {
margin: 0 0 8px;
font-family: var(--font-headline);
font-size: 18px;
font-weight: 600;
color: var(--color-on-surface);
}
.shop-scan-auth-desc {
margin: 0 0 16px;
font-size: 14px;
line-height: 1.5;
color: var(--color-on-surface-variant);
}
.shop-scan-auth-error {
margin: 0 0 12px;
font-size: 13px;
color: var(--color-heritage-red);
}
.shop-scan-auth-actions {
display: flex;
gap: 12px;
}
.shop-scan-auth-cancel,
.shop-scan-auth-confirm {
flex: 1;
min-height: 44px;
border-radius: var(--radius-sm);
font-family: var(--font-label);
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.shop-scan-auth-cancel {
border: 1px solid var(--color-outline-variant);
background: var(--color-surface);
color: var(--color-on-surface);
}
.shop-scan-auth-confirm {
border: none;
background: var(--color-heritage-red);
color: #fff;
}
.shop-scan-auth-cancel:disabled,
.shop-scan-auth-confirm:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.shop-home-status {
background: var(--color-card);
border-radius: var(--radius-md);