<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*swiper*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: left;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.swiper-slide .content {
    width: 50%;
    position: absolute;
    left: 60px;
    bottom: 90px;
    z-index: 20;
}

@media screen and (max-width: 768px) {

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .swiper-slide .content {
        display: none;
    }

    .swiper-slide &gt; .img {
        height: 35vw !important;
    }
}

@media (min-width: 768px) {
    .swiper-slide &gt; .img {
        height: 30vw !important;
    }
}

.swiper-slide .content .txt {
    color: white;
    background: rgba(0, 0, 0, 0.05);
}

.swiper-slide .content .txt h3 {
    color: white;
    margin: 0;
    font-size: 2.3em;
    font-weight: normal;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    display: none;
}

.swiper:hover &gt; .swiper-button-next, .swiper:hover &gt; .swiper-button-prev {
    display: block;
}

.swiper-pagination span {
    width: 15px;
    height: 15px;
}
/*swiper*/</pre></body></html>