| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .Skip {
- position: absolute;
- bottom: 15px;
- right: 15px;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- background-image: url('../../assets/sgImg/btn_skip@2x.png');
- background-size: 100% 100%;
- width: 110px;
- height: 36px;
- padding: 2px 0 0 15px;
- opacity: 0;
- pointer-events: none;
- transition: all 0.3s;
- z-index: 1;
- :global {
- .skipTxt {
- color: #ffe9b6;
- font-size: 18px;
- letter-spacing: 4px;
- }
- .skipIcon {
- position: relative;
- top: -2px;
- width: 24px;
- height: 24px;
- }
- }
- }
- .Skip2 {
- background-image: none;
- :global {
- .skipIcon {
- position: relative;
- top: -2px;
- width: 30px;
- height: 30px;
- }
- }
- }
- .SkipShow {
- opacity: 1;
- pointer-events: auto;
- }
|