index.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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: 26rpx;
  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. width: 68rpx;
  45. height: 24rpx;
  46. background: rgba(97, 202, 84, 1);
  47. border-radius: 50rpx;
  48. border: 2rpx solid rgba(255, 255, 255, 1);
  49. font-size: 16rpx;
  50. color: rgba(255, 255, 255, 1);
  51. line-height: 24rpx;
  52. text-align: center;
  53. position: absolute;
  54. bottom: -4rpx;
  55. left: 17rpx;
  56. }
  57. }
  58. .nickName {
  59. margin-left: 14rpx;
  60. margin-top: 2rpx;
  61. }
  62. }
  63. .state {
  64. width: 100rpx;
  65. text-align: center;
  66. .stateImg {
  67. width: 46rpx;
  68. height: 40rpx;
  69. }
  70. .stateText {
  71. color: #686868;
  72. font-size: 20rpx;
  73. }
  74. }
  75. }
  76. .empty {
  77. margin-top: 200rpx;
  78. }
  79. }