users.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. .quxiao {
  28. width: 40%;
  29. height: 70rpx;
  30. line-height: 70rpx;
  31. text-align: center;
  32. background-color: #F8F8FC;
  33. border: 2rpx solid #cacaca;
  34. color: #999;
  35. border-radius: 50rpx;
  36. }
  37. .queren {
  38. width: 40%;
  39. height: 70rpx;
  40. line-height: 70rpx;
  41. text-align: center;
  42. background-color: #1773ff;
  43. color: #fff;
  44. border-radius: 50rpx;
  45. }
  46. .foot-select {
  47. position: fixed;
  48. bottom: 0;
  49. width: 100%;
  50. padding: 20rpx;
  51. background: #fff;
  52. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  53. z-index: 1000;
  54. }
  55. .active {
  56. color: #1773ff;
  57. font-weight: bold;
  58. }
  59. .notact {
  60. color: #888;
  61. }
  62. page {
  63. background-color: #F8F8FC;
  64. }
  65. .top {
  66. /* height: 88rpx; */
  67. background-color: #fff;
  68. padding: 0rpx 15rpx;
  69. padding-top: 20rpx;
  70. }
  71. .indexes {
  72. position: relative;
  73. }
  74. .indexBar {
  75. position: fixed;
  76. right: 0px;
  77. bottom: 0px;
  78. padding: 20rpx 20rpx 20rpx 60rpx;
  79. display: flex;
  80. align-items: center;
  81. }
  82. .indexBar .indexBar-box {
  83. width: 40rpx;
  84. height: auto;
  85. background: #fff;
  86. display: flex;
  87. flex-direction: column;
  88. box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.1);
  89. border-radius: 10rpx;
  90. }
  91. .indexBar-item {
  92. flex: 1;
  93. width: 40rpx;
  94. height: 40rpx;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. font-size: 24rpx;
  99. color: #888;
  100. }
  101. movable-view.indexBar-item {
  102. width: 40rpx;
  103. height: 40rpx;
  104. z-index: 9;
  105. position: relative;
  106. }
  107. movable-view.indexBar-item::before {
  108. content: "";
  109. display: block;
  110. position: absolute;
  111. left: 0;
  112. top: 10rpx;
  113. height: 20rpx;
  114. width: 4rpx;
  115. background-color: #f37b1d;
  116. }
  117. .indexToast {
  118. position: fixed;
  119. top: 0;
  120. right: 80rpx;
  121. bottom: 0;
  122. background: rgba(0, 0, 0, 0.5);
  123. width: 100rpx;
  124. height: 100rpx;
  125. border-radius: 10rpx;
  126. margin: auto;
  127. color: #fff;
  128. line-height: 100rpx;
  129. text-align: center;
  130. font-size: 48rpx;
  131. }
  132. .zm {
  133. height: 30rpx;
  134. padding: 0rpx 20rpx;
  135. font-size: 24rpx;
  136. color: #888;
  137. background: #F8F8FC;
  138. }
  139. .user-list {
  140. margin: 20rpx;
  141. border-radius: 20rpx;
  142. }
  143. .user-item {
  144. width: 100%;
  145. margin: 12rpx 0;
  146. }
  147. .user-item .avatar {
  148. width: 100rpx;
  149. height: 100rpx;
  150. }
  151. .user-item .avatar .img {
  152. border-radius: 50%;
  153. width: 100%;
  154. height: 100%;
  155. }
  156. .user-item .content {
  157. margin-left: 15rpx;
  158. }
  159. .user-item .content .name {
  160. font-size: 26rpx;
  161. color: #111;
  162. }
  163. .user-item .content .dept {
  164. font-size: 24rpx;
  165. color: #888;
  166. margin-top: 15rpx;
  167. }