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

    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        color: #ff6ec7;
        text-decoration: none;
        transition: color 0.3s ease;
        rel: nofollow;
    }

    a:hover {
        color: #00d2ff;
    }

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

    .navbar .logo {
        font-family: 'Orbitron', sans-serif;
        font-size: 24px;
        color: #ff6ec7;
    }

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

    .navbar li {
        margin-left: 20px;
    }

    .navbar a {
        font-size: 16px;
        font-weight: bold;
    }

    /* 头部横幅 */
    .header {
        height: 100vh;
        background: url('https://images.gptkong.com/demo/sample1.png') no-repeat center center/cover;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .header::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .header-content {
        position: relative;
        text-align: center;
        z-index: 1;
    }

    .header-content h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 48px;
        color: #ff6ec7;
        margin-bottom: 20px;
        animation: glow 2s infinite alternate;
    }

    .header-content p {
        font-size: 18px;
        color: #ffffff;
    }

    /* 闪光动画 */
    @keyframes glow {
        from {
            text-shadow: 0 0 10px #ff6ec7, 0 0 20px #ff6ec7, 0 0 30px #ff6ec7;
        }
        to {
            text-shadow: 0 0 20px #00d2ff, 0 0 30px #00d2ff, 0 0 40px #00d2ff;
        }
    }

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

    .section {
        margin-bottom: 50px;
    }

    .section h2, .section h3, .section h4 {
        font-family: 'Orbitron', sans-serif;
        color: #ff6ec7;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .section pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
        color: #00d2ff;
    }

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

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

    .section th {
        background: rgba(255, 110, 199, 0.7);
    }

    /* 示例展示样式 */
    .example-display {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        margin-top: 50px;
    }

    .example-display h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    /* 图片样式 */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

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

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

    @media (max-width: 1200px) {
        .navbar ul {
            display: none;
        }

        .navbar .menu-toggle {
            display: block;
            cursor: pointer;
            color: #ff6ec7;
            font-size: 24px;
        }

        .navbar.active ul {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 20px;
            background: rgba(0, 0, 0, 0.9);
            padding: 20px;
            border-radius: 10px;
        }

        .navbar.active ul li {
            margin: 10px 0;
        }
    }

    @media (max-width: 768px) {
        .header-content h1 {
            font-size: 36px;
        }

        .container {
            padding: 80px 15px 40px 15px;
        }

        .section h2 {
            font-size: 24px;
        }

        .section p {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .header-content h1 {
            font-size: 28px;
        }

        .navbar .logo {
            font-size: 20px;
        }

        .section h2 {
            font-size: 20px;
        }

        .section p {
            font-size: 12px;
        }
    }

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

        .navbar {
            padding: 15px;
        }

        .section h2 {
            font-size: 18px;
        }

        .section p {
            font-size: 10px;
        }
    }

    /* 脉冲光效按钮 */
    .button {
        background-color: #ff6ec7;
        color: #ffffff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-size: 16px;
    }

    .button:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px #ff6ec7;
    }

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

    .footer a {
        color: #ff6ec7;
    }

    /* 提示文字样式 */
    .note {
        text-align: center;
        font-size: 18px;
        color: #00d2ff;
        margin-top: 40px;
    }

