index.scss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. .hc-task-page {
  2. :deep(.task-nav-bar) {
  3. background: #554D84;
  4. color: white;
  5. }
  6. .task-nav-bar {
  7. position: relative;
  8. display: flex;
  9. align-items: center;
  10. padding: .6rem .9rem;
  11. padding-top: calc(var(--status-bar-height) + 20rpx);
  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. .controls-bar {
  62. position: relative;
  63. display: flex;
  64. align-items: center;
  65. background: white;
  66. font-size: 44rpx;
  67. padding: .4rem .9rem;
  68. .left, .right {
  69. position: relative;
  70. flex: 1;
  71. display: flex;
  72. align-items: center;
  73. color: #4095E5;
  74. .icon + .icon {
  75. margin-left: 20rpx;
  76. }
  77. .icon.cur {
  78. color: #554D84;
  79. }
  80. }
  81. .right {
  82. justify-content: flex-end;
  83. }
  84. }
  85. .controls-filter {
  86. position: relative;
  87. font-size: 26rpx;
  88. display: flex;
  89. align-items: center;
  90. padding: .4rem .9rem;
  91. border-top: 1px solid #f3f3f3;
  92. background: white;
  93. .search-form-date {
  94. position: relative;
  95. margin-right: 20rpx;
  96. flex: 1;
  97. :deep(.search-date-input) {
  98. border: 2rpx solid #e5e5e5;
  99. box-sizing: border-box;
  100. border-radius: 8rpx;
  101. padding: 0 20rpx;
  102. position: relative;
  103. display: flex;
  104. align-items: center;
  105. width: 100%;
  106. height: 60rpx;
  107. div {
  108. flex: 1;
  109. }
  110. }
  111. .content {
  112. position: relative;
  113. display: flex;
  114. align-items: center;
  115. width: 100%;
  116. .text {
  117. flex: 1;
  118. }
  119. }
  120. }
  121. .search-form-btn {
  122. margin-left: 20rpx;
  123. }
  124. }
  125. }
  126. :deep(.uni-card) {
  127. &.is-check {
  128. box-shadow: #EE5B20 0 0 6rpx 2rpx !important;
  129. }
  130. .item-icon-check {
  131. margin-right: 10rpx;
  132. display: flex;
  133. align-items: center;
  134. }
  135. }
  136. .show-check-tabbars {
  137. position: relative;
  138. display: flex;
  139. align-items: flex-end;
  140. .check-bar {
  141. font-size: 24rpx;
  142. margin-right: 50rpx;
  143. .check-box {
  144. position: relative;
  145. display: flex;
  146. align-items: center;
  147. .text {
  148. margin-right: 10rpx;
  149. }
  150. }
  151. .text-box {
  152. margin-top: 10rpx;
  153. }
  154. }
  155. .btn-bar {
  156. position: relative;
  157. display: flex;
  158. align-items: center;
  159. justify-content: flex-end;
  160. flex: 1;
  161. .check-btn {
  162. padding: 0;
  163. display: inline-block;
  164. line-height: initial;
  165. font-size: 24rpx;
  166. height: 54rpx;
  167. width: 144rpx;
  168. border: 3rpx solid #EE5B20;
  169. display: flex;
  170. align-items: center;
  171. justify-content: center;
  172. color: #EE5B20;
  173. background-color: white;
  174. border-radius: 100rpx;
  175. &:after {
  176. display: none;
  177. }
  178. }
  179. .check-btn.cancel {
  180. border-color: #4F4F4F;
  181. color: #4F4F4F;
  182. }
  183. }
  184. }
  185. .task-popup-content {
  186. position: relative;
  187. padding: 0 24rpx;
  188. .title {
  189. color: #8E8E93;
  190. font-size: 28rpx;
  191. margin-bottom: 38rpx;
  192. text-align: center;
  193. }
  194. .popup-btn::after {
  195. display: none;
  196. }
  197. .popup-argument-bar {
  198. position: relative;
  199. margin-bottom: 24rpx;
  200. .argument-input {
  201. border: 2rpx solid #cbcbcb;
  202. border-radius: 8rpx;
  203. line-height: initial;
  204. font-size: 26rpx;
  205. padding: 20rpx;
  206. width: 100%;
  207. }
  208. }
  209. .popup-btn-bar {
  210. position: relative;
  211. .c1 {
  212. background-color: #554D84;
  213. }
  214. .c2 {
  215. background-color: #EE5B20;
  216. }
  217. .c3 {
  218. background-color: #BFBFBF;
  219. }
  220. .c4 {
  221. background-color: #81B337;
  222. }
  223. }
  224. .popup-btn-bar + .popup-btn-bar {
  225. margin-top: 24rpx;
  226. }
  227. }
  228. }