first commit
All checks were successful
Deploy to Server / deploy (push) Successful in 19s

This commit is contained in:
爽哒哒
2026-03-20 23:30:57 +08:00
commit 290be5d5be
328 changed files with 37215 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
@import './_shared.scss';
.page-container {
@include page-container;
display: flex;
justify-content: center;
align-items: center;
}
.card {
@include glass-card;
@include tech-border;
padding: 50px 30px;
width: 100%;
text-align: center;
.title {
font-size: 32px;
font-weight: bold;
@include neon-text($primary-purple);
display: block;
margin-bottom: 16px;
letter-spacing: 2px;
}
.desc {
font-size: 16px;
color: $text-secondary;
display: block;
margin-bottom: 50px;
}
.btn-register {
@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;
}
}