index.css 569 B

1234567891011121314151617181920212223242526272829303132333435
  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. position: relative;
  14. width: 100%;
  15. height: 100%;
  16. overflow-y: auto;
  17. }
  18. .container::-webkit-scrollbar {
  19. width:0;
  20. }
  21. .container .bg {
  22. width: 100%;
  23. display: block;
  24. }
  25. .btn {
  26. position: absolute;
  27. top: 64%;
  28. left: 50%;
  29. transform: translateX(-50%);
  30. width: 6.02rem;
  31. height: 1.98rem;
  32. background: url('../image/index/btn.png');
  33. background-size: 100% 100%;
  34. display: none;
  35. }