
        /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 使命板块容器 - 背景全屏 */
        .mission-section {
            background-color: #003366; /* 匹配原图深蓝色背景 */
            width: 100vw;
            min-height: 400px;
            padding: 60px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #ffffff;
        }

        /* 标题样式 */
        .mission-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }

        /* 3列布局容器 */
        .mission-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 1200px; /* 适配ueeshop PC端常用宽度 */
        }

        /* 单个卡片样式 */
        .mission-card {
            background-color: rgba(255, 255, 255, 0.05); /* 半透明卡片背景 */
            padding: 30px 20px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        /* 卡片悬浮效果 */
        .mission-card:hover {
            transform: translateY(-5px);
        }

        /* 图标样式 */
        .mission-icon {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 卡片标题 */
        .mission-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* 卡片描述文本 */
        .mission-card-desc {
            font-size: 1rem;
            line-height: 1.6;
            color: #e0e0e0;
        }

        /* 高亮文本（匹配原图"make complex circuits simple"样式） */
        .highlight-text {
            color: #ffffff;
            font-weight: 600;
            text-decoration: underline;
        }

        /* 手机端适配（一行1列） */
        @media (max-width: 768px) {
            .mission-cards {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 90%;
            }

            .mission-title {
                font-size: 2rem;
            }

            .mission-icon {
                font-size: 2rem;
                width: 70px;
                height: 70px;
            }
        }

        /* 平板适配（一行2列） */
        @media (min-width: 769px) and (max-width: 1024px) {
            .mission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    