availableOrder.scss 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. page {
  2. background-color: #F5F9FC;
  3. }
  4. .order-box {
  5. &-list {
  6. padding: 30rpx;
  7. &-item {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. background-color: #fff;
  12. padding: 30rpx;
  13. margin-bottom: 20rpx;
  14. border-radius: 10rpx;
  15. font-size: 30rpx;
  16. color: #666666;
  17. .left {
  18. display: flex;
  19. align-items: center;
  20. &-radio {
  21. margin-right: 10rpx;
  22. }
  23. &-content {
  24. line-height: 50rpx;
  25. .money {
  26. color: #333333;
  27. font-size: 34rpx;
  28. font-weight: bold;
  29. }
  30. .time {
  31. color: #999999;
  32. font-size: 28rpx;
  33. }
  34. }
  35. }
  36. }
  37. }
  38. &-bottom {
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. background-color: #fff;
  43. padding: 10rpx 30rpx;
  44. }
  45. }