html,
body {
        position: relative;
        height: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;

        ::-webkit-scrollbar {
                display: none;
                /* Chrome Safari */
        }
}

body {
        background: #eee;
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        font-size: 14px;
        color: #000;
        margin: 0;
        padding: 0;
}

.swiper {
        --swiper-theme-color: #ff6600;
        --swiper-pagination-color: #00ff33;
        width: 100vw;
        height: 100vh;
        /* 两种都可以 */
}

.swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
}

.swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: fill;
}

a {
        color: inherit;
        text-decoration: none;
}

.info {
        position: fixed;
        color: #999aaa;
        bottom: 25px;
        left: 50%;
        z-index: 10;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
}