insert.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .header {
  2. position: sticky;
  3. top: 0;
  4. display: flex;
  5. justify-content: space-between;
  6. width: 100%;
  7. height: 134rpx;
  8. background: #FFFFFF;
  9. padding: 20rpx 30rpx;
  10. box-sizing: border-box;
  11. padding-right: 0;
  12. z-index: 999;
  13. >view {
  14. flex: 1;
  15. flex-shrink: 0;
  16. .label {
  17. font-family: PingFang SC, PingFang SC;
  18. font-weight: bold;
  19. font-size: 28rpx;
  20. color: #666666;
  21. margin-bottom: 20rpx;
  22. }
  23. .value {
  24. font-family: PingFang SC, PingFang SC;
  25. font-weight: bold;
  26. font-size: 28rpx;
  27. color: #333333;
  28. }
  29. }
  30. }
  31. .new-footer {
  32. display: flex;
  33. align-items: center;
  34. justify-content: flex-end;
  35. position: fixed;
  36. width: 100vw;
  37. height: 130rpx;
  38. background: #FFFFFF;
  39. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  40. bottom: 0;
  41. z-index: 999;
  42. .new-submit {
  43. width: 156rpx;
  44. height: 90rpx;
  45. border-radius: 8rpx;
  46. font-size: 28rpx;
  47. font-family: PingFang SC-Bold, PingFang SC;
  48. font-weight: bold;
  49. color: #FFFFFF;
  50. margin-right: 30rpx;
  51. }
  52. .blue {
  53. background: #3874F6;
  54. }
  55. .orange {
  56. background: #F29C37;
  57. }
  58. }
  59. .head {
  60. display: flex;
  61. align-items: center;
  62. width: 100vw;
  63. height: 120rpx;
  64. padding: 0 20rpx 0 30rpx;
  65. box-sizing: border-box;
  66. .count {
  67. font-size: 28rpx;
  68. font-family: PingFang SC-Regular, PingFang SC;
  69. color: #333333;
  70. }
  71. .expand {
  72. flex: 1;
  73. display: flex;
  74. align-items: center;
  75. justify-content: flex-end;
  76. .but {
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. flex-shrink: 0;
  81. width: 80rpx;
  82. height: 80rpx;
  83. background: #FFFFFF;
  84. border-radius: 8rpx;
  85. border: 2rpx solid #CCCCCC;
  86. margin-left: 20rpx;
  87. color: #666666;
  88. }
  89. }
  90. }
  91. .custom-class {
  92. --search-background-color: #fff !important;
  93. padding-right: 10rpx !important;
  94. }
  95. .project-item {
  96. display: flex;
  97. align-items: center;
  98. background-color: #fff;
  99. width: 690rpx;
  100. border-radius: 8rpx;
  101. margin: 0 auto 20rpx;
  102. padding: 20rpx 30rpx;
  103. box-sizing: border-box;
  104. .main {
  105. position: relative;
  106. overflow: hidden;
  107. width: 100%;
  108. .iconfont-box {
  109. position: absolute;
  110. top: -20rpx;
  111. right: -30rpx;
  112. padding: 30rpx;
  113. color: #B5B5B5;
  114. border-radius: 8rpx;
  115. }
  116. .label {
  117. font-size: 30rpx;
  118. font-family: PingFang SC-Regular, PingFang SC;
  119. color: #333333;
  120. }
  121. .tag-box {
  122. display: flex;
  123. align-items: center;
  124. width: 100%;
  125. .datatag,
  126. .systemtag {
  127. flex-shrink: 0;
  128. margin-top: 6rpx;
  129. background: #3874f6;
  130. color: #ffffff;
  131. margin-right: 10rpx;
  132. display: flex;
  133. align-items: center;
  134. height: 40rpx;
  135. font-size: 20rpx;
  136. padding: 0 10rpx;
  137. border-radius: 20rpx;
  138. font-family: PingFang SC-Regular, PingFang SC;
  139. }
  140. .datatag {
  141. background: #FA8C16;
  142. }
  143. }
  144. .replenish {
  145. display: flex;
  146. min-height: 34rpx;
  147. font-size: 24rpx;
  148. font-family: PingFang SC-Regular, PingFang SC;
  149. color: #333333;
  150. margin-top: 8rpx;
  151. word-break: break-all;
  152. white-space: pre-wrap;
  153. }
  154. .bottom {
  155. display: flex;
  156. align-items: center;
  157. height: 58rpx;
  158. font-family: PingFang SC, PingFang SC;
  159. font-size: 24rpx;
  160. color: #333333;
  161. width: 100%;
  162. margin-top: 8rpx;
  163. padding-bottom: 2rpx;
  164. input {
  165. width: 400rpx;
  166. height: 58rpx;
  167. background: #FFFFFF;
  168. border-radius: 8rpx;
  169. border: 1rpx solid #CCCCCC;
  170. padding-left: 20rpx;
  171. }
  172. }
  173. }
  174. }