    /* Section2 */
    .section2 {
        display: block;
    }

    .Box2 {
        position: relative;
        width: 100%;
        z-index: 2;
        margin-top: 45px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .lt2 {
        width: 300px;
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    }

    .lt2 a {
        width: 100%;
        height: 100%;
        padding: 15px;
        background: #F8F8F8;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 18px;
    }

    .lt2 a:hover {
        color: #fff;
        background: var(--color);
    }

    .lt2 a:nth-child(1) {
        color: #fff;
        background: var(--color);
    }

    .rt2 {
        width: calc(100% - 320px);
    }

    .item2 {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px;
    }

    .Swiper2 {
        width: 100%;
    }

    .Slide2 {
        width: 100%;
        height: auto;
        background: #F8F8F8;
    }

    .img2 {
        position: relative;
    }

    .img2 .cover2 {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .img2 .bj2 {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        filter: grayscale(1);
        transition: 0.5s;
    }

    .Slide2:hover .img2 .bj2 {
        filter: grayscale(0);
    }

    .Slide2 h1 {
        padding: 15px 30px;
        color: #464646;
        font-size: 16px;
    }

    @media (max-width: 1600px) {}

    @media (max-width: 1440px) {
        .lt2 {
            width: 240px;
        }

        .lt2 a {
            font-size: 16px;
        }

        .rt2 {
            width: calc(100% - 260px);
        }

        .Slide2 h1 {
            padding: 15px;
        }
    }


    @media (max-width: 900px) {
        .Box2 {
            margin-top: 30px;
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .lt2 {
            width: 100%;
            display: flex;
            justify-content: center;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .lt2 a {
            width: auto;
            height: auto;
        }

        .rt2 {
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .lt2 a {
            font-size: 14px;
            padding: 10px;
        }

        .item2 {
            grid-gap: 10px;
        }

        .Slide2 h1 {
            padding: 15px 10px;
            font-size: 14px;
        }
    }

    @media (max-width: 380px) {}