myInvoice.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .invoice {
  2. background-color: #f5f9fc;
  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;
  18. margin-bottom: 20rpx;
  19. border-radius: 16rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. &-left {
  24. &-item {
  25. display: flex;
  26. font-size: 30rpx;
  27. color: #333333;
  28. margin-bottom: 16rpx;
  29. &:last-child {
  30. margin-bottom: 0;
  31. }
  32. .left {
  33. color: #999;
  34. }
  35. .money {
  36. font-weight: bold;
  37. font-size: 34rpx;
  38. }
  39. .time {
  40. color: #999;
  41. }
  42. .status {
  43. margin-right: 40rpx;
  44. }
  45. }
  46. }
  47. &-right {
  48. font-size: 28rpx;
  49. .arrow-right {
  50. text-align: right;
  51. margin-bottom: 30rpx;
  52. }
  53. .primary {
  54. color: #19be6b;
  55. }
  56. .error {
  57. color: #fa3534;
  58. }
  59. .info {
  60. color: #333333;
  61. }
  62. }
  63. }
  64. }
  65. }