recharge.wxss 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. page{
  2. height: 100%;
  3. background: #F4F4F4;
  4. }
  5. .box{
  6. width: 100%;
  7. /* height: 100%; */
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. padding-bottom: 20rpx;
  12. }
  13. .box .top{
  14. width: 92%;
  15. display: flex;
  16. flex-direction: column;
  17. font-size: 28rpx;
  18. color: darkgray;
  19. }
  20. .box .top text:nth-of-type(1){
  21. font-size:48rpx;
  22. font-family:PingFang SC;
  23. font-weight:bold;
  24. color:rgba(42,42,42,1);
  25. padding: 50rpx 0rpx 30rpx 0rpx;
  26. }
  27. .box .top text:nth-of-type(2){
  28. font-size:32rpx;
  29. font-family:PingFang SC;
  30. font-weight:400;
  31. color:rgba(153,153,153,1);
  32. padding-bottom: 6rpx;
  33. }
  34. .box .hot{
  35. /* padding-top: ; */
  36. width:690rpx;
  37. padding: 30rpx 0;
  38. /* height:296rpx; */
  39. background:rgba(255,255,255,1);
  40. border-radius:20rpx;
  41. background-size: 100% 100%;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. box-sizing: border-box;
  46. padding-left: 47rpx;
  47. margin-top: 30rpx;
  48. }
  49. .box .hot .title{
  50. font-size:38rpx;
  51. font-family:PingFang SC;
  52. font-weight:bold;
  53. color:rgba(42,42,42,1);
  54. }
  55. .box .hot .frequency{
  56. font-size:32rpx;
  57. font-family:PingFang SC;
  58. color:rgba(153,153,153,1);
  59. }
  60. .box .hot .info{
  61. display: flex;
  62. align-items: flex-end;
  63. padding: 19rpx 0rpx;
  64. }
  65. .box .hot .info text:nth-of-type(1){
  66. font-size:46rpx;
  67. font-family:PingFang SC;
  68. font-weight:bold;
  69. color:rgba(42,42,42,1);
  70. }
  71. .box .hot .info text:nth-of-type(2){
  72. font-size:26rpx;
  73. font-family:PingFang SC;
  74. color:rgba(153,153,153,1);
  75. padding-left: 19rpx;
  76. padding-bottom: 6rpx;
  77. text-decoration: line-through;
  78. }
  79. .box .hot .buy{
  80. width:160rpx;
  81. height:70rpx;
  82. margin-bottom: 20rpx;
  83. background:#5E5D5D;
  84. border-radius:40rpx;
  85. display: flex;
  86. /* margin-left: 20rpx; */
  87. align-items: center;
  88. justify-content: center;
  89. font-size:32rpx;
  90. font-family:PingFang SC;
  91. color:rgba(255,255,255,1);
  92. }
  93. .box .hot .info .buy text{
  94. font-size: 26rpx;
  95. color: #ffffff;
  96. }
  97. .list{
  98. display: flex;
  99. flex-direction: column;
  100. margin-top: 10rpx;
  101. }
  102. .tip text{
  103. /* width: 100rpx; */
  104. display: inline-block;
  105. padding: 0 5rpx;
  106. font-size: 22rpx;
  107. border: solid 1rpx rgba(153,153,153,1);
  108. color: rgba(153,153,153,1);
  109. border-radius: 8rpx;
  110. }
  111. .list .view{
  112. padding: 30rpx 0;
  113. width:690rpx;
  114. /* height:206rpx; */
  115. background:rgba(255,255,255,1);
  116. border-radius:20rpx;
  117. margin-top: 20rpx;
  118. position: relative;
  119. display: flex;
  120. flex-direction: column;
  121. justify-content: center;
  122. box-sizing: border-box;
  123. padding-left: 48rpx;
  124. }
  125. .list .view .text{
  126. font-size:32rpx;
  127. font-family:PingFang SC;
  128. color:rgba(94,93,93,1);
  129. padding-bottom: 20rpx;
  130. }
  131. .list .view .money{
  132. display: flex;
  133. align-items: flex-end;
  134. }
  135. .list .view .money text:nth-of-type(1){
  136. font-size:46rpx;
  137. font-family:PingFang SC;
  138. font-weight:bold;
  139. color:rgba(42,42,42,1);
  140. }
  141. .list .view .money text:nth-of-type(2){
  142. font-size:26rpx;
  143. font-family:PingFang SC;
  144. color:rgba(153,153,153,1);
  145. padding-left: 34rpx;
  146. padding-bottom: 6rpx;
  147. text-decoration: line-through;
  148. }
  149. .list .view .buy{
  150. width:140rpx;
  151. height:50rpx;
  152. background:#5E5D5D;
  153. border-radius:40rpx;
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. font-size:26rpx;
  158. font-family:PingFang SC;
  159. color:rgba(255,255,255,1);
  160. position: absolute;
  161. top: 88rpx;
  162. right: 20rpx;
  163. }
  164. .list .view .position{
  165. width:186rpx;
  166. height:42rpx;
  167. background:rgba(24,213,185,1);
  168. border-radius:0px 20rpx 0px 39rpx;
  169. display: flex;
  170. align-items: center;
  171. justify-content: center;
  172. font-size:26rpx;
  173. font-family:PingFang SC;
  174. color:rgba(255,255,255,1);
  175. position: absolute;
  176. top: 0rpx;
  177. right: 0rpx;
  178. }
  179. .box .btn{
  180. width:100%;
  181. height:160rpx;
  182. background:rgba(255,255,255,1);
  183. box-shadow:0px 0px 52rpx 0px rgba(210,210,210,1);
  184. display: flex;
  185. align-items: center;
  186. justify-content: space-between;
  187. position: fixed;
  188. bottom: 0rpx;
  189. left: 0rpx;
  190. }
  191. .btn .money{
  192. display: flex;
  193. align-items: flex-end;
  194. margin-left: 30rpx;
  195. }
  196. .btn .money text:nth-of-type(1){
  197. font-size:60rpx;
  198. font-family:PingFang SC;
  199. font-weight:800;
  200. color:rgba(42,42,42,1);
  201. }
  202. .btn .money text:nth-of-type(2){
  203. font-size:30rpx;
  204. font-family:PingFang-SC-Medium;
  205. font-weight:Medium;
  206. color:#2A2A2A;
  207. padding-left: 20rpx;
  208. padding-bottom: 6rpx;
  209. }
  210. .btn .form{
  211. width:214rpx;
  212. height:70rpx;
  213. background:rgba(24,213,185,1);
  214. border-radius:35rpx 35rpx 35rpx 35rpx;
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. font-size:36rpx;
  219. font-family:PingFang SC;
  220. color:rgba(255,255,255,1);
  221. margin-right: 30rpx;
  222. }
  223. .box .rule{
  224. width: 92%;
  225. display: flex;
  226. flex-direction: column;
  227. }
  228. .rule .title{
  229. font-size:46rpx;
  230. font-family:PingFang SC;
  231. font-weight:bold;
  232. color:rgba(42,42,42,1);
  233. padding: 106rpx 0rpx 46rpx 0rpx;
  234. }
  235. .rule view{
  236. display: flex;
  237. flex-direction: column;
  238. height: 548rpx;
  239. justify-content: space-between;
  240. padding-bottom: 66rpx;
  241. }
  242. .rule view text{
  243. font-size:28rpx;
  244. font-family:PingFang-SC-Regular;
  245. font-weight:Regular;
  246. color:#5E5D5D;
  247. }
  248. .background{
  249. width: 100%;
  250. height: 100%;
  251. position: fixed;
  252. top: 0;
  253. left: 0;
  254. right: 0;
  255. bottom: 0;
  256. background: #000000;
  257. opacity: .6;
  258. z-index: 88;
  259. }
  260. .model{
  261. width: 100%;
  262. height: 62%;
  263. position: fixed;
  264. left: 0;
  265. bottom: 0;
  266. z-index: 99;
  267. background: white;
  268. }
  269. .model .view{
  270. width: 100%;
  271. height: 100%;
  272. position: relative;
  273. padding-top: 80rpx;
  274. padding-bottom: 120rpx;
  275. box-sizing: border-box;
  276. }
  277. .model .view .title{
  278. position: absolute;
  279. top: 0rpx;
  280. height: 80rpx;
  281. line-height: 80rpx;
  282. text-align: center;
  283. width: 100%;
  284. border-bottom: 2rpx solid #F4F4F4;
  285. z-index: 99;
  286. }
  287. .model .view .btn1{
  288. position: absolute;
  289. bottom: 0rpx;
  290. width: 100%;
  291. display: flex;
  292. align-items: center;
  293. justify-content: center;
  294. height: 120rpx;
  295. background: #F4F4F4;
  296. z-index: 99;
  297. }
  298. .model .view .btn1 text{
  299. width: 80%;
  300. height: 80rpx;
  301. line-height: 80rpx;
  302. text-align: center;
  303. color: white;
  304. font-size: 28rpx;
  305. background: #18D5B9;
  306. border-radius: 40rpx;
  307. }
  308. .model .view .content{
  309. height: 100%;
  310. overflow-y: scroll;
  311. display: flex;
  312. flex-direction: column;
  313. width: 95%;
  314. margin: 0 auto;
  315. }
  316. .model .view .content text{
  317. padding-top: 20rpx;
  318. font-size: 26rpx;
  319. }
  320. .model .view .content .title1{
  321. font-size: 30rpx;
  322. font-weight: 800;
  323. }
  324. .model .view .content .count_a{
  325. display: flex;
  326. align-items: center;
  327. }
  328. .model .view .content .count_a text:nth-of-type(1){
  329. font-size: 32rpx;
  330. font-weight: 800;
  331. }
  332. .model .view .content .count_a text:nth-of-type(2){
  333. font-size: 26rpx;
  334. color: #5E5D5D;
  335. padding-left: 14rpx;
  336. }
  337. .model .view .content .count_b{
  338. display: flex;
  339. align-items: flex-end;
  340. }
  341. .model .view .content .count_b text:nth-of-type(1){
  342. font-size: 34rpx;
  343. font-weight: 800;
  344. color: red;
  345. }
  346. .model .view .content .count_b text:nth-of-type(2){
  347. font-size: 26rpx;
  348. padding-left: 10rpx;
  349. text-decoration: line-through;
  350. }
  351. .over1{
  352. position: fixed;
  353. top: 39%;
  354. right: 5%;
  355. z-index: 99;
  356. }
  357. .none{
  358. display: flex;
  359. flex-direction: column;
  360. align-items: center;
  361. justify-content: center;
  362. width: 100%;
  363. height: 90%;
  364. }
  365. .none image{
  366. margin-left: 70rpx;
  367. }
  368. .none text{
  369. /* padding-right: 70rpx; */
  370. padding-top: 20rpx;
  371. }