Files

41 lines
713 B
SCSS
Raw Permalink Normal View History

2025-07-07 16:05:18 +08:00
.container {
padding: 11px 18px;
.title {
display: flex;
justify-content: space-between;
align-items: center;
.rightTitle {
font-size: 16px;
font-weight: 400;
}
}
.content {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
margin-top: 62px;
.successTitle {
font-size: 24px;
font-weight: 700;
color: #333333;
text-align: center;
}
.successDesc {
margin-top: 19px;
font-size: 12px;
color: #aaaaaa;
text-align: center;
}
}
.btns {
display: flex;
flex-direction: column;
row-gap: 12px;
margin-top: 120px;
.btn {
width: 100%;
}
}
}