
.page-body {
    min-height: calc(100vh - 382px);
}
.c_wrap_1200 {
    max-width: 1400px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* 顶部背景墙 */
.bg_wall {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/themes/website/1/zh/jinze/static/img/first-bg.png);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: cover;
}

.bg_wall .bw_title_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    text-align: center;
}

.bg_wall .bw_title_wrap .zh_wrap {
    font-weight: bold;
    font-size: 44px;
    color: #FFFFFF;
    line-height: 44px;
}

.bg_wall .bw_title_wrap .en_wrap {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 18px;
}

/* 联系我们内容区 */
.us_content {
    background-color: #fafafa;
    padding-bottom: 3px;
}

.us_content_wrap {
    padding: 20px 0 10px;
    box-sizing: border-box;
}

.us_content_wrap .top_card_info {
    padding: 12px 0 20px;
    text-align: center;
}

.top_card_info .title_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: bold;
    font-size: 24px;
    color: #144E97;
    display: flex;
    justify-content: center;
}

.top_card_info .title_wrap .title_text {
    box-sizing: border-box;
    border-bottom: 3px solid #144E97;
    padding-bottom: 8px;
}

.top_card_info .address_wrap,
.top_card_info .phone_wrap,
.top_card_info .email_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 29px;
}

.phone_wrap .emphasize_text {
    color: #144e97;
    text-decoration-line: underline;
    text-decoration-color: #144e97;
}

.top_card_info .address_wrap {
    margin-top: 6px;
}

.map_img_wrap {
    height: 549px;
    margin: 20px 0;
}

.map_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 0 20px 0;
}

.card_item_wrap {
    width: 32.5%;
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 26px;
}

.card_item_wrap .title_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: bold;
    font-size: 20px;
    color: #144E97;
    line-height: 23px;
    padding-left: 10px;
    margin-bottom: 8px;
    position: relative;
}

.card_item_wrap .title_wrap::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 17px;
    background-color: #144e97;
}



/* 针对屏幕宽度小于或等于1250像素的设备的样式 */
@media (max-width: 1250px) {
    .c_wrap_1200 {
        margin: 0 25px;
    }

}

/* 针对屏幕宽度小于或等于992像素的设备的样式 */
@media (max-width: 992px) {
    .card_item_wrap {
        width: 47%;
        margin-bottom: 20px;
    }
}

/* 针对屏幕宽度小于或等于576像素的设备的样式 */
@media (max-width: 576px) {
    .card_item_wrap {
        width: 100%;
        margin-bottom: 20px;
    }
}