index.less 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .followBox {
  2. padding: 0rpx 20rpx 20rpx;
  3. .screening {
  4. display: flex;
  5. align-items: center;
  6. // justify-content: space-between;
  7. justify-content: space-around;
  8. box-sizing: border-box;
  9. padding-left: 20rpx;
  10. .type {
  11. padding: 4rpx 0rpx;
  12. color: #666;
  13. font-size: 26rpx;
  14. }
  15. .currentType {
  16. color: #333;
  17. font-size: 32rpx;
  18. font-weight: bold;
  19. border-bottom: 6rpx solid #00C657;
  20. }
  21. .searchFriend {
  22. font-size: 26rpx;
  23. display: flex;
  24. align-items: center;
  25. padding: 10rpx 26rpx;
  26. border-radius: 25rpx;
  27. color: #666666;
  28. background-color: white;
  29. image {
  30. width: 22rpx;
  31. height: 22rpx;
  32. margin-right: 10rpx;
  33. }
  34. }
  35. }
  36. .follow {
  37. margin-top: 20rpx;
  38. box-sizing: border-box;
  39. width: 100%;
  40. background-color: white;
  41. border-radius: 10rpx;
  42. margin-bottom: 20rpx;
  43. padding: 20rpx;
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. .userInfo {
  48. flex: 1;
  49. display: flex;
  50. .avatar {
  51. position: relative;
  52. .avatar-image {
  53. width: 96rpx;
  54. height: 96rpx;
  55. background-color: wheat;
  56. border-radius: 50%;
  57. border: 4rpx solid #61CA54;
  58. }
  59. .user-profession {
  60. position: absolute;
  61. bottom: -4rpx;
  62. left: 17rpx;
  63. width: 68rpx;
  64. height: 24rpx;
  65. background: rgba(97, 202, 84, 1);
  66. border-radius: 50rpx;
  67. border: 2rpx solid rgba(255, 255, 255, 1);
  68. font-size: 16rpx;
  69. color: rgba(255, 255, 255, 1);
  70. line-height: 24rpx;
  71. text-align: center;
  72. }
  73. }
  74. .infoBox {
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-around;
  78. margin-left: 14rpx;
  79. margin-top: 2rpx;
  80. .gmtCreated {
  81. font-size: 26rpx;
  82. color: #888;
  83. }
  84. }
  85. }
  86. .state {
  87. text-align: center;
  88. .stateText {
  89. width: 160rpx;
  90. padding: 16rpx 0rpx;
  91. border-radius: 50rpx;
  92. font-size: 24rpx;
  93. }
  94. .already {
  95. background-color: #E4EDFB;
  96. }
  97. .yet {
  98. background-color: #1BC665;
  99. color: white;
  100. }
  101. }
  102. }
  103. .empty {
  104. margin-top: 200rpx;
  105. }
  106. }