| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .A4base {
- 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') repeat center center;
- background-size: 100% 101%;
- > div {
- position: absolute;
- top: 50%;
- left: 50%;
- img {
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- }
- :global {
- .A4base-title3 {
- transform: translate(-50%, -89%);
- width: 900px;
- height: 340px;
- }
- .A4base-logo {
- transform: translate(-233%, -271%);
- width: 400px;
- height: 162px;
- }
- .A4base-content {
- width: 1150px;
- height: 500px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- transform: translate(-50%, -280px);
- .A4base-title2 {
- width: 68%;
- height: 100%;
- }
- .A4base-title1 {
- width: 100%;
- height: 100%;
- }
- .A4base-other {
- width: 78%;
- height: 100%;
- }
- }
- .A4base-pic1 {
- transform: translate(-178%, 43%);
- width: 530px;
- height: 304px;
- }
- .A4base-pic2 {
- transform: translate(48%, -321%);
- width: 621px;
- height: 140px;
- }
- .A4base-time {
- transform: translate(207%, 115%);
- width: 322px;
- height: 206px;
- }
- .A4base-button {
- transform: translate(-50%, 264%);
- width: 224px;
- height: 120px;
- cursor: pointer;
- }
- }
- }
|