1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/mySet/print/print.wxss */
- page {
- width: 750rpx;
- min-height: 100vh;
- background: #F8F8F8;
- }
- .contioner {
- padding: 32rpx 30rpx;
- }
- .contioner .cell {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- padding: 43rpx 24rpx;
- }
- .contioner .cell .le {
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- }
- .contioner .cell .le .tips {
- font-size: 24rpx;
- color: #666666;
- font-weight: 400;
- }
- .contioner .cell .lr {
- font-size: 28rpx;
- color: #666666;
- }
- .contioner .cell .lr .rightBox {
- width: 174rpx;
- height: 64rpx;
- background: #F2F2F2;
- border-radius: 8rpx;
- line-height: 64rpx;
- text-align: center;
- font-size: 32rpx;
- font-weight: 600;
- color: #333333;
- }
- .tips {
- font-size: 24rpx;
- color: #666666;
- }
|