user.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. text-align: center;
  69. height: 108rpx;
  70. /* background: #F4F6F8; */
  71. font-size: 32rpx;
  72. border-radius: 8rpx;
  73. border: 1px solid #E0E0E0;
  74. }
  75. .login button:not([size='mini']){
  76. background: #D94B24;
  77. color: #fff;
  78. width: 100%;
  79. margin-top: 48rpx;
  80. height: 108rpx;
  81. line-height: 108rpx;
  82. padding: 0;
  83. font-size: 32rpx;
  84. border-radius: 8rpx;
  85. }
  86. .no_login{
  87. height: 100vh;
  88. background: #F4F6F8;
  89. text-align: center;
  90. padding: 30% 70rpx 0;
  91. }
  92. .no_login .avatar{
  93. width: 160rpx;
  94. height: 160rpx;
  95. margin: 50rpx auto 100rpx;
  96. }
  97. .title{
  98. font-size: 32rpx;
  99. }
  100. .today{
  101. margin: 30rpx 30rpx;
  102. background: #fff;
  103. border-radius: 8rpx;
  104. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  105. overflow: hidden;
  106. }
  107. .today navigator{
  108. padding: 24rpx;
  109. }
  110. .today .money{
  111. margin: 0rpx 0rpx 30rpx;
  112. font-size: 48rpx;
  113. }
  114. .today .date{
  115. margin: 15rpx 0rpx;
  116. font-size: 28rpx;
  117. }
  118. .date>text{
  119. color: rgba(156, 156, 156, 1);
  120. font-size: 28rpx;
  121. display: inline-block;
  122. width: 49%;
  123. }
  124. .date text text{
  125. color: rgba(51, 51, 51, 1);
  126. font-weight: 400;
  127. margin-left: 45rpx;
  128. font-size: 28rpx;
  129. }
  130. .today .money .todaydown{
  131. font-size: 28rpx;
  132. /* margin-left: 20rpx !important; */
  133. color: #07B20B !important;
  134. }
  135. .today .money .todayup{
  136. font-size: 32rpx;
  137. /* margin-left: 20rpx !important; */
  138. color: #E90001 !important;
  139. }
  140. .contactus{
  141. background: none;
  142. width: 100% !important;
  143. text-align:center;
  144. position: absolute;
  145. height: 100%;
  146. top: 0;
  147. left: 0;
  148. }
  149. .up,.down{
  150. font-size: 40rpx;
  151. font-weight: bold;
  152. }
  153. .date .up,.date .down{
  154. font-size: 28rpx;
  155. font-weight: 400;
  156. margin-left: 20rpx !important;
  157. }
  158. .today_text{
  159. display: block;
  160. font-size: 28rpx;
  161. color: rgba(156, 156, 156, 1);
  162. }
  163. .msg{
  164. background: rgba(247, 247, 247, 1);
  165. display: flex;
  166. border-top: 1px solid rgba(171, 171, 171, 0.2);
  167. }
  168. .msg view{
  169. width: 50%;
  170. text-align: center;
  171. font-size: 28rpx;
  172. line-height: 100rpx;
  173. }
  174. .msg view:first-child{
  175. border-right: 1px solid rgba(171, 171, 171, 0.2);
  176. }
  177. .msg image{
  178. width: 32rpx;
  179. position: relative;
  180. top: 5rpx;
  181. left: -10rpx;
  182. }
  183. .list{
  184. margin: 0 30rpx;
  185. border-radius: 8rpx;
  186. box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
  187. overflow: hidden;
  188. }