index.module.scss 762 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .A1home {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. align-items: center;
  6. :global {
  7. .logo {
  8. position: fixed;
  9. width: 8%;
  10. top: 4%;
  11. left: 2%;
  12. object-fit: contain;
  13. }
  14. .active {
  15. .title {
  16. animation: fade-in-out-in 1s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  17. }
  18. .pic {
  19. -webkit-animation: flip-vertical-right 0.6s
  20. cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  21. animation: flip-vertical-right 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  22. }
  23. }
  24. @media screen and (max-width: 768px) {
  25. .arrowAnimation {
  26. .arror,
  27. .arrorBg {
  28. height: 65px;
  29. }
  30. .arror {
  31. width: 28px;
  32. }
  33. }
  34. }
  35. }
  36. }