Files
HTFX-CRM-APP/pages/capital/verifyWallet/index.scss
2025-07-07 15:55:44 +08:00

73 lines
1.1 KiB
SCSS

.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);
}
}