user.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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: 400;
  22. }
  23. .name text{
  24. font-size: 28rpx;
  25. color: #FFF;
  26. font-weight: 400;
  27. }
  28. .info{
  29. position: relative;
  30. background: #D94B24;
  31. display: flex;
  32. padding: 30rpx;
  33. }
  34. .item{
  35. line-height: 108rpx;
  36. font-size: 32rpx;
  37. border-bottom: 1px solid #F5F5F5;
  38. }
  39. .logout{
  40. margin-top:15rpx;
  41. background:#fff;
  42. border:none;
  43. padding: 0 30rpx;
  44. }
  45. .item image{
  46. width: 32rpx;
  47. float: right;
  48. margin-top: 38rpx;
  49. }
  50. .login input{
  51. width: 100%;
  52. text-align: center;
  53. height: 108rpx;
  54. /* background: #F4F6F8; */
  55. font-size: 32rpx;
  56. border-radius: 8rpx;
  57. border: 1px solid #E0E0E0;
  58. }
  59. .login button:not([size='mini']){
  60. background: #D94B24;
  61. color: #fff;
  62. width: 100%;
  63. margin-top: 48rpx;
  64. height: 108rpx;
  65. line-height: 108rpx;
  66. padding: 0;
  67. font-size: 32rpx;
  68. border-radius: 8rpx;
  69. }
  70. .no_login{
  71. height: 100vh;
  72. background: #fff;
  73. text-align: center;
  74. padding: 30% 70rpx 0;
  75. }
  76. .no_login .avatar{
  77. width: 160rpx;
  78. height: 160rpx;
  79. margin: 50rpx auto 100rpx;
  80. }
  81. .title{
  82. font-size: 32rpx;
  83. }