
    :root {
        --ink-black: #1a1a1a;
        --ink-gray: #4a4a4a;
        --paper-white: #f5f2eb;
        --paper-cream: #e8e4d9;
        --accent-red: #8b2500;
        --accent-gold: #b8860b;
    }

    body {
        font-family: 'STSong', 'SimSun', '宋体', serif;
        background: var(--paper-white);
        color: var(--ink-black);
        overflow-x: hidden;
    }

    .paper-texture {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.03;
        pointer-events: none;
        z-index: 0;
    }

    .ink-splash {
        position: fixed;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.05;
        pointer-events: none;
    }

    .ink-splash:nth-child(1) {
        top: -200px;
        right: -200px;
        background: var(--accent-red);
    }

    .ink-splash:nth-child(2) {
        bottom: -300px;
        left: -200px;
        background: var(--accent-gold);
    }

    .main-container {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 80px;
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 60px;
    }

    /* 文章内容 */
    .article-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .article-content {
        background: var(--paper-cream);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 60px;
        position: relative;
    }

    .article-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
    }

    .article-header {
        text-align: center;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 40px;
    }

    .article-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 48px;
        color: var(--ink-black);
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .article-meta {
        font-size: 14px;
        color: var(--ink-gray);
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .article-body {
        font-size: 18px;
        line-height: 2.2;
        color: var(--ink-black);
    }

    .article-body p {
        margin-bottom: 1.5em;
        text-indent: 2em;
    }

    .article-body h2 {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 32px;
        color: var(--ink-black);
        margin: 40px 0 20px;
    }

    .article-body h3 {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 24px;
        color: var(--ink-black);
        margin: 30px 0 15px;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        margin: 30px 0;
        display: block;
    }

    .article-body ul,
    .article-body ol {
        margin: 20px 0;
        padding-left: 2em;
    }

    .article-body li {
        margin-bottom: 10px;
    }

    /* ZincSearch 产品卡片样式 */
    .article-body .product-grid,
    .article-body .xiangyan-product-grid,
    .article-body .meijiu-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .article-body .product-card,
    .article-body .xiangyan-product-card,
    .article-body .meijiu-product-card {
        background: var(--paper-white);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
    }

    .article-body .product-card:hover,
    .article-body .xiangyan-product-card:hover,
    .article-body .meijiu-product-card:hover {
        box-shadow: 0 8px 20px rgba(139, 37, 0, 0.15);
        transform: translateY(-3px);
    }

    .article-body .product-card-img,
    .article-body .xiangyan-product-img,
    .article-body .meijiu-product-img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        padding: 15px;
        background: var(--paper-white);
    }

    .article-body .product-card-info,
    .article-body .xiangyan-product-info,
    .article-body .meijiu-product-info {
        padding: 15px;
    }

    .article-body .product-card-title,
    .article-body .xiangyan-product-title,
    .article-body .meijiu-product-title {
        font-size: 15px;
        color: var(--ink-black);
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-body .product-card-meta,
    .article-body .xiangyan-product-meta,
    .article-body .meijiu-product-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: var(--ink-gray);
    }

    .article-body .product-card-price,
    .article-body .xiangyan-product-price,
    .article-body .meijiu-product-price {
        color: var(--accent-red);
        font-weight: 500;
    }

    /* 价格表格样式 */
    .article-body table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        background: var(--paper-white);
    }

    .article-body table th,
    .article-body table td {
        padding: 12px 15px;
        text-align: left;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .article-body table th {
        background: var(--paper-cream);
        font-weight: 500;
        color: var(--ink-black);
    }

    .article-body table tr:hover {
        background: rgba(139, 37, 0, 0.03);
    }

    .ai-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
        color: white;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 20px;
        font-weight: 500;
    }

    /* 分页导航 */
    .pagination {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pagination a {
        padding: 12px 30px;
        background: var(--paper-white);
        color: var(--ink-black);
        text-decoration: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .pagination a:hover {
        background: var(--accent-red);
        color: white;
        border-color: var(--accent-red);
    }

    /* 推荐产品 */
    .recommend-section {
        margin-top: 40px;
    }

    .section-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 36px;
        color: var(--ink-black);
        text-align: center;
        margin-bottom: 30px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .product-card {
        background: var(--paper-cream);
        border: 1px solid rgba(0, 0, 0, 0.08);
        cursor: pointer;
        transition: all 0.4s ease;
        text-decoration: none;
        display: block;
        overflow: hidden;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(139, 37, 0, 0.12);
    }

    .product-image {
        width: 100%;
        height: 150px;
        background: var(--paper-white);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .product-image img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 14px;
        color: var(--ink-black);
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-meta {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
    }

    .product-category {
        color: var(--ink-gray);
    }

    .product-price {
        color: var(--accent-red);
        font-weight: 500;
    }

    /* 侧边栏 */
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .sidebar-section {
        background: var(--paper-cream);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 30px;
    }

    .sidebar-title {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 28px;
        color: var(--ink-black);
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sidebar-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar-item {
        display: flex;
        gap: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .sidebar-item:hover {
        transform: translateX(5px);
    }

    .sidebar-item-image {
        width: 80px;
        height: 60px;
        background: var(--paper-white);
        flex-shrink: 0;
        overflow: hidden;
    }

    .sidebar-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sidebar-item-text {
        flex: 1;
        font-size: 14px;
        color: var(--ink-black);
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sidebar-item:hover .sidebar-item-text {
        color: var(--accent-red);
    }

    /* 响应式 */
    @media (max-width: 1200px) {
        .main-container {
            padding: 40px;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }

        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

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

        .article-content {
            padding: 30px;
        }

        .article-title {
            font-size: 32px;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--paper-cream);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent-red);
        border-radius: 4px;
    }
