search.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .search {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. height: 80rpx;
  6. padding-left: 20rpx;
  7. padding-right: 20rpx;
  8. left: 0rpx;
  9. right: 0rpx;
  10. }
  11. .search-inside{
  12. border-radius: 20rpx;
  13. background: #dadada;
  14. }
  15. .search-input {
  16. font-size: 35rpx;
  17. }
  18. .cancel-button {
  19. height: 80rpx;
  20. width: 100rpx;
  21. line-height: 80rpx;
  22. font-size: 30rpx;
  23. text-align: center;
  24. opacity: 0;
  25. }
  26. .hot-tag-block {
  27. display:flex;
  28. flex-direction: column;
  29. justify-content: flex-start;
  30. align-items: flex-start;
  31. width: 100%;
  32. margin-top: 10rpx;
  33. }
  34. .hot-tag-title {
  35. font-size: 30rpx;
  36. margin-top: 30rpx;
  37. margin-left: 40rpx;
  38. }
  39. .hot-tags {
  40. margin: 20rpx 40rpx;
  41. }
  42. .hot-tag {
  43. display: inline-block;
  44. margin-bottom: 20rpx;
  45. margin-right: 20rpx;
  46. padding: 10rpx;
  47. font-size: 30rpx;
  48. line-height: 40rpx;
  49. border-radius: 10rpx 10rpx;
  50. }
  51. .hot-bar-block {
  52. width: 100%;
  53. height: 400rpx;
  54. margin-top: 10rpx;
  55. }
  56. .hot-bar-title {
  57. font-size: 35rpx;
  58. margin-top: 20rpx;
  59. margin-bottom: 20rpx;
  60. margin-left: 40rpx;
  61. font-weight: 900;
  62. }
  63. .hot-bar {
  64. height: 50rpx;
  65. padding: 10rpx 40rpx;
  66. border-style: solid;
  67. border-width: 1rpx;
  68. border-color: #FFFFFF;
  69. font-size: 30rpx;
  70. line-height: 50rpx;
  71. }
  72. .hot-block {
  73. position: absolute;
  74. top: 80rpx;
  75. bottom: 0rpx;
  76. width: 100%;
  77. }
  78. .search-block {
  79. position: absolute;
  80. top: 80rpx;
  81. bottom: 0rpx;
  82. width: 100%;
  83. background: white;
  84. opacity: 0;
  85. }
  86. .result-bar {
  87. padding: 15rpx 20rpx;
  88. border-style: solid;
  89. border-width: 1rpx;
  90. border-color: #F0F0F0;
  91. }
  92. .search-history {
  93. display: flex;
  94. justify-content: space-between;
  95. font-size: 35rpx;
  96. padding: 25rpx 40rpx;
  97. }