@charset "utf-8";

.content-section{
    position: relative;
    box-sizing: border-box;
    padding: 1rem 0.75rem 1rem;
    min-height: 100vh;
    background-color: #f3f3f3;
    background-image: url(../images/common/1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
}
.content-section>h1{
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.box-div{
    padding: 0 0.5rem;
    box-shadow: 0 0 0.5rem #ccc;
    border-radius: 0.4rem;
    background-color: #fff;
}
.form-div>h3{
    font-size: 18px;
    margin-bottom: 0.7rem;
    font-weight: normal;
}
.form-div>h3::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    margin-right: 0.3rem;
    vertical-align: -2px;
    background-color: var(--main-bg-color);
}
.box-div+h3{
    margin-top: 1rem;
}

.form-item-div{
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E7E9F1;
}
.form-item-div>label{
    flex-shrink: 0;
    display: block;
    width: 5.5em;
    line-height: 1em;
    text-align: right;
}
.box-div.active .form-item-div>label{
    /* width: 7em; */
}
.form-item-div>label.require::before{
    content: '*';
    color: #E9365E;
}
.form-item-div>input{
    box-sizing: border-box;
    flex-grow: 1;
    height: 2.6rem;
    padding: 0 0.2rem;
    font-size: 0.8rem;
    border-radius: 0.2rem;
    border: none;
}
.form-item-div>p{
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 3.4rem;
    color: #E9365E;
    font-size: 14px;
}
.form-item-div>button{
    z-index: 10;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
}
.form-item-div>button.disabled{
    color: #999;
}
.form-item-div+.form-item-div{
    /* margin-top: 0.5rem; */
}

.select-item-div{
    justify-content: space-between;
    height: 2.6rem;
}
.select-div>img{
    display: inline-block;
    width: 0.5rem;
    margin-left: 0.2rem;
    vertical-align: middle;
}
.select-ele{
    width: 5rem;
    height: 2.6rem;
    border: none;
    text-align: right;
    outline: none;
    font-size: 0.8rem;
}
.select-ele>option{
    text-align: center;
}


.radio-div{
    display: flex;
    align-items: center;
    height: 2.6rem;
}
.radio-div>label{
    margin-left: 0.2rem;
    margin-right: 1rem;
}
#file-ele{
    display: none;
}
.upload-div{
    display: flex;
    align-items: center;
    height: 2.6rem;
}
.upload-div>label{
    display: block;
    width: 2.6rem;
    height: 100%;
}
.upload-div>label>img{
    display: block;
    width: 100%;
    height: 100%;
}

.msg-item-div>button{
    z-index: 10;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    font-size: 0.7rem;
    color: var(--btn-text-color);
}

/* .form-item-div::before{
    content: '';
    z-index: 10;
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 27px;
    background-color: #E7E9F1;
} */

.btn-div{
   margin-top: 2rem;
}
.btn-div>button{
    display: block;
    width:100%;
    line-height: 2.7rem;
    font-size: 0.8rem;
    background-color: var(--main-bg-color);
    color: #fff;
    border-radius: 3px;
}