    /* box2 */
    .section2 {}

    .Box2 {
        margin-top: 45px;
        display: flex;
    }

    .item2 {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
    }

    .img2 {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .img2 img {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .img2 .list2 {
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: -300px;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        transition: 0.5s;
    }

    .img2:hover .list2 {
        bottom: 0;
    }

    .img2 .list2 a {
        width: 50%;
        display: none;
        text-align: center;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        text-align: center;
        color: #fff;
        line-height: 2.5;
        padding: 0 5px;
        font-size: 14px;
    }

    .img2 .list2 a:hover {
        background: var(--color);
    }

    .img2 .list2 a:nth-child(-n + 6) {
        display: -webkit-box;
    }

    .title2 {
        font-size: 30px;
        color: #333333;
    }

    .desc2 {
        font-size: 14px;
        line-height: 1.5;
        color: rgb(134, 134, 134)
    }

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

        .item2 {
            width: 50%;
        }
    }

    @media (max-width: 720px) {
        .item2 {
            grid-gap: 10px;
        }

        .title2 {
            font-size: 24px;
        }
    }

    @media (max-width: 460px) {
        .item2 {
            width: 100%;
        }
    }

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