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

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

    a {
        color: #39ff14;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #ff6ec7;
    }

    /* 导航栏样式 */
    .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 li {
        position: relative;
    }

    .navbar a {
        font-size: 1rem;
        color: #ffffff;
    }

    /* 主标题样式 */
    .header {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: url('https://images.gptkong.com/demo/sample1.png') center center/cover no-repeat;
        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 h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #39ff14;
        animation: fadeInDown 1s ease-out forwards;
    }

    .header p {
        font-size: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
        animation: fadeInUp 1s ease-out forwards;
    }

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

    .section {
        margin-bottom: 80px;
        padding: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, opacity 0.3s;
    }

    .section:hover {
        transform: translateY(-10px);
        opacity: 0.95;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #ff6ec7;
    }

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

    .section pre {
        background: #1a1a1a;
        padding: 20px;
        border-radius: 5px;
        overflow-x: auto;
    }

    .section code {
        color: #39ff14;
        font-family: 'Courier New', Courier, monospace;
    }

    /* 示例展示样式 */
    .example {
        border: 2px dashed #ff6ec7;
        padding: 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
    }

    .example h2 {
        color: #39ff14;
    }

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

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

    /* 代码块样式 */
    .code-block {
        background: #1a1a1a;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .code-block code {
        color: #39ff14;
        font-family: 'Courier New', Courier, monospace;
        display: block;
    }

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

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    @media (max-width: 1200px) {
        .container {
            padding: 80px 15px;
        }
        .navbar ul {
            gap: 20px;
        }
    }

    @media (max-width: 1024px) {
        .header h1 {
            font-size: 2rem;
        }
        .section {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        .navbar ul {
            flex-direction: column;
            gap: 10px;
        }
        .header h1 {
            font-size: 1.8rem;
        }
        .section h2 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .header h1 {
            font-size: 1.5rem;
        }
        .section h2 {
            font-size: 1.2rem;
        }
        .images {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 320px) {
        .navbar {
            padding: 10px;
        }
        .navbar a {
            font-size: 0.9rem;
        }
        .header h1 {
            font-size: 1.2rem;
        }
        .section {
            padding: 20px;
        }
    }

    /* 提示信息样式 */
    .note {
        text-align: center;
        font-size: 1rem;
        margin-top: 50px;
        color: #ff6ec7;
    }

