.dialogWrapper {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.6;
    filter:alpha(opacity=60);
    z-index: 1050;
    display: none;
}

.dialogObj {
    position: fixed;
    margin-top: -123px;
    margin-left: -204px;
    z-index: 1061;
    top: 50%;
    left: 50%;
    min-width: 224px;
    padding: 40px 40px 30px;
    background-color: #fff;
    display: none;
    font-size: 15px;    
    border: 1px solid #eee;
    -moz-box-shadow: 0px 6px 30px #bbb;
    -webkit-box-shadow: 0px 6px 30px #bbb;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#bbbbbb')";
    box-shadow: 0px 6px 30px #bbb;
    border-radius: 2px;
}

.dialogCloseBtn{
    position: absolute;
    top: 3px;
    right: 3px;
    z-index: 1062;
    height: 30px;
    width: 30px;
    background: url("/images/maxthon5/linux-close.png") no-repeat center center;
}

.dialogCloseBtn:hover {
    background: url("/images/maxthon5/linux-close-hover.png") no-repeat center center;
}
.dialogObj {
    width: 480px;
    padding: 50px 40px;
    margin-left: -227px;
}
.dialogObj .dialogTitle {
    font-size: 24px;
    color: #444;
    margin: 0 auto;
}
.dialogObj .dialogContent {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}
.text-left .dialogContent,
.text-left .dialogTip {
    text-align: left;
}
.dialogObj .dialogConfirm {
    margin: 20px auto 30px;
    font-size: 15px;
    line-height: 20px;
    color: #666;
}
.dialogObj .dialogConfirm .back {
    margin-left: 10px;
    color: #3584ff;
    cursor: pointer;
}
.dialogObj .dialogTip {
    color: #bbb;
    font-size: 13px;
    margin-bottom: 0;
}
.dialogObj .confirmTip.dialogTipFirst {
    margin-top: 30px;
}
.dialogObj .confirmTip {
    margin: 0 auto;
    font-size: 12px;    
    line-height: 20px;
    color: #888;
}
.email-input {
    width: 270px;
    /*display: inline-block;*/
    margin: 0 10px 27px 0;
    cursor: initial;
    box-shadow: none;
}
.email-input:hover,
.email-input:focus {
    border-color: #3584ff;
    box-shadow: none;
}
.btn-error:focus,
.btn-error:hover {
    border-color: #fe3318;
}
.emailWrapper {
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1; 
    float: left;
}
.errorTip {
    display: block;
    position: absolute;
    top: 35px;
    left: 0;
    color: #fe3318;
    font-size: 12px;
    margin-top: 5px;
}
.btn-submit {
    width: 90px;
    font-size: 15px;
    color: #fff;
    background: #3584fe;
    background: -webkit-gradient(linear, left top, left bottom, from(#3584fe), to(#2576f6) ); 
    background: -moz-linear-gradient(-90deg, #3584fe, #2576f6);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#3584fe', EndColorStr='#2576f6');
}
.btn-submit:hover,
.btn-submit:focus {
    color: #fff;
    background: #2576f6;
    background: -webkit-gradient(linear, left top, left bottom, from(#2576f6), to(#3584fe) ); 
    background: -moz-linear-gradient(-90deg, #2576f6, #3584fe);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#2576f6', EndColorStr='#3584fe');
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    color: #fff;
    background: #5698ff;
    background: -webkit-gradient(linear, left top, left bottom, from(#5698ff), to(#3684ff) ); 
    background: -moz-linear-gradient(-90deg, #5698ff, #3684ff);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#5698ff', EndColorStr='#3684ff');
}
.btn-confirm {
    width: 170px;
    height: 36px;
}
.dialogObj .form {
    margin-top: 25px;
}
.dialogConfirm .back:hover {
    text-decoration: underline;
}

@media screen and (max-width: 690px) {
    .dialogObj {
        width: 320px;
        padding: 40px 20px;
        margin-left: -160px;
        margin-top: 0;
        top:10%;
    }
    .dialogObj .form {
        text-align: center;
    }
    .dialogObj .confirmTip {
        text-align: left;
    }
}