searchList.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* pages/searchList/searchList.wxss */
  2. page{
  3. /* background: #fff; */
  4. padding: 0;
  5. }
  6. .scroll{
  7. height: calc(100vh - 166rpx)
  8. }
  9. .search{
  10. padding: 0 30rpx;
  11. background: #fff;
  12. }
  13. .search input{
  14. background: #EEEEEE;
  15. }
  16. .tab{
  17. /* overflow: auto; */
  18. background: #fff;
  19. padding: 10px;
  20. margin-bottom: 20rpx;
  21. }
  22. .tab view{
  23. display: flex;
  24. justify-content: space-between;
  25. width: 150vw
  26. }
  27. .tab text{
  28. font-size: 30rpx;
  29. color: #666;
  30. }
  31. .tab .active{
  32. color: #3780CD;
  33. }
  34. .rview .part{
  35. background: #fff;
  36. padding: 0 10px;
  37. margin-top: 10px;
  38. }
  39. .rview .part>.title{
  40. font-size: 32rpx;
  41. color: #333;
  42. margin-bottom: 28rpx;
  43. line-height: 40px;
  44. }
  45. .search image {
  46. right: 45rpx;
  47. }
  48. .rview .part>.title text{
  49. float: right;
  50. color: #3780CD;
  51. font-size: 26rpx;
  52. }
  53. .tj{
  54. display: flex;
  55. justify-content: space-between;
  56. }
  57. .tj navigator{
  58. width: 30%;
  59. }
  60. .tj image{
  61. width: 100%;
  62. max-height: 200rpx;
  63. }
  64. .list{
  65. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  66. border-radius: 20rpx;
  67. display: flex;
  68. padding: 20rpx;
  69. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  70. margin: 0 20rpx 40rpx;
  71. }
  72. .bottom{
  73. margin-bottom: 30rpx;
  74. }
  75. .list image{
  76. width: 20%;
  77. /* height: 160rpx; */
  78. max-height: 100px;
  79. background: #eee;
  80. }
  81. .list>view{
  82. width: 80%;
  83. padding-left: 20rpx;
  84. vertical-align: middle;
  85. }
  86. .list .title{
  87. margin-bottom: 20rpx;
  88. /* text-overflow: ellipsis;
  89. overflow: hidden;
  90. white-space: nowrap; */
  91. }
  92. .list text{
  93. color: #999;
  94. display: block;
  95. text-overflow: ellipsis;
  96. overflow: hidden;
  97. white-space: nowrap;
  98. font-size: 26rpx;
  99. }
  100. .list .company{
  101. overflow: visible;
  102. white-space: pre-wrap;
  103. margin-top: 40rpx;
  104. font-size: 28rpx;
  105. }
  106. .list .wrap{
  107. display: block;
  108. font-size: 26rpx;
  109. color: #999;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. display: -webkit-box;
  113. -webkit-line-clamp: 2;
  114. -webkit-box-orient: vertical;
  115. white-space: normal;
  116. }
  117. .sview{
  118. background: #fff;
  119. padding: 20rpx 30rpx 0
  120. }
  121. .sview .part{
  122. border-top: 1px solid #F1F1F1;
  123. padding: 40rpx 0;
  124. display: flex;
  125. justify-content: space-between;
  126. flex-wrap: wrap;
  127. }
  128. .sview .part:first-child{
  129. border: none;
  130. }
  131. .sview .title{
  132. color: #999;
  133. width: 100%;
  134. margin-bottom: 40rpx;
  135. }
  136. .sview .part text{
  137. width: 49%;
  138. text-align: center;
  139. margin-bottom: 40rpx;
  140. }
  141. .sview .part text:nth-child(odd){
  142. border-left: 1px solid #D8D8D8;
  143. }
  144. .sview .part navigator{
  145. width: 50%;
  146. color: #3780CD;
  147. margin-bottom: 40rpx;
  148. text-align: center;
  149. }
  150. .more{
  151. text-align:center;
  152. color:#999;
  153. padding:10rpx 0;
  154. }