availableOrder.scss 694 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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: #333;
  17. .left {
  18. display: flex;
  19. align-items: center;
  20. &-radio {
  21. margin-right: 10rpx;
  22. }
  23. &-content {
  24. line-height: 50rpx;
  25. }
  26. }
  27. }
  28. }
  29. &-bottom {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. background-color: #fff;
  34. padding: 10rpx 30rpx;
  35. }
  36. }