#findpwd {
    margin-top: 50px;
    position: relative;
    padding: 0 224px;
}

/* 手机 input icon */
.phone_icon {
    position: absolute;
    top: 11px;
    left: 14px;
}

#phoneNumber {
    width: 350px;
    height: 45px;
    /* border-radius: 0px; */
    border: 1px solid rgba(229, 229, 229, 1);
    border-radius: 4px;
    /* border: none; */
    box-shadow: none;
    transition: none;
    /* margin: 38px auto 0 auto; */
    padding-left: 47px;
    color: #303030 !important;
}

#phoneNumber.active {
    border-color: #E60012 !important;
}

#phoneNumber:focus {
    border: 1px solid rgba(191, 191, 191, 1);
}

/*滑动验证*/
.drag {
    width: 350px;
    height: 35px;
    background: rgba(238, 238, 238, 1);
    line-height: 40px;
    position: relative;
    margin: 20px auto 0 auto;
}

.drag_bg {
    width: 40px;
    height: 100%;
    position: absolute;
    background-color: #75CDF9;
}

.drag_text {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    user-select: none;

    font-size: 14px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
}

.drag_btn {
    position: absolute;
    cursor: move;
    font-family: MicrosoftYaHei;
    text-align: center;
    user-select: none;
    color: #666;
    line-height: 35px;
    width: 40px;
    height: 35px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(229, 229, 229, 1);
    display: flex;
    justify-content: center;
    align-items: center;

}

.drag_btn img {
    width: 20px;
    height: 20px;
}

.drag_btn .checkbox_box_icon {
    font-size: 20px;
    border-radius: 50px
}

/*验证码错误提示*/
.help-block {
    font-size: 12px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    color: rgba(230, 0, 18, 1);
    /* margin: 9px 0 0 0; */
    padding-top: 6px;
    margin: 0;
    /* display: inline-block; */
    display: none;
    /* opacity: 0; */
}

.phone {
    margin: 0;
    /* display: inline-block; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    padding: 0;
}

.phone.active {
    display: inline-block;
}

.code.active {
    display: block;
}

/* 验证码和错误提示外层盒子 css */
.yz_wrap {
    width: 350px;
    margin: 0 auto;
    display: none;
}

/*验证码*/
.findpwd_code {
    overflow: hidden;
    /* display: flex; */
    /* align-items: center; */
    /* flex-wrap: wrap; */
    margin-top: 8px;
    /* display: inline-block; */
    margin: 0 auto 20px auto;
    /* text-align: center; */
    /* width: 280px; */
    /* margin-left: 225px; */

}

/*验证码输入框*/
.findpwd_code .phone_code {
    width: 130px;
    height: 45px;
    border: 1px solid rgba(220, 220, 220, 1);
    border-radius: 4px;
    box-shadow: none;
    color: #303030 !important;
    display: inline-block;
    text-align: center;

}

.phone_code.active {
    border-color: #E60012;
}

.findpwd_code .phone_code:focus {
    border: 1px solid rgba(191, 191, 191, 1);
    border-radius: 4px;
    box-shadow: none;

}

#phoneNumber,
.phone_code {
    background-color: #F4F4F4;
}

#phoneNumber:focus,
.phone_code:focus {
    background-color: #fff;
}

/*验证码 发送 按钮*/
#findpwdcodesub {
    width: 120px;
    height: 45px;
    border: 1px solid rgba(56, 140, 255, 1);
    border-radius: 4px;
    font-size: 16px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    color: #388cff;
    margin-left: 20px;
    outline: none !important;
}

#findpwdcodesub:hover {
    background-color: #fff;
}

#findpwdcodesub:focus {
    background-color: #fff;
}

#findpwdcodesub[disabled] {
    border: 1px solid #DCDCDC !important;
    color: #999999;
    /* border: none !important; */
}


/*滑动验证css*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.outer {
    position: relative;
    margin: 20px auto 20px auto;
    width: 350px;
    height: 35px;
    line-height: 35px;
    /* border: 1px solid #ccc; */
    background: #ccc9c9;
    box-sizing: content-box;
    /* margin: 20px auto 0 auto; */
}

.outer span,
.filter-box,
.inner {
    position: absolute;
    top: 0;
    left: 0;
}

.outer span {
    display: block;
    padding: 0 0 0 36px;
    width: 100%;
    height: 100%;
    line-height: 35px;
    color: #fff;
    text-align: center;
}

.filter-box {
    width: 0;
    height: 100%;
    background: #89BBFF;
    z-index: 9;
}

.outer.act span {
    padding: 0 36px 0 0;
}

.inner {
    line-height: 35px;
    width: 45px;
    height: 35px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    font-family: "MicrosoftYaHei";
    z-index: 10;
    font-weight: bold;
    color: #929292;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(220, 220, 220, 1);
}

.outer.act .inner {
    color: green;
}

.outer.act span {
    z-index: 99;
}

.user:hover .user_wrap {
    display: block;
}

/*提交按钮*/
.findpwd_btn {
    width: 350px;
    height: 45px;

    border-radius: 4px;
    margin-top: 20px;
    font-size: 18px;
    font-family: MicrosoftYaHei;
    font-weight: 400;
    display: block;
    margin: 0px auto 0 auto;
    outline: none !important;
    border: none !important;
    background: #DCDCDC;
    color: #999999;
}

.findpwd_btn:focus {
    background: #DCDCDC;
    color: #999999;
}

.findpwd_btn:hover {
    background: #DCDCDC;
    color: #999999;
}

.findpwd_btn:active {
    background: #DCDCDC !important;
    color: #999999 !important;
}


.findpwd_btn.active {
    color: rgba(255, 255, 255, 1);
    background: #388cff;
}

.findpwd_btn.active:focus {
    background: rgba(0, 87, 255, 1) !important;

    color: rgba(255, 255, 255, 1) !important;
}

.findpwd_btn.active:hover {
    background: rgba(0, 87, 255, 1) !important;

    color: rgba(255, 255, 255, 1) !important;
}