edit-profile.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .container.data-v-c0f45e44 {
  2. width: 100%;
  3. height: 100vh;
  4. background-color: #FFFFFF;
  5. display: flex;
  6. flex-direction: column;
  7. padding-top: 30px;
  8. box-sizing: border-box;
  9. position: relative;
  10. }
  11. .header.data-v-c0f45e44 {
  12. display: flex;
  13. align-items: center;
  14. justify-content: space-between;
  15. padding: 20rpx 30rpx;
  16. background-color: #FFFFFF;
  17. border-bottom: 1rpx solid #E0E0E0;
  18. position: relative;
  19. }
  20. .back-btn.data-v-c0f45e44 {
  21. width: 60rpx;
  22. height: 60rpx;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. }
  27. .back-icon.data-v-c0f45e44 {
  28. font-size: 40rpx;
  29. color: #333333;
  30. font-weight: bold;
  31. }
  32. .header-title.data-v-c0f45e44 {
  33. position: absolute;
  34. left: 50%;
  35. transform: translateX(-50%);
  36. font-size: 36rpx;
  37. font-weight: bold;
  38. color: #333333;
  39. }
  40. .save-btn.data-v-c0f45e44 {
  41. width: 80rpx;
  42. height: 60rpx;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. .save-text.data-v-c0f45e44 {
  48. font-size: 28rpx;
  49. color: #4FC3F7;
  50. }
  51. .scroll-content.data-v-c0f45e44 {
  52. flex: 1;
  53. width: 100%;
  54. }
  55. .profile-item.data-v-c0f45e44 {
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. padding: 30rpx;
  60. border-bottom: 1rpx solid #F0F0F0;
  61. background-color: #FFFFFF;
  62. }
  63. .item-label.data-v-c0f45e44 {
  64. font-size: 30rpx;
  65. color: #666666;
  66. }
  67. .item-value.data-v-c0f45e44 {
  68. display: flex;
  69. align-items: center;
  70. flex: 1;
  71. justify-content: flex-end;
  72. margin-left: 30rpx;
  73. }
  74. .avatar.data-v-c0f45e44 {
  75. width: 100rpx;
  76. height: 100rpx;
  77. border-radius: 50%;
  78. background-color: #F5F5F5;
  79. margin-right: 20rpx;
  80. }
  81. .nickname-text.data-v-c0f45e44,
  82. .gender-text.data-v-c0f45e44,
  83. .birthday-text.data-v-c0f45e44,
  84. .bio-text.data-v-c0f45e44 {
  85. font-size: 30rpx;
  86. color: #333333;
  87. flex: 1;
  88. text-align: right;
  89. margin-right: 20rpx;
  90. }
  91. .bio-text.data-v-c0f45e44 {
  92. max-width: 400rpx;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. white-space: nowrap;
  96. }
  97. .arrow.data-v-c0f45e44 {
  98. font-size: 32rpx;
  99. color: #CCCCCC;
  100. }
  101. .login-mask.data-v-c0f45e44 {
  102. position: absolute;
  103. left: 0;
  104. right: 0;
  105. top: 0;
  106. bottom: 0;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. background-color: rgba(255, 255, 255, 0.92);
  111. }
  112. .login-btn.data-v-c0f45e44 {
  113. width: 220rpx;
  114. height: 80rpx;
  115. background-color: #4FC3F7;
  116. color: #FFFFFF;
  117. border: none;
  118. border-radius: 40rpx;
  119. font-size: 30rpx;
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. }