wallet.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #f2f5f4;
  13. height: 100%;
  14. }
  15. .status_bar {
  16. height: 25px;
  17. width: 100%;
  18. }
  19. .content-money {
  20. position: relative;
  21. height: 480rpx;
  22. }
  23. .content-money .content-bg {
  24. position: absolute;
  25. top: 0;
  26. left: 0;
  27. right: 0;
  28. width: 750rpx;
  29. height: 480rpx;
  30. }
  31. .content-money .content-bg image {
  32. width: 100%;
  33. height: 100%;
  34. }
  35. .content-money .body-title {
  36. height: 80rpx;
  37. text-align: center;
  38. font-size: 35rpx;
  39. position: relative;
  40. }
  41. .content-money .body-title .header {
  42. position: absolute;
  43. left: 0;
  44. top: 0;
  45. width: 100%;
  46. font-size: 36rpx;
  47. font-family: PingFang SC;
  48. font-weight: bold;
  49. color: #fffeff;
  50. height: 80rpx;
  51. font-size: 36rpx;
  52. font-weight: 700;
  53. z-index: 9;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. }
  58. .content-money .body-title .goback-box {
  59. position: absolute;
  60. left: 18rpx;
  61. top: 0;
  62. height: 80rpx;
  63. display: flex;
  64. align-items: center;
  65. }
  66. .content-money .body-title .goback {
  67. z-index: 100;
  68. width: 34rpx;
  69. height: 34rpx;
  70. }
  71. .money-box {
  72. position: relative;
  73. z-index: 2;
  74. padding-top: 70rpx;
  75. color: #ffffff;
  76. text-align: center;
  77. }
  78. .money-box .money {
  79. font-size: 72rpx;
  80. font-family: PingFang SC;
  81. font-weight: bold;
  82. color: #ffffff;
  83. }
  84. .money-box .text {
  85. font-size: 30rpx;
  86. }
  87. .moneybtn-box {
  88. display: flex;
  89. justify-content: space-between;
  90. position: relative;
  91. z-index: 2;
  92. color: #ffffff;
  93. padding: 20rpx 50rpx;
  94. font-size: 30rpx;
  95. font-family: PingFang SC;
  96. font-weight: bold;
  97. color: #ffffff;
  98. }
  99. .moneybtn-box .money-btn {
  100. display: flex;
  101. align-items: center;
  102. }
  103. .moneybtn-box .money-btn .money-img {
  104. width: 26rpx;
  105. height: 26rpx;
  106. }
  107. .navbar {
  108. margin-top: 25rpx;
  109. display: flex;
  110. height: 40px;
  111. padding: 0 5px;
  112. background: #fff;
  113. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  114. position: relative;
  115. z-index: 10;
  116. }
  117. .navbar .nav-item {
  118. flex: 1;
  119. display: flex;
  120. justify-content: center;
  121. align-items: center;
  122. height: 100%;
  123. font-size: 15px;
  124. color: #303133;
  125. position: relative;
  126. }
  127. .navbar .nav-item.current {
  128. color: #000;
  129. font-weight: bold;
  130. }
  131. .navbar .nav-item.current:after {
  132. content: '';
  133. position: absolute;
  134. left: 50%;
  135. bottom: 0;
  136. -webkit-transform: translateX(-50%);
  137. transform: translateX(-50%);
  138. width: 44px;
  139. height: 0;
  140. border-bottom: 2px solid #9a5e19;
  141. }
  142. .swiper-box .order-item {
  143. padding: 20rpx 30rpx;
  144. line-height: 1.5;
  145. }
  146. .swiper-box .order-item .title-box .title {
  147. font-size: 32rpx;
  148. color: #606266;
  149. }
  150. .swiper-box .order-item .title-box .time {
  151. font-size: 28rpx;
  152. color: #909399;
  153. }
  154. .swiper-box .order-item .money {
  155. color: #ef3a55;
  156. font-size: 32rpx;
  157. }
  158. .info-box {
  159. width: 670rpx;
  160. height: 186rpx;
  161. background: #ffffff;
  162. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  163. border-radius: 20rpx;
  164. margin: -100rpx auto 0;
  165. position: relative;
  166. z-index: 2;
  167. }
  168. .info-box .info-item {
  169. width: 50%;
  170. display: flex;
  171. flex-direction: column;
  172. align-items: center;
  173. line-height: 1;
  174. }
  175. .info-box .info-item .info-font {
  176. font-size: 30rpx;
  177. font-family: PingFang SC;
  178. font-weight: bold;
  179. color: #999999;
  180. }
  181. .info-box .info-item .info-num {
  182. margin-top: 30rpx;
  183. font-size: 30rpx;
  184. font-family: PingFang SC;
  185. font-weight: bold;
  186. color: #181818;
  187. }
  188. .info-box .shu {
  189. width: 2rpx;
  190. height: 74rpx;
  191. background: #dcdfe6;
  192. }
  193. .list-scroll-content {
  194. background-color: #ffffff;
  195. height: 100%;
  196. }
  197. .content {
  198. height: 100%;
  199. }
  200. .content .empty-content {
  201. background-color: #ffffff;
  202. }
  203. .btm-wrap {
  204. height: 140rpx;
  205. width: 750rpx;
  206. position: fixed;
  207. bottom: 0;
  208. left: 0;
  209. background-color: #fff;
  210. }
  211. .btm-wrap .btn {
  212. width: 674rpx;
  213. height: 88rpx;
  214. line-height: 88rpx;
  215. margin: auto;
  216. background: linear-gradient(-22deg, #9a5e19, #9a5e19);
  217. border-radius: 44rpx;
  218. text-align: center;
  219. font-size: 36rpx;
  220. font-family: PingFang SC;
  221. font-weight: 500;
  222. color: #ffffff;
  223. }