index.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. .page-wrap {
  2. padding-top: 96.15rpx;
  3. }
  4. .fixed-header {
  5. position: fixed;
  6. left: 0%;
  7. top: 0%;
  8. right: 0%;
  9. height: 96.15rpx;
  10. background: #fff;
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: 0 68.68rpx;
  15. z-index: 2;
  16. &::before {
  17. content: '';
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. right: 0;
  22. height: 1rpx;
  23. background: #e0e0e0;
  24. }
  25. .search-input {
  26. width: 439.56rpx;
  27. height: 61.81rpx;
  28. position: relative;
  29. &::after {
  30. content: '';
  31. position: absolute;
  32. left: -50%;
  33. top: -50%;
  34. right: -50%;
  35. bottom: -50%;
  36. transform: scale(0.5);
  37. border: 2rpx solid #d0dde9;
  38. border-radius: 8.24rpx;
  39. }
  40. .input {
  41. width: 100%;
  42. height: 100%;
  43. font-size: 24.73rpx;
  44. padding: 0 82.42rpx 0 13.74rpx;
  45. box-sizing: border-box;
  46. }
  47. .icon {
  48. width: 39.84rpx;
  49. height: 39.84rpx;
  50. position: absolute;
  51. right: 27.47rpx;
  52. top: 50%;
  53. transform: translateY(-50%);
  54. }
  55. }
  56. .filter {
  57. font-size: 27.47rpx;
  58. background: none;
  59. border: none;
  60. padding: 0;
  61. margin: 0;
  62. &::after {
  63. display: none;
  64. }
  65. }
  66. }
  67. .invoice-panel {
  68. padding: 13.74rpx 0;
  69. .item {
  70. height: 206.04rpx;
  71. background: #fff;
  72. padding: 13.74rpx 233.52rpx 13.74rpx 27.47rpx;
  73. position: relative;
  74. box-sizing: border-box;
  75. & + .item {
  76. margin-top: 13.74rpx;
  77. }
  78. }
  79. .state {
  80. width: 178.57rpx;
  81. height: 178.57rpx;
  82. position: absolute;
  83. right: 27.47rpx;
  84. top: 13.74rpx;
  85. border-radius: 8.24rpx;
  86. display: flex;
  87. flex-direction: column;
  88. align-items: center;
  89. justify-content: center;
  90. font-size: 32.97rpx;
  91. color: #fff;
  92. background: #ccc;
  93. &::after {
  94. content: '未知';
  95. font-size: 27.47rpx;
  96. margin-top: 13.74rpx;
  97. }
  98. &-1 {
  99. background: #00bfbf;
  100. &::after {
  101. content: '未支付';
  102. }
  103. }
  104. &-2 {
  105. background: #ccc;
  106. &::after {
  107. content: '确认中';
  108. }
  109. }
  110. &-3 {
  111. background: #f7922a;
  112. &::after {
  113. content: '已到账';
  114. }
  115. }
  116. }
  117. .name {
  118. font-size: 32.97rpx;
  119. line-height: 1.5;
  120. white-space: nowrap;
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. margin-bottom: 6.87rpx;
  124. }
  125. .desc {
  126. font-size: 27.47rpx;
  127. line-height: 1.5;
  128. color: #999;
  129. }
  130. }