
    /* 基础样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto Mono', monospace;
        background: linear-gradient(135deg, #1A1A3F, #4B0082);
        color: #ffffff;
        background-size: cover;
        animation: aurora-move 15s linear infinite;
        padding: 20px;
    }

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

    header {
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        margin-bottom: 20px;
    }

    header h1 {
        font-family: 'Exo 2', sans-serif;
        font-size: 2.5em;
        text-shadow: 2px 2px 10px rgba(57, 255, 20, 0.8);
    }

    nav {
        text-align: center;
        margin-bottom: 20px;
    }

    nav a {
        color: #39FF14;
        text-decoration: none;
        margin: 0 15px;
        font-size: 1.2em;
        transition: all 0.3s ease;
    }

    nav a:hover {
        color: #FF4500;
        text-shadow: 0 0 10px #FF4500;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        background: rgba(44, 44, 44, 0.8);
        padding: 20px;
        border-radius: 10px;
    }

    article {
        margin-bottom: 40px;
    }

    article h2, article h3 {
        font-family: 'Exo 2', sans-serif;
        margin-bottom: 15px;
        color: #39FF14;
    }

    article h2 {
        font-size: 2em;
        text-shadow: 2px 2px 10px rgba(57, 255, 20, 0.8);
    }

    article h3 {
        font-size: 1.5em;
        text-shadow: 1px 1px 5px rgba(57, 255, 20, 0.8);
    }

    article p {
        font-size: 1em;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    article pre {
        background: #2C2C2C;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 15px;
    }

    article code {
        font-family: 'Fira Code', monospace;
        color: #39FF14;
    }

    article table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    article table, article th, article td {
        border: 1px solid #39FF14;
    }

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

    .sample-data {
        background: rgba(57, 255, 20, 0.1);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .sample-data h3 {
        color: #FF4500;
    }

    .sample-data ul {
        list-style-type: disc;
        margin-left: 20px;
    }

    .sample-data li {
        margin-bottom: 10px;
    }

    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .images img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 5px;
    }

    footer {
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

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

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

    .button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(255, 69, 0, 0.8);
    }

    /* 动画 */
    @keyframes glow {
        from {
            box-shadow: 0 0 5px #39FF14;
        }
        to {
            box-shadow: 0 0 20px #39FF14;
        }
    }

    .icon {
        width: 32px;
        height: 32px;
        fill: #39FF14;
        filter: drop-shadow(2px 2px 5px rgba(57, 255, 20, 0.8));
    }

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

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

    @media (max-width: 1024px) {
        .images {
            flex-direction: column;
            align-items: center;
        }

        nav a {
            margin: 0 10px;
            font-size: 1em;
        }
    }

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

        article h2 {
            font-size: 1.8em;
        }

        article h3 {
            font-size: 1.3em;
        }

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

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

        header h1 {
            font-size: 1.5em;
        }

        article h2 {
            font-size: 1.5em;
        }

        article h3 {
            font-size: 1.1em;
        }

        nav a {
            margin: 0 5px;
            font-size: 0.9em;
        }

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

        .images img {
            max-width: 100%;
        }
    }

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

        article h2 {
            font-size: 1.2em;
        }

        article h3 {
            font-size: 1em;
        }

        nav a {
            margin: 0 3px;
            font-size: 0.8em;
        }

        .button {
            padding: 5px 10px;
            font-size: 0.7em;
        }

        .container {
            padding: 10px;
        }
    }

