edit.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .page-container.data-v-7e5a80f3 {
  2. min-height: 100vh;
  3. background: #f5f6fb;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. /* 导航栏 */
  8. .custom-navbar.data-v-7e5a80f3 {
  9. background: #ffffff;
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. padding: 80rpx 32rpx 30rpx;
  14. box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.08);
  15. position: relative;
  16. }
  17. .navbar-back.data-v-7e5a80f3 {
  18. width: 80rpx;
  19. height: 60rpx;
  20. display: flex;
  21. align-items: center;
  22. }
  23. .back-icon.data-v-7e5a80f3 {
  24. font-size: 40rpx;
  25. color: #222222;
  26. font-weight: bold;
  27. }
  28. .navbar-title.data-v-7e5a80f3 {
  29. position: absolute;
  30. left: 50%;
  31. transform: translateX(-50%);
  32. }
  33. .title-text.data-v-7e5a80f3 {
  34. font-size: 36rpx;
  35. font-weight: 600;
  36. color: #222222;
  37. }
  38. .navbar-placeholder.data-v-7e5a80f3 {
  39. width: 80rpx;
  40. }
  41. /* 内容区 */
  42. .scroll-view.data-v-7e5a80f3 {
  43. flex: 1;
  44. height: 0;
  45. }
  46. .content-wrapper.data-v-7e5a80f3 {
  47. padding: 32rpx;
  48. }
  49. /* 表单卡片 */
  50. .form-card.data-v-7e5a80f3 {
  51. background: #ffffff;
  52. border-radius: 24rpx;
  53. padding: 16rpx 32rpx;
  54. box-shadow: 0 8rpx 24rpx rgba(37, 52, 94, 0.08);
  55. margin-bottom: 40rpx;
  56. }
  57. .form-item.data-v-7e5a80f3 {
  58. display: flex;
  59. align-items: center;
  60. justify-content: space-between;
  61. padding: 32rpx 0;
  62. border-bottom: 1rpx solid #f5f6fb;
  63. }
  64. .form-item.data-v-7e5a80f3:last-child {
  65. border-bottom: none;
  66. }
  67. .item-label.data-v-7e5a80f3 {
  68. font-size: 30rpx;
  69. font-weight: 600;
  70. color: #222222;
  71. min-width: 120rpx;
  72. }
  73. .avatar-section.data-v-7e5a80f3 {
  74. display: flex;
  75. align-items: center;
  76. }
  77. .avatar-btn.data-v-7e5a80f3 {
  78. background: transparent;
  79. border: none;
  80. padding: 0;
  81. margin: 0;
  82. line-height: normal;
  83. }
  84. .avatar-btn.data-v-7e5a80f3::after {
  85. border: none;
  86. }
  87. .avatar-preview.data-v-7e5a80f3 {
  88. width: 120rpx;
  89. height: 120rpx;
  90. border-radius: 50%;
  91. background: #f5f6fb;
  92. }
  93. .change-tip.data-v-7e5a80f3 {
  94. font-size: 26rpx;
  95. color: #5B5AEA;
  96. margin-left: 20rpx;
  97. }
  98. .item-input.data-v-7e5a80f3 {
  99. flex: 1;
  100. height: 60rpx;
  101. font-size: 30rpx;
  102. color: #222222;
  103. text-align: right;
  104. }
  105. .item-value.data-v-7e5a80f3 {
  106. font-size: 30rpx;
  107. color: #9ca2b5;
  108. }
  109. /* 保存按钮 */
  110. .action-section.data-v-7e5a80f3 {
  111. padding: 0 20rpx;
  112. }
  113. .save-btn.data-v-7e5a80f3 {
  114. width: 100%;
  115. height: 96rpx;
  116. background: #5B5AEA;
  117. color: #ffffff;
  118. font-size: 32rpx;
  119. font-weight: 600;
  120. border-radius: 48rpx;
  121. border: none;
  122. box-shadow: 0 12rpx 24rpx rgba(91, 90, 234, 0.3);
  123. line-height: 96rpx;
  124. }
  125. .save-btn.data-v-7e5a80f3:active {
  126. opacity: 0.9;
  127. }
  128. .save-btn[disabled].data-v-7e5a80f3 {
  129. opacity: 0.6;
  130. }
  131. .bottom-safe-area.data-v-7e5a80f3 {
  132. height: 80rpx;
  133. }