index.module.scss 783 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .A5Mobile {
  2. position: relative;
  3. top: 50%;
  4. left: 50%;
  5. transform: translate(-50%, -50%);
  6. z-index: 99999;
  7. width: 100%;
  8. height: 100%;
  9. transition: all 0.5s;
  10. background: url('./image/bg.png') no-repeat center center;
  11. background-size: 102% 100%;
  12. > div {
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. img {
  17. object-fit: contain;
  18. width: 100%;
  19. height: 100%;
  20. }
  21. }
  22. :global {
  23. .title {
  24. top: 90px;
  25. transform: translateX(-50%);
  26. width: 85%;
  27. }
  28. .logo {
  29. top: 20px;
  30. transform: translateX(-50%);
  31. width: 85%;
  32. }
  33. .pic1 {
  34. transform: translate(-50%, -20%);
  35. width: 85%;
  36. }
  37. .button {
  38. cursor: pointer;
  39. transform: translate(-50%, 232px);
  40. width: 180px;
  41. }
  42. }
  43. }