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

    html, body {
        width: 100%;
        height: 100%;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #000000, #1e00ff, #ff00c8);
        color: #ffffff;
        overflow-x: hidden;
    }

    body {
        display: flex;
        flex-direction: column;
    }

    /* 导航栏样式 */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        display: flex;
        justify-content: center;
        z-index: 1000;
    }

    .navbar ul {
        list-style: none;
        display: flex;
        gap: 30px;
    }

    .navbar a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1.2rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .navbar a:hover {
        color: #ff00c8;
        transform: scale(1.1);
    }

    /* 主标题样式 */
    .hero {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        animation: fadeIn 2s ease-in-out;
    }

    .hero h1 {
        font-size: 4rem;
        color: #1e00ff;
        margin-bottom: 20px;
        text-shadow: 0 0 10px rgba(30, 0, 255, 0.7);
    }

    .hero p {
        font-size: 1.5rem;
        max-width: 800px;
        line-height: 1.6;
    }

    /* 主要内容区样式 */
    .content {
        display: flex;
        flex-direction: column;
        padding: 100px 50px;
        background: linear-gradient(135deg, #1e00ff, #ff00c8);
    }

    .section {
        margin-bottom: 80px;
    }

    .section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #ffffff;
        text-shadow: 0 0 5px rgba(255, 0, 200, 0.7);
    }

    .section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .section img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin-top: 20px;
        border-radius: 10px;
    }

    /* 示例展示区样式 */
    .example-display {
        padding: 100px 50px;
        background: rgba(0, 0, 0, 0.8);
    }

    .example-display h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #ff00c8;
        text-shadow: 0 0 5px rgba(255, 0, 200, 0.7);
    }

    .example-display article {
        background: #1e1e1e;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(30, 0, 255, 0.5);
    }

    .example-display pre {
        background: #2e2e2e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .example-display code {
        color: #ff00c8;
        font-family: 'Courier New', Courier, monospace;
    }

    /* 提示信息样式 */
    .reference-note {
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        color: #ffffff;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

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

        .hero p {
            font-size: 1.3rem;
        }

        .navbar ul {
            gap: 20px;
        }

        .section h2, .example-display h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 1200px) {
        .content, .example-display {
            padding: 80px 30px;
        }

        .hero h1 {
            font-size: 3rem;
        }

        .section h2, .example-display h2 {
            font-size: 1.8rem;
        }
    }

    @media (max-width: 1024px) {
        .content, .example-display {
            padding: 60px 20px;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

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

    @media (max-width: 768px) {
        .navbar ul {
            flex-direction: column;
            gap: 10px;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .section h2, .example-display h2 {
            font-size: 1.3rem;
        }

        .content, .example-display {
            padding: 40px 10px;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.8rem;
        }

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

        .section h2, .example-display h2 {
            font-size: 1.1rem;
        }

        .navbar ul {
            flex-direction: column;
            gap: 8px;
        }
    }

    @media (max-width: 320px) {
        .hero h1 {
            font-size: 1.5rem;
        }

        .hero p {
            font-size: 0.8rem;
        }

        .section h2, .example-display h2 {
            font-size: 1rem;
        }
    }

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

    .animate {
        animation: fadeIn 1s ease-in-out;
    }

    /* 按钮样式 */
    .button {
        position: relative;
        padding: 10px 20px;
        background-color: #007bff;
        border: none;
        color: white;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border-radius: 5px;
        font-size: 1rem;
    }

    .button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    }

    .button:active::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        animation: ripple 0.5s ease-out;
    }

    @keyframes ripple {
        to {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }
    }

    /* 表格样式 */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

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

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

    th {
        background-color: #ff00c8;
        color: #000000;
    }

    /* 列表样式 */
    ul {
        list-style: disc inside;
        margin-left: 20px;
    }

    ul li {
        margin-bottom: 10px;
    }

    /* 代码块样式 */
    pre {
        background: #2e2e2e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
    }

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

