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

    body {
        font-family: 'Inter', sans-serif;
        background: radial-gradient(circle, rgba(0, 87, 34, 0.8), transparent);
        animation: aurora-move 15s linear infinite;
        color: #d1d9e6;
        line-height: 1.6;
    }

    /* 渐变极光动画 */
    @keyframes aurora-move {
        0% {
            background: radial-gradient(circle, rgba(0, 87, 34, 0.8), transparent);
        }
        50% {
            background: radial-gradient(circle, rgba(255, 87, 34, 0.6), transparent);
        }
        100% {
            background: radial-gradient(circle, rgba(0, 87, 34, 0.8), transparent);
        }
    }

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

    /* 头部样式 */
    header {
        text-align: center;
        padding: 50px 0;
        position: relative;
    }

    header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 3em;
        color: #ffffff;
        margin-bottom: 20px;
        animation: fadeIn 2s ease-in-out;
    }

    header p {
        font-size: 1.2em;
        color: #d1d9e6;
        margin-bottom: 30px;
    }

    /* 渐变按钮 */
    .cta-button {
        background: linear-gradient(135deg, #ff5722, #c51162);
        border: none;
        padding: 15px 30px;
        font-size: 1em;
        color: #ffffff;
        border-radius: 50px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
    }

    /* 模块化布局 */
    .modules {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 50px 0;
    }

    .module {
        background: linear-gradient(180deg, #0f2027, #2c5364);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .module:hover {
        transform: translateY(-10px);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

    .module h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.5em;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .module p {
        font-size: 1em;
        color: #d1d9e6;
    }

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

    .example-display h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2em;
        color: #ffffff;
        margin-bottom: 20px;
        text-align: center;
    }

    .example-display article {
        font-size: 1em;
        color: #d1d9e6;
    }

    .example-display pre {
        background: #1e2a38;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin: 20px 0;
    }

    .example-display code {
        color: #8be9fd;
        font-family: 'Source Code Pro', monospace;
    }

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

    .images-grid img {
        width: 100%;
        border-radius: 5px;
        object-fit: cover;
    }

    /* 视觉冲击力的图文并茂 */
    .visual-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin: 50px 0;
    }

    .visual-section img {
        flex: 1 1 300px;
        max-width: 400px;
        margin-right: 20px;
        border-radius: 10px;
    }

    .visual-section div {
        flex: 2 1 500px;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        header h1 {
            font-size: 2.5em;
        }

        .cta-button {
            padding: 12px 25px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 1200px) {
        .visual-section {
            flex-direction: column;
        }

        .visual-section img {
            margin: 0 0 20px 0;
            max-width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .modules {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    @media (max-width: 768px) {
        header h1 {
            font-size: 2em;
        }

        .cta-button {
            padding: 10px 20px;
            font-size: 0.8em;
        }

        .modules {
            grid-template-columns: 1fr;
        }

        .visual-section {
            flex-direction: column;
            text-align: center;
        }

        .visual-section img {
            margin: 0 0 20px 0;
        }
    }

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

        .cta-button {
            padding: 8px 16px;
            font-size: 0.7em;
        }

        .modules {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 320px) {
        header h1 {
            font-size: 1.2em;
        }

        .cta-button {
            padding: 6px 12px;
            font-size: 0.6em;
        }

        .module h3 {
            font-size: 1.2em;
        }

        .module p {
            font-size: 0.9em;
        }
    }

    /* 动画效果 */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 按钮涟漪效果 */
    .button {
        background-color: #2c5364;
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        font-size: 1em;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .button:hover::before {
        width: 200%;
        height: 200%;
    }

    /* 内部链接样式 */
    a {
        color: #8be9fd;
        text-decoration: none;
        position: relative;
    }

    a:hover {
        text-decoration: underline;
    }

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

    code {
        color: #8be9fd;
        font-family: 'Source Code Pro', monospace;
    }

