myggz.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #f1f1f1;
  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. .info-box {
  72. width: 670rpx;
  73. height: 186rpx;
  74. background: #ffffff;
  75. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  76. border-radius: 20rpx;
  77. margin: -100rpx auto 0;
  78. position: relative;
  79. z-index: 2;
  80. }
  81. .info-box .info-item {
  82. width: 50%;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. line-height: 1;
  87. }
  88. .info-box .info-item .info-font {
  89. font-size: 30rpx;
  90. font-family: PingFang SC;
  91. font-weight: bold;
  92. color: #999999;
  93. }
  94. .info-box .info-item .info-num {
  95. margin-top: 30rpx;
  96. font-size: 30rpx;
  97. font-family: PingFang SC;
  98. font-weight: bold;
  99. color: #181818;
  100. }
  101. .info-box .shu {
  102. width: 2rpx;
  103. height: 74rpx;
  104. background: #dcdfe6;
  105. }
  106. .money-box {
  107. position: relative;
  108. z-index: 2;
  109. color: #ffffff;
  110. text-align: center;
  111. height: 250rpx;
  112. display: flex;
  113. flex-direction: column;
  114. justify-content: center;
  115. }
  116. .money-box .money {
  117. font-size: 72rpx;
  118. font-family: PingFang SC;
  119. font-weight: bold;
  120. color: #ffffff;
  121. }
  122. .money-box .text {
  123. font-size: 30rpx;
  124. }
  125. .money-btn {
  126. position: relative;
  127. z-index: 2;
  128. color: #ffffff;
  129. padding-right: 50rpx;
  130. text-align: right;
  131. font-size: 30rpx;
  132. font-family: PingFang SC;
  133. font-weight: bold;
  134. color: #FFFFFF;
  135. }
  136. .money-btn text {
  137. display: inline-block;
  138. padding-left: 10rpx;
  139. }
  140. .navbar {
  141. margin-top: 20rpx;
  142. display: flex;
  143. height: 88rpx;
  144. padding: 0 5px;
  145. background: #fff;
  146. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  147. position: relative;
  148. z-index: 10;
  149. }
  150. .navbar .nav-item {
  151. flex: 1;
  152. display: flex;
  153. justify-content: center;
  154. align-items: center;
  155. height: 100%;
  156. font-size: 15px;
  157. color: #999999;
  158. position: relative;
  159. }
  160. .navbar .nav-item.current {
  161. color: #000;
  162. }
  163. .navbar .nav-item.current:after {
  164. content: '';
  165. position: absolute;
  166. left: 50%;
  167. bottom: 0;
  168. -webkit-transform: translateX(-50%);
  169. transform: translateX(-50%);
  170. width: 44px;
  171. height: 0;
  172. border-bottom: 2px solid #fe5b38;
  173. }
  174. .swiper-box .order-item:last-child {
  175. margin-bottom: 60rpx;
  176. }
  177. .swiper-box .order-item {
  178. padding: 20rpx 30rpx;
  179. line-height: 1.5;
  180. }
  181. .swiper-box .order-item .title-box .title {
  182. font-size: 32rpx;
  183. color: #606266;
  184. }
  185. .swiper-box .order-item .title-box .time {
  186. font-size: 28rpx;
  187. color: #909399;
  188. }
  189. .swiper-box .order-item .money {
  190. color: #fd5b23;
  191. font-size: 32rpx;
  192. text-align: right;
  193. }
  194. .swiper-box .order-item .money .status {
  195. color: #909399;
  196. }
  197. .list-scroll-content {
  198. background: #ffffff;
  199. height: 100%;
  200. }
  201. .content {
  202. height: 100%;
  203. }
  204. .content .empty-content {
  205. background-color: #ffffff;
  206. }
  207. .btn-box {
  208. width: 674rpx;
  209. height: 88rpx;
  210. background: linear-gradient(0deg, #2e58ff, #32c6ff);
  211. border-radius: 44rpx;
  212. font-size: 36rpx;
  213. font-family: PingFang SC;
  214. font-weight: 500;
  215. color: #ffffff;
  216. text-align: center;
  217. line-height: 88rpx;
  218. position: fixed;
  219. bottom: 48rpx;
  220. left: 0;
  221. right: 0;
  222. margin: 0 auto;
  223. }