    /* Section5 */
    .section5 {
        display: block;
        background: rgba(246, 246, 246, 0.50);
    }

    .Box5 {
        display: block;
        position: relative;
        width: 100%;
        max-width: 1400px;
        z-index: 2;
        margin: 0 auto;
        margin-top: 30px;
    }

    .bj5 {
        position: relative;
        width: 100%;

    }

    .item5 {
        position: absolute;
        z-index: 3;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color);
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .item5::after {
        content: "";
        display: block;
        width: 200%;
        height: 200%;
        background: var(--color);
        border-radius: 50%;
        opacity: 0.5;
        position: absolute;
        z-index: 2;
        animation: slideShow 2s linear infinite;
    }

    .item5::before {
        content: "";
        display: block;
        width: 400%;
        height: 400%;
        background: var(--color);
        border-radius: 50%;
        opacity: 0.1;
        position: absolute;
        z-index: 1;
        animation: slideShow 2s linear infinite;
    }

    .item5 p {
        position: absolute;
        width: max-content;
        bottom: 30px;
    }

    .item5:first-child,
    .item5:first-child::after,
    .item5:first-child::before {
        background: #D2CF05;
    }

    .item5:first-child p {
        bottom: auto;
        left: 30px;
    }

    .img5 {
        position: relative;
        z-index: 4;
        margin-top: -140px;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 20px;
    }

    .Swiper2 {
        width: 100%;
        overflow: visible;
    }

    .Slide2 {
        width: 250px;
        height: auto;
        border-radius: 10px;
        border: 1px solid #F4F4F4;
        background: #FFF;
        overflow: hidden;
    }

    .Slide2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .Swiper2B {
        margin-left: -125px;
    }


    @media (max-width: 1200px) {
        .img5 {
            margin-top: -60px;
        }

        .Slide2 {
            width: 200px;
        }

        .Swiper2B {
            margin-left: -100px;
        }
    }

    @media (max-width: 900px) {
        .img5 {
            grid-gap: 10px;
        }

        .item5 p {
            display: none;
        }

        .item5:hover p {
            display: block;
        }
    }

    @media (max-width: 600px) {
        .img5 {
            margin-top: 30px;
        }

        .Slide2 {
            width: 120px;
        }

        .Swiper2B {
            margin-left: -60px;
        }

        .item5 {
            transform: scale(0.75);
        }

        .item5 p {
            bottom: 0px;
        }
    }

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

    @keyframes slideShow {
        0% {
            transform: scale(0);
        }

        50% {
            transform: scale(1);
        }

        100% {
            transform: scale(0);
        }
    }
