index.wxss 3.1 KB

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