mytg.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #ffffff;
  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. color: #ffffff;
  75. text-align: center;
  76. height: 250rpx;
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: center;
  80. }
  81. .money-box .money {
  82. font-size: 72rpx;
  83. font-family: PingFang SC;
  84. font-weight: bold;
  85. color: #ffffff;
  86. }
  87. .money-box .text {
  88. font-size: 30rpx;
  89. }
  90. .swiper-box {
  91. padding-top: 10rpx;
  92. }
  93. .swiper-box .order-item {
  94. padding: 20rpx 30rpx;
  95. line-height: 1.5;
  96. }
  97. .swiper-box .order-item .title-box {
  98. width: 100%;
  99. }
  100. .swiper-box .order-item .title-box .title-avatar {
  101. width: 100rpx;
  102. height: 100rpx;
  103. margin-right: 25rpx;
  104. }
  105. .swiper-box .order-item .title-box .title-avatar image {
  106. width: 100%;
  107. height: 100%;
  108. border-radius: 100%;
  109. }
  110. .swiper-box .order-item .title-box .list_tpl {
  111. width: 85%;
  112. }
  113. .swiper-box .order-item .title-box .list_tpl .title {
  114. font-size: 32rpx;
  115. color: #606266;
  116. overflow: hidden;
  117. text-overflow: ellipsis;
  118. white-space: nowrap;
  119. }
  120. .swiper-box .order-item .title-box .list_tpl .time {
  121. margin-top: 15rpx;
  122. font-size: 22rpx;
  123. color: #909399;
  124. }
  125. .swiper-box .order-item .money {
  126. color: #DB1935;
  127. font-size: 32rpx;
  128. }
  129. .list-scroll-content {
  130. height: 100%;
  131. }
  132. .content {
  133. height: 100%;
  134. }
  135. .content .empty-content {
  136. background-color: #ffffff;
  137. }
  138. .navbar {
  139. margin-top: 20rpx;
  140. display: flex;
  141. height: 88rpx;
  142. padding: 0 5px;
  143. background: #fff;
  144. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  145. position: relative;
  146. z-index: 10;
  147. }
  148. .navbar .nav-item {
  149. flex: 1;
  150. display: flex;
  151. justify-content: center;
  152. align-items: center;
  153. height: 100%;
  154. font-size: 15px;
  155. color: #999999;
  156. position: relative;
  157. }
  158. .navbar .nav-item.current {
  159. color: #000;
  160. }
  161. .navbar .nav-item.current:after {
  162. content: '';
  163. position: absolute;
  164. left: 50%;
  165. bottom: 0;
  166. -webkit-transform: translateX(-50%);
  167. transform: translateX(-50%);
  168. width: 44px;
  169. height: 0;
  170. border-bottom: 2px solid #fe5b38;
  171. }