style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .tki-tree-mask {
  2. /* position: fixed;
  3. top: 0rpx;
  4. right: 0rpx;
  5. bottom: 0rpx;
  6. left: 0rpx;
  7. z-index: 9998;
  8. background-color: rgba(0, 0, 0, 0.6);
  9. opacity: 0;
  10. transition: all 0.3s ease;
  11. visibility: hidden; */
  12. }
  13. .tki-tree{padding-bottom: 100rpx;}
  14. .tki-tree-mask.show {
  15. visibility: visible;
  16. opacity: 1;
  17. }
  18. .tki-tree-cnt {
  19. /* position: fixed;
  20. top: 0rpx;
  21. right: 0rpx;
  22. bottom: 0rpx;
  23. left: 0rpx;
  24. z-index: 9999;
  25. top: 160rpx;
  26. transition: all 0.3s ease;
  27. transform: translateY(100%); */
  28. }
  29. .data_no{
  30. text-align: center;
  31. font-size: 30upx;
  32. color: #999;
  33. margin-top: 20upx;
  34. }
  35. .tki-tree-cnt.show {
  36. transform: translateY(0);
  37. }
  38. .tki-tree-bar {
  39. background-color: #fff;
  40. height: 72rpx;
  41. padding-left: 20rpx;
  42. padding-right: 20rpx;
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. box-sizing: border-box;
  47. border-bottom-width: 1rpx !important;
  48. border-bottom-style: solid;
  49. border-bottom-color: #f5f5f5;
  50. font-size: 32rpx;
  51. color: #757575;
  52. line-height: 1;
  53. }
  54. .tki-tree-bar-confirm {
  55. color: #07bb07;
  56. }
  57. .tki-tree-confirm{position: fixed;left: 0;right: 0;bottom: 0;z-index: 100;height: 88rpx;background: #327DF2;font-size: 30rpx;color: #FFFFFF;display: flex;align-items: center;justify-content: center;}
  58. .tki-tree-view {
  59. /* position: absolute;
  60. top: 0rpx;
  61. right: 0rpx;
  62. bottom: 0rpx;
  63. left: 0rpx;
  64. top: 72rpx; */
  65. background-color: #fff;
  66. padding-top: 20rpx;
  67. padding-right: 20rpx;
  68. padding-bottom: 20rpx;
  69. padding-left: 20rpx;
  70. }
  71. .tki-tree-view-sc {
  72. height: 100%;
  73. overflow: hidden;
  74. }
  75. .tki-tree-item {
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. font-size: 26rpx;
  80. color: #757575;
  81. line-height: 1;
  82. height: 0;
  83. opacity: 0;
  84. transition: 0.2s;
  85. position: relative;
  86. overflow: hidden;
  87. }
  88. .tki-tree-item.show {
  89. height: 80rpx;
  90. opacity: 1;
  91. }
  92. .tki-tree-item.showchild:before {
  93. transform: rotate(90deg);
  94. }
  95. .tki-tree-item.last:before {
  96. opacity: 0;
  97. }
  98. .tki-tree-icon {
  99. width: 26rpx;
  100. height: 26rpx;
  101. margin-right: 8rpx;
  102. }
  103. .tki-tree-label {
  104. flex: 1;
  105. display: flex;
  106. align-items: center;
  107. height: 100%;
  108. line-height: 1.2;
  109. }
  110. .tki-tree-check {
  111. width: 40px;
  112. height: 40px;
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. }
  117. .tki-tree-check-yes,
  118. .tki-tree-check-no {
  119. width: 20px;
  120. height: 20px;
  121. border-top-left-radius: 20%;
  122. border-top-right-radius: 20%;
  123. border-bottom-right-radius: 20%;
  124. border-bottom-left-radius: 20%;
  125. border-top-width: 1rpx;
  126. border-left-width: 1rpx;
  127. border-bottom-width: 1rpx;
  128. border-right-width: 1rpx;
  129. border-style: solid;
  130. border-color: #07bb07;
  131. display: flex;
  132. justify-content: center;
  133. align-items: center;
  134. box-sizing: border-box;
  135. }
  136. .tki-tree-check-yes-b {
  137. width: 12px;
  138. height: 12px;
  139. border-top-left-radius: 20%;
  140. border-top-right-radius: 20%;
  141. border-bottom-right-radius: 20%;
  142. border-bottom-left-radius: 20%;
  143. background-color: #07bb07;
  144. }
  145. .tki-tree-check .radio {
  146. border-top-left-radius: 50%;
  147. border-top-right-radius: 50%;
  148. border-bottom-right-radius: 50%;
  149. border-bottom-left-radius: 50%;
  150. }
  151. .tki-tree-check .radio .tki-tree-check-yes-b {
  152. border-top-left-radius: 50%;
  153. border-top-right-radius: 50%;
  154. border-bottom-right-radius: 50%;
  155. border-bottom-left-radius: 50%;
  156. }
  157. .hover-c {
  158. opacity: 0.6;
  159. }