.body {
    width: 100vw;
    height: 100vh;
    min-height: 752px;
    min-width: 1100px;
    background-image: url(../../images/page/contactUsForm/bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.flexItem {
    width: 100%;
}

/* info */
.info {
    float: left;
    width: 50%;
    box-sizing: border-box;
}

.info .homeBtn {
    display: block;
    width: 285px;
    height: 94px;
    line-height: 94px;
    background: #FFFFFF;
    border: 1px solid #E9E9E8;
    border-radius: 6px;
    font-size: 26px;
    font-weight: 600;
    color: #1F233F;
    text-align: center;
}

.info .logo {
    margin-top: 63px;
    height: 75px;
}

.info .title {
    margin-top: 40px;
    font-size: 43px;
    font-weight: 600;
    color: #FFFFFF;
}

.info .usinfo {
    margin-top: 59px;
    width: 629px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-top: 23px;
    padding-bottom: 45px;
}

.info .usinfo li {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 15px;
}

.info .usinfo li .icon {
    float: left;
    display: block;
    margin-right: 15px;
    background-position: center center;
    background-repeat: no-repeat;
}

.info .usinfo li .icon.web {
    width: 15px;
    height: 15px;
    background-image: url("../../images/common/footer/web.png");
}

.info .usinfo li .icon.phone {
    width: 15px;
    height: 15px;
    background-image: url("../../images/common/footer/phone.png");
}

.info .usinfo li .icon.address {
    width: 12px;
    height: 16px;
    background-image: url("../../images/common/footer/address.png");
}

.info .qrCode {
    margin-top: 47px;
    width: 136px;
    height: 130px;
}

/* form */
.form {
    width: 50%;
    box-sizing: border-box;
    float: right;
    height: 752px;
    background: #FFFFFF;
    border: 1px solid #E9E9E8;
    padding-top: 89px;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
}

.form .title {
    font-size: 48px;
    font-weight: 600;
    color: #333333;
}

.form .desc {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
}

.form .type {
    margin-top: 50px;
    margin-bottom: 20px;
}

.form .type .radio {
    display: none;
}

.form .type label {
    position: relative;
    cursor: pointer;
    margin-right: 31px;
    line-height: 30px;
}

.form .type label::before {
    display: inline-block;
    content: "";
    width: 29px;
    height: 29px;
    margin-right: 19px;
    vertical-align: bottom;
    box-shadow: 0 0 1px 1px #CCCBCA, 0 0 1px 1px #CCCBCA;
}

.form .type .radio:checked+label::before {
    width: 19px;
    height: 19px;
    background-color: #B58360;
    border: 5px solid #ffffff;
}

.form .name {
    margin-top: 51px;
    width: 100%;
    height: 71px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
}

.form .inputText {
    margin-top: 21px;
    width: 100%;
    height: 71px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    padding-left: 37px;
    padding-right: 37px;
    line-height: 71px;
    box-sizing: border-box;
}

.form button {
    width: 100%;
    height: 82px;
    background: #B58360;
    border: 0;
    cursor: pointer;
    line-height: 82px;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 27px;
}