index.less 1.6 KB

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