index.module.less 480 B

1234567891011121314151617181920212223242526272829303132
  1. .guidePage {
  2. width: 100vw;
  3. height: 100vh;
  4. background-color: transparent;
  5. margin: 0;
  6. max-width: initial;
  7. overflow: hidden;
  8. }
  9. .bottom {
  10. display: flex;
  11. }
  12. .content {
  13. height: 100vh;
  14. position: relative;
  15. .step {
  16. position: absolute;
  17. bottom: 100PX;
  18. right: 100PX;
  19. z-index: 999;
  20. }
  21. .child {
  22. width: 196PX;
  23. position: absolute;
  24. bottom: 0;
  25. right: 0;
  26. z-index: 1000;
  27. }
  28. }