星火官网,前端页面(前台)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738
  1. html,
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. font-size: 100px;
  6. line-height: 1;
  7. font-family: "Source Han Sans CN" !important;
  8. color: #333;
  9. box-sizing: border-box;
  10. background-color: #F5F7F9;
  11. user-select: none;
  12. }
  13. .header_root {
  14. position: fixed;
  15. width: 100%;
  16. color: #fff;
  17. background-color: transparent;
  18. z-index: 9999;
  19. }
  20. .header_root.bg_white {
  21. color: #333;
  22. background-color: #fff;
  23. }
  24. .header_root:hover {
  25. color: #333;
  26. background-color: #fff;
  27. }
  28. .header_root:hover .header_box .header_left .left_white,
  29. .header_root.bg_white .header_box .header_left .left_white {
  30. display: none;
  31. }
  32. .header_root:hover .header_box .header_left .left_gray,
  33. .header_root.bg_white .header_box .header_left .left_gray {
  34. display: inline-block;
  35. }
  36. .footer_root {
  37. background-color: #F5F7F9;
  38. }