
        /* ===== Main Layout ===== */
        .main-layout {
            padding: 48px 0;
        }
        .main-layout .container {
            display: grid; grid-template-columns: 1fr 320px; gap: 36px;
        }

        /* ===== Text List (No Image) ===== */
        .text-list-wrap {
            background: #fff; border-radius: var(--radius);
            box-shadow: var(--shadow); overflow: hidden;
        }

        /* 列表头部 */
        .text-list-header {
            padding: 20px 28px; border-bottom: 1px solid var(--border);
            display: flex; align-items: center; justify-content: space-between;
        }
        .text-list-header .total {
            font-size: 13px; color: var(--text-muted);
        }
        .text-list-header .total strong {
            color: var(--primary); font-weight: 600;
        }

        /* 列表项 */
        .text-list { }
        .text-list-item {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 20px 28px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition); cursor: pointer;
            position: relative;
        }
        .text-list-item:last-child { border-bottom: none; }
        .text-list-item:hover {
            background: var(--primary-bg);
        }
        .text-list-item:hover .item-title {
            color: var(--primary);
        }

        /* 日期块 */
        .item-date {
            flex-shrink: 0; width: 60px; text-align: center;
            background: var(--bg-gray); border-radius: var(--radius);
            padding: 8px 0; transition: var(--transition);
        }
        .text-list-item:hover .item-date {
            background: var(--primary);
        }
        .item-date .day {
            font-size: 24px; font-weight: 700; color: var(--primary);
            line-height: 1.1; transition: var(--transition);
        }
        .text-list-item:hover .item-date .day {
            color: #fff;
        }
        .item-date .month {
            font-size: 11px; color: var(--text-muted); margin-top: 2px;
            transition: var(--transition);
        }
        .text-list-item:hover .item-date .month {
            color: rgba(255,255,255,0.8);
        }

        /* 内容区 */
        .item-content { flex: 1; min-width: 0; }
        .item-title {
            font-size: 15px; color: var(--text-dark); font-weight: 500;
            line-height: 1.6; margin-bottom: 6px;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
            transition: var(--transition);
        }
        .item-meta {
            display: flex; align-items: center; gap: 16px;
            font-size: 12px; color: var(--text-muted);
        }
        .item-meta span {
            display: flex; align-items: center; gap: 4px;
        }
        .item-meta svg {
            width: 13px; height: 13px; stroke: currentColor; stroke-width: 2;
            fill: none; stroke-linecap: round; stroke-linejoin: round;
        }

        /* 置顶标签 */
        .item-badge {
            display: inline-flex; align-items: center;
            background: var(--primary); color: #fff;
            font-size: 11px; padding: 1px 8px; border-radius: 10px;
            font-weight: 600; margin-right: 6px; vertical-align: middle;
            flex-shrink: 0;
        }
        .item-badge.new {
            background: var(--accent);
        }

        /* ===== Sidebar ===== */
        .sidebar { display: flex; flex-direction: column; gap: 24px; }

        .sidebar-panel {
            background: #fff; border-radius: var(--radius);
            box-shadow: var(--shadow); overflow: hidden;
        }
        .sidebar-panel-head {
            padding: 16px 20px; border-bottom: 1px solid var(--border);
            display: flex; align-items: center; gap: 8px;
        }
        .sidebar-panel-head h3 {
            font-size: 16px; color: var(--primary); font-weight: 600;
            display: flex; align-items: center; gap: 8px;
        }
        .sidebar-panel-head h3::before {
            content: ''; width: 3px; height: 16px; background: var(--primary);
            border-radius: 2px;
        }
        .sidebar-panel-body { padding: 12px 20px; }

        /* 热门新闻 */
        .hot-item {
            display: flex; gap: 12px; padding: 12px 0;
            border-bottom: 1px dashed var(--border); transition: var(--transition);
        }
        .hot-item:last-child { border-bottom: none; }
        .hot-item:hover { padding-left: 4px; }
        .hot-item .rank {
            flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
            display: flex; align-items: center; justify-content: center;
            font-size: 12px; font-weight: 700; margin-top: 2px;
        }
        .hot-item:nth-child(1) .rank { background: var(--primary); color: #fff; }
        .hot-item:nth-child(2) .rank { background: var(--primary-light); color: #fff; }
        .hot-item:nth-child(3) .rank { background: var(--accent); color: #fff; }
        .hot-item:nth-child(n+4) .rank { background: var(--bg-gray); color: var(--text-muted); }
        .hot-item h4 {
            font-size: 13px; color: var(--text-dark); font-weight: 400; line-height: 1.5;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .hot-item:hover h4 { color: var(--primary); }

        /* 联系卡片 */
        .contact-card {
            background: var(--primary); color: #fff; border-radius: var(--radius);
            padding: 24px 20px; box-shadow: var(--shadow);
        }
        .contact-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
        .contact-card .info-item {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 13px; opacity: 0.85; margin-bottom: 10px;
        }
        .contact-card .info-item svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
        .contact-card .info-item:last-child { margin-bottom: 0; }

        /* ===== Pagination ===== */
        .pagination { margin-top: 36px; }
        .pagebar { text-align: center; margin-top: 10px; }
        .p_pages { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; border: none !important; background: none !important; }
        .p_pages > span {
            display: inline-flex; align-items: center; justify-content: center;
            min-width: 36px; height: 36px; padding: 0 10px;
            border-radius: 6px; font-size: 14px; color: var(--text-body);
            border: 1px solid var(--border); transition: var(--transition);
            text-decoration: none;
        }
        .p_pages a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
        .p_no_d {
            background: var(--primary) !important; color: #fff !important;
            border-color: var(--primary) !important; font-weight: 600;
        }
        .p_dot { border: none !important; color: var(--text-muted) !important; background: none !important; min-width: 24px !important; }
        .p_fun a, .p_fun_d {
            font-size: 13px; padding: 0 14px;
        }
        .p_fun_d { color: var(--text-muted) !important; opacity: 0.5; cursor: default; }
        .p_fun a:hover { background: var(--primary-bg); border-color: var(--primary); color: var(--primary); }

        /* ===== Footer ===== */
        .footer { background: #1a0d14; color: rgba(255,255,255,0.6); padding: 48px 0 0; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
            padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-about h3 { color: #fff; font-size: 18px; margin-bottom: 12px; }
        .footer-about p { font-size: 13px; line-height: 1.8; }
        .footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; font-weight: 600; }
        .footer-col a { display: block; font-size: 13px; padding: 4px 0; }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom {
            text-align: center; padding: 20px 0; margin-top: 20px;
            font-size: 12px; color: rgba(255,255,255,0.35);
        }

        /* ===== Back to Top ===== */
        .back-top {
            position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px;
            background: var(--primary); color: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; cursor: pointer; box-shadow: 0 4px 12px rgba(114,39,81,0.3);
            transition: var(--transition); opacity: 0; pointer-events: none; z-index: 99;
        }
        .back-top.show { opacity: 1; pointer-events: auto; }
        .back-top:hover { transform: translateY(-3px); background: var(--primary-dark); }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .main-layout .container { grid-template-columns: 1fr; }
            .sidebar { order: 2; }
        }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav { display: none; }
            .nav.open {
                display: flex; flex-direction: column; position: absolute;
                top: 100%; left: 0; right: 0; background: #fff;
                padding: 12px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
                border-top: 1px solid var(--border);
            }
            .nav-item { position: static; }
            .nav-dropdown {
                position: static; box-shadow: none; border: none;
                background: var(--primary-bg); border-radius: 6px; min-width: auto;
                margin: 0 0 4px 12px; padding: 0;
                opacity: 0; max-height: 0; overflow: hidden; pointer-events: none;
                transform: none; transition: max-height 0.35s ease, opacity 0.3s ease;
            }
            .nav-dropdown.open {
                max-height: 200px; opacity: 1; pointer-events: auto;
                margin-top: 4px; margin-bottom: 8px;
            }
            .nav-dropdown a { padding: 10px 16px; font-size: 13px; border-left: 3px solid var(--primary-border); }
            .nav-dropdown a:hover { border-left-color: var(--primary); background: rgba(114,39,81,0.06); }
            .nav-item > a.has-dropdown::after { content: '\25B8'; margin-left: 6px; font-size: 10px; transition: transform 0.3s ease; display: inline-block; }
            .nav-item > a.has-dropdown.open::after { transform: rotate(90deg); }
            .banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
            .page-banner { padding: 0; }
            .banner-info h2 { font-size: 20px; }
            .text-list-item { padding: 16px 20px; gap: 12px; }
            .item-date { width: 52px; padding: 6px 0; }
            .item-date .day { font-size: 20px; }
            .item-title { font-size: 14px; }
            .text-list-header { padding: 16px 20px; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
        }
        @media (max-width: 480px) {
            .top-bar { display: none; }
            .text-list-item { flex-direction: row; }
            .item-meta { gap: 10px; }
        }