index.module.less 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .theHeader {
  2. position: relative;
  3. display: flex;
  4. align-items: center;
  5. height: 55px;
  6. padding: 0 18px;
  7. border-bottom: 1px solid #f8f8f8;
  8. z-index: 10;
  9. .logo {
  10. position: relative;
  11. display: flex;
  12. align-items: center;
  13. height: 100%;
  14. flex: 1;
  15. & > img {
  16. max-height: 80%;
  17. max-width: 80%;
  18. }
  19. }
  20. .undis {
  21. position: absolute;
  22. left: 0;
  23. clip: rect(0 0 0 0);
  24. }
  25. .btn {
  26. width: 70px;
  27. height: 26px;
  28. margin-left: auto;
  29. margin-right: 14px;
  30. font-size: 12px;
  31. font-weight: 500;
  32. white-space: nowrap;
  33. }
  34. .icon{
  35. width: 20px;
  36. height: 20px;
  37. :global{
  38. .van-icon__image{
  39. width: 100%;
  40. height: 100%;
  41. }
  42. }
  43. }
  44. }
  45. .theHeader.light {
  46. background-color: #fff;
  47. }
  48. .theHeader.dark {
  49. background-color: rgba(0, 0, 0, 0.6);
  50. border-bottom: 0;
  51. backdrop-filter: blur(10px);
  52. -webkit-backdrop-filter: blur(10px);
  53. }