index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. &::before {
  16. content: '';
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. right: 0;
  21. height: 1rpx;
  22. background: #e0e0e0;
  23. }
  24. .search-input {
  25. width: 439.56rpx;
  26. height: 61.81rpx;
  27. border: 1rpx solid #d0dde9;
  28. border-radius: 8.24rpx;
  29. position: relative;
  30. .input {
  31. width: 100%;
  32. height: 100%;
  33. font-size: 24.73rpx;
  34. padding: 0 82.42rpx 0 13.74rpx;
  35. box-sizing: border-box;
  36. }
  37. .icon {
  38. width: 39.84rpx;
  39. height: 39.84rpx;
  40. position: absolute;
  41. right: 27.47rpx;
  42. top: 50%;
  43. transform: translateY(-50%);
  44. }
  45. }
  46. .filter {
  47. font-size: 27.47rpx;
  48. background: none;
  49. border: none;
  50. padding: 0;
  51. margin: 0;
  52. &::after {
  53. display: none;
  54. }
  55. }
  56. }
  57. .invoice-panel {
  58. padding: 13.74rpx 0;
  59. .item {
  60. height: 206.04rpx;
  61. background: #fff;
  62. padding: 13.74rpx 233.52rpx 13.74rpx 27.47rpx;
  63. position: relative;
  64. box-sizing: border-box;
  65. & + .item {
  66. margin-top: 13.74rpx;
  67. }
  68. }
  69. .state {
  70. width: 178.57rpx;
  71. height: 178.57rpx;
  72. position: absolute;
  73. right: 27.47rpx;
  74. top: 13.74rpx;
  75. border-radius: 8.24rpx;
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. justify-content: center;
  80. font-size: 32.97rpx;
  81. color: #fff;
  82. &::after {
  83. font-size: 27.47rpx;
  84. margin-top: 13.74rpx;
  85. }
  86. &-1 {
  87. background: #00bfbf;
  88. &::after {
  89. content: '待申请';
  90. }
  91. }
  92. &-2 {
  93. background: #ccc;
  94. &::after {
  95. content: '申请中';
  96. }
  97. }
  98. &-3 {
  99. background: #f7922a;
  100. &::after {
  101. content: '已开';
  102. }
  103. }
  104. }
  105. .name {
  106. font-size: 27.47rpx;
  107. line-height: 1.5;
  108. white-space: nowrap;
  109. overflow: hidden;
  110. text-overflow: ellipsis;
  111. }
  112. .desc {
  113. font-size: 24.73rpx;
  114. line-height: 1.5;
  115. color: #999;
  116. }
  117. }