#ModulesServiceQrCodeDialog {
    .service-qr-code-dialog-shade {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 99999998;
    }

    .service-qr-code-dialog {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border-radius: 5px;
        z-index: 99999999;
        padding: 20px;
        width: 300px;
        padding-top: 40px;
        font-size: 14px;

        .dialog-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 14px;
            cursor: pointer;
        }

        .dialog-content {
            line-height: 25px;
            text-indent: 28px;
        }

        .customer-area {
            position: relative;
            border: 1px solid #CCC;
            border-radius: 5px;
            background: #f8fbff;
            padding: 10px;
            width: 280px;
            box-sizing: border-box;
            margin-top: 10px;
            margin: 10px auto 0;

            .qr-code {
                height: 120px;
                width: 120px;
                margin: 0 auto;
                margin: 0 auto 15px;

                img {
                    height: 100%;
                    width: 100%;
                }
            }

            .qr-code-title {
                font-size: 14px;
                text-align: center;
                line-height: 25px;

                &.ta-left {
                    text-align: left;
                }

                &.mb10 {
                    margin-bottom: 10px;
                }
            }

            &::before {
                position: absolute;
                display: inline-block;
                top: -4px;
                left: calc(50% - 6px);
                width: 0;
                height: 0px;
                content: "";
                border-style: solid;
                border-width: 5px;
                border-color: #f8fbff #f8fbff transparent transparent;
                transform: rotate(-45deg);
                box-shadow: 1px -1px 1px #ccc;
            }
        }



        .code-btn {
            background: #0066ff;
            color: #FFF;
            width: 200px;
            margin: 15px auto 5px;
            line-height: 35px;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;

            &.countdown {
                background: #E5E3E3;
                color: #333;
            }
        }

        &.regist {
            transform: translate(400px, 0);
            top: 230px;
            position: absolute;
        }

        &.login-elite {
            transform: translate(225px, 0);
            top: 200px;
            position: absolute;
        }
    }
}
