mineEdit.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .edit_title {
  28. display: flex;
  29. align-items: center;
  30. font-size: 32rpx;
  31. }
  32. .editBox {
  33. width: 100%;
  34. height: 840rpx;
  35. display: flex;
  36. flex-direction: column;
  37. background-color: #fff;
  38. border-top: 1px solid #E7E7E7;
  39. padding: 0 18px;
  40. }
  41. .editBox .edit_avatar {
  42. height: 164rpx;
  43. display: flex;
  44. justify-content: space-between;
  45. }
  46. .editBox .edit_avatar .userAvatar {
  47. display: flex;
  48. align-items: center;
  49. }
  50. .editBox .edit_avatar .userAvatar image {
  51. width: 120rpx;
  52. height: 120rpx;
  53. }
  54. .editBox .setName {
  55. display: flex;
  56. justify-content: space-between;
  57. height: 92rpx;
  58. border-top: 1px solid #E7E7E7;
  59. }
  60. .editBox .setName .input_details {
  61. display: flex;
  62. align-items: center;
  63. flex-direction: row;
  64. }
  65. .editBox .setName .input_details .nickname {
  66. width: 100px;
  67. text-align: end;
  68. font-size: 28rpx;
  69. color: #999999;
  70. }
  71. .editBox .setPicker {
  72. height: 92rpx;
  73. border-top: 1px solid #E7E7E7;
  74. }
  75. .editBox .setPicker .content {
  76. height: 92rpx;
  77. display: flex;
  78. align-items: center;
  79. justify-content: space-between;
  80. }
  81. .editBox .setPicker .content .input_details {
  82. display: flex;
  83. align-items: center;
  84. }
  85. .editBox .setPicker .content .input_details .details {
  86. display: flex;
  87. flex-direction: row;
  88. }
  89. .editBox .setPicker .content .input_details .details .text {
  90. font-size: 28rpx;
  91. color: #999999;
  92. }
  93. .editBox .setPicker .content .input_details .arrow {
  94. display: flex;
  95. }
  96. .editBox .setPicker .content .input_details .arrow image {
  97. width: 32rpx;
  98. height: 32rpx;
  99. }
  100. .editBox .setIntro {
  101. display: flex;
  102. flex-direction: column;
  103. justify-content: space-evenly;
  104. height: 216rpx;
  105. border-top: 1px solid #E7E7E7;
  106. }
  107. .editBox .setIntro .input_details {
  108. display: flex;
  109. align-items: center;
  110. }
  111. .editBox .setIntro .input_details .selfdomIntro {
  112. width: 100%;
  113. height: 88rpx;
  114. }
  115. .editBox .setIntro .input_details .selfdomIntro textarea {
  116. width: 100%;
  117. height: 88rpx;
  118. font-size: 28rpx;
  119. color: #999999;
  120. }
  121. .btnBox {
  122. position: absolute;
  123. margin: 0 85rpx;
  124. bottom: 40px;
  125. }
  126. .btnBox .btn button {
  127. width: 580rpx;
  128. height: 88rpx;
  129. border: none;
  130. border-radius: 100rpx;
  131. border: 1px solid lightgray;
  132. font-size: 36rpx;
  133. color: #545454;
  134. text-align: center;
  135. }
  136. .btnBox .btn button:first-child {
  137. background-color: #0056a8;
  138. color: white;
  139. margin-bottom: 24rpx;
  140. }
  141. .btnBox .btn button::after {
  142. border: none;
  143. }