/* 联系页面横幅 */

.contact-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.53);
    z-index: 2;
}

.contact-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/92685_17237744912342.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contact-banner-title {
    font-size: 44px;
    line-height: 1.3;
    font-weight: bold;
    margin: 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-banner-subtitle {
    font-size: 12px;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-banner .contact-logo {
    width: 42px;
    display: block;
    margin: 0 auto;
    height: auto !important;
}


/* 联系信息部分 */

.contact-info-section {
    padding: 80px 0px;
    background-color: #fff9f3;
}

.contact-info-container {
    margin: 0 auto;
    width: 83.333%;
}

.contact-info-title {
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

.contact-info-box {
    display: flex;
    flex-wrap: wrap;
    padding: 0 100px;
    align-items: center;
    justify-content: center;
}

.contact-info-item {
    padding-top: 30px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.contact-info-lianxi {
    position: relative;
    padding-top: 68%;
    overflow: hidden;
}

.do-img-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-info-lianxi img {
    width: 84%;
    object-fit: contain;
    max-height: 100%;
    height: 100%;
}

.contact-info-title1 {
    font-size: 13px;
    line-height: 1.3;
    font-weight: normal;
    color: #000;
    padding-top: 5px;
    text-align: center;
}

.contact-info-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}


/* 响应式设计 */

@media (max-width: 992px) {
    .contact-info-container {
        flex-direction: column;
        gap: 40px;
    }
    .contact-info-box {
        padding: 0px;
    }
    .contact-info-item {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 20px;
    }
}

@media (max-width: 678px) {
    .contact-info-item {
        width: calc(50% - 10px) !important;
        padding: 5px;
    }
}