.DialogBg {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
}
.dialogBox{
    padding: 55px 108px;
    width: 680px;
    background: #fff;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.dialogBox .close{
    font-size: 40px;
    font-style: normal;
    position: absolute;
    top: 0;
    right: 12px;
    color: #d7d7d7;
    cursor: pointer;
}
.dialogTitle i{
    height: 38px;
    width: 45px;
    background: url(https://public.mtnets.com/Images/DialogBg/Dialog-icon.png) no-repeat;
    background-size: 100% 100%;
    display: block;
}
.dialogTitle p{
    line-height: 62px;
}
.dialogTitle p b{
    font-size: 32px;
    color: #333;
}
.dialogTitle p a{
    height: 34px;
    line-height: 34px;
    padding: 0 16px;
    margin-top: 14px;
    font-size: 16px;
    color: #138046;
    border: 1px solid #138046;
    border-radius: 20px;
    float: right;
}
.dialogItem{
    margin-top: 26px;
}
.dialogItem:nth-child(1){
    margin-top: 34px;
}
.dialogItem label {
    height: 20px;
    line-height: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    display: block;
}
.dialogItem .input{
    position: relative;
}
.dialogItem  input{
    height: 44px;
    font-size: 12px;
    line-height: 44px;
    background-color: #f2f2f2;
    border: 0;
    border-radius: 4px;
}
.dialogItem .input input.inputCss {
    width: 100%;
    text-indent: 20px;
}
.dialogItem .input p {
    position:absolute;
    right:0;
    bottom:56px;
    font-size:12px;
    line-height:20px;
    height:20px;
    color:#666;
    padding-left:24px;
    display: none;
}
.dialogItem .input p.Wrong {
  background:url("https://public.mtnets.com/Images/public/prompt.png") no-repeat 0 -126px;
}
.dialogItem .code {
    height: 44px;
    position: relative;
    line-height: 44px;
    font-size: 12px;
}
.dialogItem .code img{
    cursor: pointer;
}
.dialogItem .code input{
    width: 200px;
    margin-right: 22px;
    text-indent: 10px;
}
.dialogItem .code p {
    position:absolute;
    right: 50px;
    bottom: 10px;
    font-size:12px;
    line-height:20px;
    height:20px;
    color:#666;
    padding-left:24px;
    display: none;
}
.dialogItem .code p.Wrong {
background: url("https://public.mtnets.com/Images/public/prompt.png") no-repeat 0 -126px;
}
.dialogBtn{
    margin-top: 50px;
}
.dialogBtn button{
    height: 46px;
    line-height: 46px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
    display: block;
    color: #fff;
    background-color: #138046;
    border: 0;
    outline: none;
    cursor: pointer;
}