.register_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background-image: url("../images/login/index_bac.png");*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
}
.content_form{
    width: 840px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.input_box,.input_more{
    width: 400px;
    margin: 10px 10px 0;
}

.input_title{
    color: #FFF;
    font-family: Source Han Sans CN;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.red_span{
    color: #FF6AA0;
}

select {
    width: 47%;
    /*将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    border: none;
    /*替换选择框的最右侧显示小箭头图片*/
    /*background:url("../images/arrow.png") no-repeat  #fff;*/
    /*background-position: right 10%  center;*/
    /*background-size: 12px 7px;*/
}
.input_wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.input_box>input,
.input_more>select,
.input_wrapper>input ,
.input_wrapper>label{
    font-size: 18px;
    color: white;
    width: 100%;
    height: 46px;
    padding: 5px 10px;
    margin: 10px 0 0;
    border-radius: 2px;
    border: 1px solid rgba(105, 174, 255, 0.40);
    background: rgba(105, 174, 255, 0.10);
}
.input_wrapper>input,.input_wrapper>label{
    width: 48%;
}
.input_wrapper>label{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.input_wrapper>label>span{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.input_more>select>option{
    background: #13214B;
    color: rgba(255, 255, 255, 0.75);
    font-family: Source Han Sans CN;
    font-size: 18px;
    height: 40px;
}



.button_box>button,.message>div{
    width: 50%;
}