diff --git a/docs/new-media.md b/docs/new-media.md
index c7db6a9675..3113333b2e 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -2452,6 +2452,30 @@ column 为 third 时可选的 category:
+## 中国纺织经济信息网
+
+### 资讯
+
+
+
+| 要闻 | 国内 | 国际 | 企业 | 品牌 | 外贸 | 政策 | 科技 | 流行 | 服装 | 家纺 |
+| ------ | -------- | -------- | ------- | ----- | ----- | ------ | ---------- | ------- | ------- | ------- |
+| newsyw | domestic | internal | company | brand | trade | policy | Technology | fashion | apparel | hometex |
+
+
+
+## 中国计算机学会
+
+### 新闻
+
+
+
+| CCF 新闻 | CCF 聚焦 | ACM 信息 |
+| ---------- | -------- | -------- |
+| Media_list | Focus | ACM_News |
+
+
+
## 中国机械工程学会
### 学会新闻
diff --git a/lib/router.js b/lib/router.js
index 1c6d527926..50da0f0c89 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -4158,6 +4158,8 @@ router.get('/tanchinese/:category?', require('./routes/tanchinese'));
// Harvard
router.get('/harvard/health/blog', require('./routes/universities/harvard/health/blog'));
+// 中国纺织经济信息网
+router.get('/ctei/news/:id?', require('./routes/ctei/news'));
// 时事一点通
router.get('/ssydt/article/:id?', require('./routes/ssydt/article'));
diff --git a/lib/routes/ctei/news.js b/lib/routes/ctei/news.js
new file mode 100644
index 0000000000..b104c2c765
--- /dev/null
+++ b/lib/routes/ctei/news.js
@@ -0,0 +1,51 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const id = ctx.params.id || 'bwzq';
+
+ const rootUrl = 'http://news.ctei.cn';
+ const currentUrl = `${rootUrl}/${id}`;
+ const response = await got({
+ method: 'get',
+ url: currentUrl,
+ });
+
+ const $ = cheerio.load(response.data);
+
+ const list = $('.news_text ul li a')
+ .map((_, item) => {
+ item = $(item);
+
+ return {
+ title: item.text(),
+ link: `${currentUrl}${item.attr('href').replace(/\./, '')}`,
+ };
+ })
+ .get();
+
+ const items = await Promise.all(
+ list.map(
+ async (item) =>
+ await ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: item.link,
+ });
+ const content = cheerio.load(detailResponse.data);
+
+ item.description = content('.TRS_Editor').html();
+ item.pubDate = parseDate(item.link.match(/\/t(\d{8})_\d+.htm/)[1], 'YYYYMMDD');
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: $('title').text(),
+ link: currentUrl,
+ item: items,
+ };
+};