    .section5 {
        position: relative;
        overflow: hidden;
    }

    .nav5 {
        margin: 60px 0 45px;
        display: flex;
        grid-gap: 20px;
        justify-content: center;
    }

    .nav5 a {
        padding: 10px 45px;
        line-height: 1.5;
        font-size: 16px;
        color: #000;
        background: #e5e5e5;
    }


    .list5 {
        position: relative;
    }

    .slide5 {
        position: relative;
        width: 100%;
        background: #f3f3f3;
    }

    .slide5 img {
        width: 100%;
    }

    .text5 {
        background: #f3f3f3;
        padding: 0 15px;
        padding-top: 30px;
        transition: 0.5s;
    }

    .slide5:hover .text5 {
        background: var(--color);
    }

    .text5 h1 {
        font-size: 16px;
        color: #000;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 15px;
        transition: 0.5s;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .slide5:hover h1 {
        color: #fff;
    }

    .text5 span {
        display: block;
        border-top: 1px solid rgba(51, 51, 51, .1);
        font-size: 14px;
        text-align: center;
        color: #999999;
        padding: 15px 0;
        transition: 0.5s;
    }

    .slide5:hover span {
        color: #fff;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }


    .prev5 {
        width: 40px;
        height: 40px;
        margin: 0;
        left: -60px;
        background: url(/assets/images/l1.png) no-repeat center;
        background-size: contain;
    }

    .next5 {
        width: 40px;
        height: 40px;
        margin: 0;
        right: -60px;
        background: url(/assets/images/r1.png) no-repeat center;
        background-size: contain;
    }

    .prev5::after,
    .next5::after {
        display: none;

    }

    a.Box5More {
        width: 175px;
        height: 45px;
        border-radius: 3px;
        color: #fff;
        background: var(--color1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 50px;
    }

    @media (max-width: 1400px) {

        .section5 .container {
            width: calc(100% - 120px);
            max-width: calc(100% - 120px);
        }

        .nav5 {
            display: flex;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 1200px) {
        .nav5 {
            margin: 45px 0 30px;
        }
    }

    @media (max-width: 720px) {
        .nav5 {
            grid-gap: 10px;
            margin: 30px 0 20px;
        }

        .nav5 a {
            padding: 10px 20px;
            font-size: 14px;
        }

        .section5 .container {
            width: 100%;
            max-width: 100%;
        }

        .list5 {
            padding: 0 45px;
        }

        .prev5 {
            width: 30px;
            height: 30px;
            margin: 0;
            left: 0;
            background: url(/assets/images/l1.png) no-repeat center;
            background-size: contain;
        }

        .next5 {
            width: 30px;
            height: 30px;
            margin: 0;
            right: 0;
            background: url(/assets/images/r1.png) no-repeat center;
            background-size: contain;
        }

    }

    @media (max-width: 460px) {
        a.Box5More {
            font-size: 12px;
            margin-top: 30px;
            width: 140px;
            height: 35px;
        }
    }