recentOrder.wxss 881 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* pages/recentOrder/recentOrder.wxss */
  2. .recentOrder {
  3. width: 100%;
  4. position:relative;
  5. }
  6. .list{
  7. padding-top:105rpx;
  8. }
  9. .orderList {
  10. width: 90%;
  11. margin: 0 auto 20rpx;
  12. padding: 20rpx;
  13. line-height: 2;
  14. border: 1rpx solid #eee;
  15. position:relative;
  16. box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
  17. border-radius: 10rpx;
  18. }
  19. .orderList>view {
  20. font-size: 26rpx;
  21. color: #4d4d4d;
  22. }
  23. .orderList .bikeNo {
  24. font-size: 28rpx;
  25. }
  26. .orderList .state {
  27. position: absolute;
  28. top: 0rpx;
  29. right: 0rpx;
  30. padding: 0 40rpx;
  31. height: 42rpx;
  32. border-radius: 0px 2rpx 0px 20rpx;
  33. font-size: 22rpx;
  34. font-family: PingFang SC;
  35. color: rgba(255, 255, 255, 1);
  36. }
  37. .cut{
  38. width:100%;
  39. background:#fff;
  40. position:fixed;
  41. top:0;
  42. left:0;
  43. z-index:999;
  44. height:86rpx;
  45. display:flex;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49. .cut .cutCon{
  50. width: 80%;
  51. }