123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- .readingBox {
- position: relative;
- height: 100vh;
- width: 100vw;
- display: flex;
- flex-direction: column;
- background-color: white;
- .poster {
- top: 0px;
- left: 0px;
- position: absolute;
- width: 100%;
- height: 422rpx;
- z-index: 10;
- }
- #myVideo {
- width: 100%;
- height: 422rpx;
- }
- .contentBox {
- flex: 1;
- width: 100%;
- overflow: hidden;
- position: relative;
- .articleMask {
- position: absolute;
- top: 0rpx;
- width: 100%;
- height: 80rpx;
- z-index: 10;
- background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0.4))
- }
- .content {
- width: 100%;
- height: 100%;
- padding: 0rpx 30rpx;
- padding-bottom: calc(170rpx + env(safe-area-inset-bottom));
- text-align: center;
- box-sizing: border-box;
- .row {
- padding: 18rpx 0rpx;
- font-size: 40rpx;
- }
- .currentRow {
- font-weight: bold;
- color: #019e45;
- }
- .article {
- height: 2000rpx;
- background-color: red;
- }
- }
- }
- .controller {
- width: 100%;
- height: 110rpx;
- position: absolute;
- bottom: 0px;
- left: 0px;
- display: flex;
- align-items: center;
- flex-direction: column;
- padding-bottom: env(safe-area-inset-bottom);
- box-shadow: rgba(14, 30, 37, 0.12) 0px 2rpx 4rpx 0px, rgba(14, 30, 37, 0.32) 0px 2rpx 16rpx 0px;
- background-color: white;
- z-index: 10;
- .playImg {
- position: absolute;
- top: -62rpx;
- border-radius: 50%;
- width: 114rpx;
- height: 114rpx;
- box-shadow: #4EC4FF 0px 0rpx 14rpx;
- background-color: #4EC4FF;
- }
- .text {
- position: absolute;
- top: 60rpx;
- font-size: 28rpx;
- }
- .btnPosition {
- position: absolute;
- right: 30rpx;
- top: 20rpx;
- }
- }
- .playImgBg {
- position: absolute;
- width: 134rpx;
- height: 124rpx;
- z-index: 1;
- left: -1rpx;
- right: 0px;
- margin: auto;
- bottom: calc(56rpx + env(safe-area-inset-bottom));
- background-color: white;
- 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%;
- }
- .countDownBox {
- position: fixed;
- width: 100%;
- height: 100%;
- background-color: rgba(255, 255, 255, 0);
- z-index: 999;
- .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;
- .number {
- font-size: 124rpx;
- margin-bottom: 6rpx;
- }
- }
- }
- }
|