
        /* 使用 ID 选择器限定范围，防止影响网页其他部分 */
        #mems-ir-advantage-module {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            background-color: #000000; /* 仅模块背景为黑色 */
            color: #c9d1d9;
            font-family: 'Roboto', sans-serif;
            padding: 60px 40px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #mems-ir-advantage-module .text-content {
            width: 100%;
            max-width: 1000px;
            text-align: center; /* 标题与内容居中 */
            margin-bottom: 50px;
        }

        #mems-ir-advantage-module h2 {
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 24px 0;
            letter-spacing: -0.5px;
        }

        #mems-ir-advantage-module p {
            font-size: 16px;
            line-height: 1.6;
            color: #8b949e;
            margin: 0 auto 32px auto;
            max-width: 800px;
        }

        #mems-ir-advantage-module .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            width: 100%;
        }

        #mems-ir-advantage-module .benefit-card {
            background: #161b22;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #30363d;
            text-align: left;
        }

        #mems-ir-advantage-module .benefit-card strong {
            color: #58a6ff;
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
        }

        /* 模拟器容器 */
        #mems-ir-advantage-module .sim-box {
            width: 100%;
            border: 1px solid #30363d;
            border-radius: 12px;
            overflow: hidden;
            background: #090c10;
            margin-top: 20px;
        }

        #mems-ir-advantage-module .sim-header {
            padding: 15px 25px;
            background: #161b22;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #30363d;
        }

        #mems-ir-advantage-module .sim-ui-controls {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        #mems-ir-advantage-module button {
            background: #238636;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }

        #mems-ir-advantage-module canvas {
            display: block;
            width: 100%;
            height: 480px;
        }
    