﻿
.dialog-sms-vcode {
    display: none;
    position: fixed;
    z-index: 150;
    background-color: white;
    min-height: 200px;
    top: calc(50% - 200px) ;
    left: calc(50% - 200px) ;
    font-size: 14px ;
}

.dialog-sms-vcode .dsv-main {
    position: relative ;
    z-index: 100 ;
    background-color: white ;
    border-radius: 4px ;
    padding: 2rem ;
    box-sizing: border-box ;
    width: 450px ;
}

.dialog-sms-vcode .dsv-mask {
    position: fixed;
    z-index: 15;
    top: 0;
    left: 0;
    display: inherit;
    width: 100%;
    height: 100%;
    opacity: .2;
    background: black;
}

.dialog-sms-vcode .dsv-head {
    display: flex;
    align-items: center ;
    justify-content: space-between ;
}

.dialog-sms-vcode .dsv-close:before {
    color: #bbb ;
}

.dialog-sms-vcode .dsv-head b {
    font-size: 16px ;
}

.dialog-sms-vcode .dsv-body {
    padding: 14px 64px 30px 64px ;
}

.dialog-sms-vcode .dsv-message {
    line-height: 24px ;
}

.dialog-sms-vcode .dsv-card {
    display: flex;
    align-items: center ;
    justify-content: space-between ;
    padding: 21px 0 35px;
}

.dialog-sms-vcode .dsv-row {
    display: flex ;
    align-items: center ;
    margin-top: 2rem ;
}

.dialog-sms-vcode .dsv-errors {
    display: flex ;
    align-items: center ;
    height: 4rem ;
}

.dialog-sms-vcode .dsv-rowtitle {
    position: relative ;
    width: 8rem ;
    text-align: right ;
    flex: none ;
    margin: 0px ;
}

.dialog-sms-vcode .dsv-must {
    color: red;
    font-style: normal;
    padding: 0 1rem 0 0.5rem;
}

.dialog-sms-vcode .dsv-btn {
    text-align: center;
    background: #519cf2;
    width: 98px ;
    text-align: center ;
    color: white ;
    box-sizing: border-box ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    height: 36px ;
    border-radius: 3px;
    flex: none ;
}

.dialog-sms-vcode .dsv-disabled {
    cursor: default !important;
    background: #ddd !important;
    color: white !important;
    pointer-events: none ;
}

.dialog-sms-vcode .dsv-submit {
    height: 50px ;
    font-size: 18px ;
    width: 100% ;
}

.dialog-sms-vcode input{
    height: 36px ;
    width: 100% ;
    box-sizing: border-box;
    padding: 0 12px ;
    font-size: 14px ;
    margin-right: 14px ;
}
.dialog-sms-vcode input:focus, .dialog-sms-vcode input:hover{
    border-color: #4d9bed;
}

.dialog-sms-vcode .dsv-question {
    display: flex ;
    align-items: center ;
    margin-left: 10px ;
    position: relative ;
}

.dialog-sms-vcode .dsv-question:hover .dsv-tips {
    display: block !important;
}

.dialog-sms-vcode .dsv-tips {
    padding: 10px 14px ;
    width: max-content ;
    color: #333;
    background-color: #ffd;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px #adadad;
    line-height: 21px ;
    display: none ;
    position: absolute;
    top: 28px;
    left: -132px;
    z-index: 1000 ;
}

.dialog-sms-vcode .dsv-tips:before{
    content: '';
    position: absolute;
    top: 0px;
    right: calc(50% - 8px);
    z-index: 2;
    border-style: solid;
    border-color: transparent;
    border-width: 10px 8px;
    transform: translateY(-100%);
    filter: drop-shadow(0px -1px 1px #ccc);
    border-bottom-color: #ffd;
}

.flex-middle {
    display: flex ;
    align-items: center ;
}

.cas-toast-panel {
    position: fixed;
    z-index: 10002;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 5px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}
.cas-toast-panel > div {
    display: flex ;
    align-items: center ;
    min-width: 150px ;
    max-width: 600px ;
    box-sizing: border-box ;
    padding: 14px 21px ;
}
.cas-toast-panel .isvg {
    font-size: 1.34rem ;
    margin-right: 7px ;
}

.ui-mt2 {
    margin-top: 1rem ;
}
.ui-hide {
    display: none ;
}