1234567891011121314151617181920212223242526272829303132333435 |
- .NextPage {
- position: absolute;
- right: 20px;
- top: 50%;
- transform: translateY(-50%);
- cursor: pointer;
- width: 120px;
- height: auto;
- z-index: 10;
- :global {
- .NPimg {
- width: 100%;
- }
- .NPdiv {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fffddc;
- font-size: 16px;
- transition: all 0.3s;
- &:hover {
- color: #ead98f;
- }
- & > span {
- padding-left: 5px;
- font-size: 14px;
- }
- }
- }
- }
|