/* 内容最大宽度 1600px */
.container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    /* 防止小屏贴边 */
    background-color: red;
}

/* 横向排列 */
.content-wrapper {
    min-height: 100vh;
    /* 如果是首屏 */
    gap: 42px;
    /* 设计稿留白 */
}

/* 左侧固定 550px */
.text-area {
    flex: 0 0 550px;
}

/* 右侧固定 1008px */
.image-area {
    flex: 0 0 1008px;
}

.dividing_cnt {
    height: 115px;
    background-color: #224432;
}

.container-1600 {
    max-width: 1600px;
}