
    /* 全局样式设置 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto Mono', monospace;
        background: linear-gradient(135deg, #0A1F36, #4C2E84);
        color: #FFFFFF;
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        color: #00FFAA;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #FF7F50;
    }

    header {
        padding: 20px;
        text-align: center;
        background: rgba(10, 31, 54, 0.8);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    header h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 2.5em;
        color: #00FFAA;
        text-shadow: 0 0 10px #00FFAA, 0 0 20px #00FFAA, 0 0 30px #00FFAA;
    }

    .container {
        max-width: 1200px;
        margin: 100px auto 50px;
        padding: 20px;
    }

    section {
        margin-bottom: 50px;
    }

    section h2, section h3 {
        font-family: 'Orbitron', sans-serif;
        color: #FF7F50;
        margin-bottom: 20px;
        text-shadow: 0 0 5px #FF7F50;
    }

    section p {
        margin-bottom: 20px;
        font-size: 1em;
    }

    pre {
        background: #1A2B3C;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    code {
        font-family: 'Roboto Mono', monospace;
        color: #00FFAA;
    }

    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #FF7F50;
        color: #FFFFFF;
        border-radius: 5px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .button:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .image-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .image-gallery img {
        width: calc(33.333% - 10px);
        border-radius: 5px;
    }

    .image-gallery img:nth-child(4n) {
        width: calc(50% - 10px);
    }

    .footer {
        text-align: center;
        padding: 20px;
        background: rgba(10, 31, 54, 0.8);
        position: fixed;
        width: 100%;
        bottom: 0;
    }

    .footer p {
        font-size: 0.9em;
        color: #FFFFFF;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .image-gallery img {
            width: calc(33.333% - 10px);
        }
    }

    @media (max-width: 1200px) {
        .container {
            padding: 15px;
        }

        header h1 {
            font-size: 2em;
        }
    }

    @media (max-width: 1024px) {
        .image-gallery img {
            width: calc(50% - 10px);
        }

        section h2, section h3 {
            font-size: 1.5em;
        }

        .container {
            margin: 120px auto 60px;
        }
    }

    @media (max-width: 768px) {
        .image-gallery img {
            width: 100%;
        }

        section h2, section h3 {
            font-size: 1.3em;
        }

        .container {
            margin: 140px auto 70px;
        }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 1.8em;
        }

        section h2, section h3 {
            font-size: 1.2em;
        }

        .button {
            padding: 8px 16px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 320px) {
        header h1 {
            font-size: 1.5em;
        }

        section h2, section h3 {
            font-size: 1em;
        }

        .button {
            padding: 6px 12px;
            font-size: 0.8em;
        }
    }

    /* 额外视觉效果 */
    .highlight {
        color: #00FFAA;
        background: rgba(255, 127, 80, 0.2);
        padding: 2px 5px;
        border-radius: 3px;
    }

    /* 提示文本样式 */
    .reference-note {
        text-align: center;
        font-size: 1em;
        margin-bottom: 30px;
        color: #FF7F50;
    }

    /* 代码块样式 */
    pre code {
        display: block;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    /* 示例展示样式 */
    .sample-article {
        background: rgba(76, 46, 132, 0.8);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .sample-article h2 {
        color: #00FFAA;
        text-shadow: 0 0 5px #00FFAA;
    }

    .sample-article pre {
        background: #0A1F36;
        border-left: 5px solid #00FFAA;
    }

    /* 图像响应式 */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

