* {
    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 {
    background-color: #000000;
    color: #ffffff;
    padding: 48px 36px;
}
.header-logo {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}
.text-column h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 36px;
    font-weight: normal;
}
.article-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #eeeeee;
}
/* 图片容器 */
.gallery-column {
    padding: 8px;
}
.gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 100%;
}
/* 重点修复：左侧图片组垂直排列 */
.gallery-left-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gallery-left-big img {
    width: 100%;
    height: auto;
    display: block;
}
/* 右侧竖排图片 */
.gallery-right-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.grid-row img {
    width: 100%;
    height: auto;
    display: block;
}
/* 移动端适配 */
@media (max-width:960px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }
    .text-column h1 {
        font-size: 28px;
    }
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
}