Skip to content

fix(route): harden njxzc, gxmzu and jou routes#22435

Open
real-jiakai wants to merge 1 commit into
DIYgod:masterfrom
real-jiakai:master
Open

fix(route): harden njxzc, gxmzu and jou routes#22435
real-jiakai wants to merge 1 commit into
DIYgod:masterfrom
real-jiakai:master

Conversation

@real-jiakai

Copy link
Copy Markdown
Contributor

Involved Issue / 该 PR 相关 Issue

Close #

Example for the Proposed Route(s) / 路由地址示例

/njxzc/tzgg
/njxzc/libtzgg
/gxmzu/aitzgg
/gxmzu/yjszsgg
/gxmzu/libzxxx
/jou/tzgg
/jou/yztzgg

New RSS Route Checklist / 新 RSS 路由检查表

  • New Route / 新的路由
  • Anti-bot or rate limit / 反爬/频率限制
    • If yes, do your code reflect this sign? / 如果有, 是否有对应的措施?
  • Date and time / 日期和时间
    • Parsed / 可以解析
    • Correct time zone / 时区正确
  • New package added / 添加了新的包
  • Puppeteer

Note / 说明

修复并重构已有的 njxzc(南京晓庄学院)、gxmzu(广西民族大学)、jou(江苏海洋大学)三个命名空间。所有改动均已在本地实测,7 条路由全部输出完整标题、正文与正确日期。

共同修复(三个命名空间)

  1. 日期解析:各站点日期格式不统一(实测存在 2026-07-012026/05/062026年07月02日2026年05月28日 14:53[发布日期:2026/06/02] 五种写法),原代码固定按 YYYY-MM-DD 解析会产生 Invalid Date。新增 parsePubDate() 用正则提取日期与可选时间,无法解析时保留列表页日期。时区统一 timezone(..., 8)
  2. 防止整个订阅源 500:原代码在正文选择器未命中时执行 load(null) 抛异常,且在 Promise.all 下单篇文章出错会拖垮整个 feed。现在对选择器命中做检查,单篇抓取失败时回退为列表页信息(失败不写入缓存)。
  3. 删除死代码@/utils/ofetch 返回解析后的 body,response.status >= 300if (!response) 判断永远不会成立,全部移除。
  4. 详情页信息覆盖加保护title / pubDate 仅在详情页成功解析时才覆盖列表值,避免空标题与 pubDate: null
  5. 站外链接不抓正文:列表中指向站外(如微信公众号)的条目直接输出标题与原文链接提示。
  6. 相对链接处理:正文内 a[href]img[src] 以文章 URL 为基准解析为绝对 URL。
  7. 描述不再包裹完整 HTML 文档:改为在原文档中操作选中节点,替代原先 load(html) 文档模式导致的 <html><body> 包裹。
  8. 代码去重与清理:原先 5 份近似复制的「列表 → 详情」脚手架合并为每个命名空间一份共享 utils;删除未使用的 ctx 参数与叙述性注释;antiCrawler 统一为 false(站点无反爬措施)。

njxzc

  • wp_pdf_player 附件转为绝对地址的「附件下载」链接(pdfsrc 为空时移除该节点)。
  • 保留校内 IP 限制检测(wp_error_msg),此类文章仅输出标题与原文链接,并在路由 description 中说明。
  • namespace url 修正为主站 www.njxzc.edu.cn(原为 lib.njxzc.edu.cn)。

gxmzu

  • 人工智能学院与研究生院共用同一套博达(vsb)模板,列表/正文样式 ID 相同(已实测确认),utils 改为选择器参数化,并将列表选择器收窄为 table.winstyle55267 tr[height="20"](原为全页面 tr[height=20])。
  • showVsbpdfIframe 脚本的正文为内嵌 PDF,无可提取内容,按原设计输出提示。
  • 图书馆路由:列表大部分为微信公众号链接(实测 24/25),按上述第 5 条回退;详情页标题改为 $('h2').first()(原 $('h2') 会拼接页面所有 h2);日期格式 [发布日期:2026/07/03] 现可正确解析。
  • namespace url 修正为主站 www.gxmzu.edu.cn(原为 ai.gxmzu.edu.cn)。

jou

  • 与 gxmzu 相同的 vsb 修复;列表行内定位不再依赖 td:eq(1) / td:eq(2) 位置索引。
  • 研招网列表日期为 2026/05/06 斜杠格式、主站为 ISO 格式,均可解析(原代码研招网日期全部 Invalid)。

无新增依赖,无需 Puppeteer。

- parse all observed date formats (ISO, slash, Chinese with optional
  time) instead of a fixed YYYY-MM-DD pattern
- fall back to list data when an article page fails or lacks content,
  instead of crashing the whole feed on cheerio load(null)
- skip content fetching for off-site links (e.g. WeChat posts)
- only override title/pubDate when found on the detail page
- resolve relative links and images against the article URL
- deduplicate the list/detail scaffold into per-namespace utils
- remove dead response.status checks, unused ctx params and noise
  comments; fix namespace URLs and antiCrawler flags
@github-actions github-actions Bot added the route label Jul 5, 2026
pubDate: timezone(parseDate(item.find(dateSelector).text().trim(), 'YYYY-MM-DD'), 8),
title: $link.attr('title') || $link.text().trim(),
link: new URL(href, pageUrl).href,
pubDate: parsePubDate($row.find(dateSelector).text()),
pubDate: timezone(parseDate(item2.find(`.${timeStyleClass1}`).text(), 'YYYY-MM-DD'), 8),
title: $link.attr('title') || $link.text().trim(),
link: new URL(href, pageUrl).href,
pubDate: parsePubDate($row.find(dateSelector).text()),
@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

Successfully generated as following:

http://localhost:1200/njxzc/tzgg - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>南京晓庄学院 -- 通知公告</title>
    <link>https://www.njxzc.edu.cn/89/list.htm</link>
    <atom:link href="http://localhost:1200/njxzc/tzgg" rel="self" type="application/rss+xml"></atom:link>
    <description>南京晓庄学院 -- 通知公告 - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>contact@rsshub.app (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Sun, 05 Jul 2026 07:04:09 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>关于2026年暑假有关工作安排的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/47/e1/26714bf34fc6b455485a5dca3b4d/70ca887a-d854-49ae-a7d3-b72448b16a54.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_xls.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/47/e1/26714bf34fc6b455485a5dca3b4d/dcb400d4-5f96-47dd-9982-5afde51a6a30.xls&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件:南京晓庄学院暑假及开学重要会议及活动安排表.xls&#39;}&quot;&gt;附件:南京晓庄学院暑假及开学重要会议及活动安排表.xls&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/39/31/c89a145713/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/39/31/c89a145713/page.htm</guid>
      <pubDate>Tue, 30 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于2026年端午节放假有关安排的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/d0/52/918f206c4336b9cdafc5abbbba77/69e9b1cb-feed-4735-b6ad-f47503df2a24.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/d0/52/918f206c4336b9cdafc5abbbba77/19a6d9b6-ec78-4305-a15b-fa765d610800.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件:南京晓庄学院2026年端午节假期值班表.docx&#39;}&quot;&gt;附件:南京晓庄学院2026年端午节假期值班表.docx&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/35/d5/c89a144853/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/35/d5/c89a144853/page.htm</guid>
      <pubDate>Mon, 08 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>考场公告</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/f9/1b/d59d102c49528e7df25944c5477e/6f4df62e-6c0d-4ba2-9966-6265ca0038de.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/35/4e/c89a144718/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/35/4e/c89a144718/page.htm</guid>
      <pubDate>Thu, 04 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>考场公告</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/70/40/a91141044fbe818b30aa5858b405/9ae559bf-684b-4514-b356-3a2b3e245706.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/32/b8/c89a144056/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/32/b8/c89a144056/page.htm</guid>
      <pubDate>Tue, 19 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于5月16-17日教师资格考试面试的考场公告</title>
      <description>&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;各学院、各部门,全体师生:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;南京市教育局、南京市社会教育考试院将我校确定为江苏省&lt;span lang=&quot;EN-US&quot;&gt;2026&lt;/span&gt;年(上)中小学教师资格考试面试的直属考点,根据考点考试组织工作的需要,学校相关教室将作为考场,考试期间相关区域实施封闭式管理,请予以配合。考场公告如下:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;&quot;&gt;一、考试时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;年&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;16&lt;/span&gt;日(周六)、&lt;span lang=&quot;EN-US&quot;&gt;17&lt;/span&gt;日(周日)。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;&quot;&gt;二、封闭区域&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;方山校区行知组团&lt;span lang=&quot;EN-US&quot;&gt;A&lt;/span&gt;、&lt;span lang=&quot;EN-US&quot;&gt;B&lt;/span&gt;、&lt;span lang=&quot;EN-US&quot;&gt;C&lt;/span&gt;、&lt;span lang=&quot;EN-US&quot;&gt;E&lt;/span&gt;、&lt;span lang=&quot;EN-US&quot;&gt;F&lt;/span&gt;楼,音乐学院、体育馆、南操场及篮球场等。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;&quot;&gt;三、封闭管理时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;年&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;15&lt;/span&gt;日(周五)&lt;span lang=&quot;EN-US&quot;&gt;17:30-5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;17&lt;/span&gt;日(周日)&lt;span lang=&quot;EN-US&quot;&gt;19:00&lt;/span&gt;(周五晚有课教室&lt;span lang=&quot;EN-US&quot;&gt;20:15&lt;/span&gt;后封闭管理)。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;&quot;&gt;四、相关事项&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;方山校区南门&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;16-17&lt;/span&gt;日(两天)作为考生进出校园的专用通道,禁止机动车辆通行,禁止通行时段为:&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;15&lt;/span&gt;日(周五)&lt;span lang=&quot;EN-US&quot;&gt;18:00&lt;/span&gt;至&lt;span lang=&quot;EN-US&quot;&gt;17&lt;/span&gt;日(周日)&lt;span lang=&quot;EN-US&quot;&gt;19:00&lt;/span&gt;。禁止通行期间,请教职工、“四工”人员、临时入校人员及车辆从学校西门或者东门(东门仅供行人和非机动车进出)出入校园。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;考试期间,封闭管理区域内仅供考试相关车辆停放。已停放车辆请于&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;15&lt;/span&gt;日(周五)&lt;span lang=&quot;EN-US&quot;&gt;17:00&lt;/span&gt;前移至校内其他停车场。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;请各学院、各部门通知到全体师生,封闭管理期间不得进入考场区域,请在封闭区域内教室进行自习的同学务必将个人物品带出考场区域。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;text-align:right;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;line-height:37px;text-align:right;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;text-align:right;&quot;&gt;院长办公室&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;line-height:37px;text-align:right;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;text-align:right;text-indent:21px;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;text-align:right;text-indent:21px;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;年&lt;span lang=&quot;EN-US&quot;&gt;5&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;13&lt;/span&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/31/d3/c89a143827/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/31/d3/c89a143827/page.htm</guid>
      <pubDate>Tue, 12 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于2026年劳动节放假有关安排的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/28/c7/bfd2b325467aa3f97be9055d3b9b/4b7ff29e-9906-42e6-9d95-20207b64d6e6.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/28/c7/bfd2b325467aa3f97be9055d3b9b/3fbf0fbc-3404-4367-acad-d7e032a3d58e.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件:南京晓庄学院2026年劳动节假期值班表.docx&#39;}&quot;&gt;附件:南京晓庄学院2026年劳动节假期值班表.docx&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/30/8e/c89a143502/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/30/8e/c89a143502/page.htm</guid>
      <pubDate>Tue, 21 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于我校学生跨校参与第十五届“挑战杯” 中国大学生创业计划竞赛江苏省选拔赛相关情况的公示</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/a1/46/98315f3449d6b7033802babf6651/83447092-7aa6-470b-afb8-279bf585002d.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/30/8d/c89a143501/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/30/8d/c89a143501/page.htm</guid>
      <pubDate>Tue, 21 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于推荐参加第十五届“挑战杯”中国大学生创业计划竞赛江苏省选拔赛项目的公示</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/ce/a4/5fc253b34185a4ab9efafe7c5ee0/1ecc3fd4-6dca-454e-8e1d-eefe1c5dfdbe.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2e/fb/c89a143099/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2e/fb/c89a143099/page.htm</guid>
      <pubDate>Thu, 16 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>南京晓庄学院2026年公开招聘高层次人才公告</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/f7/b5/53ad8e114c5185718c79d75ebe21/ce6eb990-8bd0-4304-b6c4-c3cb9ed772ad.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_xls.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/f7/b5/53ad8e114c5185718c79d75ebe21/4358ff80-8e7a-4812-989b-a754d7693433.xls&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;1南京晓庄学院2026年公开招聘高层次人才岗位信息表.xls&#39;}&quot;&gt;1南京晓庄学院2026年公开招聘高层次人才岗位信息表.xls&lt;/a&gt;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/f7/b5/53ad8e114c5185718c79d75ebe21/cb078f58-787f-47e0-ad1b-740bea23a5c1.doc&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;2南京晓庄学院高层次人才应聘登记表.doc&#39;}&quot;&gt;2南京晓庄学院高层次人才应聘登记表.doc&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2e/f2/c89a143090/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2e/f2/c89a143090/page.htm</guid>
      <pubDate>Thu, 16 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>考场公告</title>
      <description>&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;各学院、各部门,全体师生:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;南京市&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;年事业单位统一公开招聘工作人员暨定向招聘退役大学生士兵考试将于本周六进行,我校是考点院校之一。根据考点考试组织工作的需要,考试期间校内相关区域实施封闭式管理,请予以配合。具体如下:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;一、考试时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;年&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周六)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;9:00—11:30&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;二、封闭区域及封闭时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;1. 4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;17&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周五)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;19:00—4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周六)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;12:30&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;封闭行知组团&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;A&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;、&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;B&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;、&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;D&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;、&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;E&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;、&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;F&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;楼(周五晚有课教室&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;20:15&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;后封闭管理);&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;2. 4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周六)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;7:00—12:30&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;封闭南操场、篮球场。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;三、相关事项&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;1. 4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周六)方山校区南门将作为考生进出校园的专用通道,禁止机动车辆通行,禁止通行时段为&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;17&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周五)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18:00—4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;18&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日(周六)&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;12:30&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;。请教职工、&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;“&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;四工&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;”&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;人员、临时入校人员机动车辆从西门出入校园,东门仅开放行人和非机动车通道。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;2. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;请各学院、各部门务必通知到本学院、本部门全体人员,封闭管理期间不得进入封闭区域(含行知组团&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;D&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;楼&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;楼考研教室),请在封闭区域内教室进行自习的同学务必将个人物品带出考场区域。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;3. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;考试期间,为保障考试公平性,对封闭区域及其周边区域的运营商信号进行降低强度处理,关闭封闭区域校园无线网络,开启封闭区域&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;5G&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;信号屏蔽器。由此给广大师生等造成不便,敬请谅解。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;mso-line-height-rule:exactly&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;text-align:right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;院长办公室&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;text-align:right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;教师发展学院&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;text-align:right;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;年&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;月&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:16px;&quot;&gt;14&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px;&quot;&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2e/57/c89a142935/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2e/57/c89a142935/page.htm</guid>
      <pubDate>Mon, 13 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于召开南京晓庄学院八届三次教职工代表大会、工会会员代表大会的通知</title>
      <description>&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;各党委、党总支、直属党支部,各分工会:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;经校党委研究,定于&lt;span lang=&quot;EN-US&quot;&gt;2026&lt;/span&gt;年&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;19&lt;/span&gt;日(周日)召开&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;南京晓庄学院八届三次教职工代表大会、工会会员代表大会,会期一天&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;。现将会议有关事项通知如下:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;mso-list:l0 level1 lfo1;margin-left:0cm;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;一、&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;background:white;&quot;&gt;会议时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;年&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;19&lt;/span&gt;日(周日)全天&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;mso-list:l0 level1 lfo1;margin-left:0cm;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;二、&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;background:white;&quot;&gt;会议地点&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;方山校区工科楼报告厅&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;mso-list:l0 level1 lfo1;margin-left:0cm;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;三、&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;background:white;&quot;&gt;参会人员&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;mso-para- line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;margin-left:3.04gd;&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;校八届三次教代会、工代会代表、列席代表&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;mso-list:l0 level1 lfo1;margin-left:0cm;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;四、&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;background:white;&quot;&gt;会议议程&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:楷体_gb2312;background:white;&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:楷体_gb2312;background:white;&quot;&gt;预备会议&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;(&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;9:00&lt;/span&gt;开始签到&lt;/span&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;会议时间:&lt;span lang=&quot;EN-US&quot;&gt;2026&lt;/span&gt;年&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;19&lt;/span&gt;日上午&lt;span lang=&quot;EN-US&quot;&gt;9:15&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;会议地点:方山校区工科楼报告厅&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;参加人员:全体代表&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:楷体_gb2312;background:white;&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:楷体_gb2312;background:white;&quot;&gt;全体会议&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;会议时间:&lt;span lang=&quot;EN-US&quot;&gt;2026&lt;/span&gt;年&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;19&lt;/span&gt;日上午&lt;span lang=&quot;EN-US&quot;&gt;9:30&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;会议地点:方山校区工科楼报告厅&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;参加人员:全体代表、列席代表&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan;mso-list:l0 level1 lfo1;margin-left:0cm;&quot;&gt;&lt;!--[if !supportLists]--&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:黑体;&quot;&gt;五、&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=&quot;font-size:21px;font-family:黑体;background:white;&quot;&gt;相关要求&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;与会人员需着正装参会,提前&lt;span lang=&quot;EN-US&quot;&gt;15&lt;/span&gt;分钟进入会场,参加大会安排的各项议程。入场就座后,请佩戴代表证。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;会议期间,无特殊情况不得请假。代表因事、因病不能出席会议,须事先向代表团团长请假&lt;span lang=&quot;EN-US&quot;&gt;,&lt;/span&gt;并由院办报请校领导批准。列席代表请假,须履行&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;中层干部请假程序&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;请各单位通知到相关人员,并由各代表团团长于&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;17&lt;/span&gt;日(周五)中午&lt;span lang=&quot;EN-US&quot;&gt;12:00&lt;/span&gt;前将参会人员情况报至大会秘书组。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;班车安排,另行通知。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;mso-char-indent-count:2.0;line-height:37px;mso-line-height-rule:exactly;mso-pagination:widow-orphan&quot;&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;background:white;&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;line-height:37px;text-align:right;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;text-align:right;text-indent:299px;&quot;&gt;党委办公室、院长办公室&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;text-indent:43px;line-height:37px;text-align:right;&quot;&gt;&lt;span style=&quot;text-align:right;font-family:仿宋_gb2312;font-size:21px;text-indent:384px;&quot;&gt;工 &lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;text-align:right;font-family:仿宋_gb2312;font-size:21px;text-indent:384px;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;text-align:right;font-family:仿宋_gb2312;font-size:21px;text-indent:384px;&quot;&gt;会&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;text-align:right;font-family:仿宋_gb2312;font-size:21px;text-indent:384px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align:right;&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-size:21px;font-family:仿宋_gb2312;&quot;&gt;年&lt;span lang=&quot;EN-US&quot;&gt;4&lt;/span&gt;月&lt;span lang=&quot;EN-US&quot;&gt;10&lt;/span&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2e/0d/c89a142861/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2e/0d/c89a142861/page.htm</guid>
      <pubDate>Thu, 09 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>2025年度职工申领住房补贴公示</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/97/72/c23fb52c4afdaebdcd89d70b208f/ebb46520-1adc-453e-a2fc-c484e09b8e12.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/97/72/c23fb52c4afdaebdcd89d70b208f/84a13b18-b299-40cd-92cc-917d67a5ae67.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;住房补贴表格(表4).docx&#39;}&quot;&gt;住房补贴表格(表4).docx&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2c/ee/c89a142574/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2c/ee/c89a142574/page.htm</guid>
      <pubDate>Tue, 31 Mar 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于2026年清明节放假有关安排的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/70/2e/a6d7fe5044f782f63ad7e62438b3/8c7f7292-7832-45c5-acc1-5a908136b95e.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/70/2e/a6d7fe5044f782f63ad7e62438b3/22aed5d1-d0eb-4c2d-b4a1-1861f3c96a16.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件:南京晓庄学院2026年清明节假期值班表.docx&#39;}&quot;&gt;附件:南京晓庄学院2026年清明节假期值班表.docx&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/2b/fd/c89a142333/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/2b/fd/c89a142333/page.htm</guid>
      <pubDate>Wed, 25 Mar 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于线上办理档案查询利用业务的通告</title>
      <description>&lt;p&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;h1 class=&quot;western&quot; align=&quot;center&quot; style=&quot;background:#ffffff;font-weight:normal;line-height:0.5in;widows:2;orphans:2;margin-top:0in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/h1&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;为做好档案利用,满足校友考研复试、出国留学、户口迁移等对学籍档案的利用需求,学校档案室提供线上远程服务,学生无需到校即可办理。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体, simsun;&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:黑体, simhei, monospace;background:#ffffff;font-family:黑体, simhei, monospace;font-family:黑体, simhei, monospace;font-size:18px;font-size:21px&quot;&gt;一&lt;/span&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:黑体, simhei, monospace;background:#ffffff;font-family:黑体, simhei, monospace;font-family:黑体, simhei, monospace;font-size:18px;font-size:21px&quot;&gt;、&lt;/span&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:黑体, simhei, monospace;background:#ffffff;font-family:黑体, simhei, monospace;font-family:黑体, simhei, monospace;font-size:18px;font-size:21px&quot;&gt;业务内容&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;学籍档案查阅包括录取名册、学籍卡、成绩表等证明材料的电子扫描件(材料仅限中文版,不含应届毕业生)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:黑体, simhei, monospace;background:#ffffff;font-family:黑体, simhei, monospace;font-family:黑体, simhei, monospace;font-size:18px;font-size:21px&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;二、业务办理指南&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体, simsun;color:#333333;color:#333333;color:#333333;background:#ffffff;font-family:楷体, monospace;color:#333333;color:#333333;background:#ffffff;font-family:楷体, monospace;color:#333333;background:#ffffff;font-family:楷体, monospace;background:#ffffff;font-family:楷体, monospace;font-family:楷体, monospace;font-size:18px;font-size:21px&quot;&gt;(一)日常业务办理&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;margin-right:-0.14in;margin-bottom:0in;&quot;&gt;&lt;strong class=&quot;western&quot;&gt;&lt;span style=&quot;color:#333333;font-family:times new roman, serif;font-family:times new roman, serif;font-size:18px;font-size:21px&quot;&gt;&lt;span style=&quot;background:#ffffff&quot;&gt;1.&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:宋体, simsun;&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;&lt;strong class=&quot;cjk&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;发送电子邮件进行业务申请。&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;填写申请表(见附件),将需要办理材料名称和用途,毕业证书、身份证正反面扫描件及联系人、联系方式等信息发至档案室邮箱:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;das@njxzc.edu.cn。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;2.拨打办公电话进行业务确认。邮件发送后,如未能收到邮件自动回复,请拨打电话进行确认。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;业务受理后,工作人员将在5个工作日内将相关材料电子扫描件发送至来函邮箱;如需纸质材料请在业务申请时注明,工作人员采取快递到付(顺丰或EMS)的方式将纸质实体送达至用户。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;(二)假期业务办理&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;寒、暑假期间,查档时间为每周四,仅提供档案的电子版。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;margin-right:-0.14in;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;1.发送电子邮件进行业务申请。填写申请表(见附件),将需要办理材料名称和用途,毕业证书、身份证正反面扫描件及联系人、联系方式等信息发至档案室邮箱:das@njxzc.edu.cn。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;2.邮箱查收查询档案的电子版。工作人员将在收到邮件后一周内将相关材料电子扫描件发送至来函邮箱。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;服务咨询电话:025-86178198。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;服务咨询时间:9:00-11:00&amp;nbsp;&amp;nbsp;14:00-16:00(日常为工作日,寒暑假为每周四)&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;备注:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1.&lt;strong&gt;学生个人档案派遣地查询&lt;/strong&gt;,请联系学生工作处(025-86178291、 86178446);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color:#333333;font-family:&amp;quot;times new roman&amp;quot;, serif;font-size:21px;background:#ffffff;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.&lt;strong&gt;成人教育毕业生材料查询&lt;/strong&gt;,请联系教师发展学院(025-86569266)。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:left;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体, simsun;color:#333333;color:#333333;color:#333333;background:#ffffff;font-family:仿宋, monospace;color:#333333;color:#333333;background:#ffffff;font-family:仿宋, monospace;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;附件:&lt;img src=&quot;https://www.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://www.njxzc.edu.cn/_upload/article/files/6e/96/1d160a264ba78618a30f8a5c5dfe/93d874b8-6c72-451a-ba4e-f5d8063c289d.doc&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;学籍档案查询申请表.doc&#39;}&quot;&gt;学籍档案查询申请表.doc&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:center;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:center;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:center;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;&lt;span lang=&quot;zh-CN&quot;&gt;党委办公室、校长办公室&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.45in;background:#ffffff;line-height:0.39in;widows:2;orphans:2;text-align:center;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;span style=&quot;background:#ffffff;font-family:times new roman, serif;font-family:times new roman, serif;font-size:18px;font-size:21px&quot;&gt;2025&lt;/span&gt;&lt;span style=&quot;font-family:宋体, simsun;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;span style=&quot;font-family:times new roman, serif;font-size:18px;font-size:21px&quot;&gt;&lt;span style=&quot;background:#ffffff&quot;&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:宋体, simsun;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#333333;&quot;&gt;&lt;span style=&quot;font-family:times new roman, serif;font-size:18px;font-size:21px&quot;&gt;&lt;span style=&quot;background:#ffffff&quot;&gt;1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:宋体, simsun;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;background:#ffffff;font-family:仿宋, monospace;font-family:仿宋, monospace;font-size:18px;font-size:21px&quot;&gt;日&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://www.njxzc.edu.cn/bd/bb/c89a114107/page.htm</link>
      <guid isPermaLink="false">https://www.njxzc.edu.cn/bd/bb/c89a114107/page.htm</guid>
      <pubDate>Tue, 31 Dec 2024 16:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>

...

@github-actions github-actions Bot added the auto: ready to review Manual review will come in after lint issues and merge conflicts are fixed label Jul 5, 2026
@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor
http://localhost:1200/njxzc/libtzgg - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>南京晓庄学院 -- 图书馆通知公告</title>
    <link>https://lib.njxzc.edu.cn/pxyhd/list.htm</link>
    <atom:link href="http://localhost:1200/njxzc/libtzgg" rel="self" type="application/rss+xml"></atom:link>
    <description>南京晓庄学院 -- 图书馆通知公告 - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>contact@rsshub.app (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Sun, 05 Jul 2026 07:04:21 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>关于2026年端午节开放安排的通知</title>
      <description>&lt;p style=&quot;line-height:2em;&quot;&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:150%;text-align:center;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;各位读者:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;根据学校《关于&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年端午节放假有关安排的通知》精神,结合图书馆实际,现将&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年端午节图书馆开放有关事项通知如下。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;一、开放时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;19&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(星期五)端午节法定假日,图书馆闭馆一天。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(星期六)至&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;21&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(星期日),图书馆正常开放,开放时间&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;7:30~22:00&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;二、电子资源访问&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(一)图书馆所有电子资源将提&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;供&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;24&lt;/span&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;小时在线服务,如遇学校信管办数据中心建设需求进行断网调试,图书馆将第一时间通过图书馆网站和&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;图书馆&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;微信公众号发布相关通知。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(二)电子资源访问中遇到困难可联系图书馆信息服务部&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;。&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;联系方式详见“今日校园”通讯录。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;特此通知。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 图书馆&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:3.78in;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;15&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/36/96/c3773a145046/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/36/96/c3773a145046/page.htm</guid>
      <pubDate>Sun, 14 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>南京晓庄学院图书馆书目征集通知</title>
      <description>&lt;p style=&quot;line-height:2em;&quot;&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;h2 class=&quot;western&quot; align=&quot;center&quot;&gt;&lt;br&gt;&lt;/h2&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;各位师生读者:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;为进一步优化馆藏图书资源结构,丰富图书馆文献储备,切实提升图书馆服务质量与资源利用率,打造贴合师生需求的优质书香阵地。现面向全校师生开展纸质图书书目征集工作,诚邀全体师生积极推荐优质图书,共建共享优质馆藏资源。现将相关事宜通知如下:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;一、征集对象&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;全校在职教职工、在校学生(含本科生、研究生等全体在读学生)&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;二、征集图书范围&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;本次征集优先收录正规出版社出版、内容积极健康、适配校园学习生活的优质图书,具体类别如下:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;1. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;专业学术类:各学科专业教材、教学参考书、学术专著、前沿科研成果、行业标准等,适配各专业教学研究的专业书籍。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;通识素养类:涵盖人文历史、文学经典、哲学社科、艺术美学、科普科技、心理成长等提升综合素养的通识读物。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;3. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;休闲阅读类:优质中外名著、当代优秀文学作品、治愈励志读物、趣味科普、传统文化等适合师生课余阅读的正能量书籍。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;4. &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;特色需求类:师生个性化学习、兴趣拓展、创新创业所需的各类优质正版图书。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;三、征集方式&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;访问南京晓庄学院图书馆官方网站(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;lib.njxzc.edu.cn&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;),点击页面右上角服务导航栏目里的“读者荐购”。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;text-align:center;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_upload/article/images/3f/d2/c3bdf7404b1ab38b9d44cfaf10b7/7aea778b-a543-4b2b-90ea-539386dde0df.png&quot; align=&quot;BOTTOM&quot; width=&quot;447&quot; height=&quot;230&quot; border=&quot;0&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;完成统一身份认证后,选择以下任一方式提交荐购需求:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;、&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;书目荐购&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:在待订图书清单里查看图书清单,点击目标图书下方的荐购按钮即可。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:center;line-height:2em;margin-left:0.15in;margin-bottom:0in;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_upload/article/images/3f/d2/c3bdf7404b1ab38b9d44cfaf10b7/05134f3a-5836-49e3-8918-b46624660527.png&quot; align=&quot;BOTTOM&quot; width=&quot;528&quot; height=&quot;326&quot; border=&quot;0&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;、&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;自由荐购&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:按要求填写荐购图书的相关信息后提交。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:center;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_upload/article/images/3f/d2/c3bdf7404b1ab38b9d44cfaf10b7/465b2477-8874-49f2-ad8b-b99575b7165b.png&quot; align=&quot;BOTTOM&quot; width=&quot;538&quot; height=&quot;426&quot; border=&quot;0&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;、&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;院系征集&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:各学院可提供本院课程相关教学参考书书目,填写&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;院系推荐书目清单&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;(包含书名、作者、&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;ISBN&lt;/span&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;号、出版社、出版年)统一发送,可参考文末&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;书目征集附件&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; 4、征集时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;自本通知发布之日起,至&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;30&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; 5、&lt;/span&gt;联系方式&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;025—86178176 &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;连老师,张老师&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;六、其他说明&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;图书馆将对所有推荐书目进行审核、筛选,结合馆藏情况、图书质量、经费预算统筹采购。您推荐的图书经过采购加工并入藏后,您将收到图书入藏的通知,可到馆借阅。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;书目征集是优化馆藏资源、提升服务效能的重要途径,欢迎全体师生积极参与,踊跃推荐心仪好书,共同丰富校园书香资源。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 特此通知。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:3.78in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:3.78in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;a name=&quot;_GoBack&quot;&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;南京晓庄学院图书馆&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/3f/d2/c3bdf7404b1ab38b9d44cfaf10b7/06209baf-e186-4ba1-b22d-3d7e5a585d38.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;书目征集附件1:院系推荐书目清单.docx&#39;}&quot;&gt;书目征集附件1:院系推荐书目清单.docx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/35/52/c3773a144722/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/35/52/c3773a144722/page.htm</guid>
      <pubDate>Thu, 04 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于“未来学堂”数据库讲座的通知</title>
      <description>&lt;p style=&quot;line-height:2em;&quot;&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:center;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;喜迎第&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;31&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;个世界读书日系列活动,图书馆特邀请北京科恰诺斯文化传播有限公司联合举办主题为:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;“&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;AI &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;赋能教案设计,开启教育新未来”讲座。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;讲座时间:&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日(周二)下午&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;14&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;00---15&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;30&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;讲座地点:&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;图书馆二楼报告厅&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;报名方式:&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;学生请关注&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;PU&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;口袋校园平台活动报名&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;360&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;个座位(全校师生),现场签到签退,教师可直接到现场。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&lt;strong&gt;讲座内容&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; 1.&amp;nbsp;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;工具全面探索:解析&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;如何革新教案编写,介绍文心一言、豆包、&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;DeepSeek&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;等主流&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;教案设计工具的界面、注册登录及基本功能操作。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2.&amp;nbsp;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;教案设计核心技巧:讲解“定义&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;角色、提供背景信息、明确任务目标、细化具体要求”的提示词万能公式;结合实际案例模拟教案设计情景(如添加教师引导、学生预设回答等),展示如何用提示词生成高质量内容。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; 3.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;个性化教案定制实践:以语文《出师表》、物理等不同学科、年级课程为例,指导如何利用&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;AI&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;定制个性化教案。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;4.“&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;未来学堂”数据库平台应用:介绍平台内教学文案库、动画及仿真教具库、教学素材库、案例库、微课示范库等资源的使用方法,演示如何搜索、筛选、下载资源用于教案设计。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.29in;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;欢迎师范生和有志于从教的学生踊跃报名,欢迎感兴趣的教师参与,谢谢!&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:7.11in;text-align:right;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;图书馆 &amp;nbsp;教务处&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;28&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/34/01/c3773a144385/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/34/01/c3773a144385/page.htm</guid>
      <pubDate>Wed, 27 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>“馆藏添彩・感恩母校——毕业生图书捐赠活动”通知</title>
      <description>&lt;p style=&quot;line-height:2em;&quot;&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;h1 class=&quot;western&quot; align=&quot;center&quot; style=&quot;line-height:0.13in;widows:2;orphans:2;margin-top:0in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/h1&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;全体毕业生同学:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;你们好!&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 class=&quot;western&quot; style=&quot;text-indent:0.44in;widows:2;orphans:2;line-height:2em;margin-top:0in;margin-bottom:0in;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span style=&quot;font-weight:normal;line-height:2em;&quot;&gt;为传承校园书香文化,倡导绿色离校,丰富图书馆馆藏资源,充分体现毕业生感恩母校、薪火相传的良好风尚,图书馆举办&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span style=&quot;font-weight:normal;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span style=&quot;font-weight:normal;line-height:2em;&quot;&gt;届毕业生图书捐赠活动。现将有关事宜通知如下:&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;一、捐赠时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;2026 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;年 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;5 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;月 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;日 —&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;6 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;月 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;15&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;日(工作日&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;9:00—15:00&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;二、捐赠对象&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;全体 &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;2026 &lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;届毕业生&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;三、捐赠范围&lt;/span&gt;&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;教材教辅、专业参考书、考研考公资料、工具书、文学名著、历史哲学、艺术科普、励志成长等正式出版图书。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;图书内容健康、品相完好,无严重破损、缺页、污渍、涂鸦。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;不接收:盗版图书、期刊杂志、破损严重书籍。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;四、捐赠方式&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;到馆捐赠:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;请携带书籍至图书馆南门一楼大厅捐赠点,填写登记表。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;预约捐赠:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;个人捐赠图书资料在&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;20&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;本以上,可直接联系图书馆工作人员协商确定上门接收捐赠服务。&lt;/span&gt;&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;预约捐赠联系人:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;资源建设部 :连老师,张老师,联系电话:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;025-86178176 &lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;公共服务部 :刘老师,联系电话:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;025-86178173&lt;/span&gt;&lt;/p&gt;&lt;ol start=&quot;2&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;预约时间:周一至周五 &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;9:00-15:00&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;请拟捐赠图书的同学在交接图书的时候附上捐赠书目单,书目单上注明您的姓名、院系、捐赠图书的题名和数量等信息,方便图书馆与您联系。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;五、回馈与纪念&lt;/span&gt;&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;图书馆将为所有捐赠者颁发捐赠纪念证书。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;图书馆将在公众号公布捐赠名单,设立捐赠光荣榜。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;六、联系方式&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;资源建设部:&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;025-86178176&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;公共服务部:&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;025-86178173&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:3.56in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:4.44in;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;图书馆 &lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;19&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312, monospace;font-size:21px;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/32/8b/c3773a144011/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/32/8b/c3773a144011/page.htm</guid>
      <pubDate>Mon, 18 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>“你选书,我买单”——图书馆诚邀广大读者参与2026年春季线上图书荐购</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/3d/ef/64782c4c423987b54fae2a189e66/125aca6a-906e-4292-8de7-287cdcaabc53.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/2a/b7/c3773a142007/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/2a/b7/c3773a142007/page.htm</guid>
      <pubDate>Wed, 18 Mar 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>超星系列数据库培训通知</title>
      <description>&lt;p style=&quot;line-height:2em;&quot;&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;h1 class=&quot;western&quot; align=&quot;center&quot; style=&quot;background:#ffffff;line-height:0.5in;margin-top:0in;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/h1&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;一、培训主题:图书馆“宝藏”解锁:超星数据库与馆藏资源的联动利用&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;二、培训时间:&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;17&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;日&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;14&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;00--15&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;:&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;30&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;三、培训地点:图书馆二楼报告厅&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;四、培训对象:全校师生&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;五、请关注&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;PU&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;口袋校园平台活动报名&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;六、主讲人:超星集团——宋琳&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;七、培训内容:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;读秀学术搜索的使用&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;通过读秀学术搜索实现图书馆的一站式资源检索;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;通过读秀学术搜索如何找到、得到一本书;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;通过读秀学术搜索实现图书馆图书的文献传递;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;通过读秀学术搜索进行知识点的全文搜索。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;学习通(移动图书馆)的使用&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;学习通下载及登录步骤;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;学习通首页界面组成及检索功能;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;借阅证绑定及馆藏查询、资源检索等;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;消息、笔记、小组功能介绍;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;超星中文发现系统的使用&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.33in;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;发现系统的多维分面聚类、智能辅助检索、立体引文分析、展现知识关联、揭示学术趋势等。超星发现以近十亿海量元数据为基础,利用数据仓储、资源整合、知识挖掘、数据分析、文献计量学模型等相关技术,较好地解决了复杂异构数据库群的集成整合&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;完成高效、精准、统一的学术资源搜索,进而通过分面聚类、引文分析、知识关联分析等实现高价值学术文献发现、纵横结合的深度知识挖掘、可视化的全方位知识关联。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; 4.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;百链云图书馆&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;百链是资源补缺型服务产品。目前,百链实现&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;500&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;个中外文数据库系统集成,利用百链云服务可以获取到&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;1800&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;多家图书馆几乎所有的文献资料,为读者提供更加方便、全面的获取资源服务。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; 5.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;超星汇雅电子书&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;电子图书总量在&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;100&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;万种以上,涵盖中图分类法&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;22&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;个大类。每年图书的更新量超过&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;5-7&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;万种。汇雅电子书采用国家&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;863&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;数字图书馆示范工程的标准&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;PDG&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;格式,最大限度&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;地&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;保证图书的原文原貌,图书完整、整洁、无歪斜或黑边等质量问题。同时,图书在网络传输中采用单页传送而不是整本传送技术,大大节约了读者看书的等待时间,同时也提高了图书的利用效率。读者可以根据自己的需要去选择图书当中的个别页码进行阅读。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;line-height:2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp; 6.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;馆藏加工平台&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;background:#ffffff;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;为充分发挥图书馆馆藏资源的利用效率,解决纸本图书复本量有限的利用矛盾,最大程度方便全校师生利用图书馆资源,图书馆对馆藏纸本图书进行了数字化,建成“馆藏数字化平台”。全校师生可在该平台对馆藏纸本图书进行检索、试读、传递全文。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.33in;background:#ffffff;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;line-height:2em;&quot;&gt;&lt;span lang=&quot;zh-CN&quot; style=&quot;line-height:2em;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;图书馆&lt;/span&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312;font-size:21px;line-height:2em;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.33in;background:#ffffff;text-align:right;line-height:2em;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;font-family:仿宋_gb2312, serif;font-size:21px;line-height:2em;&quot;&gt;2026.3.12&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/28/a8/c3773a141480/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/28/a8/c3773a141480/page.htm</guid>
      <pubDate>Wed, 11 Mar 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于发布南京晓庄学院2026年寒假阅读暨书评大赛推荐书目的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/01/a9/6e50d8a0452fb69f4d255b8438e9/8e1c3634-f12c-4dff-9114-67c693ed9711.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;p&gt;&lt;/p&gt;&lt;p style=&quot;font-size:14px;text-wrap-mode:wrap;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_ueditor/themes/default/images/icon_pdf.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/01/a9/6e50d8a0452fb69f4d255b8438e9/fb0bc162-346a-4590-90c4-bae508b74865.pdf&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件1:南京晓庄学院2026年寒假通识推荐书目.pdf&#39;}&quot;&gt;附件1:南京晓庄学院2026年寒假通识推荐书目.pdf&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;font-size:14px;text-wrap-mode:wrap;&quot;&gt;&lt;img src=&quot;https://lib.njxzc.edu.cn/_ueditor/themes/default/images/icon_pdf.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/01/a9/6e50d8a0452fb69f4d255b8438e9/43bfe8a9-cea2-4c1c-b7ab-48c45d091732.pdf&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件2-“学习通”电子书阅读指南.pdf&#39;}&quot;&gt;附件2-“学习通”电子书阅读指南.pdf&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/25/e3/c3773a140771/page.htm</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/25/e3/c3773a140771/page.htm</guid>
      <pubDate>Wed, 14 Jan 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>关于进一步规范教职工使用个人教科研经费购买图书入库报销的通知</title>
      <description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/86/7e/129680e54ebfb7a8ae245c9e13d7/a996656f-47db-4f2f-a795-a179e1aac508.pdf&quot;&gt;附件下载&lt;/a&gt;&lt;/p&gt;&amp;nbsp;&lt;img src=&quot;https://lib.njxzc.edu.cn/_ueditor/themes/default/images/icon_doc.gif&quot; isupload=&quot;true&quot; referrerpolicy=&quot;no-referrer&quot;&gt;&lt;a href=&quot;https://lib.njxzc.edu.cn/_upload/article/files/86/7e/129680e54ebfb7a8ae245c9e13d7/b23b2316-8de3-4d3d-b018-cca019801e78.docx&quot; sudyfile-attr=&quot;{&#39;title&#39;:&#39;附件:个人教学科研类图书入库报销凭据.docx&#39;}&quot;&gt;附件:个人教学科研类图书入库报销凭据.docx&lt;/a&gt;&lt;p&gt;&lt;/p&gt;</description>
      <link>https://lib.njxzc.edu.cn/_redirect?siteId=38&amp;columnId=3773&amp;articleId=140583</link>
      <guid isPermaLink="false">https://lib.njxzc.edu.cn/_redirect?siteId=38&amp;columnId=3773&amp;articleId=140583</guid>
      <pubDate>Sun, 04 Jan 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>图书馆关于2026年元旦开放安排的通知</title>
      <description>&lt;p&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;/style&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:150%;text-align:center;margin-bottom:0in;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;color:#000000;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;各位读者:&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;color:#000000;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;根据学校《关于&lt;/span&gt;&lt;span style=&quot;color:#000000;font-size:18px;font-size:21px&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:宋体;color:#000000;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;年元旦放假有关安排的通知》精神,结合图书馆实际,现将&lt;/span&gt;&lt;span style=&quot;color:#000000;font-size:18px;font-size:21px&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:宋体;color:#000000;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;color:#000000;font-family:仿宋_gb2312;color:#000000;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;年元旦图书馆开放有关事项通知如下。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;font-family:宋体;color:#000000;color:#000000;color:#000000;font-family:黑体;color:#000000;color:#000000;font-family:黑体;color:#000000;font-family:黑体;font-family:黑体;font-size:18px;font-size:21px&quot;&gt;一、开放时间&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;western&quot; style=&quot;text-indent:0.44in;line-height:0.39in;margin-bottom:0in;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;&lt;span style=&quot;font-size:18px;font-size:21px&quot;&gt;2026&lt;/span&gt;&lt;span style=&quot;font-family:宋体;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;年&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;&quot;&gt;&lt;span style=&quot;font-size:18px;font-size:21px&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;font-family:宋体;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color:#000000;&quot;&gt;&lt;span style=&quot;font-size:18px;font-size:21px&quot;&gt;1&lt;/span&gt;&lt;span style=&quot;font-family:宋体;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-family:仿宋_gb2312;font-size:18px;font-size:21px&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;color:#0

...

@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor
http://localhost:1200/gxmzu/aitzgg - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>广西民族大学人工智能学院 -- 通知公告</title>
    <link>https://ai.gxmzu.edu.cn/index/tzgg.htm</link>
    <atom:link href="http://localhost:1200/gxmzu/aitzgg" rel="self" type="application/rss+xml"></atom:link>
    <description>广西民族大学人工智能学院 -- 通知公告 - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>contact@rsshub.app (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Sun, 05 Jul 2026 07:04:34 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>2026年第二届机器视觉、智能成像与模式识别系统国际学术会议(MVIIPR 2026)通知</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://ai.gxmzu.edu.cn/info/1003/46531.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/46531.htm</guid>
      <pubDate>Wed, 01 Jul 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学人工智能学院2026年招生简章</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://ai.gxmzu.edu.cn/info/1003/46291.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/46291.htm</guid>
      <pubDate>Thu, 25 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>2026年广西民族大学人工智能学院全日制本科学生转专业拟录取名单公示</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 21px;background: rgb(255, 255, 255)&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;经学生个人报名,学院考核,拟同意接收陈扬睿同学转专业至我院计算机科学与技术专业。现将详细信息进行如下公示,公示期为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;3天(6月10日-6月12日)。如对公示内容有异议,请于公示期内反馈给人工智能学院教学办,电话:3262912。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
        &lt;p&gt;
        &lt;/p&gt;&lt;ul style=&quot;list-style-type:none;&quot;&gt;
        &lt;li&gt;附件【&lt;a href=&quot;https://ai.gxmzu.edu.cn/system/_content/download.jsp?urltype=news.DownloadAttachUrl&amp;amp;owner=1031458027&amp;amp;wbfileid=14941216&quot; target=&quot;_blank&quot;&gt;人工智能学院2026年转专业拟录取名单.pdf&lt;/a&gt;】已下载&lt;span id=&quot;nattach14941216&quot;&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;p&gt;&lt;/p&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/45861.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/45861.htm</guid>
      <pubDate>Wed, 10 Jun 2026 03:59:00 GMT</pubDate>
    </item>
    <item>
      <title>人工智能学院2026届硕士研究生申请毕业审批名单公示</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;根据研〔&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026〕3号 研究生院关于做好2026届研究生毕业工作的通知,我院2026届硕士预毕业生通过课程考核、论文盲审、答辩等程序,将于2026年6月底毕业,现将准予毕业硕士研究生名单予以公示,公示期为三天,从2026年6月5日至7日。任何单位或者个人对准予毕业硕士研究生的情况持有异议请于2026年6月7日下午18:00前以书面形式并署真实姓名反映到教学办李老师处(联系电话:0771-3262912)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px;&quot;&gt;附:人工智能学院&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px;&quot;&gt;2026届硕士研究生申请毕业审批名单&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:right;text-indent:43px;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;人工智能学院&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:right;text-indent:43px;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2026年6月5日&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
        &lt;p&gt;
        &lt;/p&gt;&lt;ul style=&quot;list-style-type:none;&quot;&gt;
        &lt;li&gt;附件【&lt;a href=&quot;https://ai.gxmzu.edu.cn/system/_content/download.jsp?urltype=news.DownloadAttachUrl&amp;amp;owner=1031458027&amp;amp;wbfileid=14940640&quot; target=&quot;_blank&quot;&gt;人工智能学院2026届硕士研究生申请毕业审批名单.xlsx&lt;/a&gt;】已下载&lt;span id=&quot;nattach14940640&quot;&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;p&gt;&lt;/p&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/45831.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/45831.htm</guid>
      <pubDate>Fri, 05 Jun 2026 01:00:00 GMT</pubDate>
    </item>
    <item>
      <title>人工智能学院2026年硕士学位申请名单公示</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-align:center;&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;text-indent:43px;padding:0 0 0 0 ;text-autospace:ideograph-numeric;text-justify:inter-ideograph;line-height:37px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;根据研〔&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026〕32号 研究生院关于做好2026年上半年研究生学位论文答辩工作的通知,我院2026届硕士预毕业生通过课程考核、论文盲审、答辩等程序,将于2026年6月底取得工学硕士学位,现将申请硕士学位研究生名单予以公示,公示期三天,从2026年6月3日至5日。任何单位或者个人对申请硕士学位研究生的情况持有异议请于2026年6月5日18:00前以书面形式并署真实姓名反映到教学办李老师处(联系电话:0771-3262912)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;text-indent:43px;padding:0 0 0 0 ;text-autospace:ideograph-numeric;text-justify:inter-ideograph;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;text-indent:43px;padding:0 0 0 0 ;text-autospace:ideograph-numeric;text-justify:inter-ideograph;line-height:37px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;附:人工智能学院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年硕士学位申请名单&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: right; margin: 0px 0px 0px 405px; padding: 0px; line-height: 37px;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span style=&quot;font-family:仿宋&quot;&gt;人工智能学院&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: right; margin: 0px 0px 0px 405px; padding: 0px; line-height: 37px;&quot;&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2026年6月3日&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
        &lt;p&gt;
        &lt;/p&gt;&lt;ul style=&quot;list-style-type:none;&quot;&gt;
        &lt;li&gt;附件【&lt;a href=&quot;https://ai.gxmzu.edu.cn/system/_content/download.jsp?urltype=news.DownloadAttachUrl&amp;amp;owner=1031458027&amp;amp;wbfileid=14940248&quot; target=&quot;_blank&quot;&gt;人工智能学院2026年硕士学位申请名单.pdf&lt;/a&gt;】已下载&lt;span id=&quot;nattach14940248&quot;&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;p&gt;&lt;/p&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/45801.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/45801.htm</guid>
      <pubDate>Wed, 03 Jun 2026 07:00:00 GMT</pubDate>
    </item>
    <item>
      <title>人工智能学院本科生校内转专业考核选拔办法</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-align:center;&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;span style=&quot;line-height: 150%; font-size: 20px; font-family: 方正仿宋简体;&quot;&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; text-indent: 2em;&quot;&gt;&lt;span style=&quot;line-height: 150%; font-size: 20px; font-family: 方正仿宋简体;&quot;&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family: 仿宋; line-height: 150%; font-size: 18px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;&amp;nbsp;为贯彻落实教育部关于《普通高等学校学生管理规定》(教育部&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;41号令)精神,深入推进教学改革,全面调动学生的学习积极性、主动性和创造性,鼓励学生个性发展,营造有利于人才成长的学习环境,根据《广西民族大学全日制本科学生转专业管理办法(2024修订)》(民大教〔2024〕46号)的精神,本着公开、公平、公正的原则,结合学院实际情况,特制定本办法。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:方正仿宋简体;line-height:150%;font-size:21px&quot;&gt;一、组织机构及职责&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-indent:43px;text-autospace:ideograph-numeric;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;学院成立转专业工作领导小组,学院院长担任组长,成员由分管教学副院长和系部(中心)主任组成,人数不少于&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;6人。工作领导小组负责对整个转专业工作进行领导和监督;负责确定各专业命题人员和考核小组成员名单;负责审核各专业考核小组结果,确定拟接收的转专业学生名单。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-indent:43px;text-autospace:ideograph-numeric;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;考核小组,设组长&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;1人,由分管教学副院长担任,成员人数不应少于5人,包括考核考官、记录员、监督员。考核考官由责任心强、教学经验丰富、具有副高及以上职称或博士学位的专业教师担任。考核小组负责对申请转专业的候选学生进行综合考核。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-indent:32px;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:方正仿宋简体;line-height:150%;font-size:21px&quot;&gt;二、转专业学生考核选拔流程&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; text-indent: 2em;&quot;&gt;&lt;strong&gt; &lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 方正仿宋简体;line-height: 150%;font-size: 20px&quot;&gt;(一)转出学生资格审核与报送:&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;符合条件并有转专业意愿的大一学生填写转专业申请表,在规定时间内将申请表递交人工智能学院教学办公室;学院转专业工作领导小组根据《广西民族大学全日制本科学生转专业管理办法》进行审核,学生自行将申请表及相关材料,交转入学院教学办公室。转出学生的后续相关工作按照学校相关通知进行。&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 方正仿宋简体;line-height: 150%;font-size: 20px&quot;&gt;(二)转入学生的考核选拔:&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;收到有意向转入我院学生交来的完整材料后,及时安排组织选拔考核。转入学生的考核选拔按学生综合考核成绩排序,择优录取。本学院内转专业不需要降级,跨学院转专业需降至&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026级。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;1. 所需审核材料如下:&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;大一上学期成绩单(纸质版);&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;广西民族大学全日制本科学生转专业申请表。&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;缺少材料的将不安排考核。材料纸质版于&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年6月3日下午6点前交人工智能学院教学办(博达楼201)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;2.成绩评定具体规则如下:&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;综合考核满分为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;100分(笔试+面试),对于综合考核成绩低于60分者视为考核不合格,学院不予接收。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;综合考核的考察要点:&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;综合考核主要考察学生对拟转入专业领域的认知程度、专业基础知识、学习规划、综合素质、解决问题思路及已修课程学习情况等。&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%;background:rgb(255,255,255)&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 方正仿宋简体;line-height: 150%;font-size: 20px&quot;&gt;三、本办法解释权归属&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; background: rgb(255, 255, 255); text-indent: 2em;&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&amp;nbsp;本办法由人工智能学院转专业工作领导小组负责解释。&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:justify;margin-bottom:0;text-justify:inter-ideograph;line-height:150%;background:rgb(255,255,255)&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align:right;margin-bottom:0;line-height:150%;background:rgb(255,255,255)&quot;&gt;&lt;span style=&quot;font-family:仿宋;line-height:150%;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;联系人:何老师&lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;font-family:仿宋&quot;&gt;联系电话:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;3262912&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: justify; margin-bottom: 0px; line-height: 150%; text-indent: 2em;&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/45641.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/45641.htm</guid>
      <pubDate>Mon, 01 Jun 2026 07:00:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学人工智能学院2026年硕士研究生招生调剂拟录取名单公示</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;各位考生:&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;现将我院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年硕士研究生招生调剂拟录取名单予以公示(详见附件)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;公示时间:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年4月15&lt;/span&gt;&lt;/span&gt; &lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日至&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;4月17&lt;/span&gt;&lt;/span&gt; &lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;3日)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;公示期间联系电话及邮箱:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;0&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;771-3262912&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;409835772@&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;qq.com&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;公示期间监督电话及邮箱:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3262629&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;font-family:仿宋&quot;&gt;291560542@qq.com &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:47px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;公示期间,对拟录取公示名单如有疑问,请直接向各拟录取招生学院咨询反映;对拟录取公示名单有异议,请以书面形式向我校研究生院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(0771-3262606,yzb@gxmzu.edu.cn)或纪委办公室(0771-3260100,&lt;/span&gt;&lt;a href=&quot;mailto:gxunjw@gxun.edu.cn&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;gxunjw@gxmzu.edu.cn&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;)反映&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;,反映意见请署真实姓名及联系方式&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:47px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;学校还将进一步审查考生各方面的材料,若拟录取考生存在不符合录取条件的情况,将按规定取消录取资格。拟录取名单经公示无异议后,上报广西招生考试院及教育部,并经录取检查通过,考生方可获得正式录取资格。&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;附件:&lt;/span&gt;&lt;a name=&quot;OLE_LINK1&quot;&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;人工智能学院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年硕士研究生招生调剂拟录取名单&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:41px&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent: 256px; text-align: right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px;background:rgb(255,255,255)&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;广西民族大学人工智能学院&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-align: right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px;background:rgb(255,255,255)&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年4月15 日&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
        &lt;p&gt;
        &lt;/p&gt;&lt;ul style=&quot;list-style-type:none;&quot;&gt;
        &lt;li&gt;附件【&lt;a href=&quot;https://ai.gxmzu.edu.cn/system/_content/download.jsp?urltype=news.DownloadAttachUrl&amp;amp;owner=1031458027&amp;amp;wbfileid=14933532&quot; target=&quot;_blank&quot;&gt;人工智能学院2026年硕士研究生招生调剂拟录取名单.pdf&lt;/a&gt;】已下载&lt;span id=&quot;nattach14933532&quot;&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;p&gt;&lt;/p&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/43551.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/43551.htm</guid>
      <pubDate>Wed, 15 Apr 2026 02:06:00 GMT</pubDate>
    </item>
    <item>
      <title>人工智能学院2026年硕士生招生复试结果公布</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://ai.gxmzu.edu.cn/info/1003/43511.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/43511.htm</guid>
      <pubDate>Fri, 10 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学人工智能学院2026年硕士研究生招生调剂复试名单</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://ai.gxmzu.edu.cn/info/1003/43501.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/43501.htm</guid>
      <pubDate>Wed, 08 Apr 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学人工智能学院师德师风监督举报方式</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;学院主动接受广大学生、家长和社会的监督,并按程序受理、核查和处理教师违反师德师风行为。如有发现广西民族大学人工智能学院教职工的师德失范行为,可以通过以下方式举报:&lt;/span&gt;&lt;/span&gt; &lt;/p&gt;
        &lt;p style=&quot;text-indent:28px;text-autospace:ideograph-numeric&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;举报电话:&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;0771-3262629 &lt;/span&gt; &lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;举报邮箱:&lt;/span&gt;&lt;a href=&quot;mailto:rgznxyjw@gxmzu.edu.cn&quot;&gt;&lt;span style=&quot;font-family:&#39;times new roman&#39;;color:rgb(0,0,0);font-size:21px&quot;&gt;rgznxyjw@gxmzu.edu.cn&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;br&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;注意事项:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:Times New Roman&quot;&gt;1.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;举报内容为:教师违反《新时代高校教师职业行为十项准则》的行为。&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:Times New Roman&quot;&gt;2.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;举报一般应为实名举报、以书面方式提出,并提供相应证明材料。举报人应积极配合调查。接到举报的单位或部门应严格履行保密义务。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:Times New Roman&quot;&gt;3.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;对有明确的被投诉举报对象且有涉嫌师德失范具体事实、证据或者明确线索的投诉举报,予以受理。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:Times New Roman&quot;&gt;4.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;对投诉举报事项已处理,举报人在无新证据或者新线索的情况下就同一事实或者理由重复投诉举报的,不予受理。&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:Times New Roman&quot;&gt;5.&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;举报人应当据实提供被举报人的姓名、工作单位、违反师德的事实及具体情节、相应的证据及线索,包括事实发生的时间、地点,所涉及的相关单位和知情人,以及知情人的身份、单位和联系电话等。&lt;/span&gt; &lt;/span&gt;&lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: &#39;times new roman&#39;;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;6.举报人应承诺反映的情况客观真实并对所提供材料的真实性负责,无夸大、歪曲、诬告、捏造等。如有借举报故意捏造事实,诬告陷害他人的或者以举报为名制造事端,干扰学校正常工作的,依照有关法律法规严肃处理。&lt;/span&gt;&lt;/span&gt; &lt;/p&gt;
        &lt;p style=&quot;text-indent:43px;text-autospace:ideograph-numeric&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;&lt;br clear=&quot;all&quot; style=&quot;page-break-before:always&quot;&gt;&lt;/span&gt;&lt;/p&gt;
        &lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
      </description>
      <link>https://ai.gxmzu.edu.cn/info/1003/46241.htm</link>
      <guid isPermaLink="false">https://ai.gxmzu.edu.cn/info/1003/46241.htm</guid>
      <pubDate>Tue, 04 Mar 2025 11:21:00 GMT</pubDate>
    </item>
  </channel>
</rss>

...

@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor
http://localhost:1200/gxmzu/yjszsgg - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>广西民族大学研究生院 -- 招生公告</title>
    <link>https://yjs.gxmzu.edu.cn/tzgg/zsgg.htm</link>
    <atom:link href="http://localhost:1200/gxmzu/yjszsgg" rel="self" type="application/rss+xml"></atom:link>
    <description>广西民族大学研究生院 -- 招生公告 - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>contact@rsshub.app (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Sun, 05 Jul 2026 07:04:41 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>广西民族大学关于2026级拟录取硕士研究生确认录取通知书寄送信息及办理调档等事宜的通知</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-align: left; line-height: 37px;&quot;&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px;&quot;&gt;202&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 21px;&quot;&gt;级拟录取硕士研究生:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;我校&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;202&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;级硕士研究生录取通知书预计于&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;6月中下旬陆续寄出,现将录取通知书邮寄信息确认、办理调档等相关事项说明如下,请各位考生认真阅读并按照要求及时完成相关工作:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;一、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;确认录取通知书邮寄信息&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;请登录&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_mas.html&quot; target=&quot;_blank&quot; style=&quot;color: rgb(0, 176, 240); font-family: 仿宋; font-size: 21px; text-decoration: underline;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;广西民族大学硕士研究生招生服务系统&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_mas.html&quot; target=&quot;_blank&quot; style=&quot;text-decoration: underline; font-family: 仿宋; font-size: 21px;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;https://yjszs.gxmzu.edu.cn/login_mas.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;),认真核对并确认本人录取通知书邮寄信息,以确保录取通知书等材料能顺利寄达。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;录取通知书等重要材料依照此地址邮寄,请务必重视。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;“通知书邮寄地址”(&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;非常重要&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;)必须填写详细(如:广西南宁市大学东路&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;188号广西民族大学&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;求是楼&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;311&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;办公室),省(直辖市、自治区)、具体地址、具体门牌号等一定要写清楚,不能只填写学校或单位名称,以免造成投递失败;地址也不得填写自取或空白。收件人移动电话(&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;非常重要&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;)须确保畅通。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;各位考生接收录取材料的&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“通讯地址”和“联系方式”默认为网上报名时在研招网填写的数据,若因毕业已离校、家庭住址或手机号码变更等原因需变更信息的,请在202&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;5月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;28&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日至&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;6月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;日期间修改,逾期不再受理。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;特别提醒:各位考生务必在规定时间内&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;登录&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;系统,&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;认真核对、谨慎修改&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;。&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;若因邮寄地址不完整或错误造成无法收到录取通知书&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;的,&lt;/span&gt;&lt;span style=&quot;font-family:黑体;color:rgb(255,0,0);font-size:21px&quot;&gt;后果由考生自行承担。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;录取通知书预计于&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;月中下旬寄发(寄发时间另行通知),届时将提供快递单号查询。&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;二、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;调档相关事项&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:28px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(一)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;需要调档的考生&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;以下考生,须将其人事档案调进我校:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;录取类别为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“11非定向就业”的考生。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;录取类别为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“12定向就业”的以下考生。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:46px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(1)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;少数民族高层次骨干人才计划的非在职考生。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:46px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(2)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;享受少数民族照顾政策的普通高校应届本科毕业生考生。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;注:我校全日制应届本科毕业生调档工作,由研究生院协调统一调取。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:28px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(二)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;不需要调档的考生&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;录取类别为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“12定向就业”的考生(少数民族高层次骨干人才计划的非在职考生和享受少数民族照顾政策的普通高校应届本科毕业生考生除外),一律不调取人事档案。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:28px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(三)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;调档函&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;为方便考生及时办理档案转移,我校使用电子版的调档函。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;下载网址:&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_mas.html&quot; target=&quot;_blank&quot;&gt;广西民族大学硕士研究生招生服务系统&lt;/a&gt;(&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_mas.html&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);font-size: 21px&quot;&gt;https://yjszs.gxmzu.edu.cn/login_mas.html&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;下载时间:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;202&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;28&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;—6月30日。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;对象:需要调档的考生(除我校全日制应届本科毕业生外)。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;考生在下载打印调档函前,请认真核对档案所在单位名称,确认无误后再下载本人调档函,&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(255, 0, 0);font-size: 21px&quot;&gt;彩色打印后&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;交给档案所在单位(本科毕业院校、人才交流中心、人事局、教育局、所在工作单位等),由档案所在单位进行档案的邮寄和组织关系的转接。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:28px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(四)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;调档函使用说明&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;电子版调档函与纸质版调档函具有同等效力,原则上不再另行邮寄纸质版调档函,请各档案管理部门予以协助支持。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;为切实服务考生,如果考生档案所在单位确实不接收彩打调档函的,&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;考生请在&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;202&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;6&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;5月&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;28&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;—6月&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;4&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;日期间登录&lt;/span&gt;&lt;/strong&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn:8088/&quot;&gt;&lt;strong&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);font-size: 21px&quot;&gt;广西民族大学硕士研究生招生服务系统&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(192, 0, 0);font-size: 21px&quot;&gt;申请纸质盖章版的调档函,逾期不再受理&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;。学校根据考生申请,将纸质盖章版的调档函随录取通知书一并寄出。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;特别提醒:&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;建议考生尽快与档案所在单位确认,不要到申请时间快结束了才与档案所在单位联系确认,以免因联系不上错过申请纸质盖章版调档函时间。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;请考生督促档案所在单位严格按照调档函要求按时完成调取档案工作,&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(255, 0, 0);font-size: 21px&quot;&gt;同时提醒档案所在单位邮寄前务必将调档函下方的考生信息条沿虚线剪下后将其贴在考生档案袋正面上方(非邮寄信封袋)&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;。逾期档案未寄达我校的,不予接收。按学校相关规定,档案未寄达者不得参加在读期间的奖助学金评定,由此造成的后果由本人自负。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;档案一经调入我校后,在读期间若无特殊原因,一律不允许调出。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:28px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(五)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;人事档案接收信息&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;档案接收时间及方式:需要调档的拟录取考生须在&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;202&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;月&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;10&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日前通过邮政&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;EMS学生档案或机要通道(我校不接受其他寄送方式),将人事档案寄送至我校。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;档案接收地址:广西南宁市大学东路&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;188号&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;求是楼&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;311室&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;接收单位:广西民族大学研究生院档案室&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;接收人:韦老师&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;电话:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3262606&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;三、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;党组织关系及党员档案转接&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-indent: 45px;line-height: 37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;所有需调档的新生党员要主动向录取学院报告党员身份,并在开学时将组织关系转到我校。&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;报到时,应主动向学院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;说明组织关系转接情况,各学院联系方式:&lt;a href=&quot;https://yjs.gxmzu.edu.cn/info/1081/16084.htm&quot; target=&quot;_blank&quot;&gt;广西民族大学各学院研招办联系方式&lt;/a&gt;(&lt;/span&gt;&lt;a href=&quot;https://yjs.gxmzu.edu.cn/info/1081/16084.htm&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:19px&quot;&gt;https://yjs.gxmzu.edu.cn/info/1081/16084.htm&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;)。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;1&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;.&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;广西壮族自治区内的新生党员&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;原单位通过&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“全国党员管理信息系统”从网上完成新生党员党组织关系转接,去向为录取的学院&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;名称(如&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“中共广西民族大学经济学院委员会”),并在开学时到相应学院&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;报到。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;2&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;.&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;广西壮族自治区范围以外的新生党员&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;1)优先采用“全国党员管理信息系统”转接。原单位党组织通过“全国党员管理信息系统”的“跨省转接”途径从网上完成新生党员党组织关系转接,去向为录取的学院&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;名称(如&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“中共广西民族大学经济学院委员会”)。该途径需转接双方在系统确认是否实现互通。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2)线下采用纸质介绍信转接。如无法通过系统转接,则需持原党组织关系所在单位组织部门开具的《中国共产党党员组织关系介绍信》到录取学院报到,其中介绍信抬头为“中共广西民族大学委员会组织部”,“去往单位”为录取的学院&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;名称(如&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“中共广西民族大学经济学院委员会”)。开学时将纸质介绍信交录取的学院&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;审核。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;3.党员档案转接&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;学生党员档案应随个人人事档案(学籍档案)通过&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;邮政&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;EMS学生档案或&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;机要方式或专门渠道寄至我校,个人不得自行携带或拆封,否则不予接收。学院&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;党委&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;在开学审查党员档案无误后再办理新生党员组织关系接收手续。&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;四、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;团组织关系转接&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;实行&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“线下线上”同步转移。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;1&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;.&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;线上转接&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;新生团员在入学后一个月内,经所在院级团组织核查档案认定团员身份后,完成线上转接团组织关系。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:40px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;由原就读学校的团组织线上发起转出申请;或由团员本人登录&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“智慧团建”系统(&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://zhtj.youth.cn/zhtj&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);font-size: 21px&quot;&gt;https://zhtj.youth.cn/zhtj&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;)发起团组织关系转入申请,原就读学校的团组织审批同意申请,将团组织关系转入所在院级团组织分配的团支部。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top:10px;margin-bottom:10px;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;2&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;.&lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 21px&quot;&gt;线下转接&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;新生团员持《团员团组织关系介绍信》或《团员证》报到,供院级团组织审核,初步认定团员身份。院级团组织在新生团员入学一个月内,核查团员档案,最终认定团员身份。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:46px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(1)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;持《团员团组织关系介绍信》报到的,《团员团组织关系介绍信》由原就读学校团组织开具,团组织关系去向为录取的院级团组织(如&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“共青团广西民族大学经济学院委员会”)。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:46px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(2)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;持《团员证》报到的,《团员证》中&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“组织关系转接”一栏须由原就读学校团组织盖章转出。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;五、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;户口迁移&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;录取类别为&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“定向就业”的考生(少数民族高层次骨干人才计划的非在职考生和享受少数民族照顾政策的普通高校应届本科毕业生考生除外)户口关系不转入我校&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;,其余考生可自愿选择户口是否转入我校。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;新生户口迁入学校后,纳入学校学生集体户,由学校保卫处代管,除中途退学、转学外,学生须获得公安机关的批准或毕业后方可将户口迁出学校。毕业后学校将不保留学生户籍。&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;户籍关系到购房、婚育、考试等个人切身利益,请慎重考虑是否将户籍转入我校。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;迁移户口所需材料。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:45px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;户口本或者户口迁移证原件、录取通知书原件、身份证原件和一寸白底彩色照片&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2张。新生报到注册后,于10个工作日内,将上述户口迁移材料交到学院研究生教学秘书处,研究生教学秘书收齐材料后,交给学校保卫处户籍科办理户口迁移。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;若持户口迁移证迁移户口,迁移证上相关内容必须填写完整。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:40px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(1)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;户口迁移证中的迁往地址为:南宁市西乡塘区大学东路&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;188号或广西民族大学。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:40px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(2)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;户口迁移证上的姓名必须与《录取通知书》的姓名一致;户口迁移证中的&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“出生地”“籍贯”栏内必须具体到市(县)区;迁移证上“身份证号码”清晰,且必须与迁移证上的出生日期一致;迁移证上填写的各个项目必须字迹清晰、准确无误;章印齐全、清晰。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:1px;text-indent:40px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;(3)&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;为了确保户口信息的准确性,请在户口迁移证的反面用铅笔注明血型、身高、录取学院及联系电话(必须能联系到本人)。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;5.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;学校不接受学生户口入校前个人户籍信息的更改(个人户籍信息与研究生报考相关个人信息要一致,如:姓名、出生日期、身份证号码、民族等)。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;入学三个月后未将户口迁入者,将被视为放弃迁入,学校将不再受理户口迁入事宜。&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;六、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;职能部门联系方式&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;学生资助:研究生院思想教育科&lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3260186&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;住宿问题:后勤管理处学生公寓办公室&lt;/span&gt; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3260204 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;党组织关系转移:广西民族大学组织部&lt;/span&gt; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3260102&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;团组织关系转移:广西民族大学团委&lt;/span&gt; &amp;nbsp; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-326&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2352&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;户口迁移:&lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;font-family:仿宋&quot;&gt;广西民族大学保卫处&lt;/span&gt; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3260124&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;数字化校园:网络与信息化管理中心&lt;/span&gt; &amp;nbsp; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3260000&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;学籍、培养、教学安排:研究生院培养科&lt;/span&gt; &lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3263061&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;各学院研究生办公室电话,请到研究生院官网查询。&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin-top:10px;margin-bottom:10px;text-indent:43px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;七、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;其他&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;考生报名至报到入学、办理学籍期间均不得修改个人姓名、身份证号、民族等个人身份信息。因上述事项影响录取、报到及毕业等环节,考生责任自负。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-left:0;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;后续工作如有变化,我校将及时在研究生院网站通知,请持续关注。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;特此通知&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-indent:44px;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 341px; line-height: 37px; text-align: right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;广西民族大学研究生院&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 364px; line-height: 37px; text-align: right;&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;202&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;5月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;8&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;日&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
      </description>
      <link>https://yjs.gxmzu.edu.cn/info/1378/25284.htm</link>
      <guid isPermaLink="false">https://yjs.gxmzu.edu.cn/info/1378/25284.htm</guid>
      <pubDate>Thu, 28 May 2026 06:53:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学关于公布2026年博士研究生招生考试初试成绩的通知</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-align: left; line-height: 37px;&quot;&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 19px; letter-spacing: 0px;&quot;&gt;各位考生:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;根据工作安排,我校&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2026年全国博士研究生招生考试初试成绩将于2026年5月25日公布,现将相关事项通知如下:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 10px 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 黑体;letter-spacing: 0;font-size: 19px&quot;&gt;一、初试成绩查询&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;1.查询时间&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2026年5月25日17时起&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2.查询网址&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;广西民族大学研究生招生服务系统&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_doc.html&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;text-decoration: underline; font-family: 仿宋; color: rgb(0, 0, 255); font-size: 21px;&quot;&gt;https://yjszs.gxmzu.edu.cn/login_doc.html&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;注:通过&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_doc.html&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 0);letter-spacing: 0;font-size: 19px&quot;&gt;广西民族大学研究生招生服务系统&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;”,考生除查询成绩外,还可以进行成绩复核申请。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;3.成绩我校不再&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;另行&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;送达,也不提供成绩通知单,考生可自行在网上查询、打印。我校对考生成绩不作排名,请勿咨询成绩排名。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 10px 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 黑体;letter-spacing: 0;font-size: 19px&quot;&gt;二、成绩复核&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 黑体;color: rgb(255, 0, 0);letter-spacing: 0;font-size: 19px&quot;&gt;各考生的答卷,已经过严格评阅,并在成绩公布前进行了多次复核与校对。如考生仍对评卷结果有异议,可于规定时间内申请复核。考生应对本人的考试成绩进行客观分析和正确评估,理性提出复核申请,避免不必要的人力、物力浪费。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 28px;text-indent: 8px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;1. &lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;复核申请时间&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2026年5月25日17时-5月26日12时,逾期不再受理。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 28px;text-indent: 8px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2. &lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;复核申请途径&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;考生网上提交复核申请,不接受除此以外的其他方式申请。网上复核申请操作步骤:&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;text-indent: 37px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;1)考生登录“&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_doc.html&quot; target=&quot;_blank&quot; textvalue=&quot;广西民族大学研究生招生服务系统&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 0);letter-spacing: 0;font-size: 19px&quot;&gt;广西民族大学研究生招生服务系统&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;”(&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_doc.html&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);font-size: 21px&quot;&gt;https://yjszs.gxmzu.edu.cn/login_doc.html&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;)。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;点击&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;“成绩查询”模块,点击“&lt;/span&gt;&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);font-size: 19px&quot;&gt;申请复核&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 19px&quot;&gt;”按钮,根据需要勾选复核的科目,填入预估分数、申请复核理由及验证内容信息,并上传身份证件照片。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;3)点击提交完成成绩复核申请。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;注意事项:&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;未在规定时间无法提交复核申请。初试成绩复核申请只可提交一次,请确认填写信息无误后再进行提交,申请一旦提交,则无法修改。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 28px;text-indent: 8px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;3. &lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;复核内容&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;1)评卷过程中是否存在漏评、漏统分;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;2)成绩累计是否正确、登分是否正确。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;评分细则及其执行情况不属复核内容。考生不得查阅答卷。违规考生各科目不予复核。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 28px;text-indent: 8px;line-height: 33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;4. &lt;/span&gt;&lt;/strong&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;复核结果反馈&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2026年5月29日前通过我校研究生院网站及&lt;/span&gt;&lt;a href=&quot;https://yjszs.gxmzu.edu.cn/login_doc.html&quot; target=&quot;_blank&quot; textvalue=&quot;广西民族大学研究生招生服务系统&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 0);letter-spacing: 0;font-size: 19px&quot;&gt;广西民族大学研究生招生服务系统&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;公布成绩复核结果。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 10px 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 黑体;letter-spacing: 0;font-size: 19px&quot;&gt;三、后续工作安排&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;我校将持续做好考生服务,畅通考生咨询通道,尽力解答、回应考生关切。成绩查询和复核,有任何疑问,可通过电子邮件或电话咨询,邮箱:&lt;/span&gt;&lt;a href=&quot;file:///I:/%E6%8B%9B%E7%94%9F%E7%A7%91/2026%E5%B9%B4%E6%8B%9B%E7%94%9F%E5%B7%A5%E4%BD%9C/%E5%8D%9A%E5%A3%AB%E6%8B%9B%E7%94%9F/03%E6%99%AE%E9%80%9A%E6%8B%9B%E8%80%83/yzb@gxmzu.edu.cn&quot;&gt;&lt;span style=&quot;text-decoration:underline;&quot;&gt;&lt;span style=&quot;font-family: 仿宋;color: rgb(0, 0, 255);letter-spacing: 0;font-size: 19px&quot;&gt;yzb@gxmzu.edu.cn&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;,电话:&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;0771-3262606。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0;margin-left: 0;text-indent: 38px;line-height: 33px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-right:0;margin-left:0;text-indent:364px;text-autospace:ideograph-numeric;line-height:33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;广西民族大学研究生院&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center;margin-right:0;margin-left:0;text-indent:364px;text-autospace:ideograph-numeric;line-height:33px&quot;&gt;&lt;span style=&quot;font-family: 仿宋;letter-spacing: 0;font-size: 19px&quot;&gt;2026年5月25日&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-autospace:ideograph-numeric;line-height:37px&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;
        &lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;div_vote_id&quot;&gt;&lt;/div&gt;
      </description>
      <link>https://yjs.gxmzu.edu.cn/info/1378/25224.htm</link>
      <guid isPermaLink="false">https://yjs.gxmzu.edu.cn/info/1378/25224.htm</guid>
      <pubDate>Mon, 25 May 2026 08:10:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学2026年普通招考招收博士研究生招生考试考生须知</title>
      <description>&lt;div id=&quot;vsb_content&quot;&gt;&lt;div class=&quot;v_news_content&quot;&gt;
        &lt;p style=&quot;text-align: left; line-height: 36px;&quot;&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;&amp;nbsp; &amp;nbsp; 我校202&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;年普通招考招收博士研究生招生考试(初试和复试)将于202&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;5&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;月2&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;3&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;-2&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;日进行,采用现场复试的&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;方式&lt;/span&gt;&lt;span style=&quot;text-align: left; text-indent: 43px; font-family: 仿宋; font-size: 21px;&quot;&gt;。各学院具体综合考核时间以学院通知为准。为了确保考试过程平稳顺利,请参加考试的考生认真阅读本须知,并严格遵守相关规定。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 10px;margin-bottom: 10px;margin-left: 0;text-indent: 43px;line-height: 37px&quot;&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;一、&lt;/span&gt;&lt;span style=&quot;font-family:黑体;font-size:21px&quot;&gt;报到&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 10px;margin-bottom: 10px;margin-left: 111px;line-height: 37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(一)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;报到时间&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-indent: 40px;line-height: 37px&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;202&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;6&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;年&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;5月&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;22&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:21px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;日&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;9:00-12:00,14:30-17:00。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 10px;margin-bottom: 10px;margin-left: 111px;line-height: 37px&quot;&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;(二)&lt;/span&gt;&lt;span style=&quot;font-family:楷体;font-size:21px&quot;&gt;报到地点&lt;/span&gt;&lt;/p&gt;&lt;table align=&quot;center&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse: collapse; margin-left: 9px; margin-right: 9px; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; width: 693px; table-layout: fixed;&quot;&gt;&lt;colgroup&gt;&lt;col data-offset-left=&quot;89.85714721679688&quot; data-offset-right=&quot;177.2589340209961&quot; data-resize-pixel=&quot;87.40178680419922&quot; data-resize-percent=&quot;12.612090447936394&quot; style=&quot;width: 12.6121%;&quot;&gt;&lt;col data-offset-left=&quot;177.25894165039062&quot; data-offset-right=&quot;290.50894927978516&quot; data-resize-pixel=&quot;113.25000762939453&quot; data-resize-percent=&quot;16.341992442914073&quot; style=&quot;width: 16.342%;&quot;&gt;&lt;col data-offset-left=&quot;290.5089416503906&quot; data-offset-right=&quot;476.01788330078125&quot; data-resize-pixel=&quot;185.50894165039062&quot; data-resize-percent=&quot;26.768967049118412&quot; style=&quot;width: 26.769%;&quot;&gt;&lt;col data-offset-left=&quot;469.01788330078125&quot; data-offset-right=&quot;638.9018249511719&quot; data-resize-pixel=&quot;169.88394165039062&quot; data-resize-percent=&quot;24.514277294428663&quot; style=&quot;width: 24.5143%;&quot;&gt;&lt;col data-offset-left=&quot;638.9017944335938&quot; data-offset-right=&quot;774.1428680419922&quot; data-resize-pixel=&quot;135.24107360839844&quot; data-resize-percent=&quot;19.51530643699833&quot; style=&quot;width: 19.5153%;&quot;&gt;&lt;/colgroup&gt;&lt;tbody&gt;&lt;tr class=&quot;firstRow&quot; style=&quot;height:30px&quot;&gt;&lt;td valign=&quot;center&quot; rowspan=&quot;2&quot; style=&quot;padding: 0px 7px; border-width: 2px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;学院代码&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; rowspan=&quot;2&quot; style=&quot;padding: 0px 7px; border-width: 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center;line-height:33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;报考学院&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; colspan=&quot;2&quot; style=&quot;padding: 0px 7px; border-width: 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;地&lt;/span&gt; &amp;nbsp;&lt;span style=&quot;font-family:仿宋&quot;&gt;点&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; rowspan=&quot;2&quot; style=&quot;padding: 0px 7px; border-width: 2px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center;line-height:33px&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;联系方式&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:21px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;相思湖校区&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(大学东路&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;188号)&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;思源湖校区&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;(大学西路&lt;/span&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;158号)&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:34px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;405&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;民族学与社会学学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;基地楼报告厅&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3265606&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:41px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;4&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;08&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;文学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;3坡2栋文学院大厅&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3260086&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:43px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;409&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;外国语学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;国教楼&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;1401会议室&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3265562&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:34px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;411&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;化学化工学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;思源湖校区&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 16px;&quot;&gt;扬帆楼&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋; font-size: 16px;&quot;&gt;116&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3267017&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:34px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;425&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;东南亚语言文化学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;东盟主楼&lt;/span&gt;117-2办公室&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3262435&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:34px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;701&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;中华民族共同体学院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;span style=&quot;font-family:仿宋&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;文化研习基地三楼303&lt;/span&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 2px 1px 1px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family:仿宋;font-size:16px&quot;&gt;0771-3265101&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:56px&quot;&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 2px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;7&lt;/span&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;02&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-family: 仿宋;font-size: 16px&quot;&gt;科技史与科技文化研究院&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-width: 1px 1px 2px; border-style: solid; border-color: windowtext;&quot;&g

...

@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor
http://localhost:1200/gxmzu/libzxxx - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>广西民族大学图书馆 -- 最新消息</title>
    <link>https://library.gxmzu.edu.cn/news/news_list.jsp?urltype=tree.TreeTempUrl&amp;wbtreeid=1010</link>
    <atom:link href="http://localhost:1200/gxmzu/libzxxx" rel="self" type="application/rss+xml"></atom:link>
    <description>广西民族大学图书馆 -- 最新消息 - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>contact@rsshub.app (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Sun, 05 Jul 2026 07:04:44 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>【电影】“小小民大人”的暑假电影周来啦!</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/d69R1Sxju4ycm37ZEWTCWA?poc_token=HIEtR2qjrzo55EejxVJTRPad-Mdl0N67UNnSK4ih</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/d69R1Sxju4ycm37ZEWTCWA?poc_token=HIEtR2qjrzo55EejxVJTRPad-Mdl0N67UNnSK4ih</guid>
      <pubDate>Thu, 02 Jul 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资源推荐】暑期文献自由!CNKI AI 全球学术快报漫游通道开启</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/dMNpreYq3N9Qn7HjJxU1qw</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/dMNpreYq3N9Qn7HjJxU1qw</guid>
      <pubDate>Wed, 01 Jul 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>“七一”书单 | 赓续红色薪火,笃行时代担当</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/sGMSp0qCeCa_7RtOKhLG2w</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/sGMSp0qCeCa_7RtOKhLG2w</guid>
      <pubDate>Tue, 30 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>圆满落幕|书香留驻相思湖,薪火相传民大情</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/4E2O48X_TUnYP3drs1k1PA</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/4E2O48X_TUnYP3drs1k1PA</guid>
      <pubDate>Tue, 30 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【活动】“七一”主题影片展映周活动开启预约</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/uLGA8YQMvKWUVnRqOhJ4qg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/uLGA8YQMvKWUVnRqOhJ4qg</guid>
      <pubDate>Mon, 29 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【专家荐读】东西亲荐《回响》:案件有答案,人心有回响</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/mQEP1-qc8i1sariex8X-SQ</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/mQEP1-qc8i1sariex8X-SQ</guid>
      <pubDate>Thu, 25 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资源推荐】藏在图书馆的宝藏数据库!民族文化、历史、理论全覆盖</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/EyKBBmw9B76yJon0BRebuQ?poc_token=HOiiPGqjNauhIU7-Wm5Muv6ve6nbbwILWp_d0BdR</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/EyKBBmw9B76yJon0BRebuQ?poc_token=HOiiPGqjNauhIU7-Wm5Muv6ve6nbbwILWp_d0BdR</guid>
      <pubDate>Wed, 24 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【每周新书】躲进图书馆,读尽四季星河诗意</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/wRhT9NyJbNY3n943DWSfzg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/wRhT9NyJbNY3n943DWSfzg</guid>
      <pubDate>Wed, 24 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【阅读推荐】于文字深处,看见各族儿女同心与共</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/XBpwDZoDqQB5SKOUFnOmoQ</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/XBpwDZoDqQB5SKOUFnOmoQ</guid>
      <pubDate>Wed, 24 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【毕业季】致全体毕业生的捐书倡议书</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/ZY3bjtZ0ss1Ybsq9i098wg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/ZY3bjtZ0ss1Ybsq9i098wg</guid>
      <pubDate>Fri, 19 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【展览】民族团结一家亲——铸牢中华民族共同体意识主题书展</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/C48XZfhOAByq-mmwRvB8Zg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/C48XZfhOAByq-mmwRvB8Zg</guid>
      <pubDate>Wed, 17 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资讯】我校图书馆赴广西大学图书馆开展调研交流</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/lz3c5BjjGKyhRtcWR5sutg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/lz3c5BjjGKyhRtcWR5sutg</guid>
      <pubDate>Tue, 16 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【通知】图书馆关于2026年上半年毕业研究生离校手续办理工作的通知</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/LYgdCPF1--bczo4P_J-meA</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/LYgdCPF1--bczo4P_J-meA</guid>
      <pubDate>Wed, 10 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>新空间上线|外文社书屋多语种阅读空间开放打卡</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/4r0cV9qOtxQWryaMHdFXog</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/4r0cV9qOtxQWryaMHdFXog</guid>
      <pubDate>Wed, 03 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>广西民族大学武鸣校区图书馆工作人员招聘笔试成绩</title>
      <description>&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;479&quot; style=&quot;margin-left: 6px; border-width: initial; border-style: none; border-color: initial;&quot;&gt;&lt;tbody&gt;&lt;tr class=&quot;firstRow&quot; style=&quot;height:40px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;考&lt;/span&gt; &amp;nbsp;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;号&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;姓&lt;/span&gt; &amp;nbsp;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;名&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;笔试成绩&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;1&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;黄&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;43 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;2&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;凌&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;39 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;3&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;张&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;34 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;4&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;彭&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;41 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;5&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;朱&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;44 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;6&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;白&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;47 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;7&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;兰&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;40 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;8&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;林&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;45 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;9&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;罗&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;42 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;10&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;李&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;39 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;11&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;廖&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;35 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;12&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;李&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;44 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;13&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;朱&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;45 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;14&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;黄&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;16&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陆&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;38 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;17&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陈&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;59 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;18&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;赵&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;47 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;19&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;黄&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;35 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;22&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;刘&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;43 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;23&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陈&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;42 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;24&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;凌&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;25&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;杨&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;47 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;27&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;林&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;50 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;28&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陈&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;56 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;29&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;李&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;42 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;31&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;黄&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;48 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;33&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;吴&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;40 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;34&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;管&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;49 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;36&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;李&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;25 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;37&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;韦&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;44 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;38&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;莫&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;62 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;39&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;高&lt;/span&gt; &lt;span style=&quot;font-family:微软雅黑&quot;&gt;*&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;35 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;40&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陈&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;44 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;41&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;杨&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;45 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;42&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;钟&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;35 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;43&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陈&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;53 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;44&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;刘&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;52 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;45&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;周&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;40 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;何&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;42 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;47&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;范&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;48&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;陆&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;height:35px&quot;&gt;&lt;td width=&quot;98&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left-width: 1px; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;49&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;190&quot; valign=&quot;center&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;盘&lt;/span&gt;&lt;span style=&quot;font-family:微软雅黑&quot;&gt;**&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td width=&quot;191&quot; valign=&quot;center&quot; nowrap=&quot;&quot; style=&quot;padding: 0px 7px; border-left: none; border-right-width: 1px; border-top: none; border-bottom-width: 1px;&quot;&gt;&lt;p style=&quot;text-align:center;vertical-align:middle&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 微软雅黑;font-size: 21px&quot;&gt;46 &amp;nbsp;分&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;
      </description>
      <link>https://library.gxmzu.edu.cn/info/1010/26503.htm</link>
      <guid isPermaLink="false">https://library.gxmzu.edu.cn/info/1010/26503.htm</guid>
      <pubDate>Mon, 01 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资讯】民大学子拿下 “学问杯” 影评大赛多项奖项!</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/TcHTTSs4fRYc3zJlDyKzqg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/TcHTTSs4fRYc3zJlDyKzqg</guid>
      <pubDate>Mon, 01 Jun 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>周二影院·6月片单 | 毕业季,在光影里,和青春好好告别</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/CgPVmYAMgHA264SHANLHvA</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/CgPVmYAMgHA264SHANLHvA</guid>
      <pubDate>Sat, 30 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资讯】我校学子在广西高校大学生主题知识竞赛决赛荣获三等奖</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/Oc5dZT4sPetZQ1WjI3Nc3A</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/Oc5dZT4sPetZQ1WjI3Nc3A</guid>
      <pubDate>Mon, 25 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【微课堂】一键获取红色资源数据库</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/sEQyprH6PXNDwSG2U3oReg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.com/s/sEQyprH6PXNDwSG2U3oReg</guid>
      <pubDate>Sun, 24 May 2026 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>【资源培训讲座】 ProQuest高效挖掘国际前沿成果</title>
      <description>该通知无法直接预览,请点击原文链接↑查看</description>
      <link>https://mp.weixin.qq.com/s/-uQdePppkq4qz6dTyALkkg</link>
      <guid isPermaLink="false">https://mp.weixin.qq.c

...

@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

Auto Review

No clear rule violations found in the current diff.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto: ready to review Manual review will come in after lint issues and merge conflicts are fixed route

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants