index.less 2.0 KB

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