index.module.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. .search {
  2. --van-cell-background-color: transparent;
  3. --van-cell-font-size: 16px;
  4. --van-cell-text-color: #333;
  5. --van-cell-value-color: #999;
  6. --van-cell-icon-size: 10px;
  7. --base-bg: #f6f8f9;
  8. .sticky {
  9. :global(.van-sticky--fixed) {
  10. box-shadow: 10px 10px 10px var(--box-shadow-color);
  11. }
  12. >div {
  13. background-color: var(--base-bg);
  14. }
  15. }
  16. .title {
  17. padding-top: 16px;
  18. :global(.van-cell__value) {
  19. font-size: 12px;
  20. }
  21. }
  22. .keywordTitle {
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. padding: 8px 9px;
  27. .t {
  28. font-size: 14px;
  29. font-weight: 500;
  30. color: #000000;
  31. line-height: 20px;
  32. }
  33. .remove {
  34. font-size: 16px;
  35. }
  36. }
  37. .keywords {
  38. margin-top: 10px;
  39. padding: 0 14px;
  40. padding-bottom: 10px;
  41. display: flex;
  42. align-items: center;
  43. // .content::-webkit-scrollbar {
  44. // display: none;
  45. // }
  46. .content {
  47. flex: 1;
  48. // overflow: hidden;
  49. // overflow-x: auto;
  50. display: flex;
  51. flex-wrap: wrap;
  52. .searchKeyword {
  53. --van-tag-default-color: white;
  54. --van-tag-text-color: #313443;
  55. font-size: 14px;
  56. padding: 5px 14px;
  57. margin-right: 5px;
  58. margin-bottom: 10px;
  59. max-width: 100px;
  60. display: block;
  61. word-break: keep-all;
  62. }
  63. .arrowMore {
  64. width: 27px;
  65. height: 27px;
  66. border-radius: 50%;
  67. display: inline-flex;
  68. align-items: center;
  69. justify-content: center;
  70. background-color: #fff;
  71. font-size: 12px;
  72. color: #93959F;
  73. }
  74. }
  75. }
  76. .label {
  77. margin-right: 8px;
  78. font-size: 14px;
  79. :global {
  80. .van-list__loading,
  81. .van-list__finished-text,
  82. .van-list__error-text {
  83. width: 100%;
  84. }
  85. .iconfont-down {
  86. margin-left: 4px;
  87. }
  88. }
  89. }
  90. }
  91. .sticky {
  92. :global {
  93. .van-sticky {
  94. background: url('../../images/bg-image.png') no-repeat top center;
  95. background-size: 100% 214px;
  96. box-shadow: none !important;
  97. }
  98. .van-search__content {
  99. background: rgba(255, 255, 255, 0.5) !important;
  100. input::placeholder {
  101. color: rgba(0, 0, 0, 0.4) !important;
  102. }
  103. input {
  104. color: rgba(0, 0, 0, 0.4) !important;
  105. }
  106. .van-field__clear {
  107. color: rgba(0, 0, 0, 0.4) !important;
  108. }
  109. }
  110. }
  111. }
  112. .bgImg {
  113. position: fixed;
  114. top: 0;
  115. left: 0;
  116. width: 100%;
  117. height: 214px;
  118. // object-fit: cover;
  119. z-index: -1;
  120. }
  121. .tagTabs {
  122. --van-cell-background-color: transparent;
  123. --van-cell-font-size: 16px;
  124. --van-cell-text-color: #333;
  125. --van-cell-value-color: #999;
  126. --van-cell-icon-size: 10px;
  127. :global {
  128. .van-tab {
  129. font-size: 16px !important;
  130. margin-top: 15px;
  131. color: #999999;
  132. }
  133. .van-tab--active {
  134. font-size: 16px !important;
  135. color: #131415;
  136. }
  137. .van-tabs__line {
  138. width: 24px;
  139. height: 4px;
  140. background: linear-gradient(90deg, #FF3C81 0%, rgba(255, 118, 166, 0.5) 100%) !important;
  141. border-radius: 36px 36px 0px 0px;
  142. }
  143. }
  144. }