html,
body {
    width: 100%;
    height: 100%;
}

#forgotpassword{
    padding-top: 100px;
    box-sizing: border-box;
}

.nav_top {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: flex-end;
}

.nav_top img {
    width: 286px;
    height: 76px;
    margin-top: 13px;
}

.nav_top .title {
    margin: 0 0 16px 30px;
    font-size: 18px;
    cursor: pointer;
}

.information {
    width: 100%;
    height: 500px;
    background: #fbfdff;
    margin: 40px 0;
    padding: 40px 0 0;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}

.information .content {
    width: 60%;
    margin: 0 auto;
}

.information .content .content_top{
    width: 100%;
    margin-bottom: 40px;
}

.information .content .content_top img{
    width: 100%;
}

.information .content .content_bottom{
    width: 100%;
}

.information .content .content_bottom .phone{
    width: 100%;
    height: 50px;
    line-height: 48px;
    border: 1px solid #999999;
    border-radius: 5px;
}

.information .content .content_bottom .phone img{
    width: 30px;
    margin: 0 10px 0 20px;
}

.information .content .content_bottom .phone input {
    width: 70%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0;
    background: none;
}

.information .content .content_bottom .phone input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

.information .content .content_bottom .code{
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
}

.information .content .content_bottom .code .coedes{
    width: 45%;
    height: 50px;
    border: 1px solid #999999;
    border-radius: 5px;
}

.information .content .content_bottom .code .coedes img{
    width: 30px;
    margin: 0 10px 0 20px;
}

.information .content .content_bottom .code .coedes input{
    width: 65%;
    height: 50px;
    border: none;
    outline: none;
    background: none;
}

.information .content .content_bottom .code .coedes input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}

.information .content .content_bottom .code .btn1{
    width: 40%;
    height: 50px;
    border: 1px solid #3281ff;
    border-radius: 5px;
    color: #3281ff;
    text-align: center;
    cursor: pointer;
}

.information .content .content_bottom .code .btn2{
    width: 40%;
    height: 50px;
    border: 1px solid #3281ff;
    border-radius: 5px;
    color: #3281ff;
    text-align: center;
    display: none;
    cursor: pointer;
}

.information .content .content_bottom .btn3{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    background: #3281ff;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 3px;
}



/* 768的屏以下 */
@media screen and (max-width: 768px) {
    .nav_top img {
        width: 230px;
        height: 70px;
    }

    .nav_top .title {
        margin: 0 0 16px 15px;
        font-size: 16px;
    }

    .information .content {
        width: 90%;
    }

    .information .content .content_bottom .code .coedes {
        width: 56%;
    }
}