index.scss 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. .hc-task-page {
  2. .hc-task-nav-bar {
  3. position: sticky;
  4. top: 0;
  5. right: 0;
  6. left: 0;
  7. background: #554D84;
  8. padding-top: calc(var(--status-bar-height) + 10rpx);
  9. z-index: 8090;
  10. }
  11. .task-nav-bar {
  12. position: relative;
  13. display: flex;
  14. align-items: center;
  15. padding: .6rem .9rem;
  16. color: white;
  17. .segmented-bar {
  18. position: relative;
  19. display: flex;
  20. align-items: center;
  21. font-size: 26rpx;
  22. flex: 1;
  23. .task-tab-item {
  24. background: #291D6C;
  25. padding: 10rpx 16rpx;
  26. transition: background .2s;
  27. &.task-cur {
  28. background: white;
  29. color: #564C84;
  30. }
  31. &:first-child {
  32. border-top-left-radius: 50rpx;
  33. border-bottom-left-radius: 50rpx;
  34. }
  35. &:last-child {
  36. border-top-right-radius: 50rpx;
  37. border-bottom-right-radius: 50rpx;
  38. }
  39. }
  40. }
  41. .more-bar {
  42. display: flex;
  43. align-items: center;
  44. justify-content: flex-end;
  45. .icon {
  46. position: relative;
  47. top: 4rpx;
  48. font-size: 44rpx;
  49. }
  50. .more-bar-tooltip {
  51. --theme-bg-color: #4D4D4D !important;
  52. }
  53. }
  54. }
  55. :deep(.zb_tooltip__popper) {
  56. font-size: 26rpx;
  57. .more-bar-item {
  58. position: relative;
  59. }
  60. .more-bar-item + .more-bar-item {
  61. margin-top: 20rpx;
  62. }
  63. }
  64. .controls-bar-box {
  65. position: relative;
  66. z-index: 999;
  67. .controls-bar {
  68. position: relative;
  69. display: flex;
  70. align-items: center;
  71. background: white;
  72. font-size: 44rpx;
  73. padding: .4rem .9rem;
  74. .left, .right {
  75. position: relative;
  76. flex: 1;
  77. display: flex;
  78. align-items: center;
  79. color: #4095E5;
  80. .icon + .icon {
  81. margin-left: 20rpx;
  82. }
  83. .icon.cur {
  84. color: #554D84;
  85. }
  86. }
  87. .right {
  88. justify-content: flex-end;
  89. }
  90. }
  91. .controls-filter {
  92. position: relative;
  93. font-size: 26rpx;
  94. display: flex;
  95. align-items: center;
  96. padding: .4rem .9rem;
  97. border-top: 1px solid #f3f3f3;
  98. background: white;
  99. .search-form-date {
  100. position: relative;
  101. margin-right: 20rpx;
  102. flex: 1;
  103. :deep(.search-date-input) {
  104. border: 2rpx solid #e5e5e5;
  105. box-sizing: border-box;
  106. border-radius: 8rpx;
  107. padding: 0 20rpx;
  108. position: relative;
  109. display: flex;
  110. align-items: center;
  111. width: 100%;
  112. height: 60rpx;
  113. div {
  114. flex: 1;
  115. }
  116. }
  117. .content {
  118. position: relative;
  119. display: flex;
  120. align-items: center;
  121. width: 100%;
  122. .text {
  123. flex: 1;
  124. }
  125. }
  126. }
  127. .search-form-btn {
  128. margin-left: 20rpx;
  129. }
  130. }
  131. }
  132. :deep(.uni-card) {
  133. &.is-check {
  134. box-shadow: #EE5B20 0 0 6rpx 2rpx !important;
  135. }
  136. .item-icon-check {
  137. margin-right: 10rpx;
  138. display: flex;
  139. align-items: center;
  140. }
  141. }
  142. .hc-bottom-bar {
  143. height: var(--window-bottom);
  144. position: absolute;
  145. z-index: -1;
  146. bottom: 0;
  147. width: 100%;
  148. }
  149. .hc-bottom-btn-bar {
  150. position: relative;
  151. .show-check-tabbars {
  152. position: relative;
  153. display: flex;
  154. align-items: flex-end;
  155. padding: 22rpx;
  156. background: white;
  157. .check-bar {
  158. font-size: 24rpx;
  159. margin-right: 50rpx;
  160. .check-box {
  161. position: relative;
  162. display: flex;
  163. align-items: center;
  164. .text {
  165. margin-right: 10rpx;
  166. }
  167. }
  168. .text-box {
  169. margin-top: 10rpx;
  170. }
  171. }
  172. .btn-bar {
  173. position: relative;
  174. display: flex;
  175. align-items: center;
  176. justify-content: flex-end;
  177. flex: 1;
  178. .check-btn {
  179. padding: 0;
  180. display: inline-block;
  181. line-height: initial;
  182. font-size: 24rpx;
  183. height: 54rpx;
  184. width: 144rpx;
  185. border: 3rpx solid #EE5B20;
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. color: #EE5B20;
  190. background-color: white;
  191. border-radius: 100rpx;
  192. &:after {
  193. display: none;
  194. }
  195. }
  196. .check-btn.cancel {
  197. border-color: #4F4F4F;
  198. color: #4F4F4F;
  199. }
  200. }
  201. }
  202. }
  203. .task-popup-content {
  204. position: relative;
  205. padding: 0 24rpx;
  206. .title {
  207. color: #8E8E93;
  208. font-size: 28rpx;
  209. margin-bottom: 38rpx;
  210. text-align: center;
  211. }
  212. .popup-btn::after {
  213. display: none;
  214. }
  215. .popup-argument-bar {
  216. position: relative;
  217. margin-bottom: 24rpx;
  218. .argument-input {
  219. border: 2rpx solid #cbcbcb;
  220. border-radius: 8rpx;
  221. line-height: initial;
  222. font-size: 26rpx;
  223. padding: 20rpx;
  224. width: 100%;
  225. }
  226. }
  227. .popup-btn-bar {
  228. position: relative;
  229. .c1 {
  230. background-color: #554D84;
  231. }
  232. .c2 {
  233. background-color: #EE5B20;
  234. }
  235. .c3 {
  236. background-color: #BFBFBF;
  237. }
  238. .c4 {
  239. background-color: #81B337;
  240. }
  241. }
  242. .popup-btn-bar + .popup-btn-bar {
  243. margin-top: 24rpx;
  244. }
  245. }
  246. }