    .section5 {
        padding: 0;
        position: relative;
    }

    .Box5 {
        position: relative;
        width: 100%;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .lt5 {
        width: 64%;
        height: 50vw;
    }


    .rt5 {
        width: 36%;
        background: #fff;
        padding: 0px var(--container);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .rt5 .indexTitle h1 {
        text-align: left;
    }


    .Nav5 {
        margin: 75px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: start;
    }

    .Nav5 h1 {
        font-weight: 700;
        font-size: 18px;
        color: #626262;
    }

    .Nav5 h1.on {
        color: #1B1464;
        border-bottom: 1px solid #1B1464;
    }

    .list5 {
        display: none;
    }

    .list5.on {
        display: block;
    }

    .textBox5 {
        height: 375px;
    }


    .text5 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-gap: 30px;
        border-bottom: 1px solid #D9D9D9;
    }

    .text5 p {
        font-size: 16px;
        color: #626262;
    }

    .More5 {
        margin-top: 60px;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60px;
        font-size: 16px;
        color: #fff;
    }

    .More5::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: var(--color);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        transform: skewX(-20deg);
    }

    .item5 {
        display: none;
        height: 100%;
    }

    .item5.on {
        display: block;
    }

    .imgBox5 {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .img5 img {
        width: 100%;
    }

    .img5 p {
        display: none;
    }

    /* 分辨率大于460px */
    @media (min-width: 460px) {
        .imgBox5 .swiper-wrapper {
            height: 100%;
        }

        .img5 {
            opacity: 0;
            transition: 0s;
        }

        .img5.swiper-slide-active,
        .img5.swiper-slide-next,
        .img5.img5_3,
        .img5.img5_4,
        .img5.img5_5 {
            transition: 0.5s;
            opacity: 1;
            width: 17% !important;
        }

        .img5.swiper-slide-active {
            left: 15%;
            top: 51%;
        }

        .img5.swiper-slide-next {
            left: 17%;
            top: 38%;
        }

        .img5.img5_3 {
            left: 18%;
            top: 19%;
        }

        .img5.img5_4 {
            left: 1%;
            top: 61%;
        }

        .img5.img5_5 {
            left: 3%;
            top: 48%;
        }
    }


    @media (max-width: 1600px) {
        .Nav5 {
            margin: 0;
        }

        .More5 {
            margin: 0;
        }

        .rt5 {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
    }

    @media (max-width: 1440px) {
        .textBox5 {
            height: 300px;
        }
    }

    @media (max-width: 1200px) {
        .Box5 {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column-reverse;
        }

        .lt5 {
            width: 100%;
            height: 80vw;
        }

        .rt5 {
            padding: 60px var(--container) 30px;
            width: 100%;
        }

        .List5Box {
            display: none;
        }

        .More5 {
            display: none;
        }

        .rt5 .indexTitle h1 {
            text-align: center;
        }

        .Nav5 {
            margin-top: 30px;
            justify-items: center;
        }

        .img5 p {
            top: -30px;
            position: absolute;
            display: block;
            width: 100%;
            text-align: center;
            font-weight: bold;
            opacity: 0;
        }

        .img5:hover p {
            opacity: 1;
        }

    }

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

    @media (max-width: 460px) {
        .lt5 {
            background: #fff !important;
            width: 100%;
            height: auto;
            padding: 0 var(--container);
        }

        .img5 p {
            position: unset;
            opacity: 1;
            padding-top: 10px;
        }
    }

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