availableOrder.scss 611 B

1234567891011121314151617181920212223242526272829303132333435
  1. .order-box {
  2. background-color: #f9f9f9;
  3. height: calc(100vh - 44px);
  4. &-list {
  5. padding: 30rpx;
  6. &-item {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. background-color: #fff;
  11. padding: 30rpx;
  12. margin-bottom: 20rpx;
  13. border-radius: 10rpx;
  14. .left {
  15. display: flex;
  16. align-items: center;
  17. &-radio {
  18. margin-right: 10rpx;
  19. }
  20. }
  21. }
  22. }
  23. &-bottom {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. background-color: #fff;
  28. padding: 10rpx 30rpx;
  29. }
  30. }