user.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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: #ff0f03;
  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{
  89. height: 100vh;
  90. background: #fff;
  91. text-align: center;
  92. padding: 30% 70rpx 0;
  93. }
  94. .no_login .avatar{
  95. width: 160rpx;
  96. height: 160rpx;
  97. margin: 50rpx auto 100rpx;
  98. }
  99. .title{
  100. font-size: 32rpx;
  101. }
  102. .today{
  103. margin: 30rpx 30rpx 0;
  104. background: #fff;
  105. border-radius: 8rpx;
  106. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  107. overflow: hidden;
  108. }
  109. .today navigator{
  110. padding: 24rpx;
  111. }
  112. .today .money{
  113. margin: 0rpx 0rpx 30rpx;
  114. font-size: 48rpx;
  115. }
  116. .today .date{
  117. margin: 15rpx 0rpx;
  118. font-size: 28rpx;
  119. }
  120. .date>text{
  121. color: rgba(156, 156, 156, 1);
  122. font-size: 28rpx;
  123. display: inline-block;
  124. width: 49%;
  125. }
  126. .date text text{
  127. color: rgba(51, 51, 51, 1);
  128. font-weight: 400;
  129. margin-left: 45rpx;
  130. font-size: 28rpx;
  131. }
  132. .today .money .todaydown{
  133. font-size: 28rpx;
  134. /* margin-left: 20rpx !important; */
  135. color: #07B20B !important;
  136. }
  137. .today .money .todayup{
  138. font-size: 32rpx;
  139. /* margin-left: 20rpx !important; */
  140. color: #E90001 !important;
  141. }
  142. .contactus{
  143. background: none;
  144. width: 100% !important;
  145. text-align:center;
  146. position: absolute;
  147. height: 100%;
  148. top: 0;
  149. left: 0;
  150. }
  151. .up,.down{
  152. font-size: 40rpx;
  153. font-weight: bold;
  154. }
  155. .date .up,.date .down{
  156. font-size: 28rpx;
  157. font-weight: 400;
  158. margin-left: 20rpx !important;
  159. }
  160. .today_text{
  161. display: block;
  162. font-size: 28rpx;
  163. color: rgba(156, 156, 156, 1);
  164. }
  165. .msg{
  166. background: rgba(247, 247, 247, 1);
  167. display: flex;
  168. border-top: 1px solid rgba(171, 171, 171, 0.2);
  169. padding: 0 !important;
  170. }
  171. .msg view{
  172. width: 50%;
  173. text-align: center;
  174. font-size: 28rpx;
  175. line-height: 100rpx;
  176. }
  177. .msg view:first-child{
  178. border-right: 1px solid rgba(171, 171, 171, 0.2);
  179. }
  180. .msg image{
  181. width: 32rpx;
  182. position: relative;
  183. top: 5rpx;
  184. left: -10rpx;
  185. }
  186. .list{
  187. margin:30rpx;
  188. border-radius: 8rpx;
  189. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  190. overflow: hidden;
  191. }
  192. .no_login .avatar image{
  193. width: 160rpx;
  194. height: 160rpx;
  195. }
  196. .yzm{
  197. margin-top: 30rpx;
  198. display: flex;
  199. justify-content: space-between;
  200. }
  201. .yzm input{
  202. width: 65%;
  203. }
  204. .yzm view{
  205. width: 30%;
  206. height: 88rpx;
  207. color: #D94B24;
  208. line-height: 88rpx;
  209. border: 1px solid #D94B24;
  210. border-radius: 8rpx;
  211. font-size: 30rpx;
  212. }
  213. .yzm .disabled{
  214. color: #999;
  215. border-color: #999;
  216. }
  217. .no_login navigator{
  218. background: #D94B24;
  219. border: 1px solid #D94B24;
  220. color: #fff;
  221. width: 100%;
  222. margin-top: 48rpx;
  223. height: 88rpx;
  224. line-height: 88rpx;
  225. padding: 0;
  226. font-size: 32rpx;
  227. border-radius: 8rpx;
  228. position: relative;
  229. text-align: left;
  230. padding-left: 38%;
  231. box-sizing: border-box;
  232. }
  233. .no_login navigator image{
  234. position: absolute;
  235. top: 0;
  236. bottom: 0;
  237. margin: auto;
  238. left: 28%;
  239. }
  240. .shenming{
  241. margin:30rpx;
  242. border-radius: 8rpx;
  243. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  244. overflow: hidden;
  245. background-color: white;
  246. }
  247. .shenming_text{
  248. font-size: 30rpx;
  249. color: rgb(128, 128, 128);
  250. margin: 30rpx;
  251. }