index.module.scss 802 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .Skip {
  2. position: absolute;
  3. bottom: 15px;
  4. right: 15px;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. cursor: pointer;
  9. background-image: url('../../assets/sgImg/btn_skip@2x.png');
  10. background-size: 100% 100%;
  11. width: 110px;
  12. height: 36px;
  13. padding: 2px 0 0 15px;
  14. opacity: 0;
  15. pointer-events: none;
  16. transition: all 0.3s;
  17. z-index: 1;
  18. :global {
  19. .skipTxt {
  20. color: #ffe9b6;
  21. font-size: 18px;
  22. letter-spacing: 4px;
  23. }
  24. .skipIcon {
  25. position: relative;
  26. top: -2px;
  27. width: 24px;
  28. height: 24px;
  29. }
  30. }
  31. }
  32. .Skip2 {
  33. background-image: none;
  34. :global {
  35. .skipIcon {
  36. position: relative;
  37. top: -2px;
  38. width: 30px;
  39. height: 30px;
  40. }
  41. }
  42. }
  43. .SkipShow {
  44. opacity: 1;
  45. pointer-events: auto;
  46. }