.welcome-page-publice {
    .container-two {
        background: #fff;
        padding: 80px 0;
        /*max-height: 500px;*/

        .container-two-article-title {
            font-size: 40px;
            font-weight: 400;
            text-align: center;
        }

        .container-two-article-imgWarp {
            height: 300px;

            img {
                margin: 0 20px;
                height: 80px;
                @media screen and (max-width: 750px) {
                    height: 50px;
                }
            }
        }

        .container-two-article-imgWarp::before,
        .container-two-article-imgWarp::after {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50px;
            z-index: 1;
        }

        .container-two-article-imgWarp::before {
            left: 0;
            background: linear-gradient(
                    to right,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(245, 236, 236, 0.5) 50%,
                    rgba(255, 255, 255, 0) 100%
            );
            filter: blur(5px); /* 根据需要调整模糊度 */
        }

        .container-two-article-imgWarp::after {
            right: 0;
            background: linear-gradient(
                    to left,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(255, 255, 255, 0) 100%
            );
            filter: blur(5px); /* 根据需要调整模糊度 */
        }
    }

    @media screen and (max-width: 750px) {
        .container-two {
            padding: 30px 10px;

            .container-two-article-title {
                font-size: 30px;
            }
        }
    }

    .container-three {
        background: #edeaf9;
        padding: 30px 0;

        .container-three-article {
            .container-three-title {
                font-size: 40px;
                font-weight: 400;
                text-align: center;
            }

            .circle {
                width: 150px;
                height: 150px;
                border-radius: 50%; /* 设置为50%以创建圆形 */
                background-color: #650ff1; /* 设置背景色为紫色 */
                box-shadow: 0 30px 30px -10px rgba(138, 80, 242, 0.5); /* 在圆形下方添加阴影 */
                font-size: 50px;
                color: #fff;
            }

            .container-three-subtitle {
                font-size: 25px;
                font-weight: 500;
            }

            .container-three-circleText {
                font-size: 18px;
                text-align: center;
                padding: 0 10%;
            }
        }

        @media screen and (max-width: 750px) {
            .container-three-article {
                .container-three-title {
                    font-size: 30px;
                }

                .circle {
                    width: 80px;
                    height: 80px;
                    font-size: 30px;
                }
            }
        }
    }

    .container-four {
        position: relative;

        .container-four-article-left {
            height: 350px;
            /* background-color: #ff68ff; */
        }

        .container-four-article-imgWrap {
            margin-right: -13%;
            z-index: 999;
        }

        .container-four-article-right {
            padding-left: 15%;
        }

        .container-four-article-right-title {
            font-size: 30px;
        }

        .container-four-article-right-text {
            color: #909090;
        }

        @media screen and (max-width: 1440px) {
            .container-four-article-imgWrap {
                margin-right: -40%;
            }
        }
        @media screen and (max-width: 750px) {
            .container-four-article {
                margin-top: 30%;
            }

            .container-four-article-imgWrap {
                margin-left: 0;
                width: 100%;
                text-align: center;
                height: 200px;

                img {
                    width: 300px;
                    margin-top: -20%;
                }
            }

            .container-four-article-right {
                padding-left: inherit;
            }

            .container-four-article-right-title {
                font-size: 25px;
                text-align: center;
                margin-top: 20px;
            }

            .container-four-article-right-text {
                font-size: 16px;
                text-align: center;
            }
        }
    }

    .container-four > .decoration-bg-color {
        position: absolute;
        top: 0;
        left: 0;
        width: 33.333333%;
        height: 100%;
        @media screen and (min-width: 2600px) {
            width: 36%;
        }
        @media screen and (max-width: 750px) {
            height: 200px;
            width: 90%;
        }
    }


    .container-five {
        position: relative;

        .container-five-article-left {
            height: 350px;
        }

        .container-five-article-imgWrap {
            z-index: 9;
            margin-left: -13%;

            .img-box {
                margin-left: -10%;
                width: 100%;
                margin-top: 25px;
            }
            @media screen and (min-width: 2000px) {
                margin-left:0;
                .img-box {
                    width: 100%;
                    margin-left: 0%;
                }
            }
            @media screen and (max-width: 1450px) {
                .img-box {
                    width: 60%;
                    margin-left: -20%;
                }
            }
            @media screen and (max-width: 992px) {
                .img-box {
                    margin-left: -40%;
                }
            }
            @media screen and (max-width: 750px) {
                .img-box {
                    margin-left: 0%;
                    margin-top: -20%;
                    width: 40%;
                }
            }
        }

        .store-box {
            width: auto;
            min-width: 200px;
            height: 50px;
            display: flex;
            background: #fff;
            position: absolute;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0 10px;

            > img {
                max-width: 114px;
            }


            @media screen and (max-width: 750px) {
                min-width: 100px;
                height: 25px;
                padding: 14px;
                > img {
                    height: 20px;
                }
            }
        }

        .store-box:nth-of-type(1) {
            top: -23px;
            right: 20%;
            @media screen and (max-width: 750px) {
                top: -60%;
            }
        }

        .store-box:nth-of-type(2) {
            top: 70px;
            right: 5%;
            width: 240px;
            @media screen and (max-width: 750px) {
                top: -40%;
                width: auto;
            }
        }

        .store-box:nth-of-type(3) {
            top: 160px;
            right: 0px;
            width: 240px;
            @media screen and (max-width: 750px) {
                top: -18%;
                width: auto;
            }
        }

        .store-box:nth-of-type(4) {
            top: 250px;
            right: 5%;
            width: 240px;
            @media screen and (max-width: 750px) {
                top: 5%;
                width: auto;
            }
        }

        .store-box:nth-of-type(5) {
            bottom: -24px;
            right: 20%;
            @media screen and (max-width: 750px) {
                bottom: 60%;
            }
        }

        i {
            font-size: 30px;
            color: #DD354A;
            font-weight: 600;
            font-style: oblique;
            margin-left: 10px;
            @media screen and (max-width: 750px) {
                margin-left: 15px;
                font-size: 18px;
            }
        }

        .container-five-article-right {
            padding-right: 15%;
        }

        .container-five-article-right-title {
            font-size: 30px;
        }

        .container-five-article-right-text {
            color: #909090;
        }

        @media screen and (max-width: 750px) {
            .container-five-article {
                margin-top: 30%;
            }

            .container-five-article-imgWrap {
                margin-left: 0;
                width: 100%;
                text-align: center;
                height: 200px;

                /*img {*/
                /*    width: 300px;*/
                /*    margin-top: -20%;*/
                /*}*/
            }

            .container-five-article-right {
                padding-right: inherit;
            }

            .container-five-article-right-title {
                font-size: 25px;
                text-align: center;
                margin-top: 20px;
            }

            .container-five-article-right-text {
                font-size: 16px;
                text-align: center;
            }
        }
    }

    .container-five > .decoration-bg-color {
        position: absolute;
        top: 0;
        right: 0;
        width: 33.333333%;
        height: 100%;
        @media screen and (min-width: 2600px) {
            width: 36%;
        }
        @media screen and (max-width: 750px) {
            height: 200px;
            width: 90%;
        }
    }


    .container-six {
        position: relative;

        .container-six-article-left {
            height: 350px;
            /* background-color: #ff68ff; */
        }

        .container-six-article-imgWrap {
            margin-right: -13%;
            z-index: 999;
        }

        .container-six-article-right {
            padding-left: 15%;
        }

        .container-six-article-right-title {
            font-size: 30px;
        }

        .container-six-article-right-text {
            color: #909090;
        }

        @media screen and (max-width: 1440px) {
            .container-six-article-imgWrap {
                margin-right: -40%;
            }
        }
        @media screen and (max-width: 750px) {
            .container-six-article {
                margin-top: 30%;
            }

            .container-six-article-imgWrap {
                margin-left: 0;
                width: 100%;
                text-align: center;
                height: 200px;

                img {
                    width: 300px;
                    margin-top: -20%;
                }
            }

            .container-six-article-right {
                padding-left: inherit;
            }

            .container-six-article-right-title {
                font-size: 25px;
                text-align: center;
                margin-top: 20px;
            }

            .container-six-article-right-text {
                font-size: 16px;
                text-align: center;
            }
        }
    }

    .container-six > .decoration-bg-color {
        position: absolute;
        top: 0;
        left: 0;
        width: 33.333333%;
        height: 100%;
        @media screen and (min-width: 2600px) {
            width: 36%;
        }
        @media screen and (max-width: 750px) {
            height: 200px;
            width: 90%;
        }
    }
}