top.less 495 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .top {
  2. font-size: 16px;
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. padding: 15px 40px;
  7. background: rgba(4, 5, 7, 0.9);
  8. color: #fff;
  9. font-weight: 900;
  10. font-size: 30px;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. right: 0;
  15. z-index: 1;
  16. .top-logo {
  17. height: 80px;
  18. margin-right: 20px;
  19. }
  20. .top-rignt {
  21. position: absolute;
  22. right: 40px;
  23. span {
  24. font-size: 16px;
  25. }
  26. a {
  27. font-size: 16px;
  28. margin-left: 10px;
  29. }
  30. }
  31. }