searchList.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /* pages/searchList/searchList.wxss */
  2. page{
  3. padding: 0;
  4. }
  5. .search{
  6. padding: 0 10px;
  7. background: #fff;
  8. }
  9. .search input{
  10. background: #EEEEEE;
  11. }
  12. .tab{
  13. overflow: auto;
  14. background: #fff;
  15. padding: 10px;
  16. margin-bottom: 20rpx;
  17. }
  18. .tab view{
  19. display: flex;
  20. justify-content: space-between;
  21. width: 150vw
  22. }
  23. .tab text{
  24. font-size: 30rpx;
  25. color: #666;
  26. }
  27. .tab .active{
  28. color: #3780CD;
  29. }
  30. .part{
  31. background: #fff;
  32. padding: 0 10px;
  33. margin-top: 10px;
  34. }
  35. .part>.title{
  36. font-size: 32rpx;
  37. color: #333;
  38. margin-bottom: 28rpx;
  39. line-height: 40px;
  40. }
  41. .part>.title text{
  42. float: right;
  43. color: #3780CD;
  44. font-size: 26rpx;
  45. }
  46. .tj{
  47. display: flex;
  48. justify-content: space-between;
  49. }
  50. .tj navigator{
  51. width: 30%;
  52. }
  53. .tj image{
  54. width: 100%;
  55. max-height: 200rpx;
  56. }
  57. .list{
  58. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  59. border-radius: 20rpx;
  60. display: flex;
  61. padding: 20rpx;
  62. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  63. margin: 0 20rpx 40rpx;
  64. }
  65. .list image{
  66. width: 20%;
  67. height: 160rpx;
  68. max-height: 100px;
  69. }
  70. .list>view{
  71. width: 80%;
  72. padding-left: 20rpx;
  73. vertical-align: middle;
  74. }
  75. .list .title{
  76. margin-bottom: 20rpx;
  77. text-overflow: ellipsis;
  78. overflow: hidden;
  79. white-space: nowrap;
  80. }
  81. .list text{
  82. color: #999;
  83. display: block;
  84. text-overflow: ellipsis;
  85. overflow: hidden;
  86. white-space: nowrap;
  87. font-size: 26rpx;
  88. }
  89. .list .company{
  90. overflow: visible;
  91. white-space: pre-wrap;
  92. margin-top: 40rpx;
  93. font-size: 28rpx;
  94. }
  95. .list .wrap{
  96. display: block;
  97. font-size: 26rpx;
  98. color: #999;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. display: -webkit-box;
  102. -webkit-line-clamp: 2;
  103. -webkit-box-orient: vertical;
  104. white-space: normal;
  105. }