国外MOSE官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 lines
4.4 KiB

3 days ago
  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. .profile-container.data-v-247e4d67 {
  28. min-height: 100vh;
  29. background-color: #f5f5f5;
  30. }
  31. .vertical-line.data-v-247e4d67 {
  32. width: 9rpx;
  33. height: 33rpx;
  34. background-color: #1488DB;
  35. margin-right: 20rpx;
  36. }
  37. .custom-navbar.data-v-247e4d67 {
  38. background: linear-gradient(90deg, #1488db 0%, #1488db 100%);
  39. padding-top: 25px;
  40. }
  41. .custom-navbar .navbar-content.data-v-247e4d67 {
  42. height: 88rpx;
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between;
  46. padding: 0 30rpx;
  47. }
  48. .custom-navbar .navbar-content .navbar-left .back-icon.data-v-247e4d67 {
  49. font-size: 40rpx;
  50. color: #ffffff;
  51. font-weight: bold;
  52. }
  53. .custom-navbar .navbar-content .navbar-title.data-v-247e4d67 {
  54. font-size: 36rpx;
  55. color: #ffffff;
  56. font-weight: 500;
  57. }
  58. .custom-navbar .navbar-content .navbar-right.data-v-247e4d67 {
  59. display: flex;
  60. gap: 20rpx;
  61. }
  62. .custom-navbar .navbar-content .navbar-right .more-icon.data-v-247e4d67,
  63. .custom-navbar .navbar-content .navbar-right .settings-icon.data-v-247e4d67 {
  64. font-size: 32rpx;
  65. color: #ffffff;
  66. }
  67. .section.data-v-247e4d67 {
  68. margin: 20rpx;
  69. background-color: #ffffff;
  70. border-radius: 20rpx;
  71. overflow: hidden;
  72. }
  73. .section .section-title.data-v-247e4d67 {
  74. display: flex;
  75. align-items: center;
  76. padding: 30rpx;
  77. border-bottom: 1rpx solid #f0f0f0;
  78. }
  79. .section .section-title .title-text.data-v-247e4d67 {
  80. font-size: 32rpx;
  81. font-weight: 500;
  82. color: #333333;
  83. }
  84. .avatar-section.data-v-247e4d67 {
  85. display: flex;
  86. flex-direction: column;
  87. align-items: center;
  88. padding: 40rpx 30rpx;
  89. border-bottom: 1rpx solid #f0f0f0;
  90. }
  91. .avatar-section .avatar-button.data-v-247e4d67 {
  92. padding: 0;
  93. margin: 0;
  94. background: transparent;
  95. border: none;
  96. outline: none;
  97. margin-bottom: 20rpx;
  98. }
  99. .avatar-section .avatar-button.data-v-247e4d67::after {
  100. border: none;
  101. }
  102. .avatar-section .avatar-button .avatar.data-v-247e4d67 {
  103. width: 160rpx;
  104. height: 160rpx;
  105. border-radius: 80rpx;
  106. border: 4rpx dashed #cccccc;
  107. }
  108. .avatar-section .avatar-tip.data-v-247e4d67 {
  109. font-size: 26rpx;
  110. color: #999999;
  111. }
  112. .info-item.data-v-247e4d67 {
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. padding: 30rpx;
  117. border-bottom: 1rpx solid #f0f0f0;
  118. }
  119. .info-item.data-v-247e4d67:last-child {
  120. border-bottom: none;
  121. }
  122. .info-item .label.data-v-247e4d67 {
  123. font-size: 30rpx;
  124. color: #333333;
  125. font-weight: 500;
  126. width: 120rpx;
  127. }
  128. .info-item .value-container.data-v-247e4d67 {
  129. flex: 1;
  130. display: flex;
  131. align-items: center;
  132. justify-content: flex-end;
  133. }
  134. .info-item .value-container .nickname-input.data-v-247e4d67,
  135. .info-item .value-container .phone-input.data-v-247e4d67 {
  136. width: 100%;
  137. text-align: right;
  138. font-size: 30rpx;
  139. color: #666666;
  140. border: none;
  141. outline: none;
  142. background: transparent;
  143. }
  144. .info-item .value-container .nickname-input.data-v-247e4d67::-webkit-input-placeholder, .info-item .value-container .phone-input.data-v-247e4d67::-webkit-input-placeholder {
  145. color: #cccccc;
  146. }
  147. .info-item .value-container .nickname-input.data-v-247e4d67::placeholder,
  148. .info-item .value-container .phone-input.data-v-247e4d67::placeholder {
  149. color: #cccccc;
  150. }
  151. .save-section.data-v-247e4d67 {
  152. padding: 40rpx 20rpx;
  153. }
  154. .save-section .save-button.data-v-247e4d67 {
  155. width: 100%;
  156. height: 88rpx;
  157. background-color: #1488db;
  158. border-radius: 44rpx;
  159. border: none;
  160. outline: none;
  161. font-size: 32rpx;
  162. font-weight: 500;
  163. color: #ffffff;
  164. display: flex;
  165. align-items: center;
  166. justify-content: center;
  167. }
  168. .save-section .save-button.data-v-247e4d67::after {
  169. border: none;
  170. }