follow.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .page {
  2. min-height: 100vh;
  3. background-color: #fff;
  4. padding-top: 10px;
  5. }
  6. .follow-reserveASeat{
  7. height: calc(90rpx + var(--status-bar-height)) !important;
  8. }
  9. .tabs {
  10. display: flex;
  11. height: 100%;
  12. justify-content: space-between;
  13. align-items: center;
  14. width: 246rpx;
  15. .tab {
  16. position: relative;
  17. width: 96rpx;
  18. height: 48rpx;
  19. font-size: 32rpx;
  20. color: #999;
  21. font-weight: 400;
  22. transition: all .5s;
  23. &.active {
  24. font-family: 'PingFang SC-Bold';
  25. color: #1F1F1F;
  26. background: url("../../static/me/wd_img_qiehuan.png") center / cover no-repeat;
  27. }
  28. }
  29. }
  30. .follow-list {
  31. padding: 0 40rpx;
  32. .follow-item {
  33. display: flex;
  34. align-items: center;
  35. padding: 20rpx 0;
  36. &:first-child{
  37. padding-top: 0;
  38. }
  39. .avator {
  40. width: 120rpx ;
  41. height: 120rpx ;
  42. margin-right: 24rpx;
  43. }
  44. .info {
  45. flex: 1;
  46. display: flex;
  47. align-items: center;
  48. .top-box {
  49. display: flex;
  50. align-items: center;
  51. .name {
  52. font-size: 32rpx;
  53. font-weight: 500;
  54. // margin-bottom: 8rpx;
  55. }
  56. > image {
  57. width: 36rpx;
  58. margin-left: 8rpx;
  59. margin-right: 10rpx;
  60. }
  61. .level {
  62. font-weight: 400;
  63. font-size: 20rpx;
  64. font-family: "PingFang SC-Bold";
  65. background: linear-gradient(360deg, #acf934 0%, #ffe439 100%);
  66. border-radius: 8rpx;
  67. padding: 2rpx 8rpx;
  68. display: inline-block;
  69. margin-left: 10rpx;
  70. }
  71. }
  72. .desc {
  73. font-size: 24rpx;
  74. color: #999;
  75. }
  76. }
  77. .unfollow-btn {
  78. font-size: 24rpx;
  79. width: 122rpx;
  80. height: 52rpx;
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. color: #1f1f1f;
  85. background: none;
  86. border: 2rpx solid #000;
  87. border-radius:36rpx;
  88. margin: 0;
  89. font-family: 'PingFang SC-Bold';
  90. image{
  91. display: none;
  92. width: 16rpx;
  93. height: 16rpx;
  94. margin-right: 5rpx;
  95. }
  96. &.active {
  97. color: #ACF934;
  98. background: #000;
  99. image{
  100. display: inline-block;
  101. }
  102. }
  103. }
  104. }
  105. }