|
@@ -168,6 +168,65 @@
|
|
|
font-size: 25rpx;
|
|
|
background-color: #FC614E;
|
|
|
}
|
|
|
+.container .activationModal {
|
|
|
+ position: fixed;
|
|
|
+ z-index: 2;
|
|
|
+ left: 0rpx;
|
|
|
+ top: 0rpx;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ background-color: rgba(0, 0, 0, 0.3);
|
|
|
+}
|
|
|
+.container .activationModal .box {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 30%;
|
|
|
+ margin: auto;
|
|
|
+ width: 496rpx;
|
|
|
+ height: 365rpx;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ text-align: center;
|
|
|
+ animation-name: zoomIn;
|
|
|
+ animation-duration: 0.4s;
|
|
|
+ animation-fill-mode: forwards;
|
|
|
+}
|
|
|
+.container .activationModal .box .sLcon {
|
|
|
+ margin-top: 34rpx;
|
|
|
+ width: 100rpx;
|
|
|
+ height: 100rpx;
|
|
|
+}
|
|
|
+.container .activationModal .box .tips1 {
|
|
|
+ margin: 40rpx 0rpx 24rpx;
|
|
|
+ color: #131313;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 34rpx;
|
|
|
+}
|
|
|
+.container .activationModal .box .tips2 {
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #12C962;
|
|
|
+}
|
|
|
+.container .activationModal .box .close {
|
|
|
+ position: absolute;
|
|
|
+ padding: 40rpx;
|
|
|
+ width: 54rpx;
|
|
|
+ height: 54rpx;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: -140rpx;
|
|
|
+ margin: auto;
|
|
|
+}
|
|
|
+@keyframes zoomIn {
|
|
|
+ from {
|
|
|
+ transform: scale(0);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: scale(1);
|
|
|
+ }
|
|
|
+}
|
|
|
.container .payBox {
|
|
|
position: relative;
|
|
|
margin-top: 36rpx;
|