|
|
@@ -0,0 +1,83 @@
|
|
|
+/* pages/clock/clock.wxss */
|
|
|
+page {
|
|
|
+ background: rgba(245, 245, 245, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.video {
|
|
|
+ width: 710rpx;
|
|
|
+ height: 268rpx;
|
|
|
+ margin: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.header {
|
|
|
+ width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ z-index: -1;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-bg {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-content {
|
|
|
+ width: 690rpx;
|
|
|
+ height: 840rpx;
|
|
|
+ background: rgba(255, 255, 255, 1);
|
|
|
+ box-shadow: 0px 10rpx 10rpx 0rpx rgba(0, 0, 0, 0.06);
|
|
|
+ border-radius: 32rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ margin-top: 70rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.no-passs-img {
|
|
|
+ height: 269rpx;
|
|
|
+ width: 360rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-content-text {
|
|
|
+ margin-top: 57rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-content-text view:first-child {
|
|
|
+ text-align: center;
|
|
|
+ font-size: 42rpx;
|
|
|
+ color: #000;
|
|
|
+ font-family: PingFangSC-Medium, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-content-text view:last-child {
|
|
|
+ text-align: center;
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #666;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ margin-top: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.no-pass-content-button {
|
|
|
+ width: 560rpx;
|
|
|
+ height: 88rpx;
|
|
|
+ color: #fff;
|
|
|
+ font-family: PingFangSC-Semibold, PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 88rpx;
|
|
|
+ text-align: center;
|
|
|
+ background: rgba(0, 122, 255, 1);
|
|
|
+ border-radius: 10rpx;
|
|
|
+ border: 2rpx solid rgba(0, 122, 255, 1);
|
|
|
+ margin-top: 88rpx;
|
|
|
+}
|