.contact-info {
    background: url("../images/contact.png") no-repeat 0 0;
    background-size: 100% 100%;
    width: 100%;
    height: 80%;
    display: flex;
    padding: 0 15%;
}
.contact-info .phone {
    width: 399px;
    font-size: 37px;
    font-weight: bold;
    color: #000000;
}
.contact-info .zixun {
    margin-top: 70px;
    width: 53%;
	z-index: 999;
}
.contact-info .lianxi {
    margin-top: 4%;
}
.tiao1 {
    width: 70px;
    height: 3px;
    background: #FF782C;
    display: inline-block;
}
.tiao2 {
    width: 18px;
    height: 3px;
    background: #FF782C;
    display: inline-block;
}
.tiyan {
    color: #9b9b9b;
    width: 385px;
    margin-top: 25px;
}
.contact-form {
    padding: 30px;
    width: 440px;
    height: 90%;
    background: #FFFFFF;
    border: 1px solid #FF782C;
}
.contact-form i {
    color: red;
    margin-right: 3px;
}
.contact-form .form-title {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
}
.contact-form .form-tit2 {
    color: #9b9b9b;
    margin: 10px 0 20px 0;
}
.contact-form input {
    border: none;
    width: 100%;
    border-bottom: 1px solid #4A4A4A;
    margin-top: 8px;
    margin-bottom: 25px;
}
.contact-form textarea{
    width: 100%;
    margin-top: 8px;
    margin-bottom: 25px;
}
.contact-form .update {
    width: 360px;
    height: 40px;
    background: #FF692F;
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
    color: #fff;
    font-size: 16px;
}
.contact-form input[type=text]:focus {
    outline: none;
    border-bottom: 1px solid orange;
}
.contact-form textarea[type=text]:focus {
    outline: none;
    border: 1px solid orange;
}

/* 媒体查询 */
@media screen and (max-width: 768px) {
    .contact-info {
        display: flex;
        flex-direction: column;
        padding: 0 8%;
        height: auto;
    }
    .contact-info .phone {
        width: 100%;
        font-size: 21px;
    }
    .contact-info .zixun {
        width: 100%;
        margin-top: 10px;
    }
    .tiyan {
        width: 100%;
        margin-top: 10px;
    }
    .contact-form {
        width: 100%;
    }
    .contact-form .update {
        width: auto;
    }
}