user.wxss 4.2 KB

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