/* 联系我们 */
.contact-wrap{
    width: 100%;
    height: auto;
    padding: 154px 0;
    background-color: #F7F7F7;
}
.contact-box{
    width: 1400px; 
    width: 90%; 
    margin: 0 auto;
    display: flex;
    align-content: center;
    justify-content: flex-start;
}
.contactUs-left{
    width: 50%;
    height: auto;
    padding: 45px 0;
    position: relative;
    border-right: 1px solid #eaeaea;
}
/* .contactUs-left::after{
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 100px);
    background-color: #EAEAEA;;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
} */
.contactUS-title{
    font-size: 36px;
    color: #333333;
    margin-bottom: 10px;
}
.contactKind{
    /*width: 480px;*/
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #ECECEC;
}
.contactKind p{
    color: #666666;
    font-size: 16px;
    margin-left: 15px;
}
.contactKind input{
    width: 80%;
    height: 100%;
    border: 0;
    outline: none;
    background: transparent;
}
.contactKind .siteIcon{
    display: inline-block;
    width: 14px;
    height: 18px;
    background: url(../image/contactUs/contact-icon1.png) no-repeat;
    background-size: 100% 100%;
}
.contactKind .phoneIcon{
    display: inline-block;
    width: 19px;
    height: 21px;
    background: url(../image/contactUs/contact-icon2.png) no-repeat;
    background-size: 100% 100%;
}
.contactKind .emailIcon{
    display: inline-block;
    width: 19px;
    height: 15px;
    background: url(../image/contactUs/contact-icon4.png) no-repeat;
    background-size: 100% 100%;
}
.leftBox2{
    margin-top: 53px;
}
.contactUs-right{
    width: 50%;
    margin: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media screen and (max-width:768px){
    .contact-wrap{
        padding: 50px 0;
    }
    .contact-box{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .contactUs-left{
        width: 100%;
        padding-bottom: 0;
        border-right: 0;
    }
    .contactUs-right{
        width: 100%;
        margin: 0;
    }
}