input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.popup-dialog-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: .5;
    -ms-filter: "alpha(Opacity=0)";
    z-index: 95;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}
.popup-dialog-bg.show {
    display: block;
}
.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.popup-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}
.popup-dialog {
    margin-top: 14vh;
    width: 500px;
    color: #787878;
    font-size: 14px;
    background-color: #fff;
    border-radius: 8px;
    outline: 0;
    z-index: 99;
    opacity: 0;
    -ms-filter: "alpha(Opacity=0)";
    overflow: hidden;
    -webkit-transform: translate(0,20px);
    -ms-transform: translate(0,20px);
    transform: translate(0,20px);
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.popup-dialog.show {
    opacity: 1;
    -ms-filter: "alpha(Opacity=100)";
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
}

.popup-dialog-title {
    position: relative;
    height: 120px;
}
.popup-dialog-title .title {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 1;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.popup-dialog-title .title h1 {
    height: 60px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 300;
    background: #fe4c5a;
}
.popup-dialog-title .title h2 {
    font-size: 14px;
    font-weight: 400;
}
.popup-dialog-title-close {
    position: absolute;
    top: 10px;
    right:10px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
}




.popup-dialog-content {
    width: 100%;
    position: relative;
}

.popup-dialog-content .view {
    width: 100%;
    box-sizing: border-box;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
.popup-dialog .input-wrapper {
    position: relative;
    border-bottom: 1px solid #eee;
}
.popup-dialog .input-wrapper:first-child {
    border-top: 1px solid #eee;
}
.popup-dialog .input-wrapper input {
    padding: 8px;
    height: 48px;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    color: #333;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}
.popup-dialog .input-wrapper.verification-code input {
    width: 64%;
}
.popup-dialog .input-wrapper .password-show {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    padding: 0 8px;
    background: url(/Images/86new/eye_hint.png) center no-repeat;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}
.popup-dialog .input-wrapper .password-show.show {
    background: url(/Images/86new/eye_hint_show.png) center no-repeat;
}
.popup-dialog .input-wrapper label.error {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 8px;
    line-height: 48px;
    color: #fe4c5a;
    cursor: text;
    background: #fff;
    background: -webkit-linear-gradient(left,rgba(255,255,255,0),#fff 8px);
    background: linear-gradient(to right,rgba(255,255,255,0),#fff 8px);
    -ms-filter: "alpha(Opacity=0)";
    -webkit-transition: .25s ease-out;
    transition: .25s ease-out;
}
.popup-dialog .input-wrapper.verification-code label.error {
    right: 36%;
}
.popup-dialog .submit-wrapper {
    padding: 60px 0 20px;
    text-align: center;
}
.popup-dialog button {
    padding: 0;
    font-size: 14px;
    color: #999;
    background: 0 0;
    border: 0;
    outline: 0;
    cursor: pointer;
}
.popup-dialog .red-button {
    display: inline-block;
    padding: 18px 60px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    border: 0;
    background-color: #fe4c5a;
    outline: 0;
    cursor: pointer;
}
.popup-dialog .input-wrapper.verification-code .send-code {
    position: relative;
    z-index: 2;
    float: right;
    width: 36%;
    height: 48px;
    color: #ababab;
    background-color: #f7f7f7;
}
.popup-dialog-bottom {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}
