
    /* 全局颜色变量 */
    :root {
        --primary-green: #4CAF50; /* 主色调 - 绿色 */
        --secondary-blue: #2196F3; /* 主色调 - 蓝色 */
        --accent-orange: #FF9800; /* 强调色 - 橙色 */
        --background-gradient: radial-gradient(circle, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
        --text-color: #333333; /* 主文本颜色 */
        --background-color: #f5f5f5; /* 页面背景色 */
        --header-height: 60px; /* 头部高度 */
        --font-family: 'Roboto', sans-serif; /* 全局字体 */
    }

    /* 全局样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: var(--font-family);
        background: var(--background-gradient);
        color: var(--text-color);
        line-height: 1.6;
    }

    /* 头部样式 */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        height: var(--header-height);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 1000;
    }

    header h1 {
        margin: 0;
        font-size: 1.5em;
        color: var(--secondary-blue);
    }

    /* 导航栏样式 */
    nav ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        margin-left: 20px;
    }

    nav ul li a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: bold;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--accent-orange);
    }

    /* 主内容区样式 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: var(--header-height) 20px 20px 20px;
    }

    /* 标题样式 */
    h2, h3, h4 {
        color: var(--secondary-blue);
        margin-top: 40px;
        margin-bottom: 20px;
    }

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

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

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

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

    th {
        background-color: var(--primary-green);
        color: white;
    }

    /* 代码块样式 */
    pre {
        background: #f0f0f0;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

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

    /* 图片样式 */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

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

    body {
        animation: aurora-move 15s linear infinite;
        background-size: 400% 400%;
    }

    /* 示例展示区 */
    .sample-article {
        background: rgba(255, 255, 255, 0.8);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .sample-article h2 {
        text-align: center;
    }

    /* 响应式设计 */
    @media (max-width: 320px) {
        header h1 {
            font-size: 1.2em;
        }
        nav ul li {
            margin-left: 10px;
        }
        .container {
            padding: var(--header-height) 10px 10px 10px;
        }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 1.3em;
        }
        nav ul li a {
            font-size: 0.9em;
        }
    }

    @media (max-width: 768px) {
        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }
    }

    @media (max-width: 1024px) {
        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        }
    }

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

    @media (min-width: 1440px) {
        .container {
            max-width: 1400px;
        }
    }

