        :root {
            --primary-color: #c02020;
            --bg-color: #f4f4f4;
            --text-color: #333;
            --text-light: #666;
            --border-color: #ddd;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        a { text-decoration: none; color: var(--text-color); }
        a:hover { color: var(--primary-color); }
        ul { list-style: none; }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            padding: 0 20px;
        }

        /* ---------- 头部（左对齐传统风格） ---------- */
        header {
            display: flex;
            flex-direction: column;
            padding: 24px 0;
            border-bottom: 3px solid var(--primary-color);
            margin-bottom: 20px;
        }
        header h1 {
            font-size: 28px;
            color: var(--primary-color);
            font-weight: bold;
        }
        header p { 
            color: #666; 
            font-size: 14px; 
            margin-top: 8px;
        }
        /* 桌面端：标题和副标题左右排列，更显传统 */
        @media (min-width: 768px) {
            header {
                flex-direction: row;
                align-items: center;
            }
            header p {
                margin-top: 0;
                margin-left: 20px;
                padding-left: 20px;
                border-left: 1px solid #ccc;
            }
        }

        /* ---------- 公告栏 ---------- */
        .announcement {
            background: #fff8e1;
            border: 1px solid #ffe082;
            padding: 15px 20px;
            margin-bottom: 30px;
            border-radius: 4px;
        }
        .announcement h3 {
            color: #e65100;
            font-size: 16px;
            margin-bottom: 10px;
            border-left: 4px solid #e65100;
            padding-left: 10px;
        }
        .announcement p { margin-bottom: 8px; font-size: 14px; }
        .announcement ul { margin-left: 20px; list-style: disc; }
        .announcement li { font-size: 14px; margin-bottom: 5px; }
        .announcement .date { 
            text-align: right; 
            font-size: 12px; 
            color: #999; 
            margin-top: 10px; 
        }

        /* ---------- 主体内容：四列网格 ---------- */
        main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        .column {
            background: #fff;
            border: 1px solid var(--border-color);
        }
        .column h2 {
            background: #f9f9f9;
            font-size: 16px;
            padding: 12px 15px;
            border-bottom: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        .column li {
            padding: 10px 15px;
            border-bottom: 1px dashed #eee;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .column li:last-child { border-bottom: none; }
        .column li a {
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-right: 10px;
        }
        .column .date {
            color: #999;
            font-size: 12px;
            white-space: nowrap;
        }

        /* ---------- 图文资讯模块 ---------- */
        .image-news {
            margin-bottom: 30px;
        }
        .image-news h2 {
            font-size: 18px;
            color: var(--primary-color);
            padding-left: 12px;
            border-left: 4px solid var(--primary-color);
            margin-bottom: 16px;
        }
        .image-news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .image-news-item {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .image-news-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .image-news-item a {
            display: block;
        }
        .image-news-item img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }
/* ====== 图文资讯卡片标题 ====== */
        .image-news-item h3 {
            font-size: 14px;               /* 字号14px */
            font-weight: normal;           /* 正常字重，不加粗 */
            padding: 10px 12px;            /* 上下10px、左右12px的内边距 */
            line-height: 1.4;              /* 行高1.4倍，阅读舒适 */
            color: var(--text-color);      /* 使用全局文字颜色变量 */
            
            /* ====== 核心：限制10个汉字 ====== */
            max-width: 20em;               /* 最大宽度 = 10个汉字宽度（14px × 10 = 140px） */
            white-space: nowrap;           /* 强制不换行，确保文字在单行内 */
            overflow: hidden;              /* 超出 10em 的部分直接隐藏 */
            text-overflow: ellipsis;       /* 被隐藏的部分末尾显示 "..." */
        }
        .image-news-item:hover h3 {
            color: var(--primary-color);
        }

        /* ---------- 底部 ---------- */
        footer {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            background: #f9f9f9;
            font-size: 14px;
            color: #666;
        }
        .friend-links { margin-bottom: 15px; }
        .friend-links a {
            margin: 0 8px;
            color: #666;
            font-size: 13px;
        }
        .friend-links a:hover { text-decoration: underline; }
        .copyright { font-size: 12px; color: #999; }

        /* ---------- 响应式适配 ---------- */
        @media (max-width: 992px) {
            main { grid-template-columns: repeat(2, 1fr); }
            .image-news-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            main { grid-template-columns: 1fr; }
            .image-news-grid { grid-template-columns: 1fr; }
        }