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

    body {
        background: radial-gradient(circle, rgba(34, 34, 34, 1) 0%, rgba(0, 0, 0, 1) 100%);
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        padding: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Orbitron', sans-serif;
        color: #00ffff;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 3rem;
        text-align: center;
        margin-top: 20px;
    }

    h2 {
        font-size: 2.5rem;
        border-bottom: 2px solid #00ffff;
        padding-bottom: 10px;
        margin-top: 40px;
    }

    h3 {
        font-size: 2rem;
        margin-top: 30px;
        color: #ff6ec7;
    }

    p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: #dddddd;
    }

    pre {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    pre code {
        font-family: 'Roboto Mono', monospace;
        color: #00ffea;
        font-size: 1rem;
    }

    ul, ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    li {
        margin-bottom: 10px;
    }

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

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

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

    th {
        background-color: rgba(0, 255, 238, 0.2);
    }

    a {
        color: #ff6ec7;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        body {
            padding: 15px;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.8rem;
        }

        p, pre, table {
            font-size: 1rem;
        }
    }

    @media (max-width: 1200px) {
        h1 {
            font-size: 2.2rem;
        }

        h2 {
            font-size: 1.8rem;
        }

        h3 {
            font-size: 1.6rem;
        }

        p, pre, table {
            font-size: 0.95rem;
        }
    }

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

        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.6rem;
        }

        h3 {
            font-size: 1.4rem;
        }

        p, pre, table {
            font-size: 0.9rem;
        }
    }

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

        h2 {
            font-size: 1.4rem;
        }

        h3 {
            font-size: 1.2rem;
        }

        p, pre, table {
            font-size: 0.85rem;
        }
    }

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

        h2 {
            font-size: 1.2rem;
        }

        h3 {
            font-size: 1rem;
        }

        p, pre, table {
            font-size: 0.8rem;
        }

        pre {
            padding: 10px;
        }

        table, th, td {
            font-size: 0.8rem;
        }
    }

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

        h2 {
            font-size: 1rem;
        }

        h3 {
            font-size: 0.9rem;
        }

        p, pre, table {
            font-size: 0.75rem;
        }

        pre {
            padding: 8px;
        }

        table, th, td {
            font-size: 0.75rem;
        }
    }

    /* 视觉效果与动画 */
    .background-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 87, 34, 0.3), transparent);
        animation: aurora-move 15s linear infinite;
        z-index: -1;
    }

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

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

    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }

    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .images-grid img:hover {
        transform: scale(1.05);
    }

    .code-example {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .code-example code {
        color: #00ffea;
        font-family: 'Roboto Mono', monospace;
        font-size: 1rem;
    }

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

    /* 示例展示样式 */
    .example-article {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        margin-top: 40px;
    }

    /* 表格样式优化 */
    table {
        background-color: rgba(255, 255, 255, 0.1);
    }

    th, td {
        border: 1px solid #00ffff;
    }

    th {
        background-color: rgba(0, 255, 238, 0.3);
    }

    /* 列表样式优化 */
    ul, ol {
        list-style: inside;
    }

    /* 过渡效果 */
    .container, .example-article, .images-grid img {
        transition: all 0.3s ease-in-out;
    }

