index.wxss 3.2 KB

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