爱简收旧衣按件回收前端代码仓库
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.

181 lines
4.1 KiB

  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .user-manager-container.data-v-1d5a9178 {
  27. min-height: 100vh;
  28. background: #f7f7f7;
  29. padding-bottom: 40rpx;
  30. }
  31. .navbar.data-v-1d5a9178 {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. width: 100vw;
  36. height: 100rpx;
  37. background: #fff;
  38. z-index: 10;
  39. display: flex;
  40. align-items: flex-end;
  41. justify-content: space-between;
  42. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  43. padding: 0 32rpx;
  44. }
  45. .navbar .nav-left.data-v-1d5a9178 {
  46. flex: 0 0 48rpx;
  47. display: flex;
  48. align-items: center;
  49. height: 100%;
  50. }
  51. .navbar .nav-title.data-v-1d5a9178 {
  52. flex: 1;
  53. text-align: center;
  54. font-size: 36rpx;
  55. font-weight: bold;
  56. color: #222;
  57. line-height: 100rpx;
  58. }
  59. .navbar .nav-right.data-v-1d5a9178 {
  60. flex: 0 0 80rpx;
  61. display: flex;
  62. align-items: center;
  63. justify-content: flex-end;
  64. height: 100%;
  65. }
  66. .search-bar-fixed.data-v-1d5a9178 {
  67. position: fixed;
  68. left: 0;
  69. width: 100vw;
  70. z-index: 20;
  71. background: #f3f3f3;
  72. border-radius: 0 0 40rpx 40rpx;
  73. display: flex;
  74. align-items: center;
  75. padding: 0 28rpx;
  76. height: 70rpx;
  77. margin: 0;
  78. box-sizing: border-box;
  79. }
  80. .search-bar.data-v-1d5a9178 {
  81. margin-top: 120rpx;
  82. margin-bottom: 0;
  83. margin-left: 32rpx;
  84. margin-right: 32rpx;
  85. background: #f3f3f3;
  86. border-radius: 40rpx;
  87. display: flex;
  88. align-items: center;
  89. padding: 0 28rpx;
  90. height: 70rpx;
  91. position: relative;
  92. }
  93. .search-bar .search-input.data-v-1d5a9178 {
  94. flex: 1;
  95. border: none;
  96. background: transparent;
  97. font-size: 28rpx;
  98. color: #222;
  99. margin-left: 16rpx;
  100. outline: none;
  101. }
  102. .search-bar .clear-btn.data-v-1d5a9178 {
  103. margin-left: 10rpx;
  104. margin-right: 10rpx;
  105. }
  106. .search-bar .cancel-btn.data-v-1d5a9178 {
  107. color: #bfbfbf;
  108. font-size: 28rpx;
  109. margin-left: 10rpx;
  110. }
  111. .suggest-list.data-v-1d5a9178 {
  112. margin-top: 24rpx;
  113. background: #fff;
  114. border-radius: 24rpx;
  115. margin-left: 0;
  116. margin-right: 0;
  117. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  118. overflow: hidden;
  119. }
  120. .suggest-item.data-v-1d5a9178 {
  121. display: flex;
  122. align-items: center;
  123. padding: 28rpx 32rpx;
  124. font-size: 32rpx;
  125. color: #222;
  126. border-bottom: 1rpx solid #f3f3f3;
  127. background: #fff;
  128. }
  129. .suggest-item.data-v-1d5a9178:last-child {
  130. border-bottom: none;
  131. }
  132. .user-list.data-v-1d5a9178 {
  133. margin: 0 0 0 0;
  134. padding: 0 0 0 0;
  135. }
  136. .user-card.data-v-1d5a9178 {
  137. background: #fff;
  138. border-radius: 32rpx;
  139. margin: 32rpx 32rpx 32rpx 32rpx;
  140. padding: 36rpx 36rpx 36rpx 36rpx;
  141. position: relative;
  142. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  143. }
  144. .user-info-row.data-v-1d5a9178 {
  145. display: flex;
  146. align-items: center;
  147. margin-bottom: 18rpx;
  148. }
  149. .user-info-row .user-label.data-v-1d5a9178 {
  150. font-size: 30rpx;
  151. color: #888;
  152. width: 110rpx;
  153. font-weight: 400;
  154. }
  155. .user-info-row .user-value.data-v-1d5a9178 {
  156. font-size: 32rpx;
  157. color: #222;
  158. font-weight: 500;
  159. }
  160. .user-info-row .role-tag.data-v-1d5a9178 {
  161. font-size: 26rpx;
  162. color: #ff8917;
  163. border: 2rpx solid #ff8917;
  164. border-radius: 12rpx;
  165. padding: 2rpx 18rpx;
  166. margin-left: 0rpx;
  167. font-weight: 400;
  168. background: #fff7f0;
  169. display: inline-block;
  170. vertical-align: middle;
  171. }
  172. .blocked-tag.data-v-1d5a9178 {
  173. position: absolute;
  174. right: 0;
  175. top: 0;
  176. background: #ffeaea;
  177. color: #ff5b5b;
  178. font-size: 28rpx;
  179. border-radius: 0 0 0 20rpx;
  180. padding: 12rpx 32rpx 12rpx 32rpx;
  181. font-weight: 400;
  182. }