searchList.wxss 1.7 KB

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