103 lines
1.7 KiB
Plaintext
103 lines
1.7 KiB
Plaintext
|
|
.status-bar {
|
|
width: 100%;
|
|
}
|
|
.nav-back {
|
|
position: fixed;
|
|
left: 32rpx;
|
|
top: 0;
|
|
height: 88rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
z-index: 100;
|
|
|
|
|
|
|
|
|
|
top: 25px;
|
|
}
|
|
.back-icon {
|
|
font-size: 36rpx;
|
|
color: #333333;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 178rpx;
|
|
}
|
|
.success-icon {
|
|
margin-bottom: 80rpx;
|
|
position: relative;
|
|
}
|
|
.fail-icon {
|
|
margin-bottom: 80rpx;
|
|
position: relative;
|
|
}
|
|
.success-icon .icon-image {
|
|
width: 392rpx;
|
|
height: 392rpx;
|
|
border-radius: 196rpx;
|
|
box-shadow: 0 8rpx 60rpx 0 rgba(252, 67, 124, 0.30);
|
|
}
|
|
.fail-icon .icon-image {
|
|
width: 392rpx;
|
|
height: 392rpx;
|
|
border-radius: 196rpx 156rpx 196rpx 196rpx;
|
|
box-shadow: 0 8rpx 60rpx 0 rgba(255, 0, 0, 0.30);
|
|
}
|
|
.success-title {
|
|
font-size: 40rpx;
|
|
color: #3D3D3D;
|
|
font-weight: 500;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
.success-tip {
|
|
font-size: 32rpx;
|
|
color: #3D3D3D;
|
|
text-align: center;
|
|
padding: 0 48rpx;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
.btn-back {
|
|
width: 630rpx;
|
|
height: 96rpx;
|
|
background: #E8101E;
|
|
border-radius: 48rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.btn-text {
|
|
font-size: 40rpx;
|
|
color: #FFFFFF;
|
|
font-weight: 350;
|
|
}
|
|
.fail-back-btn {
|
|
width: 630rpx;
|
|
height: 96rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 48rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1rpx solid #E8101E;
|
|
margin-top: 32rpx;
|
|
}
|
|
.fail-back-btn .btn-text {
|
|
color: #E8101E;
|
|
}
|
|
.submitres-page .back-btn {
|
|
background: transparent !important;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* 平台适配 */
|
|
.nav-back {
|
|
top: calc(25px + constant(safe-area-inset-top));
|
|
top: calc(25px + env(safe-area-inset-top));
|
|
}
|
|
|
|
|
|
|