37 lines
574 B
Text
37 lines
574 B
Text
.verify-success-container {
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
background: #000000;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
/* justify-content: center; */
|
|
padding: 40rpx 32rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.badge-box {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 120rpx;
|
|
}
|
|
|
|
.badge-image {
|
|
width: 320rpx;
|
|
height: 320rpx;
|
|
}
|
|
|
|
.success-text-box {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding-top: 160rpx;
|
|
}
|
|
|
|
.success-text {
|
|
font-size: 64rpx;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
|