.content {
    background: rgba(242, 242, 242, 1)!important;
}
.contactContent {
    padding: 64px 0;
}
.contactContent2 {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}
.contactLeft {
    flex: 3;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 2px solid rgba(51, 51, 51, 0.06);
}
.contactLeft .map {
    margin-bottom: 40px;
    height: 500px;
}

input,textarea{
    border: 1px solid rgba(120, 51, 30, 0);
}

input:focus-within ,
    textarea:focus-within {
    border: 1px solid rgba(120, 51, 30, 1) !important;
}
input:hover ,
textarea:hover {
    border: 1px solid  rgba(191, 191, 191, 1);
}

.contactLeft .addressInfo {
    display: flex;
    flex-direction: column;
}
.contactLeft .addressInfo .infoItem {
    display: flex;
    align-items: center;
}
.contactLeft .addressInfo .infoItem:not(:last-child) {
    margin-bottom: 24px;
}
.contactLeft .addressInfo .infoItem .addressImg{
    width: 31px;
    height: 31px;
    margin-right: 8px;
    flex-shrink: 0;
}
.contactLeft .addressInfo .infoItem .addressImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contactLeft .addressInfo .infoItem .addressLabel {
    font-size: var(--button-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    /*line-height: 28.96px;*/
    color: rgba(51, 51, 51, 0.6);
    flex-shrink: 0;
}
.contactLeft .addressInfo .infoItem .addressContent {
    font-size: var(--button-font-size);
    font-weight: 400;
    letter-spacing: 0px;
    /*line-height: 28.96px;*/
    color: rgba(51, 51, 51, 1);
}
.contactRight {
    flex: 2;
    position: relative;
}
.contactRow {
    display: flex;
    flex-wrap: wrap;
}
.contactLabel {
    width: 100%;
    font-size: var(--news-title-font-size);
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 42px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 32px;
}
.contactMsg {
    width: 100%;
    min-height: 61px;
    opacity: 1;
    border-radius: 6px;
    background: rgba(242, 242, 242, 1);
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 28.96px;
    border: 1px solid rgba(235, 220, 174, 0);
    outline: none; /* 防止聚焦时显示蓝色边框 */
    margin-bottom: 32px;
}
.contactRight .button {
    width: 164px;
    height: 51px;
    opacity: 1;
    border: none;
    border-radius: 5px;
    background: rgba(120, 51, 30, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.contactRight .button:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), rgba(120, 51, 30, 1);
    color: rgba(235, 220, 174, 1);
}
/*! <=991 手机端 */
@media all and (max-width: 991px) {
    .contactContent {
        padding: 32px 0;
        margin: var(--mobile-content-padding);
        margin-bottom: 0;

    }
    .contactContent2 {
        flex-direction: column;
        padding: 12px;
        border-radius: 5px;
    }
    .contactLeft {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }

    .contactLeft .map{
        height: 300px;
    }
    .contactLeft .addressInfo .infoItem:last-child {
        margin-bottom: 24px;
    }
    .contactLabel {
        line-height: 20px;
        margin-bottom: 12px;
    }
    .contactMsg {
        min-height: 24px;
        font-size: 16px;
        padding: 12px 20px;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .contactRight .button {
        position: relative;
        text-align: center;
        margin: 0 auto;
        width: 120px;
        height: 40px;
    }
}


