.page-body {
    min-height: calc(100vh - 382px);
}
.c_wrap_1200 {
    /* max-width: 1200px; */
    max-width: 1400px;
    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;
}

/* 董事长简介内容区 */
.ln_content {
    background-color: #fafafa;
    padding-bottom: 3px;
}

.ln_content_wrap {
    /* padding: 40px 0 60px; */
    padding: 40px 20px 60px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.ln_right_img_wrap {
    width: 480px;
    height: 700px;
    margin-left: 40px;
}

.ln_left_content_wrap {
    width: calc(100% - 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ln_left_content_wrap .desc_wrap {
    width: 100%;
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 24px;
    color: #333333;
    line-height: 56px;
    text-indent: 2em;
}

/* 针对屏幕宽度小于或等于1250像素的设备的样式 */
@media (max-width: 1250px) {
    .c_wrap_1200 {
        margin: 0 25px;
    }

    .ln_content_wrap {
        flex-wrap: wrap;
    }

    .ln_right_img_wrap {
        width: 45%;
        height: 463px;
    }

    .ln_left_content_wrap {
        width: 55%;
    }
}

/* 针对屏幕宽度小于或等于992像素的设备的样式 */
@media (max-width: 992px) {
    .ln_right_img_wrap {
        width: 100%;
        height: 463px;
    }

    .ln_left_content_wrap {
        width: 100%;
    }
}