
    /* 基本样式设置 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Lora', serif;
        background: linear-gradient(135deg, #003366, #660099);
        color: #ffffff;
        line-height: 1.6;
    }

    h1, h2, h3 {
        font-family: 'Roboto', sans-serif;
        color: #ffcc00;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 10px;
        border-radius: 5px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
    }

    code {
        color: #ffcc00;
    }

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

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

    th {
        background: rgba(255, 204, 0, 0.3);
    }

    /* 按钮样式 */
    .button {
        display: inline-block;
        padding: 10px 20px;
        margin: 10px 0;
        background: linear-gradient(45deg, #66ffcc, #00ccff);
        color: #ffffff;
        text-decoration: none;
        border-radius: 25px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .button:hover::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        animation: glow 1s ease-in-out infinite;
    }

    @keyframes glow {
        0% { opacity: 0; }
        50% { opacity: 1; }
        100% { opacity: 0; }
    }

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

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

    /* 响应式设计 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    @media (max-width: 1440px) {
        .container {
            padding: 15px;
        }
    }

    @media (max-width: 1200px) {
        .container {
            padding: 10px;
        }
    }

    @media (max-width: 1024px) {
        .images {
            justify-content: center;
        }
    }

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

        h2 {
            font-size: 20px;
        }

        h3 {
            font-size: 18px;
        }

        p, pre, table {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .button {
            padding: 8px 16px;
            font-size: 14px;
        }
    }

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

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

    /* 示例数据展示区 */
    .demo-section {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 10px;
        margin-top: 40px;
    }

    .demo-section h2 {
        color: #ff9900;
    }

    .demo-section pre {
        background: rgba(255, 255, 255, 0.2);
        color: #00ffcc;
    }

    /* 提示信息 */
    .hint {
        text-align: center;
        margin: 20px 0;
        font-size: 18px;
        color: #ff6666;
    }

