大数据平台的小程序版本

push.wxss 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /* components/push/push.wxss */
  2. /* 弹框 */
  3. .mask {
  4. width: 100vw;
  5. height: 100vh;
  6. background: rgba(0,0,0,.5);
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. z-index: 100;
  11. }
  12. .toast {
  13. width: 600rpx;
  14. height: 530rpx;
  15. border-radius: 12rpx;
  16. position: absolute;
  17. top: 48%;
  18. left: 50%;
  19. transform: translate(-50%,-50%);
  20. background: #fff;
  21. text-align: center;
  22. padding: 40rpx 56rpx 46rpx 44rpx;
  23. }
  24. .close {
  25. position: absolute;
  26. bottom: -100rpx;
  27. left: 0;
  28. right: 0;
  29. margin: auto;
  30. width: 60rpx;
  31. height: 60rpx;
  32. }
  33. .toast_text {
  34. position: absolute;
  35. top: 40%;
  36. left: 50%;
  37. line-height: 40rpx;
  38. text-align: center;
  39. background: rgba(0,0,0,.4);
  40. color: #fff;
  41. transform: translate(-50%,-50%);
  42. margin-top: -330rpx;
  43. width: 289rpx;
  44. height: auto;
  45. padding: 14rpx 0;
  46. }
  47. .load_type {
  48. display: inline-block;
  49. width: 50rpx;
  50. height: 50rpx;
  51. margin-left: 16rpx;
  52. }
  53. .text {
  54. display: inline-block;
  55. text-align: left;
  56. }
  57. .toast_title {
  58. color: #000000;
  59. font-size: 36rpx;
  60. line-height: 50rpx;
  61. font-weight: bold;
  62. margin-bottom: 50rpx;
  63. }
  64. .toast_box {
  65. margin-bottom: 28rpx;
  66. color: #000000;
  67. }
  68. .toast_box .icon {
  69. width: 28rpx;
  70. height: 28rpx;
  71. margin-left: 10rpx;
  72. }
  73. .plain {
  74. width: 167rpx;
  75. height: 60rpx;
  76. line-height: 56rpx;
  77. background: #fff;
  78. border: 2rpx solid #2562FF;
  79. color: #2562FF;
  80. margin: 0;
  81. padding: 0;
  82. font-size: 28rpx;
  83. }
  84. .flex {
  85. display: flex;
  86. justify-content: space-between;
  87. align-items: center;
  88. }
  89. .custom {
  90. flex: 1;
  91. height: 76rpx;
  92. line-height: 72rpx;
  93. padding: 18rpx 0;
  94. color: #333333;
  95. text-align: left;
  96. }
  97. .input_box {
  98. position: relative;
  99. display: flex;
  100. align-items: center;
  101. justify-content: space-between;
  102. border-bottom: 2rpx solid #D8D8D8;
  103. }
  104. .input_box .clear {
  105. width: 20rpx;
  106. height: 20rpx;
  107. margin-left: 20rpx;
  108. }
  109. .copy {
  110. display: inline-block;
  111. margin-top: 38rpx;
  112. width: 332rpx;
  113. height: 72rpx;
  114. line-height: 72rpx;
  115. text-align: center;
  116. color: #fff;
  117. background: #2562FF;
  118. border-radius: 8rpx;
  119. font-size: 28rpx;
  120. }
  121. .notice_box {
  122. height: 355rpx;
  123. color: #666666;
  124. }
  125. .notice_box .toast_title {
  126. margin-bottom: 30rpx;
  127. }
  128. .notice_main {
  129. line-height: 40rpx;
  130. padding-bottom: 50rpx;
  131. border-bottom: 2rpx solid #D8D8D8;
  132. font-size: 28rpx;
  133. text-align: left;
  134. }
  135. .know {
  136. margin-top: 22rpx;
  137. font-size: 28rpx;
  138. color: #2562FF;
  139. }
  140. .select_box {
  141. width: 100%;
  142. height: 490rpx;
  143. border-radius: 50rpx 50rpx 0 0;
  144. padding: 32rpx 54rpx;
  145. background: #fff;
  146. position: fixed;
  147. bottom: 0;
  148. left: 0;
  149. text-align: center;
  150. transition: all .5s;
  151. z-index: 100;
  152. }
  153. .select_icon {
  154. width: 88rpx;
  155. height: 88rpx;
  156. position: absolute;
  157. top: 0;
  158. left: 0;
  159. }
  160. .slect_title {
  161. margin-bottom: 30rpx;
  162. margin-left: 8rpx;
  163. color: #000;
  164. font-size: 30rpx;
  165. line-height: 42rpx;
  166. }
  167. .slect_title image {
  168. width: 30rpx;
  169. height: auto;
  170. vertical-align: middle;
  171. margin-right: 8rpx;
  172. }
  173. .slect_title text{
  174. vertical-align: middle;
  175. }
  176. .select_list {
  177. max-height: 370rpx;
  178. overflow-y: scroll;
  179. }
  180. .select_item {
  181. border-bottom: 2rpx solid #D8D8D8;
  182. color: #333333;
  183. font-size: 28rpx;
  184. text-align: left;
  185. padding: 20rpx 0;
  186. }
  187. .copying{
  188. color: rgba(255,255,255,.8);
  189. vertical-align: middle;
  190. }
  191. .copying image{
  192. width: 28rpx;
  193. height: 28rpx;
  194. margin-right:10rpx;
  195. vertical-align: middle;
  196. }
  197. image{
  198. vertical-align: middle;
  199. }
  200. text{
  201. vertical-align: middle;
  202. }
  203. .remaining_times {
  204. display: flex;
  205. align-items: center;
  206. justify-content: center;
  207. color: #333;
  208. font-size: 25rpx;
  209. padding: 14rpx 0;
  210. }
  211. .remaining_times text{
  212. color: #2562FF;
  213. }
  214. .linkBox{
  215. height: 450rpx;
  216. }
  217. .linkBox .radioItem{
  218. text-align: left;
  219. display: block;
  220. margin-bottom: 30rpx;
  221. display: flex;
  222. }
  223. .linkBox radio{
  224. vertical-align: middle;
  225. }
  226. .linkBox .radioTitle{
  227. display: inline-block;
  228. font-size: 28rpx;
  229. color: #444;
  230. margin-left: 10rpx;
  231. vertical-align: middle;
  232. flex: 1;
  233. margin-top: 7rpx;
  234. }