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

    .Top2 {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .list2 {
        display: flex;
        grid-gap: 10px;
    }

    .list2 a {
        width: 240px;
        height: 60px;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 15px;
        color: #FFF;
        font-size: 16px;
        font-weight: bold;
    }

    .list2 a.on {
        background: var(--color2);
    }

    .list2 a img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .Box2 {
        margin-top: 30px;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .item2 {
        width: 100%;
        display: none;
    }

    .item2.on {
        display: block;
    }

    .Swiper2 {
        width: 100%;
    }

    .Slide2 {
        border-bottom: 1px solid #D9D9D9;
    }

    .img2 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img2 i {
        position: absolute;
        z-index: 3;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 40px;
        opacity: 0;
        transition: 0.5s;
    }

    .Slide2:hover .img2 i {
        opacity: 1;
    }

    .text2 {
        padding: 40px 0;
        color: #000;
        font-size: 20px;
        text-align: center;
    }



    @media (max-width: 1440px) {
        .list2 a {
            width: 210px;
        }
    }

    @media (max-width: 1200px) {
        .Top2 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .list2 {
            width: 100%;
        }

        .list2 a {
            width: 100%;
            height: 45px;
        }

        .list2 a img {
            width: 20px;
            height: 20px;
        }
    }

    @media (max-width: 900px) {
        .text2 {
            padding: 20px 0;
            font-size: 16px;
        }

        .img2 i {
            width: 45px;
            height: 45px;
            font-size: 30px;
        }

        .list2 a {
            grid-gap: 5px;
        }
    }

    @media (max-width: 500px) {
        .list2 {
            flex-wrap: wrap;
        }

        .list2 a {
            width: 100%;
            height: auto;
            padding: 10px;
        }
    }

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