Nessuna descrizione

payment.css 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. body{
  2. width: 100%;min-height: 100vh;padding-top: 0.13rem;box-sizing: border-box;padding-bottom: 0.6rem;background: #fff;
  3. }
  4. .payment_hint{
  5. color: #666666;font-size: 0.15rem;line-height: 0.21rem;padding-left: 0.1rem;
  6. }
  7. .rechargeList{
  8. display: flex;align-items: center;flex-wrap: wrap; padding: 0.13rem 0 0.25rem;width: 3.55rem;margin: auto;min-height: 2.22rem;box-sizing: border-box;
  9. }
  10. .rechargeList li{
  11. width: 50%;
  12. }
  13. .rechargeList .rechargeLi{
  14. width: 1.62rem;height: 0.8rem;border-radius: 0.05rem;
  15. display: flex;flex-direction: column;align-items: center;justify-content: center;margin: 0.12rem auto 0;position: relative;
  16. }
  17. .rechargeList .rechargeLi::after{
  18. content: "";
  19. width: 200%;
  20. height: 200%;
  21. border: 0.01rem solid #3369FF;border-radius: 0.1rem;
  22. position: absolute;
  23. top: -0.005rem;left: -0.005rem;
  24. transform: scale(.5);
  25. transform-origin: 0 0;
  26. pointer-events: none;
  27. }
  28. .rechargeList .rechargeLi p{
  29. color: #444444;font-size: 0.17rem;line-height: 0.24rem;padding-bottom: 0.02rem;
  30. }
  31. .rechargeList .rechargeLi span{
  32. color: #FF4B13;font-size: 0.14rem;line-height: 0.2rem;
  33. }
  34. .rechargeList .rechargeLi img{
  35. width: 0.62rem;height: 0.16rem;position: absolute;left: -0.02rem;top: -0.08rem;z-index: 1;
  36. }
  37. .rechargeList .rechargeLiActive{
  38. background: #A5C3FF;color: #3369FF;
  39. }
  40. .rechargeList .rechargeLiActive p{
  41. color: #3369FF;
  42. }
  43. .rechargeList .rechargeLiActive span{
  44. color: #fff;
  45. }
  46. /* 支付方式 */
  47. .payment_mode{
  48. border-top: 0.01rem solid #F5F5F5;margin-top: 0.1rem;
  49. }
  50. .payment_mode li{
  51. width: 100%;display: flex;align-items: center;justify-content: space-between; height: 0.46rem;margin-top: 0.22rem;padding: 0 0.2rem;box-sizing: border-box;
  52. }
  53. .payment_mode li label{
  54. display: flex;align-items: center;flex: 1;
  55. }
  56. .payment_mode li label img{
  57. width: 0.46rem;height: 0.46rem;margin-right: 0.21rem;
  58. }
  59. .payment_mode li label span{
  60. color: #222222;font-size: 0.16rem;line-height: 0.22rem;
  61. }
  62. .payment_mode li input[type='radio']{
  63. width: 0.16rem;
  64. height: 0.165rem;
  65. background-color: #fff;
  66. -webkit-appearance:none;
  67. /* border: 0.01rem solid #979797; */
  68. /* border-radius: 50%; */
  69. background: url('../img/noSelection.png') no-repeat center;
  70. background-size:100%;
  71. outline: none;
  72. border: none;
  73. }
  74. .payment_mode li input[type=radio]:checked{
  75. background: url("../img/selection.png") no-repeat center;
  76. background-size:100%;
  77. /* border: 0.01rem solid #1B82D2; */
  78. }
  79. /* 底部 */
  80. .payment_bottom{
  81. width: 100%;height: 0.6rem;background: #fff;border-top: 0.01rem solid #D6D6D6;display: flex;align-items: center;justify-content: space-between;position: fixed;bottom: 0;
  82. }
  83. .payment_bottom .total{
  84. flex: 1;color: #666666;font-size: 0.16rem;line-height: 0.6rem;padding-left: 0.1rem;
  85. }
  86. .payment_bottom .total span{
  87. color: #333333;font-size: 0.18rem;
  88. }
  89. .payment_bottom button{
  90. width:1.36rem;
  91. height:0.6rem;
  92. background:linear-gradient(90deg,rgba(6,135,255,1) 0%,rgba(20,82,255,1) 100%);
  93. color: #FFFFFF;font-size: 0.18rem;line-height: 0.6rem;border: none;
  94. }
  95. /* toast */
  96. .alert-info {
  97. position: fixed;
  98. height: 0.38rem;
  99. top: 1.74rem;
  100. right: 0;
  101. left: 0;
  102. bottom: 0;
  103. text-align: center;
  104. z-index: 9;
  105. }
  106. .alert-info p {
  107. display: inline-block;
  108. height: 0.38rem;
  109. color: #fff;
  110. font-size: 0.14rem;
  111. line-height: 0.38rem;
  112. padding: 0 0.10rem;
  113. background-color: rgba(0, 0, 0, 0.7);
  114. border-radius: 5px;
  115. }
  116. .loading {
  117. position: fixed;
  118. top: 0;
  119. left: 0;
  120. display: none;
  121. width: 100%;
  122. height: 100vh;
  123. }
  124. .loading img {
  125. position: absolute;
  126. top: 0;
  127. bottom: 0;
  128. left: 0;
  129. right: 0;
  130. margin: auto;
  131. width: 0.3rem;
  132. height: 0.3rem;
  133. }
  134. /* 微信支付是否成功弹框 */
  135. .wx_payment_mask {
  136. width: 100%; height: 100vh;background: rgba(0, 0, 0, 0.6);position: fixed;top: 0;display: none;
  137. }
  138. .wx_payment_mask .con{
  139. width: 2.75rem;height: 1.9rem;background: #fff;border-radius: 0.21rem;position: absolute;left: 0;right: 0;top:0;bottom:0;margin: auto;padding: 0 0.21rem;box-sizing: border-box;
  140. }
  141. .wx_payment_mask .con h3{
  142. font-size: 0.16rem;text-align: center;line-height: 0.62rem;
  143. }
  144. .wx_payment_mask .con p{
  145. font-size: 0.16rem;text-align: center;line-height: 0.63rem;border-top: 0.01rem solid #d8d8d8;color: #444444;
  146. }
  147. .wx_payment_mask .con p:nth-of-type(1){
  148. color: #1285FF;
  149. }
  150. .wx_payment_mask .con p:nth-of-type(2){
  151. color: #E03F2B;
  152. }