.contact_form{
    padding: 80px;
    background: #F8F8F8;
    max-width: 1000px;
    margin: auto;
}
.contact_form>h1{
    color: #EB5514;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;

}
.contact_info{
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    margin: 20px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}
.contact_info img{
    display: block;
    margin: auto;
}
.contact_info a{
    display: block;
    text-align: center;
    color: #333;
    margin-top: 20px;
    font-size: 20px;
}
.contact_info a span{
    display: block;
    text-align: center;
}
.heading-title{
    display: none;
}
.contact_page{
    max-width: 1200px;
    padding: 80px;
    background: url(/image/slices/frame%402x.png)center no-repeat;
    background-size: 100% 100%;
    margin: 40px auto;
}
.contact_page .contact_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.contact_page .contact_info i{
    display: block;
    width: 68px;
}
.contact_page .contact_info img{
    width: 68px;
    margin-right: 10px;
}
.contact_page .contact_info a {
    font-size: 18px;
    color: #2e2e2e;
}
.contact_page .contact_info a i{
    display: block;
    font-size: 24px;
}
.contact_page .contact_info .info_item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.form-col {
    line-height: 35px;
    font-size: 14px;
    margin-bottom: 20px;
}
.form-box>.col-2:nth-of-type(1){
    float: left;
    margin-right:15px;
    width: calc(50% - 15px);
}
.form-box>.col-2:nth-of-type(2){
    float: left;
    margin-left:15px;
    width: calc(50% - 15px);
}

#check-code {
    line-height: 35px;
    font-size: 15px;
}

.form-col label {
    flex: 1;
    min-width: 100px;
    box-sizing: unset!important;
    font-size: 15px;
    line-height: 45px;
    height:45px;
}

.form-col>input,
.form-col>textarea {
    background-color: #fff;
    color: #666;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 12px 15px;
    resize: vertical;
}

#check-code>input {
    background-color: #f9fbfc;
    color: #666;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 15px;
    resize: vertical;
    width: 60%;
    float: left;
}

#check-code>label {
    display: block;
}

.form-col>textarea {
    min-height: 200px;
}

.code {
    color: #666;
    font-size: 16px;
    border-radius: 6px;
    resize: vertical;
    padding: 0 10px;
    font-size: 30px;
    font-style: italic;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    width: 40%;
    cursor: pointer;
    float: left;
}

.submit input {
    width: 300px;
    display: block;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    transition: 0.3s all;
    cursor: pointer;
    background: #EB5514;
    color: #fff;
    font-size: 20px;
    margin: auto;
}


.submit input:hover {
    background: #d5b48b;
}


.submit {
    clear: both;
    overflow: hidden;
    margin-top: 20px;
}
@media screen and (max-width:760px){
    .contact_info {
        justify-content: flex-start;
    }
    .contact_info>div {
        flex: 0 0 50%;
    }
}