index.module.less 656 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .theHomeHeader {
  2. position: sticky;
  3. top: 0;
  4. background-color: #fff;
  5. padding: 10px 14px;
  6. z-index: 100;
  7. .content {
  8. display: flex;
  9. align-items: center;
  10. .mall {
  11. width: 62px;
  12. height: 35px;
  13. flex-shrink: 0;
  14. }
  15. .cart {
  16. width: 22px;
  17. height: 22px;
  18. flex-shrink: 0;
  19. margin-left: 16px;
  20. }
  21. }
  22. .searchBox {
  23. flex: 1;
  24. display: flex;
  25. align-items: center;
  26. padding: 0 16px;
  27. background-color: #f8f8f8;
  28. border-radius: 20px;
  29. color: #ccc;
  30. height: 30px;
  31. margin-left: 4px;
  32. .iconSearch {
  33. width: 16px;
  34. height: 16px;
  35. margin-right: 16px;
  36. }
  37. }
  38. }