
    /* 基础样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #004AAD, #6F0391, #08B783);
        color: #ffffff;
        overflow-x: hidden;
    }

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

    /* 头部样式 */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    header h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        color: #FFA500;
    }

    nav a {
        margin-left: 15px;
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
        transition: color 0.3s;
    }

    nav a:hover {
        color: #FFA500;
    }

    /* 主视觉区域 */
    .hero-section {
        position: relative;
        height: 100vh;
        background: radial-gradient(circle, rgba(0, 168, 255, 0.5), transparent);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: auroraMove 15s linear infinite;
    }

    .hero-content {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 15px;
        text-align: center;
    }

    .hero-content h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.6;
    }

    /* 内容区域 */
    main {
        padding: 60px 0;
        background: linear-gradient(135deg, #6F0391, #08B783);
    }

    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    article h2, article h3 {
        font-family: 'Montserrat', sans-serif;
        color: #FFA500;
    }

    article p {
        font-size: 16px;
        line-height: 1.8;
        color: #ffffff;
    }

    pre, code {
        background: rgba(0, 0, 0, 0.7);
        padding: 10px;
        border-radius: 5px;
        display: block;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

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

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

    th {
        background: rgba(255, 165, 0, 0.7);
    }

    /* 示例展示 */
    .example-section {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 10px;
    }

    .code-preview {
        background: #000000;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
    }

    /* 数据展示 */
    .data-section {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 10px;
    }

    .data-section ul {
        list-style: none;
        padding: 0;
    }

    .data-section li {
        background: rgba(0, 0, 0, 0.3);
        margin: 10px 0;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        transition: background 0.3s;
    }

    .data-section li:hover {
        background: rgba(255, 165, 0, 0.7);
    }

    .data-section img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        border-radius: 8px;
    }

    /* 底部样式 */
    footer {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        text-align: center;
        color: #ffffff;
    }

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

    /* 按钮样式 */
    .button {
        background: #FFA500;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

    .button:hover {
        background: #ff8c00;
        transform: scale(1.05);
    }

    /* 图片样式 */
    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .gallery img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
    }

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

        article h2, article h3 {
            font-size: 24px;
        }
    }

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

    @media (max-width: 1024px) {
        header {
            flex-direction: column;
        }

        nav {
            margin-top: 10px;
        }
    }

    @media (max-width: 768px) {
        article, .example-section, .data-section {
            padding: 20px;
        }

        .data-section li {
            flex-direction: column;
            align-items: flex-start;
        }

        .data-section img {
            margin-bottom: 10px;
        }

        .hero-content h2 {
            font-size: 28px;
        }

        footer {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            padding: 20px;
        }

        .hero-content h2 {
            font-size: 24px;
        }

        article h2, article h3 {
            font-size: 20px;
        }

        .data-section li {
            padding: 10px;
        }

        .data-section img {
            width: 40px;
            height: 40px;
        }
    }

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

        nav a {
            margin-left: 10px;
            font-size: 14px;
        }

        .hero-content h2 {
            font-size: 20px;
        }

        article h2, article h3 {
            font-size: 18px;
        }

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