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

.page-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 顶部红色头部 */
.page-header {
    background-color: #c41e25;
    display: flex;
    justify-content: space-between;
    padding: 16px 36px;
    align-items: flex-start;
}
.header-empty-block {
    width: 38%;
    border-bottom: 3px solid #000;
}
.header-logo {
    text-align: right;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* 主体左右布局 */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
}

/* 左侧图片 */
.gallery-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右侧黑色文字区 */
.text-column {
    background-color: #000;
    color: #fff;
    padding: 48px 36px;
    position: relative;
}
.article-content p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 26px;
    color: #eeeeee;
}
/* 右侧竖排文字 */
.vertical-text {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    letter-spacing: 4px;
    writing-mode: vertical-rl;
    color: #ffffff;
}

/* 底部红色标题栏 */
.page-footer-title {
    background-color: #c41e25;
    color: #fff;
    padding: 40px 36px;
}
.page-footer-title h2 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 16px;
}
.page-footer-title h3 {
    font-size: 40px;
    font-weight: normal;
}

/* 移动端适配 */
@media (max-width:960px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    .vertical-text {
        display: none;
    }
    .page-footer-title h2 {
        font-size: 34px;
    }
    .page-footer-title h3 {
        font-size: 28px;
    }
}