| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .header {
- position: sticky;
- top: 0;
- width: 100vw;
- padding: 20rpx 30rpx;
- background-color: #fff;
- font-size: 24rpx;
- color: #999999;
- box-sizing: border-box;
- box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title {
- font-size: 36rpx;
- font-weight: 600;
- color: #333333;
- margin-bottom: 10rpx;
- }
- .badeg {
- flex-shrink: 0;
- height: 118rpx;
- width: 48rpx;
- line-height: 48rpx;
- text-align: center;
- background: #F0F3FF;
- border-radius: 8rpx 0rpx 0rpx 8rpx;
- font-size: 24rpx;
- color: #3874F6;
- writing-mode: vertical-lr;
- margin: -20rpx -30rpx;
- margin-left: 20rpx;
- }
- }
- .rows {
- width: 100vw;
- padding: 30rpx;
- background-color: #fff;
- box-sizing: border-box;
- font-size: 30rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 600;
- color: #333333;
- border-bottom: 1px solid #ddd;
- .main {
- font-size: 28rpx !important;
- font-weight: 400;
- width: 100%;
- white-space: pre-line;
- word-break: break-all;
- margin-top: -10rpx !important;
- }
- }
- .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;
- }
- }
|