invoiceDetails.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. page {
  2. background-color: #f5f9fc;
  3. }
  4. .details {
  5. padding: 20rpx 30rpx;
  6. font-family: PingFang SC;
  7. &-invoice {
  8. margin-bottom: 60rpx;
  9. &-title {
  10. color: #333333;
  11. font-size: 34rpx;
  12. font-weight: bold;
  13. margin-bottom: 20rpx;
  14. }
  15. &-list {
  16. padding: 40rpx;
  17. border-radius: 16rpx;
  18. background-color: #fff;
  19. &-item {
  20. display: flex;
  21. font-size: 32rpx;
  22. margin-bottom: 20rpx;
  23. &-label {
  24. color: #999999;
  25. width: 160rpx;
  26. text-align: right;
  27. }
  28. &-content {
  29. color: #333;
  30. &.status{
  31. display: flex;
  32. justify-content: space-between;
  33. flex: 1;
  34. }
  35. }
  36. .primary {
  37. color: #19be6b;
  38. }
  39. .error {
  40. color: #fa3534;
  41. }
  42. .info {
  43. color: #333333;
  44. }
  45. .view-text {
  46. color: #2e73ff;
  47. }
  48. }
  49. .bottom-top {
  50. border-top: solid 1px #eeeeee;
  51. }
  52. .view-btn {
  53. justify-content: center;
  54. color: #2e73ff;
  55. padding: 20rpx 0 0;
  56. margin-bottom: 0;
  57. }
  58. }
  59. }
  60. &-order {
  61. &-title {
  62. color: #333333;
  63. font-size: 34rpx;
  64. font-weight: bold;
  65. margin-bottom: 20rpx;
  66. }
  67. &-list {
  68. &-item {
  69. background-color: #fff;
  70. border-radius: 16rpx;
  71. padding: 24rpx 50rpx;
  72. margin-bottom: 20rpx;
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. &-left {
  77. font-size: 30rpx;
  78. color: #333333;
  79. line-height: 50rpx;
  80. .money {
  81. font-weight: bold;
  82. font-size: 34rpx;
  83. }
  84. .time {
  85. color: #999999;
  86. font-size: 28rpx;
  87. }
  88. }
  89. &-right {
  90. font-size: 30rpx;
  91. color: #333333;
  92. }
  93. }
  94. }
  95. }
  96. &-pop {
  97. padding: 50rpx;
  98. &-title {
  99. text-align: center;
  100. margin-bottom: 30rpx;
  101. font-size: 34rpx;
  102. font-weight: bold;
  103. }
  104. &-list {
  105. &-item {
  106. display: flex;
  107. line-height: 50rpx;
  108. font-size: 32rpx;
  109. &-label {
  110. color: #999999;
  111. }
  112. &-content {
  113. color: #333333;
  114. }
  115. }
  116. }
  117. }
  118. }