tui-modal.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. .tui-modal__container.data-v-6ccfff18 {
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. left: 0;
  6. top: 0;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. visibility: hidden;
  11. }
  12. .tui-modal-box.data-v-6ccfff18 {
  13. position: relative;
  14. opacity: 0;
  15. visibility: hidden;
  16. box-sizing: border-box;
  17. transition: all 0.3s ease-in-out;
  18. }
  19. .tui-modal-scale.data-v-6ccfff18 {
  20. -webkit-transform: scale(0);
  21. transform: scale(0);
  22. }
  23. .tui-modal-normal.data-v-6ccfff18 {
  24. -webkit-transform: scale(1);
  25. transform: scale(1);
  26. }
  27. .tui-modal-show.data-v-6ccfff18 {
  28. opacity: 1;
  29. visibility: visible;
  30. }
  31. .tui-modal-mask.data-v-6ccfff18 {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. right: 0;
  36. bottom: 0;
  37. background-color: rgba(0, 0, 0, 0.6);
  38. transition: all 0.3s ease-in-out;
  39. opacity: 0;
  40. visibility: hidden;
  41. }
  42. .tui-mask-show.data-v-6ccfff18 {
  43. visibility: visible;
  44. opacity: 1;
  45. }
  46. .tui-modal-title.data-v-6ccfff18 {
  47. text-align: center;
  48. font-size: 34rpx;
  49. color: #333;
  50. padding-top: 20rpx;
  51. font-weight: bold;
  52. }
  53. .tui-modal-content.data-v-6ccfff18 {
  54. text-align: center;
  55. color: #999;
  56. font-size: 28rpx;
  57. padding-top: 20rpx;
  58. padding-bottom: 60rpx;
  59. }
  60. .tui-mtop.data-v-6ccfff18 {
  61. margin-top: 30rpx;
  62. }
  63. .tui-mbtm.data-v-6ccfff18 {
  64. margin-bottom: 30rpx;
  65. }
  66. .tui-modalBtn-box.data-v-6ccfff18 {
  67. width: 100%;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. }
  72. .tui-flex-column.data-v-6ccfff18 {
  73. flex-direction: column;
  74. }
  75. .tui-modal-btn.data-v-6ccfff18 {
  76. width: 46%;
  77. height: 68rpx;
  78. line-height: 68rpx;
  79. position: relative;
  80. border-radius: 10rpx;
  81. font-size: 26rpx;
  82. overflow: visible;
  83. margin-left: 0;
  84. margin-right: 0;
  85. box-sizing: border-box;
  86. }
  87. .tui-modal-btn.data-v-6ccfff18::after {
  88. content: ' ';
  89. position: absolute;
  90. width: 200%;
  91. height: 200%;
  92. -webkit-transform-origin: 0 0;
  93. transform-origin: 0 0;
  94. -webkit-transform: scale(0.5, 0.5) translateZ(0);
  95. transform: scale(0.5, 0.5) translateZ(0);
  96. left: 0;
  97. top: 0;
  98. border-radius: 20rpx;
  99. z-index: 2;
  100. }
  101. .tui-btn-width.data-v-6ccfff18 {
  102. width: 80% !important;
  103. }
  104. .tui-primary.data-v-6ccfff18 {
  105. background: #5677fc;
  106. color: #fff;
  107. }
  108. .tui-primary-hover.data-v-6ccfff18 {
  109. background: #4a67d6;
  110. color: #e5e5e5;
  111. }
  112. .tui-primary-outline.data-v-6ccfff18 {
  113. color: #5677fc;
  114. background: transparent;
  115. }
  116. .tui-primary-outline.data-v-6ccfff18::after {
  117. border: 1px solid #5677fc;
  118. }
  119. .tui-danger.data-v-6ccfff18 {
  120. background: #ed3f14;
  121. color: #fff;
  122. }
  123. .tui-danger-hover.data-v-6ccfff18 {
  124. background: #d53912;
  125. color: #e5e5e5;
  126. }
  127. .tui-danger-outline.data-v-6ccfff18 {
  128. color: #ed3f14;
  129. background: transparent;
  130. }
  131. .tui-danger-outline.data-v-6ccfff18::after {
  132. border: 1px solid #ed3f14;
  133. }
  134. .tui-red.data-v-6ccfff18 {
  135. background: #e41f19;
  136. color: #fff;
  137. }
  138. .tui-red-hover.data-v-6ccfff18 {
  139. background: #c51a15;
  140. color: #e5e5e5;
  141. }
  142. .tui-red-outline.data-v-6ccfff18 {
  143. color: #e41f19;
  144. background: transparent;
  145. }
  146. .tui-red-outline.data-v-6ccfff18::after {
  147. border: 1px solid #e41f19;
  148. }
  149. .tui-warning.data-v-6ccfff18 {
  150. background: #ff7900;
  151. color: #fff;
  152. }
  153. .tui-warning-hover.data-v-6ccfff18 {
  154. background: #e56d00;
  155. color: #e5e5e5;
  156. }
  157. .tui-warning-outline.data-v-6ccfff18 {
  158. color: #ff7900;
  159. background: transparent;
  160. }
  161. .tui-warning-outline.data-v-6ccfff18::after {
  162. border: 1px solid #ff7900;
  163. }
  164. .tui-green.data-v-6ccfff18 {
  165. background: #19be6b;
  166. color: #fff;
  167. }
  168. .tui-green-hover.data-v-6ccfff18 {
  169. background: #16ab60;
  170. color: #e5e5e5;
  171. }
  172. .tui-green-outline.data-v-6ccfff18 {
  173. color: #19be6b;
  174. background: transparent;
  175. }
  176. .tui-green-outline.data-v-6ccfff18::after {
  177. border: 1px solid #19be6b;
  178. }
  179. .tui-white.data-v-6ccfff18 {
  180. background: #fff;
  181. color: #333;
  182. }
  183. .tui-white-hover.data-v-6ccfff18 {
  184. background: #f7f7f9;
  185. color: #666;
  186. }
  187. .tui-white-outline.data-v-6ccfff18 {
  188. color: #333;
  189. background: transparent;
  190. }
  191. .tui-white-outline.data-v-6ccfff18::after {
  192. border: 1px solid #333;
  193. }
  194. .tui-gray.data-v-6ccfff18 {
  195. background: #ededed;
  196. color: #999;
  197. }
  198. .tui-gray-hover.data-v-6ccfff18 {
  199. background: #d5d5d5;
  200. color: #898989;
  201. }
  202. .tui-gray-outline.data-v-6ccfff18 {
  203. color: #999;
  204. background: transparent;
  205. }
  206. .tui-gray-outline.data-v-6ccfff18::after {
  207. border: 1px solid #999;
  208. }
  209. .tui-outline-hover.data-v-6ccfff18 {
  210. opacity: 0.6;
  211. }
  212. .tui-circle-btn.data-v-6ccfff18 {
  213. border-radius: 40rpx !important;
  214. }
  215. .tui-circle-btn.data-v-6ccfff18::after {
  216. border-radius: 80rpx !important;
  217. }