index.module.less 809 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .search {
  2. .fixed{
  3. position: sticky;
  4. top: 0;
  5. z-index: 101;
  6. }
  7. .top {
  8. height: 50px;
  9. display: flex;
  10. align-items: center;
  11. padding: 0 16px;
  12. font-size: 16px;
  13. font-weight: bold;
  14. color: #fff;
  15. background-color: var(--van-primary-color);
  16. overflow: hidden;
  17. & > img {
  18. width: 25px;
  19. height: 25px;
  20. margin-right: 12px;
  21. }
  22. .topBtn {
  23. margin-left: auto;
  24. width: 60px;
  25. height: 26px;
  26. color: var(--van-primary-color);
  27. }
  28. }
  29. .tagContent {
  30. padding: 16px;
  31. display: flex;
  32. }
  33. .tagLeft {
  34. font-size: 14px;
  35. color: #000;
  36. white-space: nowrap;
  37. }
  38. .tags {
  39. font-size: 14px;
  40. color: #666;
  41. & > span {
  42. line-height: 20px;
  43. margin: 0 5px;
  44. }
  45. }
  46. }
  47. .searchContianer{
  48. padding: 0 16px;
  49. }