phoneCharges.wxss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. .postage{
  2. position: relative;
  3. padding: 20rpx 0;
  4. color: #848799;
  5. }
  6. .postage::before{
  7. content: '';
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. width: 100%;
  12. height: 165rpx;
  13. /* background: linear-gradient(to bottom, #fd7428 0%,#fc8f4a 100%); */
  14. z-index: -1;
  15. }
  16. .tips{
  17. padding: 15rpx 20rpx;
  18. width: 92%;
  19. margin: 0 auto;
  20. background-color: #ffd900;
  21. color: #786700;
  22. border-radius: 10rpx;
  23. box-sizing: border-box;
  24. font-size: 26rpx;
  25. }
  26. .tabs, .rechargeGear{
  27. width: 92%;
  28. margin: 20rpx auto;
  29. border-radius: 20rpx;
  30. }
  31. .tabs-title{
  32. display: flex;
  33. justify-content: space-between;
  34. align-items: center;
  35. height: 90rpx;
  36. line-height: 90rpx;
  37. background-color: #fff;
  38. border-top-left-radius: 10rpx;
  39. border-top-right-radius: 10rpx;
  40. }
  41. .tabs-title-item{
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. width: 50%;
  46. }
  47. .tabs-title-item__icon{
  48. width: 40rpx;
  49. height: 40rpx;
  50. margin-right: 10rpx;
  51. }
  52. .tabs-title-item__text{}
  53. .tabs-title-item.active{
  54. position: relative;
  55. color: #fe7124;
  56. }
  57. .tabs-title-item.active::before{
  58. content: "";
  59. position: absolute;
  60. bottom: 0;
  61. left: 15%;
  62. right: 10%;
  63. height: 6rpx;
  64. background-color: #fe7124;
  65. }
  66. .tabs-content__tips{
  67. display: flex;
  68. height: 80rpx;
  69. align-items: center;
  70. }
  71. .tabs-content__tips-text{
  72. font-size: 26rpx;
  73. }
  74. .tabs-content__tips-add{
  75. width: 40rpx;
  76. height: 40rpx;
  77. margin-left: 50rpx;
  78. }
  79. .tabs-content,.rechargeGear-footer{
  80. padding: 30rpx 30rpx 0 70rpx;
  81. background-color: #fff;
  82. border-bottom-left-radius: 20rpx;
  83. border-bottom-right-radius: 20rpx;
  84. }
  85. .rechargeGear-footer {
  86. display: flex;
  87. justify-content: space-evenly;
  88. align-items: center;
  89. padding: 0;
  90. }
  91. .btn-rechargeNow {
  92. width: 328rpx;
  93. height: 70rpx;
  94. line-height: 70rpx;
  95. text-align: center;
  96. background-color: #fe7124;
  97. background: linear-gradient(to right, #ff7a21 0%, #feb25a 100%);
  98. text-align: center;
  99. color: #fff;
  100. border-radius: 16rpx;
  101. }
  102. .btn-rechargeNow___share {
  103. background: #fff;
  104. color: #EE7530;
  105. border: 1rpx solid #EE7530;
  106. }
  107. .btn-rechargeNow:active {
  108. opacity: .8;
  109. }
  110. .rechargeNow-tips{
  111. text-align: left;
  112. font-size: 26rpx;
  113. line-height: 1.8;
  114. }
  115. .rechargeNow-tips view{
  116. margin-bottom: 20rpx
  117. }
  118. .rechargeNow-tips view:last-child{
  119. margin-bottom: 0
  120. }
  121. .rechargeGear {
  122. background: #fff;
  123. }
  124. /* 充值挡位 */
  125. .rechargeGear-title{
  126. height: 84rpx;
  127. line-height: 84rpx;
  128. /* background-color: #fff; */
  129. color: #1e242e;
  130. padding-left: 30rpx;
  131. border-top-left-radius: 10rpx;
  132. border-top-right-radius: 10rpx;
  133. }
  134. .rechargeGear-content{
  135. display: flex;
  136. flex-wrap: wrap;
  137. justify-content: space-between;
  138. /* background-color: #fff; */
  139. box-sizing: border-box;
  140. padding: 0 30rpx;
  141. }
  142. .rechargeGear-content__item{
  143. width: 30%;
  144. display: flex;
  145. flex-direction: column;
  146. align-items: center;
  147. justify-content: center;
  148. padding: 20rpx 0;
  149. border: 1rpx solid #ddd;
  150. border-radius: 4rpx;
  151. color: #333;
  152. background-color: #fff;
  153. margin-bottom: 30rpx;
  154. font-weight: bolder;
  155. box-sizing: border-box;
  156. }
  157. .rechargeGear-content__item.active {
  158. background-color: rgba(238,117,48,0.08);
  159. color: #EE7530;
  160. border: 1rpx solid #EE7530;
  161. }
  162. .faceValue{
  163. margin-bottom: 10rpx;
  164. }
  165. .price{
  166. font-size: 24rpx;
  167. }
  168. .card-no{
  169. height: 70rpx;
  170. font-size: 40rpx;
  171. color: #2b2b2b;
  172. }
  173. .border-top-radius{
  174. border-top-left-radius: 20rpx;
  175. border-top-right-radius: 20rpx;
  176. }
  177. .info {
  178. display: flex;
  179. align-items: center;
  180. height: 80rpx;
  181. line-height: 80rpx;
  182. }
  183. .infoIcon {
  184. width: 24rpx;
  185. height: 24rpx;
  186. margin-right: 8rpx;
  187. }
  188. .info .label {
  189. font-size: 24rpx;
  190. color: #EE7530;
  191. }
  192. .info .labelInviter {
  193. font-size: 24rpx;
  194. color: #ee3030;
  195. }
  196. .payInfo {
  197. display: flex;
  198. align-items: center;
  199. color: #999;
  200. font-size: 28rpx;
  201. }
  202. .payInfoIcon {
  203. width: 40rpx;
  204. height: 40rpx;
  205. padding-left: 30rpx;
  206. margin-right: 13rpx;
  207. }
  208. .explain {
  209. color: rgb(65,118,220);
  210. }
  211. .footerInfo {
  212. width: 660rpx;
  213. margin: 0 auto;
  214. font-size: 28rpx;
  215. color: #848799;
  216. }
  217. .footerInfo .clause {
  218. line-height: 64rpx;
  219. }
  220. .footerInfo .title {
  221. width: 150rpx;
  222. position: relative;
  223. margin: 0 auto;
  224. margin-top: 60rpx;
  225. margin-bottom: 32rpx;
  226. text-align: center;
  227. font-size: 28rpx;
  228. color: #999;
  229. }
  230. .footerInfo .title::after {
  231. content: "";
  232. position: absolute;
  233. left:-240rpx;
  234. top: 50%;
  235. height: 1rpx;
  236. width: 240rpx;
  237. transform: translateY(-50%);
  238. background: linear-gradient(to right, #fff 0%, #999 100%);
  239. }
  240. .footerInfo .title::before {
  241. content: "";
  242. position: absolute;
  243. right:-240rpx;
  244. top: 50%;
  245. height: 1rpx;
  246. width: 240rpx;
  247. transform: translateY(-50%);
  248. background:linear-gradient(to left, #fff 0%, #999 100%);
  249. }
  250. .footerInfo text {
  251. color: #EE7530;
  252. }