index.less 1.9 KB

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