<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    /* box2 */
    .section2 {
        padding: 120px 0;
    }

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

    .List2Box {
        width: 15%;
        padding-right: 90px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .List2 {
        width: 100%;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 20px;
        color: #535353;
        transition: 0.5s;
    }

    .List2.on {
        color: #fff;
    }

    .List2::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        right: 0;
        top: 0;
        width: 298px;
        height: 100%;
        background: linear-gradient(-90deg, #009BE3 27%, #cfcfcf00 110%);
        border-radius: 0px 100px 100px 0px;
        opacity: 0;
        transition: 0.5s;
    }

    .List2.on::after {
        opacity: 1;
    }

    .List2 img {
        margin-right: 10px;
    }

    .List2.on img {
        filter: brightness(0) invert(1);
    }

    .item2Box {
        width: 85%;
        position: relative;
    }


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

    .item2.on {
        width: 100%;
        display: block;
    }

    .Swiper2 {
        width: 100%;
    }

    .slide2 {
        width: 35%;
        margin-right: 90px;
        background: #F4F4F4;
        border-radius: 12px;
        border-bottom: 12px solid var(--color);
        transition: 0.5s;
    }

    .slide2:hover {
        background: #F4F4F400;
        border-bottom: 12px solid #fff0;
    }

    .slide2::after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background: url(/assets/images/bj2.png) no-repeat center;
        background-size: contain;
        transition: 0.5s;
        opacity: 0;
    }

    .slide2:hover::after {
        opacity: 1;
    }

    .slide2 .img2 {
        padding: 45px;
        position: relative;
        z-index: 1;
        width: 100%;
        filter: drop-shadow(0px 12px 12px rgba(0, 0, 0, 0.5));
    }

    .slide2 .text2 {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 30px;

    }

    .slide2 .text2 h1 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #000000;
    }

    .slide2 .text2 h2 {
        font-size: 18px;
        color: #696969;
    }

    .slide2 .More2 {
        position: absolute;
        right: -60px;
        bottom: 20px;
        width: 180px;
        height: 60px;
        background: #FFFFFF;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        color: #363636;
    }


    .prev2 {
        position: absolute;
        top: -170px;
        right: 80px;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 2px solid var(--color);
    }

    .next2 {
        position: absolute;
        top: -170px;
        right: 0;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 2px solid var(--color);
    }

    .prev2 i,
    .next2 i {
        color: var(--color);
    }

    .prev2:hover,
    .next2:hover {
        background: var(--color);
    }

    .prev2:hover i,
    .next2:hover i {
        color: #fff;
    }

    @media (max-width: 1660px) {
        .List2Box {
            padding-right: 30px;
        }
    }

    @media (max-width: 1440px) {
        .slide2 {
            width: 40%;
            margin-right: 60px;
        }

        .slide2 .More2 {
            right: -45px;
        }
    }

    @media (max-width: 1200px) {
        .section2 {
            padding: 90px 0;
        }

        .Box2 {
            margin-top: 30px;
        }

        .prev2,
        .next2 {
            top: -110px;
        }

        .List2Box {
            width: 160px;
        }

        .List2 {
            height: 45px;
            font-size: 16px;
        }

        .item2Box {
            width: calc(100% - 160px);
        }

        .slide2 .text2 {
            padding: 15px;
        }

        .slide2 .text2 h1 {
            font-size: 18px;
        }

        .slide2 .text2 h2 {
            font-size: 14px;
        }

        .slide2 .img2 {
            padding: 60px 10px;
        }

        .slide2 .More2 {
            width: 120px;
            height: 45px;
            font-size: 14px;
        }

        .slide2 .More2 img {
            width: 30px;
            height: 10px;
            object-position: right;
            object-fit: cover;
        }
    }

    @media (max-width: 720px) {
        .section2 {
            padding: 60px 0;
        }

        .Box2 {
            flex-wrap: wrap;
        }

        .List2Box {
            padding: 0;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            grid-gap: 15px;
            margin-bottom: 30px;
        }

        .List2 {
            width: auto;
            padding: 0 30px;
            justify-content: center;
        }

        .List2::after {
            width: 100%;
            border-radius: 50px;
        }

        .item2Box {
            width: 100%;
        }

        .slide2 {
            width: calc((100% - var(--container)) / 2);
            margin-right: var(--container);
        }

        .slide2 .More2 {
            border-radius: 0;
            width: 100%;
            left: 0;
            bottom: 0;
            background: #fff0;
            box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
            grid-gap: 15px;
        }

        .prev2,
        .next2 {
            width: 45px;
            height: 45px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            background: #ffffff80;
        }

        .prev2 {
            left: 0;
            right: auto;
        }
    }

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

    @media (max-width: 380px) {
        .slide2 {
            width: 100%;
            margin-right: 30px;
        }
    }
</pre></body></html>