/* .main_content {
    padding: .92rem 0 .1rem;
} */
.quoteBtn {
    width: 3rem;
    height: .6rem;
    line-height: .6rem;
    color: #fff;
    font-size: .2rem;
    font-family: pb;
    text-align: center;
    cursor: pointer;
    border-radius: .2rem;
}

.contactUs_banner {
    width: 100%;
    height: 8rem;
    margin: 0 auto;
    background: url(../img/contactUs-banner.jpg) no-repeat center center;
    background-size: contain;
    position: relative;
}

.contactUs_banner .quoteBtn {
    height: .8rem;
    position: absolute;
    top: 70%;
}

.contactUs_banner .quoteBtn1 {
    left: 22%;
}

.contactUs_banner .quoteBtn2 {
    left: 38%;
}

.contactUs_banner .quoteBtn3 {
    width: 4.6rem;
    left: 54%;
}

.contact_way {
    width: 100%;
}

.contact_way .way_content {
    width: 15rem;
    margin: 0 auto;
    padding: .6rem 0;
}

.contact_way .way_ul {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .2rem;
    margin-top: .4rem;
}

.contact_way .way_li {
    border: .01rem solid #e5e5e7;
    border-radius: .2rem;
    overflow: hidden;
    padding: .2rem;
}

.contact_way .way_li>img {
    width: .5rem;
    height: .5rem;
    object-fit: contain;
    margin-bottom: .2rem;
}

.contact_way .way_li .titleH {
    font-size: .26rem;
    text-transform: capitalize;
    text-align: left;
}

.contact_way .way_li .msgH {
    text-align: left;
}

.contact_way .way_li .msgHO {
    color: #f88e04;
    font-family: pb;
    margin-top: .2rem;
    font-size: .22rem !important;
}

.contact_way .way_li .quoteBtn {
    width: 2rem;
    color: #f88e04;
    border: .02rem solid #f88e04;
    border-radius: .4rem;
    margin: .4rem 0 .2rem;
}

.contact_way .way_li:nth-child(2) .quoteBtn {
    width: 3rem;
}

.contact_way .way_li:hover {
    border: .01rem solid #f88e04;
}

.contact_way .quoteBtn:hover {
    color: #fff;
    background-color: #f88e04;
}

.contact_location {
    width: 100%;
    background-color: #f5f5f7;
}

.contact_location .location_content {
    width: 15rem;
    margin: 0 auto;
    padding: .6rem 0;
}

.contact_location .location_map {
    width: 100%;
    height: 6rem;
    margin-top: .4rem;
}

.contactUs_onLine {
    width: 100%;
}

.contactUs_onLine .online_content {
    width: 12rem;
    margin: .8rem auto 0;
}

.contactUs_onLine .titleH,
.contactUs_onLine .msgH {
    text-align: center;
}

.contactUs_onLine .msgH {
    color: #666;
    margin-bottom: .4rem;
}

.contactUs_onLine .contact_form {
    margin-top: .3rem;
}

.contactUs_onLine .form_row {
    display: flex;
    gap: .2rem;
    margin-bottom: .4rem;
}

.contactUs_onLine .form_input_wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: .25rem;
    padding: .15rem .15rem;
    transition: border-color 0.3s;
}

.contactUs_onLine .form_input_wrapper:hover {
    border-color: #f88e04;
}

.contactUs_onLine .form_input_wrapper:focus-within {
    border-color: #f88e04;
}

.contactUs_onLine .form_input_wrapper.full_width {
    width: 100%;
}

.contactUs_onLine .form_icon {
    width: .3rem;
    height: .3rem;
    margin-right: .1rem;
    flex-shrink: 0;
}

.contactUs_onLine .form_icon_textarea {
    margin-top: -.8rem;
}

.contactUs_onLine .form_input_wrapper input,
.contactUs_onLine .form_input_wrapper textarea {
    flex: 1;
    border: none;
    outline: none;
    font-size: .2rem;
    color: #333;
    background: transparent;
    padding: 0;
}

.contactUs_onLine .form_input_wrapper input::placeholder,
.contactUs_onLine .form_input_wrapper textarea::placeholder {
    color: #999;
}

.contactUs_onLine .form_input_wrapper textarea {
    resize: vertical;
    min-height: 1.2rem;
    font-family: inherit;
}

.contactUs_onLine .submit_btn {
    width: 2.5rem;
    height: .6rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f88e04 100%);
    color: #fff;
    border: none;
    border-radius: .1rem;
    font-size: .24rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: .2rem 0 0 4.5rem;
}

.contactUs_onLine .submit_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}