    /* Section4 */
    .section4 {
        display: block;
        position: relative;
        width: 100%;
        height: 42vw;
        padding: 0;
    }

    .section4 .indexTitle {
        position: absolute;
        z-index: 6;
        left: var(--container);
        top: 100px;
    }

    .section4 .indexTitle p {
        color: rgba(255, 255, 255, 0.10);
    }

    .section4 .indexTitle h1 {
        color: #fff;
    }

    .list4 {
        position: absolute;
        z-index: 4;
        right: var(--container);
        bottom: 100px;
        width: 1000px;
        display: flex;
        grid-gap: 10px;
    }

    .list4 h1 {
        width: 100%;
        height: 100px;
        padding: 15px;
        background: linear-gradient(0deg, #005EC4 0%, #009BF4 91.03%);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #FFF;
        text-align: center;
        font-size: 20px;
    }

    .list4 h1.on {
        font-weight: bold;
    }

    .Box4 {
        display: block;
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        z-index: 2;
    }


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

    .bj4.on {
        display: block;
    }

    .text4 {
        position: absolute;
        z-index: 3;
        left: var(--container);
        bottom: 100px;
        width: 320px;
    }

    .text4 h1 {
        color: #FFF;
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        grid-gap: 15px;
        margin-bottom: 15px;
    }

    .text4 h1 .icon4 {
        width: 30px;
    }

    .text4 h2 {
        color: #FFF;
        font-size: 16px;
        line-height: 2;
    }

    .img4 {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    @media (max-width: 1500px) {
        .text4 {
            width: 400px;
        }

        .list4 {
            width: calc(90vw - 460px);
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .list4 h1 {
            width: auto;
            height: auto;
            padding: 15px 30px;
        }
    }

    @media (max-width: 1200px) {
        .section4 {
            min-height: 500px;
        }

        .text4 {
            width: 300px;
        }

        .list4 {
            width: calc(90vw - 360px);
        }

        .list4 h1 {
            font-size: 16px;
            padding: 10px 20px;
        }
    }

    @media (max-width: 900px) {
        .section4 {
            height: auto;
            min-height: unset;
            padding-top: 60px;
        }

        .section4 .indexTitle {
            position: relative;
            top: 0px;
        }

        .section4 .indexTitle p {
            color: rgba(16, 85, 159, 0.10);
        }

        .section4 .indexTitle h1 {
            color: #000;
        }

        .list4 {
            position: relative;
            bottom: auto;
            right: auto;
            width: 100%;
            padding: 30px var(--container);
            flex-wrap: nowrap;
            justify-content: start;
        }

        .list4 h1 {
            font-size: 14px;
            padding: 15px 5px;
            width: 100%;
        }

        .text4 {
            position: relative;
            bottom: auto;
            width: 100%;
            left: 0;
            padding: 60px var(--container);
            background: #00000040;
        }

        .img4 {
            position: absolute;
            left: 0;
            top: 0;
        }
    }

    @media (max-width: 600px) {
        .list4 {
            flex-wrap: wrap;
        }

        .list4 h1 {
            width: calc((100% - 20px) / 3);
            padding: 15px 5px;
        }
    }

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