
    /* 全局样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
        color: #ffffff;
        line-height: 1.6;
    }

    /* 头部样式 */
    header {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        text-align: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    header h1 {
        margin: 0;
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffffff;
        animation: titleMove 10s linear infinite;
    }

    @keyframes titleMove {
        0% { transform: translateX(0); }
        50% { transform: translateX(20px); }
        100% { transform: translateX(0); }
    }

    /* 主内容区 */
    .container {
        padding: 100px 20px 20px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* 文章样式 */
    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    article h2 {
        font-size: 2rem;
        color: #ffdd57;
        margin-bottom: 10px;
    }

    article h3 {
        font-size: 1.5rem;
        color: #ffdd57;
        margin-top: 20px;
    }

    article p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    article pre {
        background: #2c3e50;
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto;
    }

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

    /* 示例展示区 */
    .sample-display {
        margin-top: 40px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

    .sample-display h2 {
        color: #f1c40f;
    }

    .sample-display pre {
        background: #34495e;
        padding: 15px;
        border-radius: 5px;
    }

    /* 图片样式 */
    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .images img {
        width: 100%;
        max-width: 320px;
        border-radius: 5px;
    }

    /* 响应式设计 */
    @media (max-width: 768px) {
        .container {
            padding: 80px 10px 10px 10px;
        }

        header h1 {
            font-size: 2rem;
        }

        article h2 {
            font-size: 1.5rem;
        }

        article h3 {
            font-size: 1.2rem;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .images {
            justify-content: space-around;
        }
    }

    @media (min-width: 1025px) {
        .images {
            justify-content: flex-start;
        }
    }

    /* 提示信息 */
    .info-banner {
        text-align: center;
        background: rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 20px;
        font-size: 1rem;
        color: #ffffff;
    }

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

    a:hover {
        color: #16a085;
    }

    a[rel="nofollow"]::after {
        content: "";
    }


