        /* 内容容器 */
        .container {
            width: 1000px;
            margin: 0 auto;
            padding: 40px 0;
        }
        /* 页面标题 */
        .page-header {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
        }
        .page-subtitle {
            font-size: 36px;
            font-family: Arial Black;
            color: #f0f0f0;
            margin-bottom: -15px;
        }
        .page-title {
            font-size: 24px;
            color: #333;
            position: relative;
            z-index: 1;
        }
        .page-divider {
            width: 30px;
            height: 1px;
            background: #0090fd;
            margin: 10px auto 0;
        }
        /* 新闻列表 */
        .news-list {
            list-style: none;
        }
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        .news-item:hover {
            background: #f9f9f9;
        }
        .news-pic {
            width: 120px;
            height: 80px;
            flex-shrink: 0;
        }
        .news-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            margin-bottom: 10px;
        }
        .news-title:hover {
            color: #0090fd;
        }
        .news-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        .news-meta {
            font-size: 12px;
            color: #999;
            text-align: right;
        }
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .pagination b, .pagination a {
            padding: 6px 12px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .pagination b, .pagination a:hover,
        .pagination b, .pagination a.active {
            background: #1677ff;
            color: #fff;
            border-color: #1677ff;
        }
                /* 页面标题 */
        .page-header {
            text-align: center;
            margin-bottom: 10px;
            position: relative;
            margin-top: 10px;
        }
        .page-subtitle {
            font-size: 36px;
            font-family: Arial Black;
            color: #f0f0f0;
            margin-bottom: -15px;
        }
        .page-title {
            font-size: 24px;
            color: #333;
            position: relative;
            z-index: 1;
        }
        .page-divider {
            width: 30px;
            height: 1px;
            background: #0090fd;
            margin: 10px auto 0;
        }
        /* 新闻列表 */
        .news-li {
            list-style: none;
        }
        .news-it {
            display: flex;
            gap: 20px;
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
        }
        .news-it:hover {
            background: #f9f9f9;
        }
        .news-pi {
            width: 120px;
            height: 80px;
            flex-shrink: 0;
        }
        .news-pi img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }
        .news-co {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-ti {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            margin-bottom: 10px;
        }
        .news-ti:hover {
            color: #0090fd;
        }
        .news-de {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        .news-me {
            font-size: 12px;
            color: #999;
            text-align: right;
        }
        /* 移动端适配 */
        @media (max-width: 768px) {
            .container {
                width: 100%;
                padding: 20px;
            }
            .page-subtitle {
                font-size: 28px;
            }
            .page-title {
                font-size: 20px;
            }
            .news-item {
                flex-direction: column;
            }
            .news-pic {
                width: 100%;
                height: auto;
            }
            .news-title {
                font-size: 20px;
            }
            .page-subtitle {
                font-size: 28px;
            }
            .page-title {
                font-size: 20px;
            }
            .news-it {
                flex-direction: column;
            }
            .news-pi {
                width: 100%;
                height: auto;
            }
        }