People_search.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /* parents/pages/search/search.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. page{
  5. background: #fff
  6. }
  7. .search-cancel{
  8. color: #00B7FF;
  9. font-size: 30rpx;
  10. margin: auto;
  11. }
  12. .history{
  13. color: #393939;
  14. font-size: 30rpx;
  15. margin: 40rpx;
  16. }
  17. .history-items{
  18. display: flex;
  19. justify-content: space-between;
  20. }
  21. .history-item{
  22. display: inline-block;
  23. margin: 20rpx 20rpx 0 0;
  24. padding: 15rpx 27rpx;
  25. background: #F6F5FB;
  26. border-radius:34rpx;
  27. font-size: 24rpx;
  28. color: #6C6C80;
  29. }
  30. .history-img{
  31. width: 30rpx;
  32. height: 30rpx;
  33. }
  34. .header {
  35. /* background: #FAFAFA; */
  36. padding: 24rpx 40rpx;
  37. }
  38. .header-active {
  39. background: #fff;
  40. }
  41. .nodata{
  42. text-align: center;
  43. color: #999999;
  44. font-size: 30rpx;
  45. }
  46. .nodata-img{
  47. width: 122rpx;
  48. height: 138rpx;
  49. margin: 0 0 50rpx 0;
  50. }
  51. .items {
  52. position: relative;
  53. z-index: 99;
  54. }
  55. .item {
  56. padding: 24rpx 30rpx;
  57. display: flex;
  58. justify-content: flex-end;
  59. align-items: center;
  60. background: #fff;
  61. }
  62. .item-text {
  63. color: #00B7FF;
  64. font-size: 28rpx;
  65. }
  66. .item-icon {
  67. width: 14rpx;
  68. height: 14rpx;
  69. margin-left: 20rpx;
  70. transition: all .3s;
  71. }
  72. .item-icon-active {
  73. transform: rotate(180deg);
  74. }
  75. .items-modal {
  76. position: absolute;
  77. top: 100%;
  78. left: 0;
  79. width: 100%;
  80. height: 1500rpx;
  81. background: rgba(0, 0, 0, .5);
  82. }
  83. .items-modal-list {
  84. background: #fff;
  85. border-top: solid 1rpx #e6e6e6;
  86. padding-left: 30rpx;
  87. }
  88. .items-modal-li {
  89. padding: 30rpx 30rpx 30rpx 0;
  90. border-bottom: solid 1rpx #e6e6e6;
  91. display: flex;
  92. justify-content: space-between;
  93. align-items: center;
  94. }
  95. .items-modal-li:nth-last-of-type(1) {
  96. border-bottom: solid 1rpx transparent;
  97. }
  98. .items-modal-text {
  99. font-size: 28rpx;
  100. color: #999;
  101. }
  102. .items-modal-icon {
  103. width: 26rpx;
  104. height: 20rpx;
  105. }
  106. .topic{
  107. color: #333333;
  108. font-size: 30rpx;
  109. padding: 24rpx 20rpx;
  110. background: #fff;
  111. }
  112. .topic-img{
  113. height: 26rpx;
  114. width: 26rpx;
  115. margin-right: 8rpx;
  116. margin-bottom: 5rpx;
  117. }
  118. .li_type{
  119. height: 38rpx;
  120. background: #f1efef;
  121. padding:15rpx 40rpx;
  122. line-height:38rpx;
  123. color:rgba(110, 107, 107, 0.8);
  124. font-size: 32rpx;
  125. }
  126. .icon{
  127. height: 24rpx;
  128. width: 12rpx;
  129. display:inline-block;
  130. }
  131. .image{
  132. height: 24rpx;
  133. width: 12rpx;
  134. }
  135. .topic>view{
  136. display: inline-block;
  137. }
  138. .li {
  139. display: flex;
  140. justify-content: flex-start;
  141. align-items: flex-start;
  142. margin: 50rpx auto;
  143. padding: 0;
  144. }
  145. .li-box {
  146. position: relative;
  147. width: 154rpx;
  148. min-height: 158rpx;
  149. }
  150. .li-img {
  151. position: absolute;
  152. top: 4li0rpx;
  153. left: 0;
  154. width: 88rpx;
  155. height: 88rpx;
  156. border-radius:50%;
  157. background: white;
  158. }
  159. .li-col {
  160. width:80%;
  161. display: flex;
  162. justify-content: flex-start;
  163. align-items: flex-start;
  164. }
  165. .li-text {
  166. width:80%;
  167. }
  168. .li-text-gray {
  169. font-size: 30rpx;
  170. color: #ccc;
  171. }
  172. .li-text-black {
  173. font-size: 34rpx;
  174. color: rgb(27, 27, 27);
  175. flex: 1;
  176. }
  177. .li-text-info{
  178. width:20%;
  179. color: #00B7FF;
  180. }