.swiper-box {
    position: relative;
}

.modular1 {
    padding: 5% 0;
}

.modular1 .swiper-container {
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
}

.modular1 .swiper-slide {
    display: flex;
}

.modular1 .left {
    width: 50%;
    background-position: center center;
    background-size: cover;
}

.modular1 .right {
    padding: 8%;
    flex: 1;
    color: #484848;
}

.modular1 .right .time {
    color: #8d8d8d;
    margin-bottom:1em;
}

.modular1 .right .title {
    margin-bottom: 1.5em;
}

.modular1 .swiper-button-next,
.modular1 .swiper-button-prev {
    background-color: #fff;
    background-size: 18%;
    width: 50px;
    height: 40px;
    margin-top: -20px;
    left: 0;
    transform: translate(-50%, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.modular1 .swiper-button-next {
    right: 0;
    left: auto;
    transform: translate(50%, 0);
}

.modular2 {
    padding-bottom: 5%;
}

.modular2 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.modular2 .wrap .item {
    padding: 9%;
    box-sizing: border-box;
    position: relative;
    color: #5f5f5f;
    transition: .5s;
}

.modular2 .wrap .item li {
    padding-bottom: 10%;
    border-bottom: 1px solid #e1e4e7;
}

.modular2 .wrap .item li h2 {
    margin: 10% 0;
    font-weight: bold;
}

.modular2 .wrap .item .title {
    display: flex;
    align-items: center;
    gap: 5%;
}

.modular2 .wrap .item .title img {
    max-width: 40px;
    max-height: 40px;
}

.modular2 .wrap .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f4f7;
    box-sizing: border-box;
    transition: .5s;
}

@media screen and (min-width: 1024px) {
    .modular2 .wrap .item:hover {
        background: #f6fafe;
    }

    .modular2 .wrap .item:hover::after {
        border-color: #c2a168;
        border-width: 6px;
    }
}

@media screen and (max-width: 1024px) {
    .modular2 .wrap {
        grid-template-columns: 1fr;
    }

    .modular1 .left {
        width: 100%;
    }

    .modular1 .swiper-slide {
        flex-direction: column;
    }

    .modular2 .wrap .item .title img {
        max-width: 24px;
        max-height: 24px;
    }
}