index.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. .searchFriend {
  2. .searchBox {
  3. position: fixed;
  4. top: 0px;
  5. left: 0px;
  6. width: 100%;
  7. padding: 0rpx 28rpx 18rpx;
  8. box-sizing: border-box;
  9. z-index: 9;
  10. overflow: hidden;
  11. background-color: #F2F6FC;
  12. .input {
  13. background-color: white;
  14. border-radius: 50rpx;
  15. padding: 12rpx 30rpx;
  16. padding-right: 140rpx;
  17. }
  18. .searchBtn {
  19. position: absolute;
  20. right: 50rpx;
  21. top: 6rpx;
  22. padding: 6rpx 40rpx;
  23. background: #00C657;
  24. border-radius: 40rpx;
  25. .img {
  26. width: 24rpx;
  27. height: 24rpx;
  28. }
  29. }
  30. }
  31. .historyList {
  32. padding: 80rpx 30rpx 0rpx;
  33. .notes {
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. padding: 30rpx 0rpx 14rpx;
  38. border-bottom: 1rpx solid #DDDDDD;
  39. .left {
  40. display: flex;
  41. align-items: center;
  42. font-size: 28rpx;
  43. .clock {
  44. width: 34rpx;
  45. height: 34rpx;
  46. margin-right: 16rpx;
  47. }
  48. }
  49. .delete {
  50. color: #A4A4A5;
  51. font-size: 50rpx;
  52. line-height: 40rpx;
  53. padding: 0rpx 20rpx;
  54. }
  55. }
  56. }
  57. .box {
  58. padding-bottom: 20rpx;
  59. margin-top: 100rpx;
  60. .follow {
  61. margin-top: 30rpx;
  62. box-sizing: border-box;
  63. width: 100%;
  64. background-color: white;
  65. border-radius: 20rpx;
  66. padding: 20rpx 34rpx 16rpx;
  67. display: flex;
  68. align-items: center;
  69. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  70. .left {
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. .avatar {
  75. width: 106rpx;
  76. height: 106rpx;
  77. border-radius: 50%;
  78. }
  79. .profession {
  80. display: inline-block;
  81. margin-top: 4rpx;
  82. padding: 4rpx 20rpx;
  83. font-size: 24rpx;
  84. color: white;
  85. background-color: #10CA61;
  86. border-radius: 20rpx;
  87. }
  88. }
  89. .right {
  90. margin-left: 46rpx;
  91. flex: 1;
  92. .infoBox {
  93. border-bottom: 1rpx solid #00000020;
  94. .top {
  95. display: flex;
  96. align-items: center;
  97. justify-content: space-between;
  98. .nickName {
  99. font-size: 32rpx;
  100. }
  101. .state {
  102. text-align: center;
  103. .stateText {
  104. width: 160rpx;
  105. padding: 12rpx 0rpx;
  106. border-radius: 50rpx;
  107. font-size: 24rpx;
  108. }
  109. .already {
  110. background-color: #E4EDFB;
  111. }
  112. .yet {
  113. background-color: #1BC665;
  114. color: white;
  115. }
  116. }
  117. }
  118. .number {
  119. padding-bottom: 14rpx;
  120. font-size: 24rpx;
  121. color: #00000060;
  122. }
  123. }
  124. .statistics {
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. padding-top: 12rpx;
  129. font-size: 28rpx;
  130. color: #00000060;
  131. text {
  132. margin-left: 6rpx;
  133. }
  134. }
  135. }
  136. }
  137. }
  138. .empty {
  139. margin-top: 200rpx;
  140. }
  141. }