
    :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;
    }

    /* 新闻列表 */
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .news-card {
        background: var(--paper-cream);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 40px;
        transition: all 0.4s ease;
        text-decoration: none;
        display: block;
        position: relative;
    }

    .news-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--accent-red), var(--accent-gold));
        transition: height 0.4s ease;
    }

    .news-card:hover {
        transform: translateX(10px);
        box-shadow: 0 20px 40px rgba(139, 37, 0, 0.12);
    }

    .news-card:hover::before {
        height: 100%;
    }

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

    .news-content {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 30px;
        align-items: start;
    }

    .news-image {
        width: 200px;
        height: 150px;
        background: var(--paper-white);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

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

    .news-desc {
        flex: 1;
    }

    .news-text {
        font-size: 16px;
        color: var(--ink-gray);
        line-height: 2;
        margin-bottom: 20px;
    }

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

    .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* 侧边栏 */
    .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;
        }
    }

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

        .news-content {
            grid-template-columns: 1fr;
        }

        .news-image {
            width: 100%;
            height: 200px;
        }

        .news-title {
            font-size: 24px;
        }
    }

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

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

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