1234567891011121314151617181920212223242526272829303132 |
- .guidePage {
- width: 100vw;
- height: 100vh;
- background-color: transparent;
- margin: 0;
- max-width: initial;
- overflow: hidden;
- }
- .bottom {
- display: flex;
- }
- .content {
- height: 100vh;
- position: relative;
- .step {
- position: absolute;
- bottom: 100PX;
- right: 100PX;
- z-index: 999;
- }
- .child {
- width: 196PX;
- position: absolute;
- bottom: 0;
- right: 0;
- z-index: 1000;
- }
- }
|