.form_box {
    width: 100%;
    height: 350px;
}
.form_box .box_left {
    height: 350px;
    width: 40%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.form_box .box_left .box_img {
    width: 100%;
    height: 300px;
}
.form_box .box_left .box_img img {
    width: 100%;
    height: 100%;
}
.form_box .box_btn {
    width: 100%;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form_box .box_left label {
    background-color: #E5E5E5;
    color: #565555;
    font-size: 16px;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s;
}
.form_box .box_left label:hover {
    color: #E5E5E5;
    background-color: #565555;
}
.form_box .box_left label:active {
    background-color: #E5E5E5;
    color: #565555;
}
.form_box .box_right {
    height: 350px;
    width: 58%;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.form_box .box_right .box_submit {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.form_box .box_right .box_submit input[type=submit] {
    width: 300px;
    height: 40px;
    border: 0;
    background: #E5E5E5;
    color: #565555;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s;
}
.form_box .box_right .box_submit input[type=submit]:hover {
    color: #E5E5E5;
    background-color: #565555;
}
.form_box .box_right .box_submit input[type=submit]:active {
    background-color: #E5E5E5;
    color: #565555;
}
.form_box .box_right .box_detail {
    width: 100%;
    height: 300px;
    padding-top: 15px;
}
.form_box .box_right .box_detail textarea {
    width: 100%;
    height: 300px;
    background: #FFFFFF;
    color: #565555;
    font-size: 15px;
    resize: none;
    border-radius: 10px;
}
.submit-btn {
    width: 200px;
    background-color: #E5E5E5;
    color: #565555;
    border: 0px;
    font-size: 16px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s;
    cursor: pointer;
}
.submit-btn:hover {
    color: #E5E5E5;
    background-color: #565555;
}
.submit-btn:active {
    background-color: #E5E5E5;
    color: #565555;
}
.box-detail-item {
    width: 125px;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    float: left;
    margin-right: 14px;
    margin-bottom: 18px;
}
.box-detail-item p {
    width: 50px;
    height: 30px;
    margin: 0;
    margin-top: 5px;
    margin-right: 5px;
    text-align: right;
    font-size: 12px;
    color: #565555;
}
.box-detail-item input {
    width: 46px;
    height: 30px;
    margin: 0;
    color: #565555;
}
.box-detail-item input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#c5c5c5;
}
.box-detail-item input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:#c5c5c5;
}
.box-detail-item input::-ms-input-placeholder { /* Microsoft Edge */
    color:#c5c5c5;
}
.box-detail-item button {
    /* margin-top: 10px; */
    margin-right: 5px;
    width: 100%;
    height: 100%;
    background-color: #E5E5E5;
    color: #565555;
    border: 0px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.35s;
    cursor: pointer;
}
.box-detail-item button:hover {
    color: #E5E5E5;
    background-color: #565555;
}
.box-detail-item button:active {
    background-color: #E5E5E5;
    color: #565555;
}