wallet.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #ffffff;
  13. height: 100%;
  14. }
  15. .content-money {
  16. background: #f8f8f8;
  17. }
  18. .content-money .moneyTx {
  19. position: absolute;
  20. top: 150rpx;
  21. right: 0rpx;
  22. width: 150rpx;
  23. padding: 10rpx 30rpx;
  24. border: 2px solid #ffffff;
  25. border-top-left-radius: 99rpx;
  26. border-bottom-left-radius: 99rpx;
  27. color: #ffffff;
  28. line-height: 1;
  29. font-size: 28rpx;
  30. }
  31. .content-money .buttom-box {
  32. background-color: #ffffff;
  33. text-align: center;
  34. margin: 0 30rpx;
  35. padding: 20rpx 0;
  36. border-radius: 15rpx;
  37. margin-top: -60rpx;
  38. }
  39. .content-money .buttom-box .buttom {
  40. font-size: 32rpx;
  41. -webkit-box-flex: 1;
  42. -webkit-flex-grow: 1;
  43. flex-grow: 1;
  44. }
  45. .content-money .buttom-box .interval {
  46. width: 2px;
  47. height: 60rpx;
  48. background-color: #eeeeee;
  49. }
  50. .content-money .buttom-box .icon {
  51. height: 50rpx;
  52. width: 48rpx;
  53. margin: 0 auto;
  54. }
  55. .content-money .buttom-box .icon .icon-img {
  56. width: 36rpx;
  57. height: 36rpx;
  58. margin-bottom: 10rpx;
  59. }
  60. .money-box {
  61. background: -webkit-linear-gradient(38deg, #978ffa 0%, #7e99fe 100%);
  62. background: linear-gradient(52deg, #978ffa 0%, #7e99fe 100%);
  63. height: 350rpx;
  64. color: #ffffff;
  65. text-align: center;
  66. padding-top: 120rpx;
  67. }
  68. .money-box .text {
  69. font-size: 24rpx;
  70. font-weight: 400;
  71. color: white;
  72. }
  73. .money-box .money {
  74. margin-top: 20rpx;
  75. font-size: 60rpx;
  76. font-weight: bold;
  77. color: white;
  78. }
  79. .navbar {
  80. display: -webkit-box;
  81. display: -webkit-flex;
  82. display: flex;
  83. height: 40px;
  84. padding: 0 5px;
  85. background: #fff;
  86. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  87. position: relative;
  88. z-index: 10;
  89. }
  90. .navbar .nav-item {
  91. -webkit-box-flex: 1;
  92. -webkit-flex: 1;
  93. flex: 1;
  94. display: -webkit-box;
  95. display: -webkit-flex;
  96. display: flex;
  97. -webkit-box-pack: center;
  98. -webkit-justify-content: center;
  99. justify-content: center;
  100. -webkit-box-align: center;
  101. -webkit-align-items: center;
  102. align-items: center;
  103. height: 100%;
  104. font-size: 15px;
  105. color: #303133;
  106. position: relative;
  107. }
  108. .navbar .nav-item.current:after {
  109. content: '';
  110. position: absolute;
  111. left: 50%;
  112. bottom: 0;
  113. -webkit-transform: translateX(-50%);
  114. transform: translateX(-50%);
  115. width: 44px;
  116. height: 0;
  117. border-bottom: 2px solid #6786FB;
  118. }
  119. .swiper-box {
  120. padding-top: 10rpx;
  121. }
  122. .swiper-box .order-item {
  123. padding: 20rpx 30rpx;
  124. line-height: 1.5;
  125. }
  126. .swiper-box .order-item .title-box .title {
  127. font-size: 32rpx;
  128. color: #606266;
  129. }
  130. .swiper-box .order-item .title-box .time {
  131. font-size: 28rpx;
  132. color: #909399;
  133. }
  134. .swiper-box .order-item .money {
  135. color: #E73932;
  136. font-size: 32rpx;
  137. }
  138. .swiper-box .order-item .money.money-num {
  139. color: #333333;
  140. }
  141. .list-scroll-content {
  142. height: 100%;
  143. }
  144. .content {
  145. height: 100%;
  146. }
  147. .content .empty-content {
  148. background-color: #ffffff;
  149. }