index.module.scss 604 B

1234567891011121314151617181920212223242526272829303132333435
  1. .NextPage {
  2. position: absolute;
  3. right: 20px;
  4. top: 50%;
  5. transform: translateY(-50%);
  6. cursor: pointer;
  7. width: 120px;
  8. height: auto;
  9. z-index: 10;
  10. :global {
  11. .NPimg {
  12. width: 100%;
  13. }
  14. .NPdiv {
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. height: 100%;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. color: #fffddc;
  24. font-size: 16px;
  25. transition: all 0.3s;
  26. &:hover {
  27. color: #ead98f;
  28. }
  29. & > span {
  30. padding-left: 5px;
  31. font-size: 14px;
  32. }
  33. }
  34. }
  35. }