feat: 初始化

This commit is contained in:
George
2025-07-07 15:55:44 +08:00
commit 9b7bfcfe5a
969 changed files with 123036 additions and 0 deletions

View File

@ -0,0 +1,72 @@
.container {
padding: 0 24px 24px 16px;
.title {
margin: 14px 0 15px;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
margin-top: 77px;
.successTitle {
margin-top: 11px;
font-size: 24px;
font-weight: 700;
color: #333333;
text-align: center;
}
.successDesc {
margin-top: 34px;
padding: 0 24px;
font-size: 14px;
color: #333333;
text-align: center;
}
}
.btns {
display: flex;
flex-direction: column;
row-gap: 12px;
margin-top: 76px;
.btn {
width: 100%;
&.disable {
background-color: #dbdbdb;
}
}
.resendSection {
display: flex;
justify-content: center;
align-items: center;
column-gap: 44px;
font-size: 18px;
.countdown {
display: flex;
column-gap: 4px;
color: #29bbe4;
}
.resend {
display: flex;
align-items: center;
column-gap: 7px;
color: #29bbe4;
&Icon {
width: 21px;
height: 21px;
&.sending {
animation: rotate 2s infinite;
}
}
}
}
}
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}