| 1234567891011121314151617181920212223 |
- .new-footer {
- position: fixed;
- display: flex;
- justify-content: flex-end;
- left: 0;
- bottom: 0;
- width: 100%;
- padding: 20rpx 30rpx;
- padding-top: 10rpx;
- box-sizing: border-box;
- background-color: #fff;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
- }
- .new-submit {
- width: 180rpx;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 8rpx !important;
- font-size: 32rpx;
- background-color: #3874F6;
- color: #fff;
- }
|