小程序分销
All checks were successful
Deploy to Server / deploy (push) Successful in 24s

This commit is contained in:
jeremygan2021
2026-02-17 11:22:50 +08:00
parent ac61a127ae
commit 7114a33d1b
10 changed files with 296 additions and 137 deletions

View File

@@ -1,42 +1,46 @@
@import './_shared.scss';
.page-container {
min-height: 100vh;
background-color: #f7f8fa;
padding: 40px 20px;
@include page-container;
display: flex;
justify-content: center;
align-items: center;
}
.card {
background: #fff;
border-radius: 12px;
padding: 40px 30px;
@include glass-card;
@include tech-border;
padding: 50px 30px;
width: 100%;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
.title {
font-size: 24px;
font-size: 32px;
font-weight: bold;
color: #333;
@include neon-text($primary-purple);
display: block;
margin-bottom: 10px;
margin-bottom: 16px;
letter-spacing: 2px;
}
.desc {
font-size: 14px;
color: #999;
font-size: 16px;
color: $text-secondary;
display: block;
margin-bottom: 40px;
margin-bottom: 50px;
}
.btn-register {
background: #00b96b;
color: #fff;
border-radius: 22px;
height: 44px;
line-height: 44px;
font-size: 16px;
border: none;
@include neon-button($primary-green);
background: linear-gradient(90deg, rgba(0, 185, 107, 0.2), rgba(0, 240, 255, 0.2));
border: 1px solid $primary-green;
border-radius: 30px;
height: 56px;
line-height: 56px;
font-size: 20px;
font-weight: bold;
width: 80%;
margin: 0 auto;
letter-spacing: 4px;
}
}