        /* 独立的CSS类（避免与其它CSS冲突） */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        /* 容器 */
        .article-list-container {
            width: 100%;
            max-width: 1420px;
            margin: 0 auto;
            padding: 20px;
			padding-top: 165px;
        }

        /* 主栏目标题 */
        .article-list-main-title {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* 文章列表 */
        .article-list-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .article-item {
            display: flex;
            gap: 20px;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-decoration: none;
            align-items: flex-start; /* 确保内容靠上对齐 */
        }

        .article-item:hover {
            transform: scale(1.05);
        }

        /* 左侧缩略图 */
        .article-thumbnail {
            width: 188px;
            height: 106px; /* 固定16:9比例 */
            object-fit: cover;
            border-radius: 8px;
        }

        /* 右侧文章内容 */
        .article-text-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* 内容靠上对齐 */
        }

        /* 标题样式 */
        .article-title {
            font-size: 1.2em;
            color: #333;
            margin: 0;
        }

        /* 鼠标滑过标题时显示红色 */
        .article-title:hover {
            color: red;
        }

        /* 时间样式 */
        .article-time {
            font-size: 0.9em;
            color: #888;
            margin-top: 5px; /* 时间与标题之间有点空隙 */
        }

        /* 描述内容 */
        .article-description {
            font-size: 1em;
            color: #555;
            margin-top: 10px;
        }

        /* 超链接样式 */
        a {
            color: inherit;
            text-decoration: none;
        }

        /* 响应式设计：小屏设备优化 */
        @media (max-width: 768px) {
            .article-item {
                flex-direction: column;
                align-items: center;
            }

            .article-thumbnail {
                width: 100%;
                height: auto;
            }
			.article-list-container {
            width: auto;
			max-width: 100vw;
        }
        }