index.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. }
  169. .empty {
  170. margin-top: 200rpx;
  171. }