
        /* --- 极致紧凑、Apple 风格监控管理模块 --- */
        .uee-monitor-section {
            font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
            background-color: #ffffff;
            padding: 80px 0;
            color: #1d1d1f;
            line-height: 1.5;
            text-align: left;
        }

        /* 1400px 超宽版式容器 */
        .uee-monitor-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 92%;
        }

        /* 1. 顶部标题区域：加宽扁平化 */
        .uee-monitor-header {
            margin-bottom: 50px;
        }

        .uee-monitor-header h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin: 0 0 20px 0;
            color: #000000;
        }

        .uee-monitor-header p {
            font-size: 20px;
            color: #86868b;
            line-height: 1.45;
            max-width: 900px; /* 确保文字排版舒展 */
            margin: 0;
        }

        /* 2. 三栏卡片网格 */
        .uee-monitor-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* 卡片主体 */
        .uee-monitor-card {
            background: #ffffff;
            border-radius: 24px;
            border: 1px solid #f1f1f2;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .uee-monitor-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: #56B8B8;
        }

        /* 卡片上方图片区域 */
        .uee-card-image {
            width: 100%;
            height: 240px; /* 固定高度，保持整齐 */
            background-color: #f5f5f7;
            overflow: hidden;
            border-bottom: 1px solid #f1f1f2;
        }

        .uee-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 模拟图1的裁剪效果 */
            transition: transform 0.5s ease;
        }

        .uee-monitor-card:hover .uee-card-image img {
            transform: scale(1.05);
        }

        /* 卡片下方文字区域 */
        .uee-card-body {
            padding: 30px;
            flex-grow: 1;
        }

        .uee-card-body h3 {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 15px 0;
            color: #1d1d1f;
        }

        .uee-card-body p {
            font-size: 15.5px;
            color: #424245;
            line-height: 1.5;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-monitor-grid { grid-template-columns: repeat(2, 1fr); }
            .uee-monitor-header h2 { font-size: 38px; }
        }

        @media (max-width: 768px) {
            .uee-monitor-grid { grid-template-columns: 1fr; }
            .uee-monitor-header { text-align: center; }
            .uee-monitor-header p { margin: 0 auto; }
            .uee-monitor-section { padding: 50px 0; }
        }
    