
    /* 基本色彩定义 */
    :root {
        --primary-color: #03A9F4; /* 科技蓝 */
        --secondary-color: #FFC107; /* 暖橙 */
        --accent-color: #4CAF50; /* 翠绿 */
        --background-color: #212121; /* 深灰色背景 */
        --text-color: #FFFFFF; /* 白色文字 */
        --secondary-text-color: rgba(255, 255, 255, 0.8);
        --card-background: #2C2C2C;
        --button-hover-color: rgba(255, 255, 255, 0.3);
        --font-family: 'Roboto', sans-serif;
        --transition-speed: 0.3s;
    }

    /* 全局样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: radial-gradient(circle, var(--primary-color), transparent);
        color: var(--text-color);
        font-family: var(--font-family);
        line-height: 1.6;
        padding: 20px;
    }

    h1, h2, h3 {
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    p {
        margin-bottom: 15px;
        color: var(--secondary-text-color);
    }

    /* 布局容器 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(135deg, #1E1E1E, #2E2E2E);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* 栅格系统 */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    /* 卡片样式 */
    .card {
        background: var(--card-background);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* 按钮样式 */
    .button-primary {
        display: inline-block;
        padding: 10px 20px;
        background-color: var(--primary-color);
        color: var(--text-color);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: background-color var(--transition-speed) ease;
        text-decoration: none;
    }

    .button-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background-color: var(--button-hover-color);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
    }

    .button-primary:hover::before {
        width: 200px;
        height: 200px;
    }

    /* 代码块样式 */
    pre {
        background: #1E1E1E;
        padding: 15px;
        border-radius: 10px;
        overflow: auto;
    }

    code {
        color: #00FF00;
        font-family: 'Courier New', Courier, monospace;
        display: block;
    }

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

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

    th {
        background-color: var(--secondary-color);
        color: #000;
    }

    /* 图片样式 */
    img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* 提示文本样式 */
    .notice {
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        font-weight: bold;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .container {
            padding: 15px;
        }
    }

    @media (max-width: 1200px) {
        .grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 1024px) {
        .card {
            padding: 15px;
        }
    }

    @media (max-width: 768px) {
        .grid {
            grid-template-columns: 1fr;
        }

        h1 {
            font-size: 24px;
        }

        h2 {
            font-size: 20px;
        }

        h3 {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 10px;
        }

        .button-primary {
            padding: 8px 16px;
        }

        pre {
            padding: 10px;
        }
    }

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

        h2 {
            font-size: 18px;
        }

        h3 {
            font-size: 16px;
        }
    }

    /* 文章展示区域样式 */
    .article-display {
        background: linear-gradient(135deg, #333, #444);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        margin-top: 40px;
    }

    .article-display h2 {
        color: var(--secondary-color);
    }

    .article-display pre {
        background: #1E1E1E;
        padding: 10px;
        border-radius: 5px;
        overflow: auto;
    }

    .article-display table {
        background: #2C2C2C;
    }

    /* 图片动画效果 */
    .animated-img {
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    /* 网页整体动画 */
    @keyframes aurora-move {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    body {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        animation: aurora-move 15s linear infinite;
    }

