 /* 继承列表页的马卡龙色系 */
        :root {
            --pink: #FFD6E0;
            --mint: #C1F2E9;
            --lavender: #E2D1F9;
            --peach: #FFC8A2;
            --blue: #A2D2FF;
            --yellow: #FFEEA2;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Comic Sans MS', '幼圆', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--pink);
            color: #555;
        }

        header {
            background: linear-gradient(135deg, var(--lavender), var(--blue));
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 4px 12px var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px var(--shadow);
            margin-bottom: 10px;
        }

        .tagline {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 20px;
        }

        nav {
            display: flex;
            justify-content: center;
            background-color: white;
            padding: 10px 0;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .nav-button {
            margin: 0 15px;
            padding: 10px 20px;
            background-color: var(--peach);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: scale(1);
            box-shadow: 0 4px 8px var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .nav-button:hover {
            transform: scale(1.1);
            background-color: var(--yellow);
            color: #FF8C8C;
        }

        main {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        /* 左侧文章内容 */
        .article-content {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 16px var(--shadow);
        }

        .article-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .article-title {
            color: #FF8C8C;
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #777;
            margin-bottom: 20px;
        }

        .article-image {
            height: 300px;
            background-color: var(--blue);
            border-radius: 20px;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .article-section {
            margin-bottom: 20px;
        }

        .article-section-title {
            color: #FF8C8C;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }

        .article-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #FF8C8C;
        }

        .article-price small {
            font-size: 1rem;
            color: #999;
            font-weight: normal;
        }

        .article-button {
            padding: 10px 30px;
            background-color: var(--peach);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px var(--shadow);
        }

        .article-button:hover {
            background-color: var(--yellow);
            color: #FF8C8C;
            transform: scale(1.05);
        }

        /* 右侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background-color: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 16px var(--shadow);
        }

        .sidebar-title {
            color: #FF8C8C;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--lavender);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            padding: 5px 10px;
            background-color: var(--mint);
            border-radius: 50px;
            font-size: 0.9rem;
            color: #555;
        }

        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-item {
            margin-bottom: 10px;
        }

        .category-link {
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .category-link:hover {
            color: #FF8C8C;
            transform: translateX(5px);
        }

        /* 相关文章 */
        .related-articles {
            grid-column: 1 / -1;
            margin-top: 40px;
        }

        .related-title {
            color: #FF8C8C;
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .related-card {
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 16px var(--shadow);
            transition: all 0.3s ease;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px var(--shadow);
        }

        .related-image {
            height: 150px;
            background-color: var(--blue);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 2rem;
        }

        .related-content {
            padding: 15px;
        }

        .related-article-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #555;
        }

        .related-meta {
            display: flex;
            gap: 10px;
            font-size: 0.9rem;
            color: #777;
        }

        footer {
            background: linear-gradient(135deg, var(--blue), var(--lavender));
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }

            .article-meta {
                flex-direction: column;
                gap: 10px;
            }

            .article-image {
                height: 200px;
            }

            .article-footer {
                flex-direction: column;
                gap: 15px;
            }

            .article-button {
                width: 100%;
            }
        }