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

    body {
        font-family: 'Roboto', sans-serif;
        background: radial-gradient(circle, rgba(74,0,224,1) 0%, rgba(127,83,172,1) 100%);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: 'Orbitron', sans-serif;
        color: #00ffbf;
    }

    h1 {
        font-size: 3rem;
        text-align: center;
        margin: 20px 0;
        text-shadow: 0 0 10px rgba(0, 255, 191, 0.8);
    }

    h2 {
        font-size: 2.5rem;
        margin-top: 40px;
        margin-bottom: 20px;
        text-shadow: 0 0 5px rgba(0, 255, 191, 0.6);
    }

    h3 {
        font-size: 2rem;
        margin-top: 30px;
        margin-bottom: 15px;
        text-shadow: 0 0 5px rgba(0, 255, 191, 0.6);
    }

    h4 {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 10px;
        text-shadow: 0 0 5px rgba(0, 255, 191, 0.6);
    }

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

    a {
        color: #ff4081;
        text-decoration: none;
        position: relative;
    }

    a:hover {
        color: #ffffff;
        text-shadow: 0 0 5px rgba(255, 64, 129, 0.8);
        transition: all 0.3s ease;
    }

    a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #ff4081;
        transition: width 0.3s;
    }

    a:hover::after {
        width: 100%;
    }

    /* 按钮样式 */
    .btn {
        display: inline-block;
        padding: 10px 20px;
        background: linear-gradient(45deg, #00ffbf, #ff4081);
        border: none;
        border-radius: 25px;
        color: #ffffff;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 255, 191, 0.6);
        transition: all 0.3s ease;
    }

    .btn:hover {
        box-shadow: 0 0 20px rgba(255, 64, 129, 0.8);
        transform: scale(1.05);
    }

    /* 容器与布局 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 导航栏 */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .nav-links {
        display: flex;
        gap: 20px;
    }

    /* 主视觉区 */
    .hero {
        position: relative;
        height: 80vh;
        background: url('https://images.gptkong.com/demo/sample1.png') no-repeat center center/cover;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        color: #ffffff;
        animation: aurora-move 15s linear infinite;
    }

    @keyframes aurora-move {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .hero .btn {
        margin-top: 30px;
    }

    /* 内容区 */
    .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .content article {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 255, 191, 0.4);
    }

    .content pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 15px;
    }

    .content code {
        font-family: 'Roboto Mono', monospace;
        color: #00ffbf;
    }

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

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

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

    th {
        background: rgba(0, 255, 191, 0.2);
    }

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

    .images img {
        width: 100%;
        max-width: 150px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
        transition: transform 0.3s ease;
    }

    .images img:hover {
        transform: scale(1.1);
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .hero {
            height: 70vh;
        }
    }

    @media (max-width: 1200px) {
        .nav-links {
            gap: 15px;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
        }

        .images img {
            max-width: 130px;
        }
    }

    @media (max-width: 1024px) {
        .content {
            gap: 30px;
        }

        h1 {
            font-size: 2.2rem;
        }

        h2 {
            font-size: 1.8rem;
        }

        .images img {
            max-width: 120px;
        }
    }

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

        .hero {
            height: 60vh;
        }

        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.6rem;
        }

        .images img {
            max-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .hero {
            height: 50vh;
        }

        h1 {
            font-size: 1.8rem;
        }

        h2 {
            font-size: 1.4rem;
        }

        .images img {
            max-width: 80px;
        }

        .nav-links {
            flex-direction: column;
            gap: 10px;
        }
    }

    @media (max-width: 320px) {
        .hero {
            height: 40vh;
        }

        h1 {
            font-size: 1.5rem;
        }

        h2 {
            font-size: 1.2rem;
        }

        .images img {
            max-width: 70px;
        }
    }

    /* 动画效果 */
    .particle {
        position: absolute;
        width: 5px;
        height: 5px;
        background: rgba(0, 255, 191, 0.8);
        border-radius: 50%;
        animation: move 10s linear infinite;
    }

    @keyframes move {
        0% {
            transform: translateY(0) translateX(0);
            opacity: 1;
        }
        100% {
            transform: translateY(-100vh) translateX(100px);
            opacity: 0;
        }
    }

    /* 提示信息样式 */
    .reference-note {
        text-align: center;
        font-size: 1rem;
        margin: 20px 0;
        color: #ff4081;
        text-shadow: 0 0 5px rgba(255, 64, 129, 0.8);
    }

