
    /* 基本样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Orbitron', sans-serif;
        background: linear-gradient(135deg, #0F52BA, #6A0DAD);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 头部样式 */
    header {
        width: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        box-shadow: 0 0 10px #FFD700;
    }

    header h1 {
        font-size: 36px;
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
        margin: 0;
    }

    /* 主内容区 */
    main {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1200px;
        margin: 20px 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    /* 左侧展示区 */
    .left-panel {
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }

    /* 右侧参数区 */
    .right-panel {
        flex: 1;
        min-width: 300px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    /* 示例展示 */
    .example-article {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
    }

    .example-article h2 {
        font-size: 28px;
        color: #FFD700;
        text-shadow: 0 0 5px #FFD700;
    }

    .example-article pre {
        background: #1e1e1e;
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto;
    }

    .example-article code {
        color: #00FF00;
        font-family: 'Courier New', Courier, monospace;
    }

    /* 按钮样式 */
    button {
        background-color: #0F52BA;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 5px;
        box-shadow: 0 0 10px #FFD700;
    }

    button:hover {
        background-color: #6A0DAD;
        box-shadow: 0 0 20px #FFD700;
    }

    /* 图片样式 */
    img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
        margin: 10px 0;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        header h1 {
            font-size: 24px;
        }
        .example-article h2 {
            font-size: 22px;
        }
    }

    @media (max-width: 480px) {
        main {
            flex-direction: column;
        }
        header h1 {
            font-size: 20px;
        }
        .example-article h2 {
            font-size: 18px;
        }
    }

    /* 动画效果 */
    @keyframes neon-glow {
        0% {
            text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
        }
        50% {
            text-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700;
        }
        100% {
            text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;
        }
    }

    header h1 {
        animation: neon-glow 2s infinite;
    }

    /* 表格样式 */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    table, th, td {
        border: 1px solid #FFD700;
    }

    th, td {
        padding: 10px;
        text-align: left;
    }

    th {
        background: #6A0DAD;
    }

    td {
        background: rgba(255, 255, 255, 0.1);
    }

