index.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. .clearHistory {
  57. padding: 20rpx 0rpx;
  58. text-align: center;
  59. font-size: 28rpx;
  60. }
  61. }
  62. .box {
  63. padding-bottom: 20rpx;
  64. margin-top: 100rpx;
  65. .follow {
  66. margin-top: 30rpx;
  67. box-sizing: border-box;
  68. width: 100%;
  69. background-color: white;
  70. border-radius: 20rpx;
  71. padding: 20rpx 34rpx 16rpx;
  72. display: flex;
  73. align-items: center;
  74. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  75. .left {
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. .avatar {
  80. width: 106rpx;
  81. height: 106rpx;
  82. border-radius: 50%;
  83. }
  84. .profession {
  85. display: inline-block;
  86. margin-top: 4rpx;
  87. padding: 4rpx 20rpx;
  88. font-size: 24rpx;
  89. color: white;
  90. background-color: #10CA61;
  91. border-radius: 20rpx;
  92. }
  93. }
  94. .right {
  95. margin-left: 46rpx;
  96. flex: 1;
  97. .infoBox {
  98. border-bottom: 1rpx solid #00000020;
  99. .top {
  100. display: flex;
  101. align-items: center;
  102. justify-content: space-between;
  103. .nickName {
  104. font-size: 32rpx;
  105. }
  106. .state {
  107. text-align: center;
  108. .stateText {
  109. width: 160rpx;
  110. padding: 12rpx 0rpx;
  111. border-radius: 50rpx;
  112. font-size: 24rpx;
  113. }
  114. .already {
  115. background-color: #E4EDFB;
  116. }
  117. .yet {
  118. background-color: #1BC665;
  119. color: white;
  120. }
  121. }
  122. }
  123. .number {
  124. padding-bottom: 14rpx;
  125. font-size: 24rpx;
  126. color: #00000060;
  127. }
  128. }
  129. .statistics {
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: center;
  133. padding-top: 12rpx;
  134. font-size: 28rpx;
  135. color: #00000060;
  136. text {
  137. margin-left: 6rpx;
  138. }
  139. }
  140. }
  141. }
  142. }
  143. .empty {
  144. margin-top: 200rpx;
  145. }
  146. }