search.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* pages/index/search/search.wxss */
  2. .base{
  3. display: flex;
  4. flex-direction: column;
  5. color: #333;
  6. height: 100vh;
  7. padding-top: 25rpx;
  8. }
  9. .line{
  10. background: gainsboro;
  11. height: 3rpx;
  12. margin-top: 15rpx;
  13. width: 100%;
  14. }
  15. .hot{
  16. display: flex;
  17. flex-direction: column;
  18. padding: 30rpx 25rpx 20rpx 20rpx;
  19. }
  20. .hot-tittle{
  21. font-size: 15px;
  22. }
  23. .hot-content{
  24. display: flex;
  25. flex-direction: row;
  26. flex-wrap: wrap;
  27. }
  28. .content-item{
  29. border-radius: 40rpx;
  30. padding: 12rpx 23rpx;
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. border: 3rpx solid #FFEBE0;
  35. color: #999999;
  36. margin: 20rpx 25rpx 0 0;
  37. }
  38. .history{
  39. display: flex;
  40. flex-direction: column;
  41. padding: 30rpx 25rpx 20rpx 20rpx;
  42. }
  43. .history-tittle{
  44. display: flex;
  45. flex-direction: row;
  46. justify-content: space-between;
  47. }
  48. .history-tittle-icon{
  49. height: 40rpx;
  50. width: 40rpx;
  51. }
  52. .resList{
  53. display: flex;
  54. flex-direction: row;
  55. border-bottom: 3rpx solid gainsboro;
  56. padding: 23rpx 25rpx;
  57. justify-content: space-between;
  58. }
  59. .resList-left{
  60. display: flex;
  61. flex-direction: column;
  62. }
  63. .resList-left-one{
  64. font-size: 16px;
  65. }
  66. .resList-left-two{
  67. color: #D3D3D3;
  68. font-size: 13px;
  69. margin: 8rpx 0;
  70. }
  71. .resList-left-three{
  72. display: flex;
  73. flex-direction: row;
  74. }
  75. .resList-left-three-item{
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. background: #FFEBE0;
  80. font-size: 11px;
  81. color: #f37b1d;
  82. padding: 6rpx 9rpx;
  83. margin-right: 14rpx;
  84. }
  85. .resList-right{
  86. display: flex;
  87. flex-direction: column;
  88. }
  89. .resList-right-price{
  90. font-size: 16px;
  91. color: #f37b1d;
  92. }
  93. .resList-right-date{
  94. color: #D3D3D3;
  95. font-size: 13px;
  96. }