index.css 508 B

12345678910111213141516171819202122232425262728
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html,
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. box-sizing: border-box;
  10. overflow: hidden;
  11. }
  12. .container {
  13. width: 100%;
  14. height: 100%;
  15. background: url('../image/index/indexbg.jpg');
  16. background-size: 100% 100%;
  17. position: relative;
  18. }
  19. .btn {
  20. position: absolute;
  21. top: 60%;
  22. left: 50%;
  23. transform: translateX(-50%);
  24. width: 6.02rem;
  25. height: 1.98rem;
  26. background: url('../image/index/btn.png');
  27. background-size: 100% 100%;
  28. }