123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* pages/recentOrder/recentOrder.wxss */
- .recentOrder {
- width: 100%;
- position:relative;
- }
- .list{
- padding-top:105rpx;
- }
- .orderList {
- width: 90%;
- margin: 0 auto 20rpx;
- padding: 20rpx;
- line-height: 2;
- border: 1rpx solid #eee;
- position:relative;
- box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
- border-radius: 10rpx;
- }
- .orderList>view {
- font-size: 26rpx;
- color: #4d4d4d;
- }
- .orderList .bikeNo {
- font-size: 28rpx;
- }
- .orderList .state {
- position: absolute;
- top: 0rpx;
- right: 0rpx;
- padding: 0 40rpx;
- height: 42rpx;
- border-radius: 0px 2rpx 0px 20rpx;
- font-size: 22rpx;
- font-family: PingFang SC;
- color: rgba(255, 255, 255, 1);
- }
- .cut{
- width:100%;
- background:#fff;
- position:fixed;
- top:0;
- left:0;
- z-index:999;
- height:86rpx;
- display:flex;
- justify-content: center;
- align-items: center;
- }
- .cut .cutCon{
- width: 80%;
- }
|