* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", system-ui, sans-serif;
    background: #ffffff;
}

.page-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* 左侧整栏 */
.text-column-wrap {
    display: flex;
    flex-direction: column;
}
.text-content {
    flex: 1;
    background-color: #000000;
    color: #fff;
    padding: 48px 36px;
}
.text-content p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 32px;
    color: #eeeeee;
}
.title-footer {
    background-color: #c41e25;
    color: #fff;
    padding: 48px 36px;
}
.title-footer h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom:24px;
}
.sub-time {
    font-size:20px;
}

/* 右侧图片竖排 */
.gallery-column {
    padding:8px;
}
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap:8px;
    height:100%;
}
.grid-row img {
    width:100%;
    height:auto;
    display:block;
}

/* 移动端适配 */
@media (max-width:960px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }
    .title-footer h2 {
        font-size: 30px;
    }
}