
    /* 全局样式定义 */
    :root {
        --main-color: #0047AB; /* 深蓝色 */
        --secondary-color: #A9A9A9; /* 灰色 */
        --accent-color: #FFA500; /* 亮橙色 */
        --highlight-color: #FFD700; /* 金色 */
        --background-gradient: radial-gradient(circle, rgba(0, 71, 171, 0.8), transparent);
        --font-family: 'Poppins', sans-serif;
    }

    /* 引入字体 */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

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

    /* 页面背景与字体设置 */
    body {
        background: var(--background-gradient);
        color: var(--secondary-color);
        font-family: var(--font-family);
        line-height: 1.6;
        padding: 20px;
    }

    /* 容器布局 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* 标题样式 */
    h1, h2, h3 {
        color: var(--highlight-color);
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 40px;
    }

    h2 {
        font-size: 2rem;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 10px;
    }

    h3 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    /* 段落样式 */
    p {
        margin-bottom: 20px;
        font-size: 1rem;
        color: #f0f0f0;
    }

    /* 链接样式 */
    a {
        color: var(--accent-color);
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    /* 按钮样式 */
    .btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--accent-color);
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn:hover {
        background-color: var(--highlight-color);
    }

    /* 网格布局 */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    /* 模块样式 */
    .module {
        background: rgba(255, 255, 255, 0.2);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: transform 0.3s ease;
    }

    .module:hover {
        transform: translateY(-10px);
    }

    /* 图片样式 */
    .module img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    /* 代码块样式 */
    pre {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        font-size: 0.9rem;
        color: #00ff00;
    }

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

    /* 响应式设计 */
    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.75rem;
        }

        h3 {
            font-size: 1.25rem;
        }

        .btn {
            padding: 8px 16px;
        }
    }

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

        .container {
            padding: 15px;
        }

        h1 {
            font-size: 1.75rem;
        }

        h2 {
            font-size: 1.5rem;
        }

        h3 {
            font-size: 1rem;
        }

        .btn {
            padding: 6px 12px;
        }
    }

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

    .animated-background {
        background: linear-gradient(-45deg, #1e3c72, #2a5298, #1e3c72, #2a5298);
        background-size: 400% 400%;
        animation: auroraMove 15s linear infinite;
    }

    /* 提示文字样式 */
    .hint {
        text-align: center;
        margin-top: 40px;
        font-size: 1rem;
        color: var(--highlight-color);
    }

