
* {
    padding: 0;
    margin: 0;
}


@media only screen and (max-width: 1600px) {
    html {
        font-size: 8px !important;
    }
}

@media screen and (min-width: 1601px) and (max-width: 25000px) {
    html {
        font-size: 10px !important;
    }
}

@keyframes scrollAni {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(0, 15px);
    }
}

@keyframes scrollArrow {
    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
        opacity: 0;
    }
}

html,
body {
    font-family: PingFangSC !important;
    position: relative;
    height: 100%;
    min-width: 1200px;

}

body {
    background: #eee;
    font-family: PingFangSC;
    color: #000;
    margin: 0;
    padding: 0;
}

/*公共样式*/
.public_title {
    text-align: center;
    font-size: 4.8rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

/*!* 隐藏滚动条，但保留滚动功能 *!*/
/*html::-webkit-scrollbar {*/
/*    display: none;*/

/*}*/

/* 保持滚动功能 */
/*html {
    -webkit-scrollbar: none;
    scrollbar-width: none; !* Firefox *!
    overflow-y: -moz-scrollbars-none; !* Older Firefox *!
}*/

/*客服按钮*/
.customer {
    position: fixed;
    width: 10rem;
    height: 10rem;
    bottom: 9rem;
    right: 0;
    z-index: 1000;
    background-image: url("../assets/customer.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: background-image 0.3s ease; /* 平滑过渡效果 */
    border-radius: 2.6rem;
}

.customer:hover {
    background-image: url("../assets/customer-hover.svg");
}

.customerQRCode {
    padding: 1rem ;
    font-size: 2.6rem;
    text-align: center;
    background-color: #FFFFFF;
    display: block;
    position: fixed;
    width: 160px;
    bottom: 9rem;
    right: 10rem;
    z-index: 1000;
    border-radius: 1rem;
    box-shadow: 0px 0px 1.2rem rgba(0, 0, 0, 0.1);
    font-weight: 600;
    .txt{
        .span1{
            font-size: 2.2rem;
        }
        .span2{
            margin-top: 1rem;
            font-size: 1.5rem;
            line-height: 2rem;
        }
    }
}

.toTop {
    display: none;
    position: fixed;
    width: 10rem;
    height: 10rem;
    bottom: 2rem;
    right: 0;
    z-index: 1000;
    background-image: url("../assets/toTop.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10rem;
    border-radius: 2.6rem;

}

.toTop:hover {
    background: url("../assets/toTop-hover.svg");
    background-size: 10rem;
}

.toTopTxt {
    display: none;
    background: rgba(255, 255, 255, 1);
    width: 10rem;
    height: 4rem;
    line-height: 4rem;
    border-radius: 0.6rem;
    box-shadow: 0px 0px 1.2rem rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    color: rgba(18, 30, 54, 1);
    font-size: 1.4rem;

}

.toTopTxt::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    /* 箭头靠右边 */
    top: 1rem;
    right: -1rem;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid rgba(255, 255, 255, 1);
}

header {
    font-size: 1.8rem;
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 11.8%;
    padding-right: 10rem;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 1);
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));

    .logo {
        z-index: 110;
        width: 14.2rem;
        height: 4.17rem;

        img {
            width: 14.2rem;
            height: auto;
        }
    }

    .menu {
        z-index: 110;
        display: flex;
        flex-direction: row;
        margin-left: -15rem;

        .menuDiv {
            display: flex;
            flex-direction: column;
            text-align: center;
            margin-right: 8rem;
            min-width: 8rem;
            cursor: pointer;

            a {
                text-decoration: none;
                color: rgba(255, 255, 255, 1);
            }

            img {
                width: 2.2rem;
                height: auto;
                margin: 0.2rem auto;
                opacity: 0;
                translate: 0 -5px;
                transition: translate 0.5s;
            }

            &:hover {
                img {
                    opacity: 1;
                    translate: 0 2px;
                }
            }

            &.active {
                img {
                    opacity: 1;
                    translate: 0 2px;
                }
            }

        }
    }

    .login {
        z-index: 110;
        width: 10rem;
        min-width: 10rem;
        height: 4.2rem;
        border-radius: 3.5rem;
        background: rgba(255, 255, 255, 0.32);
        line-height: 4.2rem;
        text-align: center;
        letter-spacing: 2px;
        a {
            text-decoration: none;
            color: rgba(255, 255, 255, 1);
        }
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-slide {
    display: flex;
    font-size: 5.8rem;
    font-weight: 400;
    letter-spacing: 2rem;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    line-height: 10rem;

}

.swiper-container {
    width: 100%;
    height: 100%;
}

.mySwiper .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    z-index: -999;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
}

.swiper-slide-active {
    z-index: 10;
}

.mySwiper .swiper-slide-active img, .swiper-slide-duplicate-active img {
    transition: 4s linear;
    transform: scale(1, 1);
}

.swiperContent {
    position: absolute;
    display: flex;
    flex-direction: column;
    padding-top: 34rem;
    padding-left: 13.8%;
    transform: translateY(25%);
    opacity: 0;

    .swierpBtn {
        margin-top: 6rem;
    }
}

.swiper-slide-active .swiperContent {
    transform: translateY(0%);
    opacity: 1;
    transition: all 2s ease-out;
    transition-delay: 0.2s;
    z-index: 100;
}

.autoplay-progress {
    position: absolute;
    right: 1.6rem;
    bottom: 1.6rem;
    z-index: 10;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 9rem;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 4rem;
    height: 4rem;
    background: url("../assets/headImg1.png") center;
    background-size: 4rem;
    border: 0.2rem solid rgba(255, 255, 255, 1);
    box-sizing: border-box;
    transition: all 0.5s;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(2) {
    background: url("../assets/headImg2.png") center;
    background-size: 4rem;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(3) {
    background: url("../assets/headImg3.png") center;
    background-size: 4rem;
}

.toNext {
    width: 3rem;
    z-index: 1009;
    position: absolute;
    left: 50%;
    margin-left: -1.5rem;

    bottom: 1rem;
    display: flex;
    flex-direction: column;
    text-align: center;


    .mouse {
        width: 3rem;
        height: 4.5rem;
        border: 0.2rem solid #fff;
        border-radius: 1.5rem;
        text-align: center;
        box-sizing: border-box;
    }

    .mouse::after {
        content: "";
        display: block;
        width: 0.2rem;
        height: 1rem;
        position: absolute;
        top: 1rem;
        left: 50%;
        margin-left: -0.1rem;
        background-color: #fff;
        animation: scrollAni 2s infinite;
    }

    .arrow {
        width: 100%;
        height: 2.5rem;

    }

    .arrow:before {
        display: block;
        content: "";
        width: 1rem;
        height: 1rem;
        position: absolute;
        left: 50%;
        margin-left: -0.5rem;
        border-bottom: 0.2rem solid #fff;
        border-right: 0.2rem solid #fff;
        animation: scrollArrow 2s infinite;
        bottom: 1.6rem;
        animation-delay: .2s;
    }

    .arrow:after {
        content: "";
        display: block;
        width: 1rem;
        height: 1rem;
        position: absolute;
        left: 50%;
        margin-left: -0.5rem;
        border-bottom: 0.2rem solid #fff;
        border-right: 0.2rem solid #fff;
        animation: scrollArrow 2s infinite;
        bottom: 1rem;
    }
}

.title {
    font-size: 4.8rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

.aboutUs {
    width: 100%;
    height: auto;
    padding: 8rem 0;
    background-image: url("../assets/aboutUsBg.png");
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.2rem;

    .contactDiv {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 5rem;

        img {
            width: 45.7%;
            height: 100%;
            right: 0;
            top: 19rem;
            border-top-left-radius: 1.85vh;
            border-bottom-left-radius: 1.85vh;
            box-shadow: inset 0px 4px 20px rgba(255, 255, 255, 0.5), 0px 2px 20px rgba(55, 99, 170, 0.1), -8px -8px 20px rgba(255, 255, 255, 1);
        }

        .aboutContent {
            display: flex;
            flex-direction: column;
            text-align: left;
            /*padding-top: 5rem;*/
            padding-left: 15.1%;

        }

        .aboutTitle {
            font-size: 2.8rem;
            font-weight: 600;
        }

        .aboutDetail {
            font-size: 1.8rem;
            max-width: 90%;
            margin-top: 2rem;
            color: rgba(102, 102, 102, 1);

            div {
                line-height: 3vh;
            }
        }

        .aboutBtn {
            margin-top: 5rem;

            a {
                width: 16.8rem;
                height: 6.1rem;
                text-decoration: none;
                color: rgba(0, 0, 0, 1);
            }

            a:hover {
                color: rgba(1, 181, 140, 1);
            }
        }
    }

}

.business {
    background: #FFFFFF;
    width: 100%;

    padding: 10rem;
    text-align: center;
    box-sizing: border-box;

    .businessContent {
        margin-top: 8rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;

        .businessDetail {
            display: flex;
            flex-direction: column;
            width: 32%;

            .img {
                overflow: hidden;
                border-top-left-radius: 2rem;
                border-top-right-radius: 2rem;

                img {
                    width: 100%;
                    height: auto;
                    display: block;
                    transition: all 0.5s;

                }

                img:hover {
                    transform: scale(1.1);

                }
            }


            .businessTitle {
                font-size: 2.8rem;
                font-weight: 600;
                margin-top: 2rem;
            }

            .businessDetailText {
                font-size: 2.2rem;
                margin-top: 1.5rem;
                color: rgba(68, 68, 68, 1);

                div {
                    line-height: 3.5rem;
                }
            }

            .businessBtn {
                margin-top: 5rem;
            }
        }
    }
}

/*联系我们*/
.contact {
    width: 100%;
    min-height: 90rem;
    background: url("../assets/contactUs2.png");
    background-size: 100% 100%;
    padding: 11rem 6% 11rem 11%;
    box-sizing: border-box;
    letter-spacing: 0.2rem;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;

    .contactTitle {
        color: rgba(255, 255, 255, 1);
        margin-bottom: 3.5rem;
        min-width: 70rem;
        position: absolute;
    }
    .contactForm {
        float: left;
        width: 35%;
        position: relative;
        margin-top: 11rem;


        .selectDiv {
            display: flex;
            flex-direction: row;
            height: 5rem;
            line-height: 5rem;
            margin-bottom: 7rem;
            justify-content: space-between;

            label {
                color: rgba(255, 255, 255, 0.73);
                font-size: 2.4rem;
                margin-right: 2rem;
                width: 20%;
                min-width: 12rem;

            }

            select {
                background: rgba(255, 255, 255, 0);
                color: rgba(255, 255, 255, 0.73);
                font-size: 2.4rem;
                padding: 0 2rem;
                border: 1px solid rgba(183, 187, 196, 1);
                border-radius: 1rem;
                width: 70%;
            }

            /* 修改下拉框激活状态的样式 */

            select:focus {
                outline: none; /* 移除默认焦点边框 */
                border-color: #01B58C; /* 改变激活状态的边框颜色 */
            }

            /* 修改下拉框选项的样式 */

            option {
                padding: 0.5rem 1rem;
                background-color: #fff;
                color: #01B58C;
            }


        }

        .contactInputDiv {
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .contactInput {
            margin-bottom: 7rem;
            width: 43%;
            height: 5rem;
            line-height: 5rem;
            font-size: 2.4rem;
            background: rgba(255, 255, 255, 0);
            border: none;
            color: rgba(255, 255, 255, 0.73);
            border-bottom: 0.1rem solid rgba(183, 187, 196, 1);

        }

        .contactInput::placeholder {
            color: rgba(255, 255, 255, 0.73);
            opacity: 1;
        }

        .contactInput:focus {
            outline: none;
            border-bottom: 0.1rem solid rgba(183, 187, 196, 1);
        }


        .contactBtn {
            width: 22.6rem;
            height: 7rem;
            line-height: 7rem;
            border-radius: 3.5rem;
            border: 0.2rem solid rgba(255, 255, 255, 1);
            color: rgba(255, 255, 255, 1);
            text-align: center;
            font-size: 2.6rem;
            margin-top: 2rem;
        }

        .contactBtn:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
    }

    .contactDetail {
        display: flex;
        flex-direction: column;
        margin-left: 5rem;
        width: 45%;
        height: 70rem;
        position: relative;

        .contactAccout {
            display: flex;
            flex-direction: row;
            margin-top: 20rem;

            .contactAccoutDiv {
                display: flex;
                flex-direction: column;
                text-align: center;
                margin: 0 auto;
                color: rgba(255, 255, 255, 1);
                font-size: 2.4rem;

                img {
                    width: 25rem;
                    height: 25rem;
                    border-radius: 1rem;
                    margin: 0 auto;
                    margin-bottom: 2rem;
                }
            }

        }

        .addressAndPhone {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: row;
            font-size: 2rem;
            height: 2rem;
            line-height: 2rem;
            align-items: center;
            color: rgba(255, 255, 255, 0.86);
            text-align: left;

            img {
                height: 2.5rem;
                width: auto;
                margin-right: 1rem;
            }
        }

    }

}

/*底部栏*/
.banner {
    width: 100%;
    height: 20rem;
    background: url("../assets/banner04.png");
    background-size: 100% 100%;
    font-size: 3.6rem;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
    line-height: 20rem;
}

.footer {
    width: 100%;
    height: 16.46vw;
    padding: 2.3vw 15.83vw;
    box-sizing: border-box;
    background-color: #32333B;
    position: relative;
    display: flex;
    flex-direction: column;

    .bgIcon {
        width: 21vw;
        height: 21vw;
        position: absolute;
        right: 1.161vw;
        top: -9vw;
    }

    .footIcon {
        width: 8.6vw;
        height: 2.55vw;
        margin-bottom: 2vw;
    }

    .footCont {
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        .footDetail {
            display: flex;
            flex-direction: column;
            font-size: 1.6rem;
            color: rgba(255, 255, 255, 0.86);

            div {
                line-height: 30px;
            }

            .footTitle {
                font-size: 1.8rem;
                margin-bottom: 20px;
                color: rgba(255, 255, 255, 1);
            }

            img {
                width: 1.3vw;
                height: 1.3vw;
                margin-right: 0.5vw;
                margin-top: 20px;
            }
        }
    }
}

.bottomDiv {
    width: 100%;
    height: 6rem;
    line-height: 6rem;
    color: rgba(255, 255, 255, 0.36);
    background: rgba(47, 47, 47, 1);
    box-sizing: border-box;
    font-size: 1.6rem;
    text-align: center;
    a {
        color: rgba(255, 255, 255, 0.36);
       text-decoration: none;
    }
}

/*按钮样式*/
.btn1 {
    width: 8.75vw;
    height: 5.648vh;
    opacity: 1;
    border-radius: 3.24vh;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 1);
    line-height: 5.648vh;
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.8rem;
    transition: background 0.5s;
    cursor: pointer;
}

.btn1:hover {
    background: rgba(255, 255, 255, 0.4);
}

.btn2 {
    width: 16.8rem;
    height: 6rem;
    opacity: 1;
    border-radius: 3rem;
    border: 1px solid rgba(0, 0, 0, 1);
    color: rgba(0, 0, 0, 1);
    line-height: 6rem;
    text-align: center;
    letter-spacing: 0.1rem;
    font-size: 1.8rem;
}

.btn2:hover {
    border: 1px solid rgba(1, 181, 140, 1);
    color: rgba(1, 181, 140, 1);

}


/*产品介绍模块*/
.zjhProductPresentation {
    width: 100%;
    padding: 100px 0;
    box-sizing: border-box;
    background: #F5F8FF;

    .lunbonav {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        list-style: none;
        font-size: 2.4rem;

        li {
            margin: 60px 20px;
            box-sizing: border-box;
            position: relative;

            span {
                cursor: pointer;
            }

            img {
                width: 24px;
                height: 6px;
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -12px;
                opacity: 0;
                transition: bottom 0.5s;
            }

            &:hover {
                img {
                    opacity: 1;
                    bottom: -10px;
                }
            }

            &.active {
                img {
                    opacity: 1;
                    bottom: -10px;
                }
            }
        }
    }

    .mySwiper2 {
        width: 100%;
        height: 733px;

        .swiper-wrapper, .swiper-slide {
            width: 100%;
            height: 100%;

            .box {
                width: 100%;
                height: 100%;

                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                position: relative;

                .left {
                    width: 50%;
                    height: 100%;
                    max-height: 70rem;
                    border-radius: 20px;

                    &.img1 {
                        background: url("../assets/productImg1.png") no-repeat center center;
                        background-size: cover;
                    }

                    &.img2 {
                        background: url("../assets/productImg2.png") no-repeat center center;
                        background-size: cover;
                    }

                    &.img3 {
                        background: url("../assets/productImg3.png") no-repeat center center;
                        background-size: cover;
                    }
                }

                .right {
                    width: 50%;
                    height: 60rem;
                    background: url("../assets/productBg01.png") no-repeat center center;
                    background-size: cover;
                    padding: 0px 0 0 77px;
                    box-sizing: border-box;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;

                    .title {
                        font-size: 3.8rem;
                        color: #000;
                        line-height: 38px;
                    }

                    .littitle {
                        font-size: 2.6rem;
                        color: #000;
                        letter-spacing: 1px;
                        position: relative;
                        display: inline-block;
                        line-height: 26px;
                        margin: 30px 0 60px;

                        &::before {
                            content: '';
                            display: block;
                            width: 100%;
                            height: 8px;
                            opacity: 0.64;
                            background: linear-gradient(270deg, rgba(24, 206, 166, 0.26) 0%, rgba(10, 159, 109, 1) 100%);
                            position: absolute;
                            bottom: 0;
                            left: 0;
                        }
                    }

                    ul {
                        min-width: 50rem;
                        list-style: none;

                        li {
                            background: url("../assets/dui.svg") top left;
                            background-size: 2rem;
                            background-repeat: no-repeat;
                            font-size: 2rem;
                            color: #000;
                            letter-spacing: 1px;
                            height: 6rem;
                            line-height:2rem;
                            padding-left: 3rem;
                            box-sizing: border-box;
                        }

                        margin-bottom: 30px;
                    }

                    .btn {
                        width: 168px;
                        height: 60px;
                        border-radius: 60px;
                        border: 1px solid rgba(0, 0, 0, 1);
                        color: #000;
                        font-size: 2rem;
                        letter-spacing: 0;
                        text-align: center;
                        line-height: 60px;
                        cursor: pointer;
                    }
                }
            }
        }
    }
}

/*解决方案*/
.zjhCase {
    background: #fff;
    padding: 10rem 0;
    box-sizing: border-box;

    .lunbonav {
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        list-style: none;
        font-size: 2.4rem;

        li {
            margin: 6rem 2rem;
            box-sizing: border-box;
            position: relative;

            span {
                cursor: pointer;
            }


            img {
                width: 2.4rem;
                height: 0.6rem;
                position: absolute;
                bottom: 0;
                left: 50%;
                margin-left: -1.2rem;
                opacity: 0;
                transition: bottom 0.5s;
            }

            &:hover {
                img {
                    opacity: 1;
                    bottom: -1rem;
                }
            }

            &.active {
                img {
                    opacity: 1;
                    bottom: -1rem;
                }
            }
        }
    }

    .mySwiper3 {
        height: auto;
        position: relative;

        .swiper-slide {
            text-align: center;
            font-size: 1.8rem;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;

        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .box {
            position: relative;
            text-align: left;
            height: 100%;
            .img {

                img {
                    border-radius: 2rem;
                    min-height: 50rem;

                }
            }

            .text {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                padding: 10% 9.5rem;
                box-sizing: border-box;

                .title {
                    color: #fff;
                    font-size: 4.8rem;
                    margin-bottom: 2.3rem;
                }

                .texts {
                    font-size: 2.2rem;
                    color: #fff;
                    margin-bottom: 5rem;
                    width: 45rem;
                    font-weight: 300;
                    line-height: 3.5rem;
                }

                .btn {
                    width: 16.8rem;
                    height: 6rem;
                    border-radius: 3rem;
                    border: 1px solid rgba(255, 255, 255, 1);
                    color: #000;
                    font-size: 2rem;
                    letter-spacing: 0;
                    text-align: center;
                    line-height: 6rem;
                    cursor: pointer;

                    a {
                        text-decoration: none;
                        color: #fff;
                    }
                }
            }
        }
    }
}

/*合作伙伴*/
.zjhPartner {
    background: #F5F8FF;
    padding: 10rem 0;
    box-sizing: border-box;

    .public_title {
        margin-bottom: 10rem;
    }

    .slideTxtBox {
        width: 100%;
        overflow: hidden;

        .bd {
            width: 100%;
            overflow: hidden;

            .tempWrap {
                width: 100% !important;
            }

            ul {
                list-style: none;

                li {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    align-content: center;
                    margin-bottom: 20px;
                    overflow: hidden;
                    position: relative;
                    justify-content: space-around;
                    div {
                        width: 12%;
                        min-width: 30rem;
                        height: 15rem;
                        border-radius: 2rem;
                        box-shadow: inset 0px 4px 30px rgba(255, 255, 255, 0.5), 0px 2px 30px rgba(55, 99, 170, 0.1), -8px -8px 30px rgba(255, 255, 255, 1);
                        display: flex;
                        flex-direction: column;
                        align-content: center;
                        justify-content: center;
                        background: #fff;
                        transition: all 0.5s;
                        cursor: pointer;
                        padding: 1rem;
                        box-sizing: border-box;
                        img {
                            display: inline-block;
                            width: 20rem;
                            height: min-content;
                            margin: 0 auto;
                        }

                        &:hover {
                            box-shadow: inset 0px 4px 10px rgba(255, 255, 255, 0.3), 10px 10px 10px rgba(55, 99, 170, 0.35), -8px -8px 10px rgba(255, 255, 255, 0.8);
                        }
                    }
                }
            }
        }
    }

    .slideTxtBox3 {
        ul {
            padding-bottom: 100px;
            box-sizing: border-box;
        }
    }
}

#customAlert {
    min-width: 300px;
    text-align: center;
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    height: 8rem;
    box-sizing: border-box;
    line-height: 8rem;
    opacity: 1;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 1);
    font-size: 1.8rem;

}
.codeshow{
    width:130px;
    height:130px;
    margin:10px auto 0;
    position: relative
}
.codeshow #qrcode{
    width: 100%;
    height: 100%;
}
.codeshow .codeSuccess{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.codeshow .codeSuccess div{
    font-size: 14px;
    font-weight: bold;
}

.codeshow .codeSuccess div span{
    color:#0a9f6d;
    cursor: pointer;
}
