
    /* 全局样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #000046, #1cb5e0);
        color: #ffffff;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        color: #ffffff;
    }

    p {
        line-height: 1.6;
        font-size: 1em;
        margin: 20px 0;
    }

    a {
        color: #1cb5e0;
        text-decoration: none;
        rel: nofollow;
    }

    a:hover {
        color: #ff7f50;
        transition: color 0.3s ease-in-out;
    }

    /* 布局 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    header {
        background: rgba(0, 0, 0, 0.7);
        padding: 20px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    nav ul li a {
        font-size: 1.2em;
        color: #ffffff;
    }

    main {
        padding-top: 80px;
    }

    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    }

    pre {
        background: #1cb5e0;
        padding: 20px;
        border-radius: 5px;
        overflow-x: auto;
    }

    code {
        font-family: 'Courier New', Courier, monospace;
        color: #ffeb3b;
    }

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

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

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

    th {
        background: #ff7f50;
    }

    /* 图片样式 */
    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px 0;
    }

    .images img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .images img:hover {
        transform: scale(1.1);
    }

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

    @media (max-width: 1200px) {
        nav ul {
            flex-direction: column;
            gap: 15px;
        }
    }

    @media (max-width: 1024px) {
        header {
            padding: 15px 0;
        }

        article {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        .images {
            justify-content: center;
        }

        .images img {
            width: 80px;
            height: 80px;
        }

        nav ul {
            gap: 10px;
        }
    }

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

        h2 {
            font-size: 1.6em;
        }

        p {
            font-size: 0.9em;
        }

        .images img {
            width: 60px;
            height: 60px;
        }
    }

    @media (max-width: 320px) {
        nav ul {
            flex-direction: column;
            align-items: center;
        }

        nav ul li a {
            font-size: 1em;
        }

        h1 {
            font-size: 1.5em;
        }
    }

    /* 动画效果 */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    body {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        animation: aurora-move 15s linear infinite;
    }

    button {
        background: #1cb5e0;
        border: none;
        padding: 10px 20px;
        color: #ffffff;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    }

    button:hover {
        transform: scale(1.1);
        background: #ff7f50;
    }

    /* 提示信息 */
    .reference {
        text-align: center;
        margin: 40px 0;
        font-size: 1.2em;
        color: #ffeb3b;
    }

