invoiceDetails.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. }
  31. .primary {
  32. color: #2e73ff;
  33. }
  34. .error {
  35. color: #999999;
  36. }
  37. .info {
  38. color: #333333;
  39. }
  40. .view-text {
  41. color: #2e73ff;
  42. }
  43. }
  44. .bottom-top {
  45. border-top: solid 1px #eeeeee;
  46. }
  47. .view-btn {
  48. justify-content: center;
  49. color: #2e73ff;
  50. padding: 20rpx 0 0;
  51. margin-bottom: 0;
  52. }
  53. }
  54. }
  55. &-order {
  56. &-title {
  57. color: #333333;
  58. font-size: 34rpx;
  59. font-weight: bold;
  60. margin-bottom: 20rpx;
  61. }
  62. &-list {
  63. &-item {
  64. background-color: #fff;
  65. border-radius: 16rpx;
  66. padding: 24rpx 50rpx;
  67. margin-bottom: 20rpx;
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. &-left {
  72. font-size: 30rpx;
  73. color: #333333;
  74. line-height: 50rpx;
  75. .money {
  76. font-weight: bold;
  77. font-size: 34rpx;
  78. }
  79. .time {
  80. color: #999999;
  81. font-size: 28rpx;
  82. }
  83. }
  84. &-right {
  85. font-size: 30rpx;
  86. color: #333333;
  87. }
  88. }
  89. }
  90. }
  91. &-pop {
  92. padding: 50rpx;
  93. &-title {
  94. text-align: center;
  95. margin-bottom: 30rpx;
  96. font-size: 34rpx;
  97. font-weight: bold;
  98. }
  99. &-list {
  100. &-item {
  101. display: flex;
  102. line-height: 50rpx;
  103. font-size: 32rpx;
  104. &-label {
  105. color: #999999;
  106. }
  107. &-content {
  108. color: #333333;
  109. }
  110. }
  111. }
  112. }
  113. }