    /* box2 */
    .section2 {
        width: 100%;
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding-top: 75px;
        padding-bottom: 120px;
    }

    .Box2 {
        width: 100%;
        z-index: 2;
    }

    .list2 {
        margin: 60px 0;
        width: 100%;
        overflow: visible;
    }

    .list2 p {
        position: relative;
        top: 48px;
        display: block;
        width: 60px;
        height: 1px;
        background: #BABABA;
    }

    .list2 p:last-child {
        display: none;
    }

    @media (min-width: 1200px) {
        .list2 .swiper-wrapper {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }
    }


    .list2 .slide {
        width: auto;
        position: relative;
    }

    .list2 .slide .img {
        position: relative;
        width: 96px;
        height: 96px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .list2 .slide.swiper-slide-thumb-active .img {
        background: var(--color);
    }

    .list2 .slide .img::after {
        content: "";
        display: block;
        position: absolute;
        width: 108%;
        height: 108%;
        border-radius: 50%;
        border: 1px dashed #003686;
        opacity: 0;
        transition: 0.5s;
    }

    .list2 .slide.swiper-slide-thumb-active .img::after {
        opacity: 1;
    }

    .list2 .slide .img img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        transition: 0.5s;
    }

    .list2 .slide.swiper-slide-thumb-active .img img {
        filter: brightness(0) invert(1);
    }

    .list2 .slide h1 {
        font-size: 16px;
        text-align: center;
        color: #333333;
        margin-top: 10px;
    }

    .list2 .slide.swiper-slide-thumb-active h1 {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
    }

    .item2box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .item2 {
        margin: 0;
        width: calc(100% - 100px);
    }

    .item2 .slide {
        width: 100%;
        opacity: 0 !important;
        transition: 0.5s;
        display: flex;
        align-items: center;
    }

    .item2 .slide.swiper-slide-active {
        opacity: 1 !important;
    }

    .text2 {
        width: 37%;
        padding-right: 70px;
    }

    .text2 p {
        display: block;
        width: 70px;
        height: 4px;
        background: linear-gradient(-90deg, #003686 50%, #000D20 50%);
    }

    .text2 h1 {
        font-size: 32px;
        color: #000000;
        margin: 20px 0;
    }

    .text2 h2 {
        font-size: 14px;
        color: #686868;
    }

    .text2 a {
        margin-top: 120px;
        width: 148px;
        height: 42px;
        background: #003686;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #FFFFFF;
    }

    .img2 {
        width: 63%;
        padding-left: 60px;
        background: url(/assets/images/box2.png) center left no-repeat;
        background-size: 100% 80%;
    }

    .img2 img {
        width: 100%;
        border-radius: 30px;
    }

    .anniu2 {
        width: 45px;
        height: 130px;
        border: 1px solid rgba(0, 54, 134, 0.4);
        border-radius: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .anniu2 i {
        color: #9D9D9D;
    }

    .anniu2 i:hover {
        color: #003686;
    }

    @media (max-width: 1500px) {
        .list2 .slide .img {
            width: 75px;
            height: 75px;
        }

        .list2 .slide .img img {
            width: 30px;
            height: 30px;
        }

        .list2 p {
            top: 37.5px;
            width: 45px;
        }
    }


    @media (max-width: 1200px) {
        .list2 .slide {
            width: 100px;
            margin-right: 75px;
        }

        .list2 .slide .img {
            margin: 0 auto;
        }

        .list2 .slide .img::before {
            content: "";
            display: block;
            width: 45px;
            height: 1px;
            background: #BABABA;
            position: absolute;
            right: -75px;
        }

        .list2 p {
            display: none;
        }

        .item2 {
            margin: 0;
            width: calc(100% - 60px);
        }

        .text2 {
            width: 45%;
            padding-right: 30px;
        }

        .img2 {
            width: 55%;
            padding-left: 30px;
        }

        .text2 h1 {
            font-size: 24px;
            margin: 15px 0;
        }

        .text2 a {
            margin-top: 45px;
        }

        .img2 img {
            width: 100%;
            border-radius: 15px;
        }
    }

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

        .list2 .slide {
            width: 100px;
            margin-right: 45px;
        }

        .list2 .slide:nth-last-child(2) {
            margin-right: 0;
        }

        .list2 .slide .img::before {
            width: 30px;
            right: -50px;
        }

        .list2 .slide:nth-last-child(2) .img::before {
            display: none;
        }

        .list2 {
            margin: 45px 0;
        }

        .item2box {
            flex-direction: column-reverse;
        }

        .anniu2 {
            width: 130px;
            height: 45px;
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            margin-bottom: 45px;
        }

        .item2 {
            margin: 0;
            width: 100%;
        }

        .item2 .slide {
            display: flex;
            flex-wrap: wrap;
        }

        .text2 {
            width: 100%;
            padding-right: 0px;
            padding-bottom: 30px;
        }

        .img2 {
            width: 100%;
            padding-left: 30px;
        }
    }

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

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