

.contain-box {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../images/common/bgc1.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contain-box .logo {
    /* width: 6.9rem; */
    height: 1.3rem;
    /* margin-top: 1.32rem; */
    margin-top: 0.8rem;
}
.contain-box .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 注册表单 */
.contain-box .form-box {
    width: 5rem;
    margin-top: 0.28rem;
    padding: 0.35rem 0.4rem 0.45rem;
    background: #FFFFFF;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
}
.form-box .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-box .t1 {
    font-size: 0.24rem;
    font-weight: bold;
    color: #333333;
}
.form-box .t2 {
    font-size: 0.14rem;
    font-weight: 500;
    color: #333333;
}
.form-box .t2 span {
    font-size: 0.14rem;
    font-weight: 500;
    color: #A00C10;
}
.form-box .infos {
    width: 100%;
    margin-top: 0.3rem;
}
.form-box .infos .item {
    position: relative;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-box .infos .item:first-child {
    margin-top: 0;
}
.form-box .infos .label {
    flex: 1;
    text-align: left;
    font-size: 0.14rem;
    font-weight: 500;
    color: #555555;
    white-space: nowrap;
}
.form-box .infos input {
    width: 3.43rem;
    height: 0.5rem;
    padding: 0.15rem;
    border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
    border: 0.01rem solid #DDDDDD;
    outline: none;
}
.form-box .infos input:focus {
    border: 0.01rem solid #A00C10;
}
.form-box .infos input:focus::placeholder {
    color: #A00C10;
}
.form-box .infos .send {
    position: absolute;
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.14rem;
    font-weight: 500;
    color: #A00C10;
    cursor: pointer;
}
.form-box button {
    width: 4.2rem;
    height: 0.5rem;
    margin-top: 0.3rem;
    background: #A00C10;
    border-radius: 0.08rem 0.08rem 0.08rem 0.08rem;
    border: 0.01rem solid #A00C10;
    font-size: 0.2rem;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 0.5rem;
    text-align: center;
    cursor: pointer;
}
.form-box button:hover {
    background: #a71e23;
}




@media only screen and (max-width: 1024px) {
    .contain-box .logo {
        margin-top: 50px;
    }
    
    
    .contain-box .form-box {
        width: 355px;
        margin-top: 30px;
        padding: 20px 15px;
    }
    .form-box .t1 {
        font-size: 16px;
    }
    .form-box .t2 {
        font-size: 12px;
    }
    .form-box .t2 span {
        font-size: 12px;
    }
    .form-box .infos {
        margin-top: 30px;
    }
    .form-box .infos .item {
        margin-top: 15px;
    }
    .form-box .infos .label {
        width: 72px;
        flex: unset;
        font-size: 14px;
    }
    .form-box .infos input {
        width: auto;
        flex: 1;
        height: 40px;
        padding: 10px;
        font-size: 12px;
    }
    .form-box .infos .send {
        right: 10px;
        font-size: 12px;
    }
    .form-box button {
        width: 100%;
        height: 40px;
        margin-top: 30px;
        font-size: 14px;
        line-height: 40px;
    }
    
    
}











