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

    body {
        font-family: 'Open Sans', sans-serif;
        background: linear-gradient(135deg, #0A192F 0%, #39FF14 100%);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
        animation: aurora-move 15s linear infinite;
    }

    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    h1, h2, h3 {
        font-family: 'Poppins', sans-serif;
        color: #8A2BE2;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 2em;
        border-bottom: 2px solid #39FF14;
        padding-bottom: 10px;
    }

    h3 {
        font-size: 1.5em;
        margin-top: 40px;
    }

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

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    code {
        font-family: 'Courier New', Courier, monospace;
        color: #39FF14;
        display: block;
        white-space: pre-wrap;
        word-break: break-all;
    }

    ul {
        list-style: disc inside;
        margin-bottom: 20px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(10, 25, 47, 0.8);
        border-radius: 15px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .示例展示 {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        margin-top: 40px;
    }

    .示例展示 h2 {
        color: #39FF14;
        border-bottom: none;
    }

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

    .image-gallery img {
        width: 100%;
        max-width: 320px;
        border-radius: 10px;
    }

    .footer {
        text-align: center;
        margin-top: 40px;
        font-size: 0.9em;
        color: #cccccc;
    }

    a {
        color: #39FF14;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #8A2BE2;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .container {
            max-width: 1024px;
        }
    }

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

    @media (max-width: 1024px) {
        h1 {
            font-size: 2em;
        }

        h2 {
            font-size: 1.8em;
        }

        h3 {
            font-size: 1.3em;
        }
    }

    @media (max-width: 768px) {
        .image-gallery {
            flex-direction: column;
            align-items: center;
        }

        pre {
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 10px;
        }

        .container {
            padding: 10px;
        }

        h1 {
            font-size: 1.5em;
        }

        h2 {
            font-size: 1.3em;
        }

        h3 {
            font-size: 1.1em;
        }

        p {
            font-size: 0.9em;
        }

        .footer {
            font-size: 0.8em;
        }
    }

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

        h2 {
            font-size: 1em;
        }

        h3 {
            font-size: 0.9em;
        }

        p {
            font-size: 0.8em;
        }
    }

