childlist.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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: 20rpx;
  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. }
  88. .querLabel>text{
  89. color: #000;
  90. font-size: 32rpx;
  91. }
  92. .querLabel > view{
  93. position: relative;
  94. }
  95. .querLabel image{
  96. width: 45rpx;
  97. height: 45rpx;
  98. }
  99. .querLabel .label{
  100. display: flex;
  101. }
  102. .querLabel .status{
  103. display: none;
  104. width: 100%;
  105. position: absolute;
  106. top: 34rpx;
  107. z-index: 99;
  108. background: #fff;
  109. }
  110. .addLabel{
  111. text-align: center;
  112. padding: 30rpx;
  113. position: fixed;
  114. bottom: 0;
  115. width: 100%;
  116. background-color: var(--color);
  117. color: #fff;
  118. }
  119. .scrollText{
  120. display: flex;
  121. }
  122. .edit,.del{
  123. flex-grow: 0;
  124. color: #fff;
  125. width: 170rpx;
  126. line-height: 80rpx;
  127. text-align: center;
  128. }
  129. .del{
  130. background-color: #fe3e2f;
  131. }
  132. .edit{
  133. background-color: var(--color);
  134. }
  135. .query_item .info{
  136. flex-grow: 1;
  137. width: 100%;
  138. margin-left: -360rpx;
  139. background-color: #fff;
  140. }
  141. .query_item .info ,.query_item .del,.query_item .edit{
  142. transform: translateX(370rpx);
  143. transition: all 0.4s;
  144. }
  145. .query_item .del,.query_item .edit{
  146. padding: 50% 0;
  147. }
  148. .touch-move-active .info,.touch-move-active .del,.touch-move-active .edit {
  149. -webkit-transform: translateX(0);
  150. transform: translateX(0);
  151. }