.page-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
}

.section-subtitle {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #2980b9;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: #1abc9c;
}

.image-container {
    overflow: hidden;
    height: 400px;
}

/* 基础容器样式 */
.text-overlay-container {
    position: relative;
    width: 100%;
    display: flex;
    max-width: 1600px;
    height: 600px; /* 可根据需要调整高度 */
    margin: 0 auto;
    overflow: hidden;
}

/* 底层图片样式 */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.platform-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文字覆盖层样式 */
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    mix-blend-mode: screen; /* 关键混合模式 */
    background-color: #000;
}

/* 标题文字样式 - 使用厚重字体 */
.overlay-title {
    font-family: "Impact", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 内容文字样式 */
.overlay-content {
    max-width: 800px;
}

.overlay-content p {
    font-family: "Impact", sans-serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .text-overlay-container {
        height: 400px;
    }

    .overlay-title {
        font-size: 3rem;
    }

    .overlay-content p {
        font-size: 1.2rem;
    }
}
.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: #1abc9c;
    text-decoration: none;
    border-radius: 4px;
    width: fit-content;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .image-container {
        height: 300px;
    }
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 右图左文布局容器 */
.right-image-left-text-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 600px;
}

/* 左侧文字内容区域 */
.text-content {
    flex: 1;
    padding-right: 60px;
    max-width: 60%;
}

/* 标题样式 */
.section-title {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* 描述文字样式 */
.section-description {
    font-family: "Arial", sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.section-description p {
    margin-bottom: 20px;
}

/* 右侧图片容器 */
.image-container {
    flex: 1;
    max-width: 40%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

/* 图片样式 */
.platform-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .platform-image {
    transform: scale(1.03);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .right-image-left-text-container {
        flex-direction: column;
        min-height: auto;
    }

    .text-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .image-container {
        max-width: 80%;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .image-container {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}
