user.wxss 939 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/user/user.wxss */
  2. page{
  3. background: #F4F6F8;
  4. position: fixed;
  5. }
  6. .bg{
  7. background: #fff;
  8. }
  9. .avatar{
  10. width: 140rpx;
  11. height: 140rpx;
  12. border-radius: 100%;
  13. overflow: hidden;
  14. margin:0 auto 20rpx;
  15. }
  16. .name{
  17. text-align: center;
  18. font-size: 40rpx;
  19. font-weight: 500;
  20. }
  21. .name view{
  22. font-size: 32rpx;
  23. }
  24. .info{
  25. position: relative;
  26. top: -80rpx;
  27. }
  28. .item{
  29. padding: 0 48rpx;
  30. line-height: 108rpx;
  31. font-size: 32rpx;
  32. }
  33. .item image{
  34. width: 32rpx;
  35. float: right;
  36. margin-top: 38rpx;
  37. }
  38. .login{
  39. padding: 150rpx 120rpx 0;
  40. height: 100vh;
  41. }
  42. .login input{
  43. width: 100%;
  44. text-align: center;
  45. height: 108rpx;
  46. background: #F4F6F8;
  47. font-size: 32rpx;
  48. border-radius: 16rpx;
  49. border: 1px solid #EEEEEE;
  50. }
  51. .login button:not([size='mini']){
  52. background: #FF5151;
  53. color: #fff;
  54. width: 100%;
  55. margin-top: 48rpx;
  56. height: 108rpx;
  57. line-height: 108rpx;
  58. padding: 0;
  59. font-size: 32rpx;
  60. border-radius: 16rpx;
  61. }