index.less 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. .followBox {
  2. padding: 0rpx 20rpx 20rpx;
  3. .screening {
  4. position: fixed;
  5. top: 0px;
  6. left: 0px;
  7. width: 100%;
  8. padding: 0rpx 28rpx 20rpx;
  9. display: flex;
  10. z-index: 9;
  11. align-items: center;
  12. justify-content: space-between;
  13. box-sizing: border-box;
  14. background-color: #F2F6FC;
  15. padding-left: 20rpx;
  16. .type {
  17. padding: 4rpx 0rpx;
  18. color: #666;
  19. font-size: 26rpx;
  20. }
  21. .currentType {
  22. color: #333;
  23. font-weight: bold;
  24. border-bottom: 6rpx solid #00C657;
  25. }
  26. .searchFriend {
  27. font-size: 26rpx;
  28. display: flex;
  29. align-items: center;
  30. padding: 10rpx 30rpx;
  31. border-radius: 25rpx;
  32. color: #666666;
  33. background-color: white;
  34. image {
  35. width: 22rpx;
  36. height: 22rpx;
  37. margin-right: 10rpx;
  38. }
  39. }
  40. }
  41. .box {
  42. padding-bottom: 20rpx;
  43. margin-top: 88rpx;
  44. .userBox {
  45. margin-bottom: 28rpx;
  46. display: flex;
  47. align-items: flex-start;
  48. justify-content: space-between;
  49. padding: 16rpx 24rpx 24rpx;
  50. border-radius: 20rpx;
  51. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  52. background-color: white;
  53. .identity {
  54. position: relative;
  55. text-align: center;
  56. .avatar {
  57. width: 106rpx;
  58. height: 106rpx;
  59. border-radius: 50%;
  60. position: relative;
  61. background-color: #e4e1e1;
  62. }
  63. .identityText {
  64. position: absolute;
  65. top: 86rpx;
  66. left: 0rpx;
  67. right: 0rpx;
  68. margin: auto;
  69. width: 80rpx;
  70. margin-top: 6rpx;
  71. font-size: 24rpx;
  72. color: white;
  73. background-color: #10CA61;
  74. border-radius: 25rpx;
  75. }
  76. }
  77. .userRight {
  78. flex: 1;
  79. margin-left: 30rpx;
  80. .topBox {
  81. .row {
  82. display: flex;
  83. align-items: center;
  84. justify-content: space-between;
  85. .nickName {
  86. width: 200rpx;
  87. color: #333;
  88. font-size: 32rpx;
  89. }
  90. .gradeText {
  91. margin: 18rpx 0rpx 12rpx;
  92. font-size: 24rpx;
  93. color: rgba(0, 0, 0, 0.6);
  94. .copy {
  95. width: 22rpx;
  96. height: 22rpx;
  97. }
  98. }
  99. .count {
  100. margin-top: 10rpx;
  101. flex: 1;
  102. font-size: 24rpx;
  103. color: rgba(0, 0, 0, 0.6);
  104. text-align: left;
  105. .countNum {
  106. margin-left: 10rpx;
  107. }
  108. }
  109. .countEnd {
  110. text-align: right;
  111. border: none;
  112. }
  113. }
  114. }
  115. .btmBox {
  116. display: flex;
  117. align-items: center;
  118. justify-content: space-between;
  119. margin-top: 30rpx;
  120. .state {
  121. text-align: center;
  122. .character {
  123. width: 24rpx;
  124. height: 24rpx;
  125. margin-right: 6rpx;
  126. }
  127. .stateText {
  128. width: 200rpx;
  129. display: flex;
  130. justify-content: center;
  131. align-items: center;
  132. padding: 12rpx 0rpx;
  133. border-radius: 50rpx;
  134. font-size: 24rpx;
  135. }
  136. .already {
  137. background-color: #E4EDFB;
  138. }
  139. .yet {
  140. background-color: #1BC665;
  141. color: white;
  142. }
  143. }
  144. .follow {
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. width: 200rpx;
  149. height: 52rpx;
  150. font-size: 24rpx;
  151. border-radius: 50rpx;
  152. background-color: #10CA61;
  153. color: white;
  154. .character {
  155. width: 24rpx;
  156. height: 24rpx;
  157. margin-right: 6rpx;
  158. }
  159. }
  160. .isFans {
  161. background-color: #E2ECFB;
  162. color: #333;
  163. }
  164. }
  165. }
  166. }
  167. /*
  168. .follow {
  169. margin-top: 30rpx;
  170. box-sizing: border-box;
  171. width: 100%;
  172. background-color: white;
  173. border-radius: 20rpx;
  174. padding: 20rpx 34rpx 16rpx;
  175. display: flex;
  176. align-items: center;
  177. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  178. .left {
  179. display: flex;
  180. flex-direction: column;
  181. align-items: center;
  182. .avatar {
  183. width: 106rpx;
  184. height: 106rpx;
  185. border-radius: 50%;
  186. }
  187. .profession {
  188. display: inline-block;
  189. margin-top: 4rpx;
  190. padding: 4rpx 20rpx;
  191. font-size: 24rpx;
  192. color: white;
  193. background-color: #10CA61;
  194. border-radius: 20rpx;
  195. }
  196. }
  197. .right {
  198. margin-left: 46rpx;
  199. flex: 1;
  200. .infoBox {
  201. border-bottom: 1rpx solid #00000020;
  202. .top {
  203. display: flex;
  204. align-items: center;
  205. justify-content: space-between;
  206. .nickName {
  207. font-size: 32rpx;
  208. }
  209. .state {
  210. text-align: center;
  211. .stateText {
  212. width: 160rpx;
  213. padding: 12rpx 0rpx;
  214. border-radius: 50rpx;
  215. font-size: 24rpx;
  216. }
  217. .already {
  218. background-color: #E4EDFB;
  219. }
  220. .yet {
  221. background-color: #1BC665;
  222. color: white;
  223. }
  224. }
  225. }
  226. .number {
  227. padding-bottom: 14rpx;
  228. font-size: 24rpx;
  229. color: #00000060;
  230. }
  231. }
  232. .statistics {
  233. display: flex;
  234. justify-content: space-between;
  235. align-items: center;
  236. padding-top: 12rpx;
  237. font-size: 28rpx;
  238. color: #00000060;
  239. text {
  240. margin-left: 6rpx;
  241. }
  242. }
  243. }
  244. } */
  245. }
  246. }
  247. .empty {
  248. margin-top: 200rpx;
  249. }