index.wxss 1.5 KB

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