
    /* 基本样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: linear-gradient(135deg, #6A5ACD, #4682B4);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
    }

    a {
        color: #FFD700;
        text-decoration: none;
    }

    a[rel="nofollow"] {
        /* 确保所有内部链接添加 rel="nofollow" */
    }

    /* 动态背景动画 */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .dynamic-background {
        background: radial-gradient(circle, rgba(255, 87, 34, 0.5), transparent);
        animation: aurora-move 15s linear infinite;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    /* 头部 */
    header {
        text-align: center;
        padding: 60px 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        margin-bottom: 40px;
    }

    header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #FFD700, #FF8C00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    header p {
        font-size: 1.2rem;
    }

    /* 导航菜单 */
    nav {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }

    nav a {
        margin: 0 15px;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    nav a:hover {
        color: #FFD700;
    }

    /* 主内容 */
    main {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .section {
        flex: 1 1 300px;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #FFD700;
    }

    .section p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .section pre {
        background: rgba(0, 0, 0, 0.7);
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto;
    }

    .section pre code {
        font-family: 'Courier New', Courier, monospace;
        color: #00FF00;
    }

    /* 示例展示 */
    .example-display {
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 10px;
        margin-top: 40px;
    }

    .example-display h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #FFD700;
    }

    .example-display article {
        max-height: 500px;
        overflow-y: auto;
    }

    .example-display pre {
        background: rgba(255, 255, 255, 0.2);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
    }

    .example-display pre code {
        color: #00FF00;
    }

    /* 数据展示 */
    .data-section {
        width: 100%;
        margin-top: 40px;
    }

    .data-item {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .data-item:hover {
        transform: scale(1.05);
    }

    .data-item img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .data-item h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: #FFD700;
    }

    .data-item p {
        font-size: 0.95rem;
    }

    /* 底部 */
    footer {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    footer p {
        font-size: 0.9rem;
    }

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

        nav a {
            margin: 0 10px;
            font-size: 0.9rem;
        }

        .section h2 {
            font-size: 1.5rem;
        }

        .section p {
            font-size: 0.9rem;
        }

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

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

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

        .section {
            flex: 1 1 100%;
        }

        nav {
            flex-direction: column;
        }

        nav a {
            margin: 5px 0;
        }
    }

