index.less 859 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .boot {
  2. height: 100vh;
  3. background-color: #fff;
  4. background-repeat: no-repeat;
  5. background-position: center top;
  6. background-size: cover;
  7. overflow: hidden;
  8. &__guide {
  9. width: 100%;
  10. height: 100%;
  11. img {
  12. width: 100%;
  13. height: 100%;
  14. object-fit: contain;
  15. }
  16. }
  17. article {
  18. position: relative;
  19. display: flex;
  20. flex-direction: column;
  21. height: 100%;
  22. background-color: #fff;
  23. section {
  24. flex: 1;
  25. overflow-y: auto;
  26. img {
  27. max-width: 100%;
  28. }
  29. }
  30. footer {
  31. position: absolute;
  32. bottom: 0;
  33. left: 0;
  34. width: 100%;
  35. padding: 10px 20px;
  36. }
  37. }
  38. }