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

    /* 页面背景与字体设置 */
    body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #ffffff;
        padding: 20px;
    }

    /* 主要容器样式 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* 标题样式 */
    h1, h2, h3, h4 {
        font-family: 'Montserrat', sans-serif;
        color: #ff8c00;
        margin-bottom: 20px;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    h4 {
        font-size: 1.5rem;
        margin-top: 20px;
    }

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

    /* 强调文本 */
    b {
        color: #ff00ff;
    }

    /* 链接样式 */
    a {
        color: #1cb5e0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #ff00ff;
    }

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

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

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

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

    th {
        background: #1cb5e0;
        color: #ffffff;
    }

    td {
        background: #34495e;
        color: #bdc3c7;
    }

    /* 图片样式 */
    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 20px;
    }

    .gallery img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.05);
    }

    /* 示例展示区块 */
    .example-section {
        background: rgba(255, 255, 255, 0.2);
        padding: 30px;
        border-radius: 10px;
        margin-top: 40px;
    }

    .example-section h2 {
        text-align: left;
        color: #ff8c00;
    }

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

    /* 动画效果 */
    @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 {
            padding: 30px;
        }
    }

    @media (max-width: 1200px) {
        .gallery img {
            width: 130px;
            height: 130px;
        }
    }

    @media (max-width: 1024px) {
        .container {
            padding: 20px;
        }

        h1 {
            font-size: 2.2rem;
        }

        h2 {
            font-size: 1.8rem;
        }
    }

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

        .gallery img {
            width: 100px;
            height: 100px;
        }
    }

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

        .container {
            padding: 15px;
        }

        h1 {
            font-size: 1.8rem;
        }

        h2 {
            font-size: 1.5rem;
        }

        p {
            font-size: 1rem;
        }
    }

    @media (max-width: 320px) {
        .gallery img {
            width: 80px;
            height: 80px;
        }

        h1 {
            font-size: 1.5rem;
        }

        h2 {
            font-size: 1.2rem;
        }

        p {
            font-size: 0.9rem;
        }
    }

