| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .reader-container.data-v-1cf64f5d {
- position: relative;
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- transition: all 0.3s ease;
- overflow: hidden;
- }
- .content-area.data-v-1cf64f5d {
- flex: 1;
- min-height: 100vh;
- padding: 20rpx;
- }
- .chapter-title.data-v-1cf64f5d {
- font-size: 36rpx;
- font-weight: bold;
- text-align: center;
- margin: 30rpx 0;
- }
- .chapter-content.data-v-1cf64f5d {
- text-align: justify;
- }
- .mask.data-v-1cf64f5d {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 250;
- }
- .page-tip.data-v-1cf64f5d {
- position: fixed;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- background-color: rgba(0, 0, 0, 0.7);
- color: #fff;
- padding: 20rpx 40rpx;
- border-radius: 10rpx;
- font-size: 28rpx;
- z-index: 300;
- }
- /* 添加新的样式 */
- .content-wrapper.data-v-1cf64f5d {
- flex: 1;
- position: relative;
- overflow: hidden;
- min-height: 100vh;
- }
|