
    /* 基础样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', 'Inter', sans-serif;
        background: linear-gradient(135deg, #1e004b, #3a0ca3);
        color: #ffffff;
        line-height: 1.6;
    }

    /* 容器 */
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* 标题样式 */
    h1, h2, h3 {
        font-weight: bold;
        margin-bottom: 1rem;
        color: #ffdd57;
    }

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

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    /* 段落样式 */
    p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* 代码块样式 */
    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 8px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
    }

    code {
        color: #ff7f50;
    }

    /* 表格样式 */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1rem;
    }

    th, td {
        border: 1px solid #ffffff;
        padding: 0.5rem;
        text-align: left;
    }

    th {
        background: rgba(255, 255, 255, 0.2);
    }

    /* 按钮样式 */
    .button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: #ff7f50;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        text-decoration: none;
    }

    .button:hover {
        transform: scale(1.1);
        background-color: #ff5722;
    }

    /* 图片样式 */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

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

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

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

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

    @media (max-width: 1024px) {
        .container {
            grid-template-columns: 1fr;
            padding: 1rem;
        }
    }

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

        h2 {
            font-size: 2rem;
        }

        h3 {
            font-size: 1.5rem;
        }
    }

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

        h2 {
            font-size: 1.75rem;
        }

        h3 {
            font-size: 1.25rem;
        }

        .button {
            padding: 0.5rem 1rem;
        }
    }

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

        h2 {
            font-size: 1.5rem;
        }

        h3 {
            font-size: 1rem;
        }

        .container {
            padding: 0.5rem;
        }
    }

    /* 特殊提示 */
    .reference-note {
        text-align: center;
        font-size: 1rem;
        margin: 2rem 0;
        color: #ffdd57;
    }

    /* 链接样式 */
    a {
        color: #ff7f50;
        text-decoration: none;
    }

    a[rel="nofollow"] {
        /* No additional styles */
    }

    /* 表现定义 */
    .highlight {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem;
    }

    /* 动态粒子效果 */
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        pointer-events: none;
        z-index: -1;
    }

    /* 微动画 */
    .animate-fade-in {
        animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* 流畅的过渡 */
    .transition-all {
        transition: all 0.3s ease;
    }

