|
@@ -4,14 +4,45 @@
|
|
|
width: 100vw;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
+ background-color: white;
|
|
|
}
|
|
|
.readingBox #myVideo {
|
|
|
width: 100%;
|
|
|
height: 422rpx;
|
|
|
}
|
|
|
-.readingBox .content {
|
|
|
+.readingBox .contentBox {
|
|
|
flex: 1;
|
|
|
width: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.readingBox .contentBox .articleMask {
|
|
|
+ position: absolute;
|
|
|
+ top: 0rpx;
|
|
|
+ width: 100%;
|
|
|
+ height: 90rpx;
|
|
|
+ z-index: 10;
|
|
|
+ background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.4));
|
|
|
+}
|
|
|
+.readingBox .contentBox .content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding: 0rpx 30rpx;
|
|
|
+ padding-bottom: calc(170rpx + env(safe-area-inset-bottom));
|
|
|
+ text-align: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.readingBox .contentBox .content .row {
|
|
|
+ padding: 16rpx 0rpx;
|
|
|
+ font-size: 42rpx;
|
|
|
+}
|
|
|
+.readingBox .contentBox .content .currentRow {
|
|
|
+ font-weight: bold;
|
|
|
+ color: #019e45;
|
|
|
+}
|
|
|
+.readingBox .contentBox .content .article {
|
|
|
+ height: 2000rpx;
|
|
|
+ background-color: red;
|
|
|
}
|
|
|
.readingBox .controller {
|
|
|
width: 100%;
|
|
@@ -53,3 +84,29 @@
|
|
|
box-shadow: rgba(14, 30, 37, 0.12) 0px 2rpx 4rpx 0px, rgba(14, 30, 37, 0.32) 0px 2rpx 16rpx 0px;
|
|
|
border-radius: 50%;
|
|
|
}
|
|
|
+.readingBox .countDownBox {
|
|
|
+ position: fixed;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: rgba(255, 255, 255, 0);
|
|
|
+ z-index: 999;
|
|
|
+}
|
|
|
+.readingBox .countDownBox .countDown {
|
|
|
+ position: absolute;
|
|
|
+ left: 0rpx;
|
|
|
+ right: 0rpx;
|
|
|
+ top: 30%;
|
|
|
+ margin: auto;
|
|
|
+ width: 293rpx;
|
|
|
+ height: 293rpx;
|
|
|
+ border-radius: 30rpx;
|
|
|
+ color: white;
|
|
|
+ background-color: rgba(0, 0, 0, 0.8);
|
|
|
+ text-align: center;
|
|
|
+ padding: 30rpx 0rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+.readingBox .countDownBox .countDown .number {
|
|
|
+ font-size: 124rpx;
|
|
|
+ margin-bottom: 6rpx;
|
|
|
+}
|