service-footer.css 626 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * PC端
  3. */
  4. @media screen and (min-width:768px) {
  5. #footer {
  6. width: 100vw;
  7. height: 6.5vw;
  8. background-color: #282828;
  9. text-align: center;
  10. color: #FFFFFF;
  11. font-size: 0.7vw;
  12. line-height: 6.5vw;
  13. }
  14. }
  15. /**
  16. * 移动端
  17. */
  18. @media screen and (max-width:768px) {
  19. #footer {
  20. width: 100vw;
  21. height: 12.4vw;
  22. background-color: #282828;
  23. text-align: center;
  24. color: #FFFFFF;
  25. font-size: 3vw;
  26. line-height: 12.4vw;
  27. position: fixed;
  28. bottom: 0;
  29. left: 0;
  30. }
  31. }