﻿body {
}



.dialogBoxs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    /*background-color: rgb(0 0 0 / 0%);*/
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .dialogBoxs > .contents {
        border-radius: 12px;
        background-color: rgba(255,255,255,1);
        /*margin: 0 1.2rem;*/
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }



        .dialogBoxs > .contents > .hintText {
            color: rgba(191, 191, 191, 1);
            font-size: 12px;
            text-align: center;
            font-family: PingFangSC-regular;
            margin: 12px;
            position: relative;
        }

            .dialogBoxs > .contents > .hintText > i {
                font-size: 12px;
                color: #888888;
                position: absolute;
                right: 0;
                width: 32px;
                text-align: center;
            }

        .dialogBoxs > .contents > .imgs {
            /*width: 100%;*/
            margin: 0.73rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }


            .dialogBoxs > .contents > .imgs > img {
                width: 2.6rem;
                height: 2.6rem;
            }

        .dialogBoxs > .contents > .titles {
            color: rgba(16, 16, 16, 1);
            font-size: 26px;
            line-height: 36px;
            height: 36px;
            text-align: center;
            font-family: PingFangSC-regular;
        }

        .dialogBoxs > .contents > .infoMsg {
            line-height: 24px;
            color: rgba(90, 90, 90, 1);
            font-size: 18px;
            text-align: center;
            font-family: PingFangSC-regular;
            margin: 30px;
        }

        .dialogBoxs > .contents > .infoMsg2 {
            line-height: 24px;
            color: rgba(90, 90, 90, 1);
            font-size: 18px;
            text-align: center;
            font-family: PingFangSC-regular;
            margin: 30px;
        }

        .dialogBoxs > .contents > .bottomBtns {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

            .dialogBoxs > .contents > .bottomBtns > .btns {
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;
                margin: 0 12px;
                border-radius:12px;
            }

                .dialogBoxs > .contents > .bottomBtns > .btns > .iconbox {
                    width: 38px;
                    height: 38px;
                    border-radius: 10px;
                    color: #404040;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .dialogBoxs > .contents > .bottomBtns > .btns > .green {
                    background-color: rgba(56,158,13,1);
                    color: #ffffff;
                }

                .dialogBoxs > .contents > .bottomBtns > .btns > .yellow {
                    background-color: #FA8C16;
                    color: #ffffff;
                }

                .dialogBoxs > .contents > .bottomBtns > .btns > .blue {
                    background-color: #1890FF;
                    color: #ffffff;
                }

                .dialogBoxs > .contents > .bottomBtns > .btns > .red {
                    background-color: #FF4D4F;
                    color: #ffffff;
                }


                .dialogBoxs > .contents > .bottomBtns > .btns > .iconbox > .iconfont {
                    font-size: 20px;
                }


                .dialogBoxs > .contents > .bottomBtns > .btns > .btntext {
                    color: rgba(90, 90, 90, 1);
                    font-size: 20px;
                    text-align: center;
                    font-family: PingFangSC-regular;
                    margin-left: 8px;
                }
