1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .A5Mobile {
- position: relative;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 99999;
- width: 100%;
- height: 100%;
- transition: all 0.5s;
- background: url('./image/bg.png') no-repeat center center;
- background-size: 100% 100%;
- > div {
- position: absolute;
- top: 50%;
- left: 50%;
- img {
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- }
- :global {
- .title {
- transform: translate(-50%, -195%);
- width: calc(100% - 40px);
- }
- .A4base-pic1 {
- transform: translateY(-36%);
- left: 30px;
- width: 73px;
- }
- .A4base-pic2 {
- transform: translate(75%);
- top: 30px;
- width: 100px;
- }
- .A4base-pic3 {
- transform: translate(-50%, -140px);
- width: calc(100% - 50px);
- }
- .A4base-pic4 {
- transform: translateX(-92%);
- width: 200px;
- top: 0;
- }
- .A4base-pic5 {
- transform: translate(-50%, -60px);
- width: calc(100% - 30px);
- }
- .button {
- cursor: pointer;
- transform: translate(-50%, 290px);
- width: 200px;
- }
- }
- }
|