44 lines
748 B
Plaintext
44 lines
748 B
Plaintext
|
|
.success-page {
|
|
min-height: 100vh;
|
|
background-color: #FFFFFF;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
.success-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 120rpx;
|
|
}
|
|
.success-icon {
|
|
width: 250rpx;
|
|
height: 184rpx;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
.success-text {
|
|
font-size: 40rpx;
|
|
color: #333333;
|
|
font-weight: 500;
|
|
}
|
|
.action-button {
|
|
width: 686rpx;
|
|
height: 88rpx;
|
|
background: #FF4B4B;
|
|
border-radius: 44rpx;
|
|
color: #FFFFFF;
|
|
font-size: 32rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 80rpx auto 0;
|
|
}
|
|
|
|
/* 多端适配 */
|
|
.success-page {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
|
|
|