user.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. }
  62. .modal{
  63. position: fixed;
  64. width: 100%;
  65. height: 100vh;
  66. background: rgba(0,0,0,.5);
  67. top: 0;
  68. left: 0;
  69. z-index: 99;
  70. }
  71. .fund_modal{
  72. width: 80%;
  73. padding: 50rpx;
  74. /* height: 20vh; */
  75. background: #fff;
  76. border-radius: 16rpx;
  77. margin: 30vh auto;
  78. text-align: center;
  79. position: relative;
  80. }
  81. .fund_modal view{
  82. font-size: 30rpx;
  83. }
  84. .fund_modal input{
  85. border: 1px solid #ccc;
  86. height: 80rpx;
  87. border-radius: 8rpx;
  88. margin: 20rpx 0;
  89. }
  90. .fund_modal text{
  91. position: absolute;
  92. right: 65rpx;
  93. top: 40%;
  94. }