.form_line {
    height: 523px;
    box-sizing: border-box;
    background-image: url("/images/product/5.png");
    background-size: 100% 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form_line .form_box {
    width: 1200px;
}

.form_line .form_dom {
    padding: 20px 50px;
    border-radius: 30px;
    background-color: #fff;
    width: 500px;
    height: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 10px;
}

.form_line .form_dom input,
.form_line .form_dom textarea {
    background-color: #f7f7f5;
    border-radius: 30px;
    border: none;
    box-sizing: border-box;
    padding: 5px 10px;
}

.form_line .form_dom textarea {
    border-radius: 10px;
}

.form_line .form_dom input:focus {
    outline: none;
}

.form_line .form_dom .title {
    font-weight: bold;
    font-size: 24px;
    /* 占两列 */
    grid-column: span 2;
}

.form_line .form_dom .btn_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.form_line .form_dom .btn {
    width: 50%;
    background-color: #108cda;
    border: none;
    color: #fff;
    padding: 10px 0;
    border-radius: 20px;
}
