index.less 1.6 KB

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