* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", system-ui, sans-serif;
    background: #ffffff;
}
/* 整体页面容器：垂直排列 标题+双栏 */
.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* 顶部通栏标题，全屏宽度 */
.title-header {
    background-color: #c41e25;
    color: #fff;
    padding: 48px 36px;
    width: 100%;
}
.title-header h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom:24px;
}
.sub-time {
    font-size:20px;
}
/* 标题下方双栏容器，左右各占50% */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
}
/* 左侧正文 */
.text-column-wrap {
    display: flex;
}
.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;
}
/* 右侧图片栏 */
.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) {
    .content-row {
        grid-template-columns: 1fr;
    }
    .title-header h2 {
        font-size: 30px;
    }
}