ba-tree-picker.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. .tree-cover.data-v-6e9e5013 {
  2. position: fixed;
  3. top: 0rpx;
  4. right: 0rpx;
  5. bottom: 0rpx;
  6. left: 0rpx;
  7. z-index: 100;
  8. background-color: rgba(0, 0, 0, .4);
  9. opacity: 0;
  10. transition: all 0.3s ease;
  11. visibility: hidden;
  12. }
  13. .tree-cover.show.data-v-6e9e5013 {
  14. visibility: visible;
  15. opacity: 1;
  16. }
  17. .tree-dialog.data-v-6e9e5013 {
  18. position: fixed;
  19. top: 0rpx;
  20. right: 0rpx;
  21. bottom: 0rpx;
  22. left: 0rpx;
  23. background-color: #fff;
  24. border-top-left-radius: 10px;
  25. border-top-right-radius: 10px;
  26. display: flex;
  27. flex-direction: column;
  28. z-index: 102;
  29. top: 20%;
  30. transition: all 0.3s ease;
  31. transform: translateY(100%);
  32. }
  33. .tree-dialog.show.data-v-6e9e5013 {
  34. transform: translateY(0);
  35. }
  36. .tree-bar.data-v-6e9e5013 {
  37. /* background-color: #fff; */
  38. height: 90rpx;
  39. padding-left: 25rpx;
  40. padding-right: 25rpx;
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. box-sizing: border-box;
  45. border-bottom-width: 1rpx !important;
  46. border-bottom-style: solid;
  47. border-bottom-color: #f5f5f5;
  48. font-size: 32rpx;
  49. color: #757575;
  50. line-height: 1;
  51. }
  52. .tree-bar-confirm.data-v-6e9e5013 {
  53. color: #0055ff;
  54. padding: 15rpx;
  55. }
  56. .tree-bar-title.data-v-6e9e5013 {}
  57. .tree-bar-cancel.data-v-6e9e5013 {
  58. color: #757575;
  59. padding: 15rpx;
  60. }
  61. .tree-view.data-v-6e9e5013 {
  62. flex: 1;
  63. padding: 20rpx;
  64. display: flex;
  65. flex-direction: column;
  66. overflow: hidden;
  67. height: 100%;
  68. }
  69. .tree-list.data-v-6e9e5013 {
  70. flex: 1;
  71. height: 100%;
  72. overflow: hidden;
  73. }
  74. .tree-item.data-v-6e9e5013 {
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. line-height: 1;
  79. height: 0;
  80. opacity: 0;
  81. transition: 0.2s;
  82. overflow: hidden;
  83. }
  84. .tree-item.show.data-v-6e9e5013 {
  85. height: 90rpx;
  86. opacity: 1;
  87. }
  88. .tree-item.showchild.data-v-6e9e5013:before {
  89. transform: rotate(90deg);
  90. }
  91. .tree-item.last.data-v-6e9e5013:before {
  92. opacity: 0;
  93. }
  94. .switch-on.data-v-6e9e5013 {
  95. width: 0;
  96. height: 0;
  97. border-left: 10rpx solid transparent;
  98. border-right: 10rpx solid transparent;
  99. border-top: 15rpx solid #666;
  100. }
  101. .switch-off.data-v-6e9e5013 {
  102. width: 0;
  103. height: 0;
  104. border-bottom: 10rpx solid transparent;
  105. border-top: 10rpx solid transparent;
  106. border-left: 15rpx solid #666;
  107. }
  108. .item-last-dot.data-v-6e9e5013 {
  109. position: absolute;
  110. width: 10rpx;
  111. height: 10rpx;
  112. border-radius: 100%;
  113. background: #666;
  114. }
  115. .item-icon.data-v-6e9e5013 {
  116. width: 26rpx;
  117. height: 26rpx;
  118. margin-right: 8rpx;
  119. padding-right: 20rpx;
  120. padding-left: 20rpx;
  121. }
  122. .item-label.data-v-6e9e5013 {
  123. flex: 1;
  124. display: flex;
  125. align-items: center;
  126. height: 100%;
  127. line-height: 1.2;
  128. }
  129. .item-name.data-v-6e9e5013 {
  130. flex: 1;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. white-space: nowrap;
  134. /*width: 450rpx;*/
  135. }
  136. .item-check.data-v-6e9e5013 {
  137. width: 40px;
  138. height: 40px;
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. }
  143. .item-check-yes.data-v-6e9e5013,
  144. .item-check-no.data-v-6e9e5013 {
  145. width: 20px;
  146. height: 20px;
  147. border-top-left-radius: 20%;
  148. border-top-right-radius: 20%;
  149. border-bottom-right-radius: 20%;
  150. border-bottom-left-radius: 20%;
  151. border-top-width: 1rpx;
  152. border-left-width: 1rpx;
  153. border-bottom-width: 1rpx;
  154. border-right-width: 1rpx;
  155. border-style: solid;
  156. border-color: #0055ff;
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. box-sizing: border-box;
  161. }
  162. .item-check-yes-part.data-v-6e9e5013 {
  163. width: 12px;
  164. height: 12px;
  165. border-top-left-radius: 20%;
  166. border-top-right-radius: 20%;
  167. border-bottom-right-radius: 20%;
  168. border-bottom-left-radius: 20%;
  169. background-color: #0055ff;
  170. }
  171. .item-check-yes-all.data-v-6e9e5013 {
  172. margin-bottom: 5px;
  173. border: 2px solid #007aff;
  174. border-left: 0;
  175. border-top: 0;
  176. height: 12px;
  177. width: 6px;
  178. transform-origin: center;
  179. transition: all 0.3s;
  180. transform: rotate(45deg);
  181. }
  182. .item-check .radio.data-v-6e9e5013 {
  183. border-top-left-radius: 50%;
  184. border-top-right-radius: 50%;
  185. border-bottom-right-radius: 50%;
  186. border-bottom-left-radius: 50%;
  187. }
  188. .item-check .radio .item-check-yes-b.data-v-6e9e5013 {
  189. border-top-left-radius: 50%;
  190. border-top-right-radius: 50%;
  191. border-bottom-right-radius: 50%;
  192. border-bottom-left-radius: 50%;
  193. }
  194. .hover-c.data-v-6e9e5013 {
  195. opacity: 0.6;
  196. }
  197. .itemBorder.data-v-6e9e5013 {
  198. border-bottom: 1px solid #e5e5e5;
  199. }