vvmInfo.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. }
  45. .list >.listInfo>view{
  46. padding: 10rpx 0;
  47. }
  48. .list > .listInfo >view >text{
  49. color: #666666;
  50. }
  51. .scrollText{
  52. display: flex;
  53. }
  54. .edit,.del{
  55. padding: 50% 0;
  56. flex-grow: 0;
  57. color: #fff;
  58. width: 120rpx;
  59. line-height: 120rpx;
  60. text-align: center;
  61. }
  62. .del{
  63. background-color: #fe3e2f;
  64. }
  65. .edit{
  66. background-color:var(--color);
  67. }
  68. .list .listInfo{
  69. flex-grow: 1;
  70. width: 100%;
  71. justify-content: space-between;
  72. margin-left: -120rpx;
  73. background-color: #fff;
  74. padding: 0 30rpx;
  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. }