myInvoice.scss 784 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .invoice {
  2. background-color: #f9f9f9;
  3. height: 100vh;
  4. &-navbar {
  5. &-right {
  6. color: #fff;
  7. margin-right: 30rpx;
  8. }
  9. }
  10. &-content {
  11. margin-top: 44px;
  12. }
  13. &-list {
  14. padding: 30rpx;
  15. &-item {
  16. background-color: #fff;
  17. padding: 40rpx 30rpx;
  18. margin-bottom: 20rpx;
  19. border-radius: 6rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. &-left {
  24. &-item {
  25. display: flex;
  26. margin-bottom: 10rpx;
  27. font-size: 26rpx;
  28. .money {
  29. font-weight: bold;
  30. color: $u-type-primary;
  31. font-size: 28rpx;
  32. }
  33. .status {
  34. margin-right: 40rpx;
  35. }
  36. }
  37. }
  38. }
  39. }
  40. }