
    /* 全局基础样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Times New Roman", serif;
    }
    /* 使命模块容器 - 左右分栏布局 */
    .mission-module {
        display: flex;
        width: 100%;
        height: 80vh; /* 可根据需求调整高度 */
    }
    /* 左侧图片区域 */
    .mission-img-wrap {
        flex: 6; /* 图片区占比，可调整 */
        height: 100%;
        overflow: hidden;
    }
    .mission-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 保持图片比例，覆盖容器 */
    }
    /* 右侧文案区域 */
    .mission-text-wrap {
        flex: 4; /* 文案区占比，可调整 */
        height: 100%;
        background-color: #f8f5f0; /* 浅米色背景，匹配参考版式质感 */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 80px;
        text-align: center;
    }
    /* 文案样式层级 */
    .mission-title {
        font-size: 36px;
        font-weight: 400;
        color: #222;
        margin-bottom: 24px;
        letter-spacing: 2px;
    }
    .mission-desc {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 32px;
    }
    /* 按钮样式 */
    .mission-btn {
        padding: 12px 24px;
        border: 1px solid #222;
        background: transparent;
        font-size: 14px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .mission-btn:hover {
        background-color: #222;
        color: #fff;
    }
    /* 响应式适配（可选） */
    @media (max-width: 768px) {
        .mission-module {
            flex-direction: column;
            height: auto;
        }
        .mission-img-wrap, .mission-text-wrap {
            flex: none;
            width: 100%;
        }
        .mission-img-wrap {
            height: 50vh;
        }
        .mission-text-wrap {
            padding: 60px 40px;
        }
    }
