.contact{
    margin: 10px 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact .contact-item{
    width: 32%;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #F0F1F3;
    margin-top: 20px;
}
.contact .contact-item img{
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
.contact .contact-item .contact-item-title{
    font-size: 16px;
    color: #262626;
    line-height: 17px;
}
.contact .contact-item .contact-item-text{
    font-size: 16px;
    line-height: 17px;
    color: #666666;
    margin-top: 10px;
}
.contact .contact-item.contact-address{
    width: 66%;
}
.contact .contact-line{
    width: 100%;
    height: 1px;
    background: #CECECE;
    margin: 30px 0;
}
.contact .contact-line1{
    margin-top: 20px;
}




.quote .quote-title{
    font-weight: bold;
    font-size: 24px;
    color: #1A1A1A;
    line-height: 36px;
}
.quote .quote-desc{
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    margin-top: 10px;
}
.quote .quote-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.quote .quote-form .quote-form-item{
    width: 49%;
    height: 45px;
    background: #EBEBEB;
    border-radius: 4px;
    margin-top: 20px;
    display: flex;
    padding: 0 20px;
}
.quote .quote-form .quote-form-item .quote-form-item-title,
.quote .quote-form .quote-form-message .quote-form-message-title{
    font-size: 14px;
    color: #1A1A1A;
    line-height: 45px;
    white-space: nowrap;
}
.quote .quote-form .quote-form-item .quote-form-item-title span,
.quote .quote-form .quote-form-message .quote-form-message-title span{
    color: #FF0000;
}
.quote .quote-form .quote-form-item .quote-form-item-input,
.quote .quote-form .quote-form-item .contact-product{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    margin-left: 10px;
    line-height: 45px;
}
.quote .quote-form .quote-form-message{
    width: 100%;
    background: #EBEBEB;
    margin-top: 20px;
}
.quote .quote-form .quote-form-message .quote-form-message-title{
    margin-left: 10px;
    line-height: 24px;
}
.quote .quote-form .quote-form-message .quote-form-item-textarea{
    width: 100%;
    height: 110px;
    padding: 0 10px;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
}
.quote .quote-form .quote-form-submit{
    width: 214px;
    height: 50px;
    background: #1562C5;
    border-radius: 25px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 48px;
    text-align: right;
    padding-right: 4px;
    cursor: pointer;
    margin: 20px auto 0;
}
.quote .quote-form .quote-form-submit img{
    width: 42px;
    height: 42px;
    margin-left: 10px;
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .contact .contact-item{
        padding: 15px 20px;
    }
}
@media only screen and (max-width: 1000px) {
    .contact .contact-item{
        padding: 10px;
        margin-top: 10px;
    }
    .contact .contact-item img{
        margin-right: 10px;
    }
    .contact .contact-item .contact-item-title,
    .contact .contact-item .contact-item-text{
        font-size: 14px;
        line-height: 16px;
    }
    .contact .contact-item .contact-item-text{
        margin-top: 5px;
    }
}