1234567891011121314151617181920212223242526272829303132333435363738 |
- .footer {
- display: flex;
- justify-content: center;
- position: fixed;
- bottom: 0;
- width: 100vw;
- min-height: 130rpx;
- background-color: #fff;
- box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
- z-index: 999999999999999;
- .but {
- width: 690rpx;
- height: 90rpx;
- background: #FA8C16;
- border-radius: 16rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- margin-top: 10rpx;
- }
- }
- .document-box {
- width: 100vw;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- background-color: #fff;
- .document {
- word-break: break-all;
- white-space: pre-wrap;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #3874F6;
- margin-bottom: 20rpx;
- }
- }
|