* {
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none; /* 去除默认的下划线 */
    outline: none;    /* 去除旧版浏览器的点击后的外虚线框 */
    color: #000;  /* 去除默认的颜色和点击后变化的颜色 */
}

.retrievepage{
    width: 100vw;
    height: 100vh;
    background-image: url(../images/pageBody.jpg) ;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.retrievepage>img{
    position: absolute;
    top: 20vh;
    left: 10vw;
}

.retrieve {
    width: 20%;
    min-width: 485px;
    margin-left: 50%;
}

.retrieve_title {
    line-height: 38px;
    display: flex;
    justify-content: space-between;
}

.retrieve_title>div:nth-child(1){
    font-size: 18px;
    font-weight: 600;
}

.retrieve_title>a>div{
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
}

.retrieve_con {
    width: 100%;
    background: rgba(255,255,255,.8);
    border: 1px solid #e1e1e1;
}

.retrieve_con_top {
    width: calc(100% - 50px);
    margin: 0 auto;
    border-bottom: 1px solid #e1e1e1;
}

.retrieve_con_top>div {
    width: 45%;
    min-width: 500px;
    height: 35px;
    margin: 10px auto;
    display: flex;
}

.retrieve_con_top>div:nth-child(1) {
    margin-top: 30px;
}

.retrieve_ct_na {
    width: 10%;
    min-width: 120px;
    line-height: 35px;
    text-align: right;
}

.retrieve_ct_input {
    width: 35%;
    min-width: 260px;
    padding: 0 10px;
    outline: none;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
    font-size: 16px;
}

.retrieve_ct_input::placeholder {
    font-size: 14px;
}

.retrieve_ct_input:focus {
    border-color: #056de8;
}

.retrieve_ct_in>p {
    margin-left: 10px;
    white-space: nowrap;
    line-height: 35px;
    font-size: 14px;
    color: red;
}

.retrieve_ct_inp {
    width: 35%;
    min-width: 280px;
    display: flex;
    justify-content: space-between;
}

.retrieve_ct_input_in {
    width: 150px;
    padding: 0 10px;
    outline: none;
    border: 1px solid #e1e1e1;
    font-size: 18px;
}

.retrieve_ct_input_in::placeholder {
    font-size: 14px;
}

.retrieve_ct_input_div {
    width: 100px;
    border: 1px solid #e1e1e1;
    text-align: center;
    line-height: 33px;
    font-size: 13px;
    color: #000;
    cursor: pointer;
}

.retrieve_ct_input_div:hover {
    background-color: #b0b3b7;
    color: #fff;
}

.retrieve_ct_button{
    width: 260px;
    padding: 0 10px;
    background-color: #5b9ed0;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    text-align: center;
    line-height: 33px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.retrieve_ct_button:hover{
    background-color: #056de8;
}

/* 确认新密码框变红 */
input.error {
    border: 2px solid red;
}

.retrieve_con_bottom{
    width: calc(100% - 50px);
    margin: 30px auto;
    line-height: 30px;
    font-size: 15px;
}

.retrieve_con_bottom>div:nth-child(1){
    color: #5b9ed0;
}