修改功能,现已测试注册登录忘记密码

This commit is contained in:
rain
2026-06-12 11:42:49 +08:00
parent 0bf2f573ed
commit cfc64c69e5
26 changed files with 2238 additions and 898 deletions
+51 -1
View File
@@ -452,7 +452,7 @@
/* Action Section (legacy 2-column card layout) */
.action-section {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-bottom: 24px;
}
@@ -524,6 +524,56 @@
pointer-events: none;
}
.custom-modal-mask {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.45);
}
.custom-modal-content {
width: min(360px, calc(100vw - 32px));
padding: 26px 24px 22px;
border-radius: var(--radius-lg);
background: #fff;
box-shadow: var(--shadow-lg);
text-align: center;
}
.custom-modal-title {
margin: 0 0 18px;
color: var(--primary);
font-size: 18px;
font-weight: 800;
}
.custom-qr-container {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px;
border: 1px solid var(--border-light);
border-radius: var(--radius-md);
background: #fff;
}
.custom-modal-close {
display: block;
width: 100%;
height: 38px;
margin-top: 18px;
border: 0;
border-radius: var(--radius-md);
background: var(--primary);
color: #fff;
cursor: pointer;
font-size: 14px;
font-weight: 800;
}
/* Team Section */
.team-section {
background: var(--white, #fff);