style.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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-mask.show {
  14. visibility: visible;
  15. opacity: 1;
  16. }
  17. .tki-tree-cnt {
  18. position: fixed;
  19. height: 400rpx;
  20. /* top: 0rpx; */
  21. right: 0rpx;
  22. bottom: -400rpx;
  23. left: 0rpx;
  24. z-index: 9999;
  25. /* top: 1044rpx; */
  26. bottom: 0rpx;
  27. transition: all 0.3s ease;
  28. transform: translateY(100%);
  29. }
  30. .tki-tree-cnt.show {
  31. transform: translateY(0%);
  32. }
  33. .tki-tree-bar {
  34. background-color: #fff;
  35. height: 72rpx;
  36. padding-left: 20rpx;
  37. padding-right: 20rpx;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. box-sizing: border-box;
  42. border-bottom-width: 1rpx !important;
  43. border-bottom-style: solid;
  44. border-bottom-color: #f5f5f5;
  45. font-size: 32rpx;
  46. color: #757575;
  47. line-height: 1;
  48. }
  49. .tki-tree-bar-confirm {
  50. color: #07bb07;
  51. }
  52. .tki-tree-view {
  53. position: absolute;
  54. top: 0rpx;
  55. right: 0rpx;
  56. bottom: 0rpx;
  57. left: 0rpx;
  58. top: 72rpx;
  59. background-color: rgba(255, 255, 255, 0.7);
  60. padding-top: 20rpx;
  61. padding-right: 20rpx;
  62. padding-bottom: 20rpx;
  63. padding-left: 20rpx;
  64. }
  65. .tki-tree-view-sc {
  66. height: 100%;
  67. overflow: hidden;
  68. }
  69. .tki-tree-item {
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: center;
  73. font-size: 26rpx;
  74. color: #333333;
  75. line-height: 1;
  76. height: 0;
  77. opacity: 0;
  78. transition: 0.2s;
  79. position: relative;
  80. overflow: hidden;
  81. /* font-weight: bold; */
  82. }
  83. .tki-tree-item.show {
  84. height: 80rpx;
  85. opacity: 1;
  86. }
  87. .tki-tree-item.showchild:before {
  88. transform: rotate(90deg);
  89. }
  90. .tki-tree-item.last:before {
  91. opacity: 0;
  92. }
  93. .tki-tree-icon {
  94. width: 26rpx;
  95. height: 26rpx;
  96. margin-right: 8rpx;
  97. }
  98. .tki-tree-label {
  99. flex: 1;
  100. display: flex;
  101. align-items: center;
  102. height: 100%;
  103. line-height: 1.2;
  104. }
  105. .tki-tree-check {
  106. width: 40px;
  107. height: 40px;
  108. display: flex;
  109. justify-content: center;
  110. align-items: center;
  111. }
  112. .tki-tree-check-yes,
  113. .tki-tree-check-no {
  114. width: 35rpx;
  115. height: 35rpx;
  116. border-top-left-radius: 20%;
  117. border-top-right-radius: 20%;
  118. border-bottom-right-radius: 20%;
  119. border-bottom-left-radius: 20%;
  120. border-top-width: 1rpx;
  121. border-left-width: 1rpx;
  122. border-bottom-width: 1rpx;
  123. border-right-width: 1rpx;
  124. border-style: solid;
  125. border-color: #7FB5FF;
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. box-sizing: border-box;
  130. }
  131. .tki-tree-check-yes-b {
  132. width: 20rpx;
  133. height: 20rpx;
  134. border-top-left-radius: 20%;
  135. border-top-right-radius: 20%;
  136. border-bottom-right-radius: 20%;
  137. border-bottom-left-radius: 20%;
  138. background-color: #E4A439;
  139. }
  140. .tki-tree-check .radio {
  141. border-top-left-radius: 50%;
  142. border-top-right-radius: 50%;
  143. border-bottom-right-radius: 50%;
  144. border-bottom-left-radius: 50%;
  145. }
  146. .tki-tree-check .radio .tki-tree-check-yes-b {
  147. border-top-left-radius: 50%;
  148. border-top-right-radius: 50%;
  149. border-bottom-right-radius: 50%;
  150. border-bottom-left-radius: 50%;
  151. }
  152. .hover-c {
  153. opacity: 0.6;
  154. }
  155. .custom-style0 {
  156. box-shadow: 0px 2rpx 13rpx 0rpx rgba(27, 43, 95, 0.25);
  157. border-radius: 23rpx !important;
  158. font-size: 28rpx;
  159. font-weight: bold;
  160. color: #FFFFFF !important;
  161. margin: 33rpx 0 44rpx;
  162. }
  163. .timeBtn {
  164. width: 99rpx;
  165. height: 45rpx;
  166. font-size: 24rpx !important;
  167. background: linear-gradient(0deg, #F59A02 0%, #FFD334 100%);
  168. border: none;
  169. margin: 0 29rpx;
  170. }
  171. .time-top {
  172. height: 72rpx;
  173. background: #7FB5FF;
  174. border-radius: 33rpx 33rpx 0px 0px;
  175. display: flex;
  176. justify-content: space-between;
  177. align-items: center;
  178. /*
  179. uni-image {
  180. margin-right: 37rpx;
  181. } */
  182. }
  183. .time-top>uni-text {
  184. margin-left: 37rpx !important;
  185. font-size: 28rpx !important;
  186. font-weight: bold !important;
  187. color: #FFFFFF !important;
  188. }
  189. .text-box {
  190. width: 90%;
  191. height: 80rpx;
  192. line-height: 80rpx;
  193. border-radius: 28rpx;
  194. }
  195. .text-box span {
  196. margin-left: 20rpx !important;
  197. }
  198. .ml20 {
  199. margin-left: 20rpx;
  200. }
  201. .text-active {
  202. font-weight: bold;
  203. background: rgba(127, 181, 255, 0.4);
  204. }
  205. .circle-no-active {
  206. border-radius: 50%;
  207. width: 35rpx;
  208. height: 35rpx;
  209. border: 2rpx solid #7FB5FF;
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. }
  214. .circle-active {
  215. border-radius: 50%;
  216. width: 20rpx;
  217. height: 20rpx;
  218. background-color: #E4A439;
  219. }