.contact {
    padding: 70px 0px 90px 0px;
}

.contactTitle {
    text-align: center;
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 50px;
}

.contactTitle::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 50px;
    height: 4px;
    background: #82CBD9;
    border-radius: 100px;
}

.contactTitle h3 {
    color: #333;
    margin-bottom: 10px;
}

.contactTitle p {
    color: #999;
    font-family: "ResourceHanRoundedCN";
}

.contactCon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactConL {
    width: 66%;
    height: 500px;
}

.contactConR {
    width: 30%;
}

.contactUl li {
    margin-bottom: 50px;
}

.contactUl li:last-of-type {
    margin-bottom: 0px;
}

.contactUl div {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.contactUl img {
    display: block;
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.contactUl span {
    display: inline-block;
    position: relative;
    color: #333;
    font-weight: bold;
}

.contactUl span::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 11px;
    background: #32A3C6;
    opacity: 0.18;
    z-index: -1;
}

.contactUl p {
    color: #666;
}

/* 联系我们 地图 */
.mapBox {
    width: 100%;
    height: 100%;
}

.mapBox>div {
    width: 100%;
    height: 100%;
    margin: 0px;
}

.BMap_cpyCtrl,
.anchorBL {
    display: none;
}



/* 销售部 */
.sales {
    background: url(../images/salesBg.png)no-repeat center center;
    background-size: cover;
    padding: 70px 0px;
}

.salesBox {
    background: #fff;
    box-shadow: 0px 0px 30px rgba(3, 28, 36, 0.06);
    padding: 60px 70px;
}

.salesUl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.salesUl li {
    width: 26.4%;
    margin-right: 10%;
}

.salesUl li:nth-child(3n) {
    margin-right: 0px;
}

.salesUl li:nth-child(n+4) {
    margin-top: 55px;
}

.salesUl div {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 16px;
    position: relative;
}

.salesUl div::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #82CBD9 0%, rgba(130, 203, 217, 0) 100%);
}

.salesUl img {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.salesUl h3 {
    color: #333;
    font-weight: bold;
}

.salesUl p {
    margin-top: 10px;
    color: #666;
}

/* 销售部 地图 */
.salesMap {
    width: 100%;
    height: 360px;
    overflow:hidden;
}

iframe {
    width: 100%;
    height: 100%;
}




/* 在线留言 */
.message {
    padding: 70px 0px;
}

.message>h3,
.message>p {
    text-align: center;
}

.message>p {
    color: #666;
    margin: 40px auto 60px auto;
}

.message label {
    display: block;
    width: 100%;
    margin: 0px;
    text-align: center;
}

.messageUl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
    text-align: left;
}

.messageUl li {
    width: 49%;
    background: #F8F9FB;
}

.messageUl li:nth-child(n+3) {
    margin-top: 16px;
}

.messageUl input {
    width: 100%;
    line-height: 56px;
    padding: 0px 20px;
}
.messageUl .addinp img{
        height: 56px;
    }

.messageUl .textareaLi {
    width: 100%;
    height: 150px;
}

.messageUl textarea {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.messageBtn {
    width: 140px;
    height: 42px;
    background: none;
    border: 1px solid #82CBD9;
    border-radius: 100px;
    color: #82CBD9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.messageBtn:hover {
    transform: translateY(-6px);
    background: #82CBD9;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.messageUl .addinp{
    background: #fff;
    max-width: 49%;
}
.messageUl .addinp input{
    margin-right: 8px;
    background: #F8F9FB;
}




/* 适配 */
@media (max-width: 1280px) {

    .contact,
    .sales,
    .message {
        padding: 50px 0px;
    }

    .contactTitle h3 {
        margin-bottom: 8px;
    }

    .contactTitle::after {
        width: 40px;
    }

    .contactTitle {
        padding-bottom: 18px;
        margin-bottom: 30px;
    }

    .contactConL {
        height: 460px;
    }

    .contactUl div {
        margin-bottom: 10px;
    }

    .contactUl li {
        margin-bottom: 45px;
    }

    .salesBox {
        padding: 40px 50px;
    }

    .salesUl div {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .salesUl p {
        margin-top: 6px;
    }

    .salesUl li:nth-child(n+4) {
        margin-top: 45px;
    }

    .salesUl {
        margin-bottom: 35px;
    }

    .message>p {
        color: #666;
        margin: 28px auto 40px auto;
    }
}

@media (max-width: 992px) {
    .contactConL {
        width: 58%;
    }

    .contactConR {
        width: 38%;
    }

    .salesBox {
        padding: 30px 24px;
    }

    .salesUl li {
        width: 31%;
        margin-right: 3.5%;
    }

    .salesMap {
        /*height: 280px;*/
        height:auto;
    }

    .salesUl h3 {
        font-size: 16px;
    }

    .salesUl img {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

    .salesUl li:nth-child(n+4) {
        margin-top: 40px;
    }

    .messageUl {
        margin-bottom: 40px;
    }

    .message>p {
        font-size: 14px;
        margin: 22px auto 30px auto;
    }
}

@media (max-width: 767px) {

    .contact,
    .sales,
    .message {
        padding: 30px 0px;
    }

    .contactCon {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        align-items: unset;
    }

    .contactConL,
    .contactConR {
        width: 100%;
    }

    .contactUl img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .contactUl div {
        margin-bottom: 6px;
    }

    .contactUl li {
        margin-bottom: 22px;
    }

    .contactConL {
        margin-top: 20px;
        height: 280px;
    }

    .salesUl li {
        width: 100%;
        margin: 0px !important;
    }

    .salesUl li:nth-child(n+2) {
        margin-top: 30px !important;
    }

    .salesUl h3 {
        font-size: 14px;
    }

    .salesUl div {
        margin-bottom: 8px;
        padding-bottom: 10px;
    }

    .salesBox {
        padding: 30px 20px;
    }

    .message>p {
        color: #666;
        margin: 14px auto 30px auto;
    }

    .messageUl li {
        width: 100%;
        margin: 0px !important;
    }

    .messageUl li:nth-child(n+2) {
        margin-top: 8px !important;
    }

    .messageUl input {
        font-size: 14px;
        line-height: 50px;
        padding: 0px 16px;
    }

    .messageUl textarea {
        padding: 16px;
    }
    
    .messageUl .addinp{
        max-width: 100%;
    }
    .messageUl .addinp img{
        height: 50px;
    }
}