| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .A5win {
- opacity: 0;
- pointer-events: none;
- transition: all 0.3s;
- position: absolute;
- z-index: 10;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.4);
- backdrop-filter: blur(4px);
- display: flex;
- justify-content: center;
- align-items: center;
- :global {
- img {
- pointer-events: none;
- }
- .A5Mmain {
- width: 50vw;
- height: auto;
- position: relative;
- & > img {
- width: 100%;
- height: auto;
- }
- .A5Mbox {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- padding: 5%;
- z-index: 2;
- & > h3 {
- color: #f9d36d;
- font-size: 24px;
- font-weight: 700;
- letter-spacing: 2px;
- }
- .A5Mrow {
- margin-top: 1vh;
- color: var(--themeColor2);
- font-size: 16px;
- display: flex;
- flex-wrap: wrap;
- & > div {
- font-weight: 700;
- }
- }
- .A5Mtu {
- object-fit: contain;
- max-width: 46%;
- max-height: 70%;
- position: absolute;
- top: 46%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .A5Mbtn {
- z-index: 10;
- position: absolute;
- bottom: 8%;
- left: 50%;
- transform: translateX(-50%);
- img {
- width: 2vw;
- height: auto;
- margin: 0 1vw;
- pointer-events: auto;
- cursor: pointer;
- }
- }
- }
- }
- }
- }
- .A5winShow {
- opacity: 1;
- pointer-events: auto;
- }
|