.box {
    width: 100%;
    height: 85vh;
    /* border: 1px solid #ccc; */
}

.box_top {
    width: 90%;
    height: 65px;
    margin-top: 64px;
    margin-left: 64px;
}

.top_img {
    width: 210px;
    /*height: 100%;*/
    margin: auto;
}

.top_logo {
    width: 100%;
    height: 100%;
}

.box_all {
    width: 320px;
    height: 500px;
    /* border: 1px solid #CCD1DB; */
    margin: 90px auto 0px;
}

p {
    width: 107px;
    height: 26px;
    font-size: 26px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #4676F8;
    line-height: 70px;
    margin: auto;
}

.form {
    margin-top: 64px;
}

ul,
li {
    list-style-type: none;
}

.p_input_li {
    width: 100%;
    height: 40px;
    /* margin-bottom: 50px; */
}

.i_input_li {
    width: 100%;
    height: 40px;
    margin: 24px 0;
}

.text_box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.text_input {
    display: inline-block;
    width: 160px;
    /* position: relative; */
    /* background-color: red; */
}

.text_img {
    display: inline-block;
    width: 144px;
    height: 40px;
    /* background-color: #000; */
}

input {
    display: inline-block;
    border: none;
    background: #FFFFFF;
    border: 1px solid #CCD1DB;
    border-radius: 8px;
    /* padding-left: 0px; */
}

.input_icon {
    position: relative;
}

.input_icon_img {
    position: absolute;
    width: 16px;
    height: 17px;
    left: 5px;
    top: 10px;
}

/* 这里是设置input获得焦点时的变化 */
input:focus {
    outline: 1px solid #51c9ff;
    background: rgba(3, 16, 28, 0);
    box-shadow: 0 0 5px #0960bd86
}


.button_btn {
    width: 100%;
    height: 48px;
    position: relative;
    /* background-color:#ccc; */
    /*margin: 80px 0;*/
    outline: 0 none !important;
}

.btn {
    display: inline-block;
    width: 100%;
    height: 48px;
    outline: none;
    border: none;
    box-shadow: 0px 6px 14px 0px rgba(70, 118, 248, 0.3);
    background-color: rgb(70, 118, 248);
    cursor: pointer;
    border-radius: 8px;
    color: #ffffff;
}

/* // 鼠标进入的样式 */
/* .btn:hover {
    background-color: #4676F8;
} */

.btn:active {
    box-shadow: 0 1px rgba(170, 170, 170, 0.342);
    transform: translateY(0.5px)
}

.btn_verification {
    display: inline-block;
    width: 130px;
    height: 40px;
    outline: none;
    border: none;
    background-color: #FFFFFF;
    border: 1px solid #4676F8;
    border-radius: 8px;
    color: #4676F8;
    cursor: pointer;
}

.btn_verification:active {
    box-shadow: 0 1px rgba(170, 170, 170, 0.342);
    transform: translateY(0.5px)
}

.input_paswod {
    display: inline-block;
    width: 313px;
    height: 33px;
}

img {
    width: 100%;
}

span {
    color: red;
    font-size: 12px;
}

#checkfirst {
    display: inline-block;
    margin-left: 5px;
    transform: scale(0.9);/*缩放字体*/
}

#checksecond {
    display: inline-block;
    margin-left: 5px;
    transform: scale(0.9);/*缩放字体*/
}

#checkthird {
    display: inline-block;
    transform: scale(0.9);/*缩放字体*/
    position: absolute;
    top: 40px;
    left: 5px;
}

.buttom_title {
    width: 387px;
    height: 20px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #B8BBC3;
    margin: 0 auto;
    margin-bottom: 14px;
}

.buttom_title2 {
    width: 172px;
    height: 20px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #B8BBC3;
    margin: auto;
}

#btn_veri2 {
    display: inline-block;
    display: flex;
    line-height: 40px;
    text-align: center;
    padding-left: 20px;
}

#aa {
    position: absolute;
    left: 105px;
    top: 15px;
    /* border: 3px solid hsla(185, 100%, 62%, 0.2); */
    /* border-top-color: #3cefff; */
    border: 3px solid hsla(180, 2%, 82%, 0.2);
    border-top-color: #80818154;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}