user.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* pages/user/user.wxss */
  2. page{
  3. background: #F4F6F8;
  4. /* position: fixed; */
  5. }
  6. .avatar{
  7. width: 120rpx;
  8. height: 120rpx;
  9. border-radius: 100%;
  10. overflow: hidden;
  11. margin-right: 30rpx;
  12. }
  13. .name{
  14. font-size: 40rpx;
  15. font-weight: 500;
  16. padding-top: 15rpx;
  17. }
  18. .name view{
  19. font-size: 32rpx;
  20. color: #FFF;
  21. font-weight: bold;
  22. margin-bottom: 12rpx;
  23. }
  24. .name text{
  25. font-size: 28rpx;
  26. color: #FFF;
  27. font-weight: 400;
  28. }
  29. .info{
  30. position: relative;
  31. background: #D94B24;
  32. display: flex;
  33. padding: 30rpx;
  34. }
  35. .mine{
  36. border: 1px solid #fff;
  37. color: #fff;
  38. font-size: 28rpx;
  39. border-radius: 8rpx;
  40. padding:0 8rpx;
  41. line-height: 48rpx;
  42. position: absolute;
  43. right: 30rpx;
  44. height: 48rpx;
  45. top: 0;
  46. bottom: 0;
  47. margin: auto;
  48. }
  49. .item{
  50. line-height: 108rpx;
  51. font-size: 32rpx;
  52. border-bottom: 1px solid #F5F5F5;
  53. position: relative;
  54. }
  55. .logout{
  56. margin-top:15rpx;
  57. background:#fff;
  58. border:none;
  59. padding: 0 30rpx;
  60. }
  61. .item image{
  62. width: 32rpx;
  63. float: right;
  64. margin-top: 38rpx;
  65. }
  66. .login input{
  67. width: 100%;
  68. height: 88rpx;
  69. text-align: left;
  70. /* background: #F4F6F8; */
  71. font-size: 30rpx;
  72. border-radius: 8rpx;
  73. padding: 0 24rpx;
  74. border: 1px solid #E0E0E0;
  75. box-sizing: border-box;
  76. }
  77. .login button:not([size='mini']){
  78. background: #D94B24;
  79. color: #fff;
  80. width: 100%;
  81. margin-top: 48rpx;
  82. height: 88rpx;
  83. line-height: 88rpx;
  84. padding: 0;
  85. font-size: 32rpx;
  86. border-radius: 8rpx;
  87. }
  88. .no_login navigator{
  89. background: #D94B24;
  90. color: #fff;
  91. width: 100%;
  92. margin-top: 48rpx;
  93. height: 88rpx;
  94. line-height: 88rpx;
  95. padding: 0;
  96. font-size: 32rpx;
  97. border-radius: 8rpx;
  98. }
  99. .no_login{
  100. height: 100vh;
  101. background: #fff;
  102. text-align: center;
  103. padding: 30% 70rpx 0;
  104. }
  105. .no_login .avatar{
  106. width: 160rpx;
  107. height: 160rpx;
  108. margin: 50rpx auto 100rpx;
  109. }
  110. .title{
  111. font-size: 32rpx;
  112. }
  113. .today{
  114. margin: 30rpx 30rpx 0;
  115. background: #fff;
  116. border-radius: 8rpx;
  117. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  118. overflow: hidden;
  119. }
  120. .today navigator{
  121. padding: 24rpx;
  122. }
  123. .today .money{
  124. margin: 0rpx 0rpx 30rpx;
  125. font-size: 48rpx;
  126. }
  127. .today .date{
  128. margin: 15rpx 0rpx;
  129. font-size: 28rpx;
  130. }
  131. .date>text{
  132. color: rgba(156, 156, 156, 1);
  133. font-size: 28rpx;
  134. display: inline-block;
  135. width: 49%;
  136. }
  137. .date text text{
  138. color: rgba(51, 51, 51, 1);
  139. font-weight: 400;
  140. margin-left: 45rpx;
  141. font-size: 28rpx;
  142. }
  143. .today .money .todaydown{
  144. font-size: 28rpx;
  145. /* margin-left: 20rpx !important; */
  146. color: #07B20B !important;
  147. }
  148. .today .money .todayup{
  149. font-size: 32rpx;
  150. /* margin-left: 20rpx !important; */
  151. color: #E90001 !important;
  152. }
  153. .contactus{
  154. background: none;
  155. width: 100% !important;
  156. text-align:center;
  157. position: absolute;
  158. height: 100%;
  159. top: 0;
  160. left: 0;
  161. }
  162. .up,.down{
  163. font-size: 40rpx;
  164. font-weight: bold;
  165. }
  166. .date .up,.date .down{
  167. font-size: 28rpx;
  168. font-weight: 400;
  169. margin-left: 20rpx !important;
  170. }
  171. .today_text{
  172. display: block;
  173. font-size: 28rpx;
  174. color: rgba(156, 156, 156, 1);
  175. }
  176. .msg{
  177. background: rgba(247, 247, 247, 1);
  178. display: flex;
  179. border-top: 1px solid rgba(171, 171, 171, 0.2);
  180. }
  181. .msg view{
  182. width: 50%;
  183. text-align: center;
  184. font-size: 28rpx;
  185. line-height: 100rpx;
  186. }
  187. .msg view:first-child{
  188. border-right: 1px solid rgba(171, 171, 171, 0.2);
  189. }
  190. .msg image{
  191. width: 32rpx;
  192. position: relative;
  193. top: 5rpx;
  194. left: -10rpx;
  195. }
  196. .list{
  197. margin:30rpx;
  198. border-radius: 8rpx;
  199. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  200. overflow: hidden;
  201. }
  202. .no_login .avatar image{
  203. width: 160rpx;
  204. height: 160rpx;
  205. }
  206. .yzm{
  207. margin-top: 30rpx;
  208. display: flex;
  209. justify-content: space-between;
  210. }
  211. .yzm input{
  212. width: 65%;
  213. }
  214. .yzm view{
  215. width: 30%;
  216. height: 88rpx;
  217. color: #D94B24;
  218. line-height: 88rpx;
  219. border: 1px solid #D94B24;
  220. border-radius: 8rpx;
  221. font-size: 30rpx;
  222. }
  223. .yzm .disabled{
  224. color: #999;
  225. border-color: #999;
  226. }