index.wxss 1.5 KB

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