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

    body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        color: #ffffff;
        background: linear-gradient(135deg, #000824, #004e92);
        overflow-x: hidden;
    }

    /* 动态粒子背景 */
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        animation: particle-animation 15s linear infinite;
        z-index: -1;
    }

    @keyframes particle-animation {
        0% { transform: translate(0, 0); }
        50% { transform: translate(50px, -50px); }
        100% { transform: translate(0, 0); }
    }

    /* 容器样式 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 头部样式 */
    header {
        text-align: center;
        padding: 50px 0;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        margin-top: 50px;
    }

    header h1 {
        font-size: 48px;
        font-weight: bold;
        color: #6f00ff;
        margin-bottom: 20px;
    }

    header p {
        font-size: 18px;
        color: #ffffff;
    }

    /* 全屏模块样式 */
    .module {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
    }

    .module:nth-child(even) {
        background: radial-gradient(circle, rgba(255,87,34,0.3), transparent);
    }

    .module:nth-child(odd) {
        background: radial-gradient(circle, rgba(0, 73, 134, 0.3), transparent);
    }

    .module h2 {
        font-size: 36px;
        font-weight: bold;
        color: #ffffff;
        margin-bottom: 20px;
        text-align: center;
    }

    .module p {
        font-size: 18px;
        color: #dddddd;
        margin-bottom: 20px;
        text-align: center;
    }

    /* 按钮样式 */
    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #6f00ff;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        font-size: 16px;
    }

    .button:hover {
        background-color: #9c27b0;
    }

    /* 示例展示样式 */
    .example-article {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        margin: 50px 0;
    }

    .example-article h2 {
        font-size: 28px;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .example-article p {
        font-size: 16px;
        color: #cccccc;
        margin-bottom: 15px;
    }

    .example-article pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 15px;
    }

    .example-article code {
        color: #00ff00;
        font-family: 'Courier New', Courier, monospace;
    }

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

    .images img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .module h2 {
            font-size: 32px;
        }
    }

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

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

        .module h2 {
            font-size: 28px;
        }

        .example-article {
            padding: 20px;
        }
    }

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

        .module {
            padding: 30px 0;
        }

        .example-article pre {
            font-size: 14px;
        }
    }

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

        .module h2 {
            font-size: 24px;
        }

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

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

    @media (max-width: 320px) {
        .module h2 {
            font-size: 20px;
        }

        .example-article h2 {
            font-size: 22px;
        }
    }

    /* 代码块样式 */
    .code-block {
        background: #2d2d2d;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .code-block code {
        color: #00ff00;
        font-family: 'Courier New', Courier, monospace;
        font-size: 14px;
    }

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

    a:hover {
        text-decoration: underline;
    }

    /* Footer样式 */
    footer {
        text-align: center;
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        margin: 50px 0;
    }

    footer p {
        font-size: 16px;
        color: #cccccc;
    }

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

    .animated-title {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        background-size: 400% 400%;
        animation: aurora-move 15s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

