tempList.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. .worker_search {
  2. width: 100%;
  3. height: 110rpx;
  4. position: relative;
  5. z-index: 1;
  6. padding: 16rpx 30rpx 0 30rpx;
  7. box-sizing: border-box;
  8. box-shadow: 0 4rpx 16rpx 0 rgba(0, 0, 0, 0.03);
  9. border-radius: 20rpx;
  10. background: #ffffff;
  11. margin-bottom: 22rpx;
  12. }
  13. .worker_search_con {
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. padding: 0 30rpx;
  18. border-radius: 80rpx;
  19. background: #F2F5F9;
  20. }
  21. .worker_search_con input {
  22. flex: auto;
  23. width: 100%;
  24. background: none;
  25. border: none;
  26. height: 78rpx;
  27. }
  28. .worker_search_con view {
  29. flex: none;
  30. width: 100rpx;
  31. display: inline-block;
  32. line-height: 60rpx;
  33. font-size: 26rpx;
  34. }
  35. .worker_search_con view text {
  36. margin-right: 10rpx;
  37. font-size: 30rpx;
  38. }
  39. .query_list {
  40. padding: 20rpx 20rpx 100rpx 20rpx;
  41. }
  42. .query_item {
  43. display: flex;
  44. background-color: #ffffff;
  45. line-height: 34rpx;
  46. color: #333333;
  47. font-size: 24rpx;
  48. border-radius: 16rpx;
  49. position: relative;
  50. margin-bottom: 20rpx;
  51. padding: 0 22rpx;
  52. }
  53. .query_item_txt {
  54. padding: 20rpx 0;
  55. }
  56. .query_item_label {
  57. color: #999999;
  58. }
  59. .query_zc {
  60. color: #18BC33;
  61. }
  62. .query_jb {
  63. color: #F58329;
  64. }
  65. .query_wx {
  66. color: #F22424;
  67. }
  68. .query_btn {
  69. border-radius: 100rpx;
  70. width: 158rpx;
  71. height: 58rpx;
  72. line-height: 58rpx;
  73. color: var(--color);
  74. text-align: center;
  75. font-size: 24rpx;
  76. position: absolute;
  77. bottom: 20rpx;
  78. right: 22rpx;
  79. background: rgba(45, 89, 230, 0.15);
  80. }
  81. .querLabel{
  82. display: flex;
  83. background: #fff;
  84. padding: 22rpx;
  85. border-bottom: 2.5rpx solid #f5f5f5;
  86. justify-content: space-between;
  87. flex-direction: column;
  88. }
  89. .querLabel>text{
  90. color: #000;
  91. font-size: 32rpx;
  92. }
  93. .querLabel > view{
  94. position: relative;
  95. }
  96. .querLabel image{
  97. width: 45rpx;
  98. height: 45rpx;
  99. }
  100. .querLabel .label{
  101. display: flex;
  102. }
  103. .querLabel .status{
  104. display: none;
  105. width: 100%;
  106. position: absolute;
  107. top: 34rpx;
  108. z-index: 99;
  109. background: #fff;
  110. }
  111. .addLabel{
  112. text-align: center;
  113. padding: 30rpx;
  114. position: fixed;
  115. bottom: 0;
  116. width: 100%;
  117. background-color: var(--color);
  118. color: #fff;
  119. }
  120. .scrollText{
  121. display: flex;
  122. }
  123. .edit,.del{
  124. flex-grow: 0;
  125. color: #fff;
  126. width: 170rpx;
  127. line-height: 80rpx;
  128. text-align: center;
  129. }
  130. .del{
  131. background-color: #fe3e2f;
  132. }
  133. .edit{
  134. background-color: var(--color);
  135. }
  136. .query_item .info{
  137. flex-grow: 1;
  138. width: 100%;
  139. margin-left: -360rpx;
  140. background-color: #fff;
  141. }
  142. .query_item .info ,.query_item .del,.query_item .edit{
  143. transform: translateX(370rpx);
  144. transition: all 0.4s;
  145. }
  146. .query_item .del,.query_item .edit{
  147. padding: 50% 0;
  148. }
  149. .touch-move-active .info,.touch-move-active .del,.touch-move-active .edit {
  150. -webkit-transform: translateX(0);
  151. transform: translateX(0);
  152. }
  153. .tabs{
  154. display: flex;
  155. justify-content: space-between;
  156. margin-top: 20rpx;
  157. padding: 0 0rpx;
  158. position: relative;
  159. z-index: 101;
  160. width: 100%;
  161. }
  162. .tabs > view{
  163. background: #F1F1F1;
  164. font-size: 24rpx;
  165. display: flex;
  166. align-items: center;
  167. cursor: pointer;
  168. justify-content: space-between;
  169. padding: 5rpx 20rpx;
  170. border-radius: 50rpx;
  171. margin-right: 40rpx;
  172. }
  173. .tabs > view > view{
  174. /* color: #333333; */
  175. }
  176. .tabs > view> image{
  177. width: 40rpx;
  178. height: 35rpx;
  179. }
  180. .selectTab{
  181. background:#F8F8F8;
  182. padding: 20rpx 30rpx;
  183. margin-top: 20rpx;
  184. position: relative;
  185. z-index: 101;
  186. }
  187. .tabText{
  188. display: flex;
  189. justify-content: space-between;
  190. color: #333333;
  191. }
  192. .tabBut{
  193. margin-top: 30rpx;
  194. text-align: center;
  195. display: flex;
  196. justify-content: center;
  197. }
  198. .tabBut .cancel{
  199. display: block;
  200. background: #FFF;
  201. width: 35%;
  202. padding: 20rpx;
  203. color: #1476FE;
  204. }
  205. .tabBut .query{
  206. display: block;
  207. background: #2D59E6;
  208. width: 35%;
  209. color: #FFF;
  210. padding: 20rpx;
  211. }
  212. .isActive{
  213. color: #2D59E6;
  214. }