.dialog-root{
    display: none;
    overflow: hidden;
    z-index: 2147483647;
}

.dialog-modal{
    z-index: 2147483647;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5000)
}

.dialog-body{
    z-index: 2147483647;
    width: 502px;
    height: 458px;
    background: #FFFFFF;
    border-radius: 2px;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dialog-header{
    width: 100%;
    height: 101px;
    background: url(../images/pc/ny_tu29.png) no-repeat;
    background-size: 100% 100%;  
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dialog-header .index-logo{
    width: 60%;
    height: auto;
}

.dialog-header .close-img{
    position: absolute;
    top: 5%;
    right: 2%;
}

.dialog-content form{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 2% 10%;
}

.form-item{
    width: 100%;
    position: relative;
}

.form-item input{
    width: 100%;
    height: 70px;
    border: none;
    border-bottom: 1px solid rgba(183,180,180,0.2200);
    font-size: 16px;
    color: #757575;
    box-sizing: border-box;
    padding-left: 50px;
    outline: none;
    box-sizing: border-box;
}

.form-item:first-child input{
    background: url(../images/pc/ny_tu26.png) no-repeat;
    background-position: 0 50%;
    background-size: 35px 35px;
}

.form-item:nth-child(2) input{
    background: url(../images/pc/ny_tu27.png) no-repeat;
    background-position: 0 50%;
}

.form-item:nth-child(3) input{
    background: url(../images/pc/ny_tu28.png) no-repeat;
    background-position: 0 50%;
    padding-right: 120px;
}

.form-item .verify-code{
    width: 107px;
    height: 35px;
    background: rgba(183,180,180,0.3500);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 18px;
    color: #696969;
    text-align: center;
    line-height: 35px;
}

.submit-item{
    margin-top: 5%;
}

.submit-item input{
    width: 100%;
    height: 55px;
    background: linear-gradient(90deg, #C12602, #EE4225);
    border-radius: 28px;
    border: none;
    outline: none;
    font-size: 18px;
    color: white;
}

@media screen and (max-width: 510px) {
    .dialog-body{
        width: 90%;
        top: 50%;
    }
}

@media screen and (max-width: 458px) {
    .dialog-header{
        height: 70px;
    }

    .form-item input{
        height: 55px;
    }

    .form-item input{
        background-size: 25px 25px !important;
        box-sizing: border-box;
        padding-left: 35px;
        font-size: 14px;
    }

    .dialog-body{
        height: 330px;
    }

    .submit-item input{
        height: 38px;
        font-size: 16px;
    }

    .form-item .verify-code{
        width: 69px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
    }

    .dialog-header .index-logo{
        width: 70%;
    }
}