index.scss 6.7 KB

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