.form {
    width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.form_name,
.form_type,
.form_phone {
    display: flex;
}

.form_content {
    display: flex;
}

.form_name div,
.form_type div,
.form_content div,
.form_phone div {
    font-size: 22px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: rgba(29, 29, 29, 1);
    margin-right: 40px;
}

.form_name input,
.form_type input,
.form_phone input {
    width: 448px;
    height: 35px;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    border: 2px solid rgba(204, 204, 204, 1);
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 400;
    padding-left: 22px;
    box-sizing: border-box;
}

.form_content textarea {
    width: 800px;
    height: 200px;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    border: 2px solid rgba(204, 204, 204, 1);
    font-size: 16px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 400;
}

.form_type {
    margin: 20px 0;
}

.form_phone {
    margin-top: 20px;
}