vvmInfo.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. .worker_search {
  2. width: 100%rpx;
  3. height: 110rpx;
  4. /* margin: -70rpx auto auto auto; */
  5. position: relative;
  6. z-index: 1;
  7. padding: 16rpx 30rpx 0 30rpx;
  8. box-sizing: border-box;
  9. box-shadow: 0 4rpx 16rpx 0 rgba(0, 0, 0, 0.03);
  10. border-radius: 20rpx;
  11. background: #ffffff;
  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. .list{
  40. display: flex;
  41. border-bottom: 5rpx solid #f8f8f8;
  42. margin-bottom: 20rpx;
  43. overflow: hidden;
  44. border-radius: 12rpx;
  45. }
  46. .list >.listInfo>view{
  47. padding: 10rpx 30rpx;
  48. }
  49. .list > .listInfo >view text{
  50. color: #666666;
  51. }
  52. .scrollText{
  53. display: flex;
  54. }
  55. .edit,.del{
  56. padding: 50% 0;
  57. flex-grow: 0;
  58. color: #fff;
  59. width: 120rpx;
  60. line-height: 120rpx;
  61. text-align: center;
  62. }
  63. .del{
  64. background-color: #fe3e2f;
  65. }
  66. .edit{
  67. background-color:var(--color);
  68. }
  69. .list .listInfo{
  70. flex-grow: 1;
  71. width: 100%;
  72. justify-content: space-between;
  73. margin-left: -120rpx;
  74. background-color: #fff;
  75. }
  76. .code{
  77. display: flex;
  78. word-break: break-all;
  79. align-items: center;
  80. border-bottom: 2.5rpx solid #F5F5F5;
  81. }
  82. .list .listInfo,.list .del,.list .edit{
  83. transform: translateX(120rpx);
  84. transition: all 0.4s;
  85. }
  86. .touch-move-active .listInfo, .touch-move-active .del, .touch-move-active .edit {
  87. -webkit-transform: translateX(0);
  88. transform: translateX(0);
  89. }
  90. .zan-dialog__mask {
  91. position: fixed;
  92. top: 0;
  93. left: 0;
  94. right: 0;
  95. bottom: 0;
  96. z-index: 10;
  97. background: rgba(0, 0, 0, .3); /*设置阴影半透明背景如: background: rgba(0, 0, 0, 0.4);*/
  98. display: none;
  99. }
  100. .zan-dialog__container {
  101. position: fixed;
  102. bottom: 0rpx;
  103. width: 100%;
  104. /* height: 350rpx; */
  105. background: #fff;
  106. transform: translateY(300%);
  107. transition: all 0.4s ease;
  108. z-index: 12;
  109. z-index: 12;
  110. box-shadow: 0px 3px 3px 2px gainsboro; /*弹框的悬浮阴影效果,如不需要可注释该行*/
  111. }
  112. .zan-dialog--show .zan-dialog__container {
  113. transform: translateY(0);
  114. }
  115. .zan-dialog--show .zan-dialog__mask {
  116. display: block;
  117. }
  118. .cha_win_tit {
  119. text-align: center;
  120. line-height: 100rpx;
  121. font-size: 32rpx;
  122. color: #333333;
  123. }
  124. .selectInfo{
  125. height: 100%;
  126. display: flex;
  127. justify-content: space-around;
  128. align-items: center;
  129. }
  130. .selectInfo>view{
  131. text-align: center;
  132. }
  133. .selectInfo image{
  134. width: 70rpx;
  135. height: 70rpx;
  136. }
  137. .cha_win_close {
  138. text-align: center;
  139. color: #999999;
  140. font-size: 50rpx;
  141. font-weight: 100;
  142. line-height: 120rpx;
  143. }
  144. .mainLabel{
  145. background: #2D59E6;
  146. color: #fff;
  147. padding: 10rpx 30rpx;
  148. display: block;
  149. width: 10%;
  150. text-align: center;
  151. height: 25rpx;
  152. line-height: 11rpx;
  153. font-size: 22rpx;
  154. }
  155. .flexBox{
  156. display: flex;
  157. justify-content: space-between;
  158. align-items: center;
  159. }