phoneCharges.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. }
  30. .tabs-title{
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. height: 90rpx;
  35. line-height: 90rpx;
  36. background-color: #fff;
  37. border-top-left-radius: 10rpx;
  38. border-top-right-radius: 10rpx;
  39. }
  40. .tabs-title-item{
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. width: 50%;
  45. }
  46. .tabs-title-item__icon{
  47. width: 40rpx;
  48. height: 40rpx;
  49. margin-right: 10rpx;
  50. }
  51. .tabs-title-item__text{}
  52. .tabs-title-item.active{
  53. position: relative;
  54. color: #fe7124;
  55. }
  56. .tabs-title-item.active::before{
  57. content: "";
  58. position: absolute;
  59. bottom: 0;
  60. left: 15%;
  61. right: 10%;
  62. height: 6rpx;
  63. background-color: #fe7124;
  64. }
  65. .tabs-content__tips{
  66. display: flex;
  67. height: 80rpx;
  68. align-items: center;
  69. }
  70. .tabs-content__tips-text{
  71. font-size: 26rpx;
  72. }
  73. .tabs-content__tips-add{
  74. width: 40rpx;
  75. height: 40rpx;
  76. margin-left: 50rpx;
  77. }
  78. .tabs-content,.rechargeGear-footer{
  79. padding: 30rpx 30rpx 50rpx 30rpx;
  80. background-color: #fff;
  81. border-bottom-left-radius: 10rpx;
  82. border-bottom-right-radius: 10rpx;
  83. }
  84. .btn-rechargeNow{
  85. width: 85%;
  86. padding: 22rpx;
  87. margin: 0 auto 30rpx;
  88. background-color: #fe7124;
  89. background: linear-gradient(to right, #ff7a21 0%,#feb25a 100%);
  90. text-align: center;
  91. color: #fff;
  92. border-radius: 10rpx;
  93. }
  94. .btn-rechargeNow:active{
  95. opacity: .8;
  96. }
  97. .rechargeNow-tips{
  98. text-align: left;
  99. font-size: 26rpx;
  100. line-height: 1.8;
  101. }
  102. .rechargeNow-tips view{
  103. margin-bottom: 20rpx
  104. }
  105. .rechargeNow-tips view:last-child{
  106. margin-bottom: 0
  107. }
  108. /* 充值挡位 */
  109. .rechargeGear-title{
  110. height: 84rpx;
  111. line-height: 84rpx;
  112. background-color: #fff;
  113. color: #1e242e;
  114. padding-left: 30rpx;
  115. border-top-left-radius: 10rpx;
  116. border-top-right-radius: 10rpx;
  117. }
  118. .rechargeGear-content{
  119. display: flex;
  120. flex-wrap: wrap;
  121. justify-content: space-between;
  122. background-color: #fff;
  123. box-sizing: border-box;
  124. padding: 0 30rpx;
  125. }
  126. .rechargeGear-content__item{
  127. width: 30%;
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. justify-content: center;
  132. padding: 20rpx 0;
  133. border: 1rpx solid #fe7124;
  134. border-radius: 10rpx;
  135. color: #fe7124;
  136. background-color: #fff;
  137. margin-bottom: 30rpx;
  138. }
  139. .rechargeGear-content__item.active{
  140. background-color: #fe7124;
  141. color: #fff;
  142. }
  143. .faceValue{
  144. margin-bottom: 10rpx;
  145. }
  146. .price{
  147. font-size: 24rpx;
  148. }
  149. .card-no{
  150. height: 70rpx;
  151. font-size: 40rpx;
  152. color: #2b2b2b;
  153. }
  154. .border-top-radius{
  155. border-top-left-radius: 10rpx;
  156. border-top-right-radius: 10rpx;
  157. }