feat(admin): 优化用户界面资源并更新题库数据
- 添加首页背景图片资源 (home-bg.webp) - 更新用户头像资源文件 (ydzx.png) - 优化竞赛布局组件交互体验 - 改进题目渲染器显示效果 - 更新题库数据:新增诗词常识题库 - 移除联想对对碰题库 - 更新汉字听写、诗词理解选择题、逆向接诗句等题库内容 - 调整VSCode配置并禁用MCP代理功能
This commit is contained in:
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -41,5 +41,6 @@
|
|||||||
"activityinfo",
|
"activityinfo",
|
||||||
"Echarts",
|
"Echarts",
|
||||||
"Typeit"
|
"Typeit"
|
||||||
] // `
|
],
|
||||||
|
"kiroAgent.configureMCP": "Disabled" // `
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
BIN
apps/admin/src/assets/imgs/user/home-bg.webp
Normal file
BIN
apps/admin/src/assets/imgs/user/home-bg.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 797 KiB |
|
Before Width: | Height: | Size: 468 KiB After Width: | Height: | Size: 468 KiB |
@ -1,7 +1,8 @@
|
|||||||
|
<!-- eslint-disable unused-imports/no-unused-vars -->
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import VScaleScreen from 'v-scale-screen'
|
import VScaleScreen from 'v-scale-screen'
|
||||||
import { computed, onMounted, ref, watch } from 'vue'
|
import { computed, onMounted, ref, watch } from 'vue'
|
||||||
import _defaultBg from '@/assets/imgs/user/home-bg.jpg'
|
import _defaultBg from '@/assets/imgs/user/home-bg.webp'
|
||||||
import titleBg2 from '@/assets/imgs/user/title-bg2.webp'
|
import titleBg2 from '@/assets/imgs/user/title-bg2.webp'
|
||||||
import _defaultTitleBg from '@/assets/imgs/user/title-bg.webp'
|
import _defaultTitleBg from '@/assets/imgs/user/title-bg.webp'
|
||||||
import { useRouterPush } from '@/hooks/common/router'
|
import { useRouterPush } from '@/hooks/common/router'
|
||||||
@ -210,13 +211,14 @@ watch(titleBgUrl, (newUrl) => {
|
|||||||
<!-- Background Layer (Outside Scale to cover full screen) -->
|
<!-- Background Layer (Outside Scale to cover full screen) -->
|
||||||
<div class="fixed-bg" :style="innerBgUrl ? { backgroundImage: `url(${innerBgUrl})` } : {}" />
|
<div class="fixed-bg" :style="innerBgUrl ? { backgroundImage: `url(${innerBgUrl})` } : {}" />
|
||||||
|
|
||||||
<VScaleScreen width="1920" height="1080">
|
<VScaleScreen width="2048" height="1080">
|
||||||
<div class="competition-layout">
|
<div class="competition-layout">
|
||||||
<!-- Header -->
|
<!-- Header -->
|
||||||
<header class="page-header text-[30px] text-[#333333] font-bold">
|
<!-- <header class="page-header flex items-center text-[30px] text-[#333333] font-bold">
|
||||||
<span class="org-name" @click="handleBackHome">教育学会</span>
|
<span class="org-name" @click="handleBackHome">重庆市教育学会</span>
|
||||||
<span class="org-name">树人研究院</span>
|
<img src="@/assets/imgs/ydzx.png" width="100" height="50" alt="logo" class="logo">
|
||||||
</header>
|
<span class="org-name">树人教育研究院</span>
|
||||||
|
</header> -->
|
||||||
|
|
||||||
<div class="glass-overlay">
|
<div class="glass-overlay">
|
||||||
<!-- title -->
|
<!-- title -->
|
||||||
@ -384,9 +386,11 @@ watch(titleBgUrl, (newUrl) => {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
font-family: 'Noto Serif SC', serif;
|
font-family: 'Noto Serif SC', serif;
|
||||||
z-index: 1; // 确保内容在背景之上
|
z-index: 2; // 确保内容在背景之上
|
||||||
|
// margin: 10px auto;
|
||||||
|
margin-top: 28px;
|
||||||
|
|
||||||
// Default background decoration (Bottom Wave)
|
// 底部波浪背景
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -405,7 +409,7 @@ watch(titleBgUrl, (newUrl) => {
|
|||||||
.glass-overlay {
|
.glass-overlay {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: rgba(255, 255, 255, 0.5);
|
background: rgba(255, 255, 255, 0.6);
|
||||||
backdrop-filter: blur(2px);
|
backdrop-filter: blur(2px);
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
|
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
|
||||||
|
|||||||
@ -177,10 +177,7 @@ watch(
|
|||||||
<!-- 模板: 字词飞花令 -->
|
<!-- 模板: 字词飞花令 -->
|
||||||
<div v-else-if="template === QuestionCategoryEnum.CharacterWordFlowerDrinkingGame" class="w-full flex flex-col items-center">
|
<div v-else-if="template === QuestionCategoryEnum.CharacterWordFlowerDrinkingGame" class="w-full flex flex-col items-center">
|
||||||
<div class="options-container text-2xl">
|
<div class="options-container text-2xl">
|
||||||
{{ title }}
|
请回答带有“{{ content }}”的诗词。
|
||||||
</div>
|
|
||||||
<div class="mb-1 text-3xl text-gray-800 font-bold leading-relaxed">
|
|
||||||
<div class="rich-content" v-html="content" />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -1,279 +0,0 @@
|
|||||||
{
|
|
||||||
"question_bank": [
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "重阳、习俗、思念",
|
|
||||||
"Answer": "遥知兄弟登高处,遍插茱萸少一人。",
|
|
||||||
"KeyWord": "处",
|
|
||||||
"KeyWordsIndex": 6,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "边塞、征战、思乡",
|
|
||||||
"Answer": "秦时明月汉时关,万里长征人未还。",
|
|
||||||
"KeyWord": "关",
|
|
||||||
"KeyWordsIndex": 6,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "军中、饮酒、欢快",
|
|
||||||
"Answer": "葡萄美酒夜光杯,欲饮琵琶马上催。",
|
|
||||||
"KeyWord": "催",
|
|
||||||
"KeyWordsIndex": 13,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "初夏、田园、蔬果",
|
|
||||||
"Answer": "梅子金黄杏子肥,麦花雪白菜花稀。",
|
|
||||||
"KeyWord": "肥",
|
|
||||||
"KeyWordsIndex": 6,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "童趣、追跑、田野",
|
|
||||||
"Answer": "儿童急走追黄蝶,飞入菜花无处寻。",
|
|
||||||
"KeyWord": "蝶",
|
|
||||||
"KeyWordsIndex": 6,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "送别、赤诚、朋友",
|
|
||||||
"Answer": "洛阳亲友如相问,一片冰心在玉壶。",
|
|
||||||
"KeyWord": "心",
|
|
||||||
"KeyWordsIndex": 10,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "梅花、香气、傲骨",
|
|
||||||
"Answer": "不要人夸好颜色,只留清气满乾坤。",
|
|
||||||
"KeyWord": "好",
|
|
||||||
"KeyWordsIndex": 4,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "遗愿、爱国、失地",
|
|
||||||
"Answer": "死去元知万事空,但悲不见九州同。",
|
|
||||||
"KeyWord": "悲",
|
|
||||||
"KeyWordsIndex": 8,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "水滨、笙乐、忧愁",
|
|
||||||
"Answer": "山外青山楼外楼,西湖歌舞几时休?",
|
|
||||||
"KeyWord": "休",
|
|
||||||
"KeyWordsIndex": 13,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "祈求、变革、贤能",
|
|
||||||
"Answer": "我劝天公重抖擞,不拘一格降人材。",
|
|
||||||
"KeyWord": "公",
|
|
||||||
"KeyWordsIndex": 3,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "深夜、羁客、寒冷",
|
|
||||||
"Answer": "月落乌啼霜满天,江枫渔火对愁眠。",
|
|
||||||
"KeyWord": "愁",
|
|
||||||
"KeyWordsIndex": 12,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "登科、飞驰、盛景",
|
|
||||||
"Answer": "春风得意马蹄疾,一日看尽长安花。",
|
|
||||||
"KeyWord": "花",
|
|
||||||
"KeyWordsIndex": 13,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "耕地、纺织、协作",
|
|
||||||
"Answer": "昼出耘田夜绩麻,村庄儿女各当家。",
|
|
||||||
"KeyWord": "村",
|
|
||||||
"KeyWordsIndex": 7,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "悠闲、放牧、吹奏",
|
|
||||||
"Answer": "牧童归去横牛背,短笛无腔信口吹。",
|
|
||||||
"KeyWord": "背",
|
|
||||||
"KeyWordsIndex": 6,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "童趣、玩耍、敲击",
|
|
||||||
"Answer": "稚子金盆脱晓冰,彩丝穿取当银钲。",
|
|
||||||
"KeyWord": "脱",
|
|
||||||
"KeyWordsIndex": 4,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "欣喜、回家、畅饮",
|
|
||||||
"Answer": "白日放歌须纵酒,青春作伴好还乡。",
|
|
||||||
"KeyWord": "须",
|
|
||||||
"KeyWordsIndex": 4,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "雄师、豪迈、跋涉",
|
|
||||||
"Answer": "红军不怕远征难,万水千山只等闲。",
|
|
||||||
"KeyWord": "怕",
|
|
||||||
"KeyWordsIndex": 3,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "中秋、怀人、月亮",
|
|
||||||
"Answer": "今夜月明人尽望,不知秋思落谁家。",
|
|
||||||
"KeyWord": "思",
|
|
||||||
"KeyWordsIndex": 10,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "无畏、高尚、咏物",
|
|
||||||
"Answer": "粉骨碎身浑不怕,要留清白在人间。",
|
|
||||||
"KeyWord": "浑",
|
|
||||||
"KeyWordsIndex": 4,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "坚韧、勇气、咏物",
|
|
||||||
"Answer": "咬定青山不放松,立根原在破岩中。",
|
|
||||||
"KeyWord": "根",
|
|
||||||
"KeyWordsIndex": 8,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "送别、边塞、畅饮",
|
|
||||||
"Answer": "劝君更尽一杯酒,西出阳关无故人。",
|
|
||||||
"KeyWord": "关",
|
|
||||||
"KeyWordsIndex": 10,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "细雨、嫩绿、朦胧",
|
|
||||||
"Answer": "天街小雨润如酥,草色遥看近却无。",
|
|
||||||
"KeyWord": "街",
|
|
||||||
"KeyWordsIndex": 1,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "哭泣、沦陷、期盼",
|
|
||||||
"Answer": "遗民泪尽胡尘里,南望王师又一年。",
|
|
||||||
"KeyWord": "师",
|
|
||||||
"KeyWordsIndex": 10,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "酒菜、好客、乡村",
|
|
||||||
"Answer": "莫笑农家腊酒浑,丰年留客足鸡豚。",
|
|
||||||
"KeyWord": "足",
|
|
||||||
"KeyWordsIndex": 11,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"QuestionId": 32,
|
|
||||||
"Name": "初夏、喧闹、江南",
|
|
||||||
"Answer": "黄梅时节家家雨,青草池塘处处蛙。",
|
|
||||||
"KeyWord": "池",
|
|
||||||
"KeyWordsIndex": 9,
|
|
||||||
"Type": "text",
|
|
||||||
"IsGood": 0,
|
|
||||||
"ImageUrl": "",
|
|
||||||
"IsDisabled": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
100
apps/question-importer/asset/诗词常识.json
Normal file
100
apps/question-importer/asset/诗词常识.json
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
{
|
||||||
|
"question_bank": [
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>诗人袁枚写的与<strong>美食</strong>有关的书是( )。</p><p><br></p><p><strong> A.《食经》 B.《食珍录》 C.《红楼梦》 D.《随园食单》</strong></p>",
|
||||||
|
"Answer": "D",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“我家洗砚池头树”引用了一位<strong>书法家</strong>的典故,这位书法家是( )。</p><p><br></p><p><strong> A.王献之 B.王羲之 C.王冕 D.柳公权</strong></p>",
|
||||||
|
"Answer": "B",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“诗中有画,画中有诗”评价的是( )。</p><p><br></p><p><strong> A.杜牧的诗画风格</strong></p><p><strong> B.刘禹锡的诗画风格</strong></p><p><strong> C.苏轼的诗画风格</strong></p><p><strong> D.王维的诗画风格</strong></p>",
|
||||||
|
"Answer": "D",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>被闻一多称为“<strong>诗中的诗</strong>,顶峰上的顶峰”的诗歌作品是( )。</p><p><br></p><p><strong> A.刘希夷的《代悲白头翁》</strong></p><p><strong> B.杨广的《春江花月夜》</strong></p><p><strong> C.张若虚的《春江花月夜》</strong></p><p><strong> D.李白的《蜀道难》</strong></p>",
|
||||||
|
"Answer": "C",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“<strong>梅妻鹤子</strong>”指的是( )。</p><p><br></p><p><strong> A.林逋 B.梅尧臣 C.苏舜钦 D.王安石</strong></p>",
|
||||||
|
"Answer": "A",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“一门父子三词客,千古文章八大家。”这副对联中提到的“<strong>三父子</strong>”是( )。</p><p><br></p><p><strong> A.曹操、曹丕、曹植</strong></p><p><strong> B.苏洵、苏轼、苏辙</strong></p><p><strong> C.班彪、班固、班超</strong></p><p><strong> D.阮瑀、阮籍、阮咸</strong></p>",
|
||||||
|
"Answer": "B",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>诗人刘禹锡被<strong>称</strong>为( )。</p><p><br></p><p><strong> A.“诗鬼” B.“诗豪” C.“诗圣” D.“诗仙”</strong></p>",
|
||||||
|
"Answer": "B",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>有关诗人卢钺的信息,<strong>不正确</strong>的一项是( )。</p><p><br></p><p><strong> A.别号梅坡</strong></p><p><strong> B.代表作《雪梅》</strong></p><p><strong> C.与辛派词人陈亮是好友</strong></p><p><strong> D.宋朝人</strong></p>",
|
||||||
|
"Answer": "C",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>诗人王昌龄被<strong>称</strong>为( )。</p><p><br></p><p><strong> A.“五言圣手” B.“七绝圣手” C.“七言圣手” D.“七绝诗人”</strong></p>",
|
||||||
|
"Answer": "B",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>李商隐与杜牧<strong>合称</strong>( )。</p><p><br></p><p><strong> A.“李杜” B.“杜李” C.“小李杜” D.“唐诗双杰”</strong></p>",
|
||||||
|
"Answer": "C",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“南朝四百八十寺”中,“<strong>南朝</strong>”指的是( )。</p><p><br></p><p><strong> A.在南方建都的王朝</strong></p><p><strong> B.宋、齐、魏、陈四个朝代的总称</strong></p><p><strong> C.宋、齐、梁、陈四个朝代的总称</strong></p><p><strong> D.在南京建都的王朝</strong></p>",
|
||||||
|
"Answer": "C",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"QuestionId": 34,
|
||||||
|
"Name": "<p>“<strong>初唐四杰</strong>”是指( )。</p><p><br></p><p><strong> A.张若虚、张旭、孔融和贺知章</strong></p><p><strong> B.王勃、杨炯、卢照邻和骆宾王</strong></p><p><strong> C.高适、王昌龄、岑参和王之涣</strong></p><p><strong> D.贺知章、张若虚、张旭和包融</strong></p>",
|
||||||
|
"Answer": "B",
|
||||||
|
"Type": "text",
|
||||||
|
"IsGood": 0,
|
||||||
|
"ImageUrl": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -2,7 +2,7 @@
|
|||||||
"question_bank": [
|
"question_bank": [
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>rǎng</strong></span> 意思:喊叫。</p>",
|
"Name": "rǎng#意思:喊叫。",
|
||||||
"Answer": "嚷",
|
"Answer": "嚷",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>gē</strong></span> 意思:古代的一种兵器。</p>",
|
"Name": "gē#意思:古代的一种兵器。",
|
||||||
"Answer": "戈",
|
"Answer": "戈",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>zhèng</strong></span> 意思:发愣,发呆。</p>",
|
"Name": "zhèng#意思:发愣,发呆。",
|
||||||
"Answer": "怔",
|
"Answer": "怔",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>jiāng</strong></span> 意思:边界。</p>",
|
"Name": "jiāng#意思:边界。",
|
||||||
"Answer": "疆",
|
"Answer": "疆",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>jì</strong></span> 意思:留下的印子。</p>",
|
"Name": "jì#意思:留下的印子。",
|
||||||
"Answer": "迹",
|
"Answer": "迹",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>záo</strong></span> 意思:打孔,挖掘。</p>",
|
"Name": "záo#意思:打孔,挖掘。",
|
||||||
"Answer": "凿",
|
"Answer": "凿",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -50,7 +50,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>lǎn</strong></span> 意思:不勤奋。</p>",
|
"Name": "lǎn#意思:不勤奋。",
|
||||||
"Answer": "懒",
|
"Answer": "懒",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -58,7 +58,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>chí</strong></span> 意思:舀液体或粉末状物体的小勺。</p>",
|
"Name": "chí#意思:舀液体或粉末状物体的小勺。",
|
||||||
"Answer": "匙",
|
"Answer": "匙",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -66,7 +66,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>chàn</strong></span> 意思:发抖。</p>",
|
"Name": "chàn#意思:发抖。",
|
||||||
"Answer": "颤",
|
"Answer": "颤",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>yōng</strong></span> 意思:平凡。</p>",
|
"Name": "yōng#意思:平凡。",
|
||||||
"Answer": "庸",
|
"Answer": "庸",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -82,7 +82,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>chóng</strong></span> 意思:重视,尊敬。</p>",
|
"Name": "chóng#意思:重视,尊敬。",
|
||||||
"Answer": "崇",
|
"Answer": "崇",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -90,7 +90,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>pǔ</strong></span> 意思:种蔬菜、花草的园子或园地。</p>",
|
"Name": "pǔ#意思:种蔬菜、花草的园子或园地。",
|
||||||
"Answer": "圃",
|
"Answer": "圃",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -98,7 +98,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>chéng</strong></span> 意思:处罚。</p>",
|
"Name": "chéng#意思:处罚。",
|
||||||
"Answer": "惩",
|
"Answer": "惩",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -106,7 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>āi</strong></span> 意思:悲伤,悲痛。</p>",
|
"Name": "āi#意思:悲伤,悲痛。",
|
||||||
"Answer": "哀",
|
"Answer": "哀",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -114,7 +114,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>jiàn</strong></span> 意思:山间流水的沟。</p>",
|
"Name": "jiàn#意思:山间流水的沟。",
|
||||||
"Answer": "涧",
|
"Answer": "涧",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -122,7 +122,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>dǎi</strong></span> 意思:捉。</p>",
|
"Name": "dǎi#意思:捉。",
|
||||||
"Answer": "逮",
|
"Answer": "逮",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -130,7 +130,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>lǜ</strong></span> 意思:思考。</p>",
|
"Name": "lǜ#意思:思考。",
|
||||||
"Answer": "虑",
|
"Answer": "虑",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>fǔ</strong></span> 意思:古代的炊事用具,相当于现在的锅。</p>",
|
"Name": "fǔ#意思:古代的炊事用具,相当于现在的锅。",
|
||||||
"Answer": "釜",
|
"Answer": "釜",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -146,7 +146,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>chǒu</strong></span> 意思:看。</p>",
|
"Name": "chǒu#意思:看。",
|
||||||
"Answer": "瞅",
|
"Answer": "瞅",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -154,7 +154,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>xiè</strong></span> 意思:碎末。</p>",
|
"Name": "xiè#意思:碎末。",
|
||||||
"Answer": "屑",
|
"Answer": "屑",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>hàn</strong></span> 意思:广大。</p>",
|
"Name": "hàn#意思:广大。",
|
||||||
"Answer": "瀚",
|
"Answer": "瀚",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -170,7 +170,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>huò</strong></span> 意思:开阔,通达。</p>",
|
"Name": "huò#意思:开阔,通达。",
|
||||||
"Answer": "豁",
|
"Answer": "豁",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -178,7 +178,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>bāng</strong></span> 意思:小河。</p>",
|
"Name": "bāng#意思:小河。",
|
||||||
"Answer": "浜",
|
"Answer": "浜",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -186,7 +186,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>dǐng</strong></span> 意思:古代煮东西用的器物。</p>",
|
"Name": "dǐng#意思:古代煮东西用的器物。",
|
||||||
"Answer": "鼎",
|
"Answer": "鼎",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -194,7 +194,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 27,
|
"QuestionId": 27,
|
||||||
"Name": "<p><span style=\"color: rgb(225, 60, 57);\"><strong>dī</strong></span> 意思:沿河、沿湖或沿海的防水构筑物,多用土石等筑成。</p>",
|
"Name": "dī#意思:沿河、沿湖或沿海的防水构筑物,多用土石等筑成。",
|
||||||
"Answer": "堤",
|
"Answer": "堤",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"question_bank": [
|
"question_bank": [
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>诗人袁枚写的与<span style=\"color: rgb(225, 60, 57);\"><strong>美食</strong></span>有关的书是( )。</p><p><br></p><p><strong> A.《食经》 B.《食珍录》 C.《红楼梦》 D.《随园食单》</strong></p>",
|
"Name": "<p>诗人袁枚写的与<strong>美食</strong>有关的书是( )。</p><p><br></p><p><strong> A.《食经》 B.《食珍录》 C.《红楼梦》 D.《随园食单》</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“我家洗砚池头树”引用了一位<span style=\"color: rgb(225, 60, 57);\"><strong>书法家</strong></span>的典故,这位书法家是( )。</p><p><br></p><p><strong> A.王献之 B.王羲之 C.王冕 D.柳公权</strong></p>",
|
"Name": "<p>“我家洗砚池头树”引用了一位<strong>书法家</strong>的典故,这位书法家是( )。</p><p><br></p><p><strong> A.王献之 B.王羲之 C.王冕 D.柳公权</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“诗中有画,画中有诗”评价的是( )。</p><p><br></p><p><strong> A.杜牧的诗画风格 B.刘禹锡的诗画风格 C.苏轼的诗画风格 D.<span style=\"color: rgb(225, 60, 57);\"><strong>王维</strong></span>的诗画风格</strong></p>",
|
"Name": "<p>“诗中有画,画中有诗”评价的是( )。</p><p><br></p><p><strong> A.杜牧的诗画风格</strong></p><p><strong> B.刘禹锡的诗画风格</strong></p><p><strong> C.苏轼的诗画风格</strong></p><p><strong> D.王维的诗画风格</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>被闻一多称为“<span style=\"color: rgb(225, 60, 57);\"><strong>诗中的诗</strong></span>,顶峰上的顶峰”的诗歌作品是( )。</p><p><br></p><p><strong> A.刘希夷的《代悲白头翁》 B.杨广的《春江花月夜》 C.张若虚的《春江花月夜》 D.李白的《蜀道难》</strong></p>",
|
"Name": "<p>被闻一多称为“<strong>诗中的诗</strong>,顶峰上的顶峰”的诗歌作品是( )。</p><p><br></p><p><strong> A.刘希夷的《代悲白头翁》</strong></p><p><strong> B.杨广的《春江花月夜》</strong></p><p><strong> C.张若虚的《春江花月夜》</strong></p><p><strong> D.李白的《蜀道难》</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“<span style=\"color: rgb(225, 60, 57);\"><strong>梅妻鹤子</strong></span>”指的是( )。</p><p><br></p><p><strong> A.林逋 B.梅尧臣 C.苏舜钦 D.王安石</strong></p>",
|
"Name": "<p>“<strong>梅妻鹤子</strong>”指的是( )。</p><p><br></p><p><strong> A.林逋 B.梅尧臣 C.苏舜钦 D.王安石</strong></p>",
|
||||||
"Answer": "A",
|
"Answer": "A",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“一门父子三词客,千古文章八大家。”这副对联中提到的“<span style=\"color: rgb(225, 60, 57);\"><strong>三父子</strong></span>”是( )。</p><p><br></p><p><strong> A.曹操、曹丕、曹植 B.苏洵、苏轼、苏辙 C.班彪、班固、班超 D.阮瑀、阮籍、阮咸</strong></p>",
|
"Name": "<p>“一门父子三词客,千古文章八大家。”这副对联中提到的“<strong>三父子</strong>”是( )。</p><p><br></p><p><strong> A.曹操、曹丕、曹植</strong></p><p><strong> B.苏洵、苏轼、苏辙</strong></p><p><strong> C.班彪、班固、班超</strong></p><p><strong> D.阮瑀、阮籍、阮咸</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -50,7 +50,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>诗人刘禹锡被<span style=\"color: rgb(225, 60, 57);\"><strong>称</strong></span>为( )。</p><p><br></p><p><strong> A.“诗鬼” B.“诗豪” C.“诗圣” D.“诗仙”</strong></p>",
|
"Name": "<p>诗人刘禹锡被<strong>称</strong>为( )。</p><p><br></p><p><strong> A.“诗鬼” B.“诗豪” C.“诗圣” D.“诗仙”</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -58,7 +58,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>有关诗人卢钺的信息,<span style=\"color: rgb(225, 60, 57);\"><strong>不正确</strong></span>的一项是( )。</p><p><br></p><p><strong> A.别号梅坡 B.代表作《雪梅》 C.与辛派词人陈亮是好友 D.宋朝人</strong></p>",
|
"Name": "<p>有关诗人卢钺的信息,<strong>不正确</strong>的一项是( )。</p><p><br></p><p><strong> A.别号梅坡</strong></p><p><strong> B.代表作《雪梅》</strong></p><p><strong> C.与辛派词人陈亮是好友</strong></p><p><strong> D.宋朝人</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -66,7 +66,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>诗人王昌龄被<span style=\"color: rgb(225, 60, 57);\"><strong>称</strong></span>为( )。</p><p><br></p><p><strong> A.“五言圣手” B.“七绝圣手” C.“七言圣手” D.“七绝诗人”</strong></p>",
|
"Name": "<p>诗人王昌龄被<strong>称</strong>为( )。</p><p><br></p><p><strong> A.“五言圣手” B.“七绝圣手” C.“七言圣手” D.“七绝诗人”</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>李商隐与杜牧<span style=\"color: rgb(225, 60, 57);\"><strong>合称</strong></span>( )。</p><p><br></p><p><strong> A.“李杜” B.“杜李” C.“小李杜” D.“唐诗双杰”</strong></p>",
|
"Name": "<p>李商隐与杜牧<strong>合称</strong>( )。</p><p><br></p><p><strong> A.“李杜” B.“杜李” C.“小李杜” D.“唐诗双杰”</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -82,7 +82,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“南朝四百八十寺”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>南朝</strong></span>”指的是( )。</p><p><br></p><p><strong> A.在南方建都的王朝 B.宋、齐、魏、陈四个朝代的总称 C.宋、齐、梁、陈四个朝代的总称 D.在南京建都的王朝</strong></p>",
|
"Name": "<p>“南朝四百八十寺”中,“<strong>南朝</strong>”指的是( )。</p><p><br></p><p><strong> A.在南方建都的王朝</strong></p><p><strong> B.宋、齐、魏、陈四个朝代的总称</strong></p><p><strong> C.宋、齐、梁、陈四个朝代的总称</strong></p><p><strong> D.在南京建都的王朝</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -90,7 +90,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 34,
|
"QuestionId": 34,
|
||||||
"Name": "<p>“<span style=\"color: rgb(225, 60, 57);\"><strong>初唐四杰</strong></span>”是指( )。</p><p><br></p><p><strong> A.张若虚、张旭、孔融和贺知章 B.王勃、杨炯、卢照邻和骆宾王 C.高适、王昌龄、岑参和王之涣 D.贺知章、张若虚、张旭和包融</strong></p>",
|
"Name": "<p>“<strong>初唐四杰</strong>”是指( )。</p><p><br></p><p><strong> A.张若虚、张旭、孔融和贺知章</strong></p><p><strong> B.王勃、杨炯、卢照邻和骆宾王</strong></p><p><strong> C.高适、王昌龄、岑参和王之涣</strong></p><p><strong> D.贺知章、张若虚、张旭和包融</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"question_bank": [
|
"question_bank": [
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>袁枚《<span style=\"color: rgb(225, 60, 57);\"><strong>所见</strong></span>》一诗中没有描绘的画面是( )。</p><p><br></p><p><strong> A.牧童骑牛 B.牧童唱歌 C.牧童捕蝉 D.牧童静静站立</strong></p>",
|
"Name": "<p>袁枚《<strong>所见</strong>》一诗中没有描绘的画面是( )。</p><p><br></p><p><strong> A.牧童骑牛</strong></p><p><strong> B.牧童唱歌</strong></p><p><strong> C.牧童捕蝉</strong></p><p><strong> D.牧童静静站立</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>和杜牧《<span style=\"color: rgb(225, 60, 57);\"><strong>山行</strong></span>》中描写的季节相同的古诗是( )。</p><p><br></p><p><strong> A.袁枚《所见》 B.杨万里《小池》 C.王安石《梅花》 D.叶绍翁《夜书所见》</strong></p>",
|
"Name": "<p>和杜牧《<strong>山行</strong>》中描写的季节相同的古诗是( )。</p><p><br></p><p><strong> A.袁枚《所见》</strong></p><p><strong> B.杨万里《小池》</strong></p><p><strong> C.王安石《梅花》</strong></p><p><strong> D.叶绍翁《夜书所见》</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>根据古诗《<span style=\"color: rgb(225, 60, 57);\"><strong>望天门山</strong></span>》所写内容,可推测诗人望天门山的视角是( )。</p><p><br></p><p><strong> A.天门山脚下 B.天门山山中 C.行驶的小船中 D.远方的村庄</strong></p>",
|
"Name": "<p>根据古诗《<strong>望天门山</strong>》所写内容,可推测诗人望天门山的视角是( )。</p><p><br></p><p><strong> A.天门山脚下</strong></p><p><strong> B.天门山山中</strong></p><p><strong> C.行驶的小船中</strong></p><p><strong> D.远方的村庄</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>刘禹锡《<span style=\"color: rgb(225, 60, 57);\"><strong>望洞庭</strong></span>》中用到的修辞手法是( )。</p><p><br></p><p><strong> A.拟人 B.夸张 C.比喻 D.对比</strong></p>",
|
"Name": "<p>刘禹锡《<strong>望洞庭</strong>》中用到的修辞手法是( )。</p><p><br></p><p><strong> A.拟人 B.夸张 C.比喻 D.对比</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“八月涛声吼地来,头高数丈触山回”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>八月涛</strong></span>”指的是( )。</p><p><br></p><p><strong> A.农历八月十五钱塘江大潮 B.农历八月十八钱塘江大潮 C.农历八月长江的波涛 D.农历八月黄河的波涛</strong></p>",
|
"Name": "<p>“八月涛声吼地来,头高数丈触山回”中,“<strong>八月涛</strong>”指的是( )。</p><p><br></p><p><strong> A.农历八月十五钱塘江大潮</strong></p><p><strong> B.农历八月十八钱塘江大潮</strong></p><p><strong> C.农历八月长江的波涛</strong></p><p><strong> D.农历八月黄河的波涛</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>古诗《<span style=\"color: rgb(225, 60, 57);\"><strong>鹿柴</strong></span>》描写的幽静景色是在( )。</p><p><br></p><p><strong> A.早上 B.中午 C.傍晚 D.夜晚</strong></p>",
|
"Name": "<p>古诗《<strong>鹿柴</strong>》描写的幽静景色是在( )。</p><p><br></p><p><strong> A.早上 B.中午 C.傍晚 D.夜晚</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -50,7 +50,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“可怜九月初三夜,露似真珠月似弓”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>可怜</strong></span>”指的是( )。</p><p><br></p><p><strong> A.可爱 B.怜惜 C.可悲 D.惊叹</strong></p>",
|
"Name": "<p>“可怜九月初三夜,露似真珠月似弓”中,“<strong>可怜</strong>”指的是( )。</p><p><br></p><p><strong> A.可爱 B.分外 C.可悲 D.惊叹</strong></p>",
|
||||||
"Answer": "A",
|
"Answer": "A",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -58,7 +58,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,和“<span style=\"color: rgb(225, 60, 57);\"><strong>当局者迷,旁观者清</strong></span>”道理相近的是( )。</p><p><br></p><p><strong> A.空山不见人,但闻人语响 B.可怜九月初三夜,露似真珠月似弓 C.横看成岭侧成峰,远近高低各不同 D.不识庐山真面目,只缘身在此山中</strong></p>",
|
"Name": "<p>下列诗句中,和“<strong>当局者迷,旁观者清</strong>”道理相近的是( )。</p><p><br></p><p><strong> A.空山不见人,但闻人语响</strong></p><p><strong> B.可怜九月初三夜,露似真珠月似弓</strong></p><p><strong> C.横看成岭侧成峰,远近高低各不同</strong></p><p><strong> D.不识庐山真面目,只缘身在此山中</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -66,7 +66,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列词语中的“逊”字,意思与诗句“梅须<span style=\"color: rgb(225, 60, 57);\"><strong>逊</strong></span>雪三分白”中的“逊”相同的是( )。</p><p><br></p><p><strong> A.出言不逊 B.皇帝逊位 C.略逊一筹 D.谦逊</strong></p>",
|
"Name": "<p>下列词语中的“逊”字,意思与诗句“梅须<strong>逊</strong>雪三分白”中的“逊”相同的是( )。</p><p><br></p><p><strong> A.出言不逊 B.皇帝逊位 C.略逊一筹 D.谦逊</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“云母屏风烛影深,长河渐落晓星沉”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>长河</strong></span>”指的是( )。</p><p><br></p><p><strong> A.黄河 B.银河 C.长江 D.松花江</strong></p>",
|
"Name": "<p>“云母屏风烛影深,长河渐落晓星沉”中,“<strong>长河</strong>”指的是( )。</p><p><br></p><p><strong> A.黄河 B.银河 C.长江 D.松花江</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -82,7 +82,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“葡萄美酒夜光杯,欲饮琵琶马上催”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>夜光杯</strong></span>”的材质是( )。</p><p><br></p><p><strong> A.水晶 B.银 C.金 D.玉</strong></p>",
|
"Name": "<p>“葡萄美酒夜光杯,欲饮琵琶马上催”中,“<strong>夜光杯</strong>”的材质是( )。</p><p><br></p><p><strong> A.水晶 B.银 C.金 D.玉</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -90,7 +90,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>高适的《<span style=\"color: rgb(225, 60, 57);\"><strong>别董大</strong></span>》描写的季节是( )。</p><p><br></p><p><strong> A.春季 B.夏季 C.秋季 D.冬季</strong></p>",
|
"Name": "<p>高适的《<strong>别董大</strong>》描写的季节是( )。</p><p><br></p><p><strong> A.春季 B.夏季 C.秋季 D.冬季</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -98,7 +98,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,标红字词的意思不相同的一项是( )。</p><p><br></p><p><strong> A.但悲不见九州同 九州生气恃风雷 B.王师北定中原日 南望王师又一年 C.<span style=\"color: rgb(225, 60, 57);\"><strong>直</strong></span>把杭州作汴州 飞流<span style=\"color: rgb(225, 60, 57);\"><strong>直</strong></span>下三千尺 D.西湖歌舞几时休 物是人非事事休</strong></p>",
|
"Name": "<p>下列诗句中,标红字词的意思不相同的一项是( )。</p><p><br></p><p><strong> A.但悲不见九州同 九州生气恃风雷</strong></p><p><strong> B.王师北定中原日 南望王师又一年</strong></p><p><strong> C.直把杭州作汴州 飞流直下三千尺</strong></p><p><strong> D.西湖歌舞几时休 物是人非事事休</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -106,7 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“故园无此声”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>故园</strong></span>”指的是( )。</p><p><br></p><p><strong> A.古旧的园苑 B.朋友的园子 C.故乡 D.花园</strong></p>",
|
"Name": "<p>“故园无此声”中,“<strong>故园</strong>”指的是( )。</p><p><br></p><p><strong> A.古旧的园苑</strong></p><p><strong> B.朋友的园子</strong></p><p><strong> C.故乡</strong></p><p><strong> D.花园</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -114,7 +114,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>龚自珍的《己亥杂诗》谈论的核心问题是关于( )。</p><p><br></p><p><strong> A.朝廷 B.<span style=\"color: rgb(225, 60, 57);\"><strong>人才</strong></span> C.天公 D.皇帝</strong></p>",
|
"Name": "<p>龚自珍的《己亥杂诗》谈论的核心问题是关于( )。</p><p><br></p><p><strong> A.朝廷 B.人才 C.天公 D.皇帝</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -122,7 +122,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“但使龙城飞将在,不教胡马度阴山”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>龙城飞将</strong></span>”指的是( )。</p><p><br></p><p><strong> A.汉朝名将霍去病 B.汉朝名将李广 C.战国名将廉颇 D.三国名将赵云</strong></p>",
|
"Name": "<p>“但使龙城飞将在,不教胡马度阴山”中,“<strong>龙城飞将</strong>”指的是( )。</p><p><br></p><p><strong> A.汉朝名将霍去病</strong></p><p><strong> B.汉朝名将李广</strong></p><p><strong> C.战国名将廉颇</strong></p><p><strong> D.三国名将赵云</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -130,7 +130,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“<span style=\"color: rgb(225, 60, 57);\"><strong>过江千尺浪,入竹万竿斜</strong></span>”出自一首构思巧妙的咏物诗,它咏的是( )。</p><p><br></p><p><strong> A.风 B.雨 C.雪 D.竹</strong></p>",
|
"Name": "<p>“<strong>过江千尺浪,入竹万竿斜</strong>”出自一首构思巧妙的咏物诗,它咏的是( )。</p><p><br></p><p><strong> A.风 B.雨 C.雪 D.竹</strong></p>",
|
||||||
"Answer": "A",
|
"Answer": "A",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>《泊船瓜洲》中,“<span style=\"color: rgb(225, 60, 57);\"><strong>一水</strong></span>”指的是( )。</p><p><br></p><p><strong> A.珠江 B.黄河 C.黑龙江 D.长江</strong></p>",
|
"Name": "<p>《泊船瓜洲》中,“<strong>一水</strong>”指的是( )。</p><p><br></p><p><strong> A.珠江 B.黄河 C.黑龙江 D.长江</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -146,7 +146,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>欧阳修《浪淘沙》中有“<span style=\"color: rgb(225, 60, 57);\"><strong>绛纱囊里水晶丸</strong></span>”,这里指的水果是( )。</p><p><br></p><p><strong> A.桂圆 B.荔枝 C.葡萄 D.樱桃</strong></p>",
|
"Name": "<p>欧阳修《浪淘沙》中有“<strong>绛纱囊里水晶丸</strong>”,这里指的水果是( )。</p><p><br></p><p><strong> A.桂圆 B.荔枝 C.葡萄 D.樱桃</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -154,7 +154,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列含有“<span style=\"color: rgb(225, 60, 57);\"><strong>梨花</strong></span>”的诗句,描写真实梨花的是( )。</p><p><br></p><p><strong> A.忽如一夜春风来,千树万树梨花开 B.玉容寂寞泪阑干,梨花一枝春带雨 C.梨花风起正清明,游子寻春半出城 D.惊飞远映碧山去,一树梨花落晚风</strong></p>",
|
"Name": "<p>下列含有“<strong>梨花</strong>”的诗句,描写真实梨花的是( )。</p><p><br></p><p><strong> A.忽如一夜春风来,千树万树梨花开</strong></p><p><strong> B.玉容寂寞泪阑干,梨花一枝春带雨</strong></p><p><strong> C.梨花风起正清明,游子寻春半出城</strong></p><p><strong> D.惊飞远映碧山去,一树梨花落晚风</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列含有“<span style=\"color: rgb(225, 60, 57);\"><strong>春</strong></span>”字的诗句,没有描写春季的是( )。</p><p><br></p><p><strong> A.春色满园关不住,一枝红杏出墙来 B.忽如一夜春风来,千树万树梨花开 C.最是一年春好处,绝胜烟柳满皇都 D.不知细叶谁裁出,二月春风似剪刀</strong></p>",
|
"Name": "<p>下列含有“<strong>春</strong>”字的诗句,没有描写春季的是( )。</p><p><br></p><p><strong> A.春色满园关不住,一枝红杏出墙来</strong></p><p><strong> B.忽如一夜春风来,千树万树梨花开</strong></p><p><strong> C.最是一年春好处,绝胜烟柳满皇都</strong></p><p><strong> D.不知细叶谁裁出,二月春风似剪刀</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -170,7 +170,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,和“<span style=\"color: rgb(225, 60, 57);\"><strong>耳濡目染</strong></span>”意思相近的是( )。</p><p><br></p><p><strong> A.绿遍山原白满川,子规声里雨如烟 B.童孙未解供耕织,也傍桑阴学种瓜 C.天街小雨润如酥,草色遥看近却无 D.粉骨碎身浑不怕,要留清白在人间</strong></p>",
|
"Name": "<p>下列诗句中,和“<strong>耳濡目染</strong>”意思相近的是( )。</p><p><br></p><p><strong> A.绿遍山原白满川,子规声里雨如烟</strong></p><p><strong> B.童孙未解供耕织,也傍桑阴学种瓜</strong></p><p><strong> C.天街小雨润如酥,草色遥看近却无</strong></p><p><strong> D.粉骨碎身浑不怕,要留清白在人间</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -178,7 +178,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“老骥伏枥,志在千里”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>枥</strong></span>”指的是( )。</p><p><br></p><p><strong> A.马鞍 B.马槽 C.马车 D.马棚</strong></p>",
|
"Name": "<p>“老骥伏枥,志在千里”中,“<strong>枥</strong>”指的是( )。</p><p><br></p><p><strong> A.马鞍 B.马槽 C.马车 D.马棚</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -186,7 +186,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“爆竹声中一岁除,春风送暖入屠苏”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>屠苏</strong></span>”指的是( )。</p><p><br></p><p><strong> A.苏州 B.房屋 C.酒 D.庄稼</strong></p>",
|
"Name": "<p>“爆竹声中一岁除,春风送暖入屠苏”中,“<strong>屠苏</strong>”指的是( )。</p><p><br></p><p><strong> A.苏州 B.房屋 C.酒 D.庄稼</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -194,7 +194,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,不是诗人写给<span style=\"color: rgb(225, 60, 57);\"><strong>朋友</strong></span>的是( )。</p><p><br></p><p><strong> A.一年好景君须记,最是橙黄橘绿时 B.洛阳亲友如相问,一片冰心在玉壶 C.劝君更尽一杯酒,西出阳关无故人 D.王师北定中原日,家祭无忘告乃翁</strong></p>",
|
"Name": "<p>下列诗句中,不是诗人写给<strong>朋友</strong>的是( )。</p><p><br></p><p><strong> A.一年好景君须记,最是橙黄橘绿时</strong></p><p><strong> B.洛阳亲友如相问,一片冰心在玉壶</strong></p><p><strong> C.劝君更尽一杯酒,西出阳关无故人</strong></p><p><strong> D.王师北定中原日,家祭无忘告乃翁</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -202,7 +202,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“两岸猿声啼不住,轻舟已过万重山”描写的<span style=\"color: rgb(225, 60, 57);\"><strong>风景胜地</strong></span>是( )。</p><p><br></p><p><strong> A.长江三峡 B.太行山 C.泰山 D.虎跳峡</strong></p>",
|
"Name": "<p>“两岸猿声啼不住,轻舟已过万重山”描写的<strong>风景胜地</strong>是( )。</p><p><br></p><p><strong> A.长江三峡 B.太行山 C.泰山 D.虎跳峡</strong></p>",
|
||||||
"Answer": "A",
|
"Answer": "A",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -210,7 +210,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>《<span style=\"color: rgb(225, 60, 57);\"><strong>六月二十七日望湖楼醉书</strong></span>》一诗中描绘的四幅图画,展现了西湖的风云变幻。其正确排序是( )。</p><p><br></p><p><strong> A.狂风吹散图、白雨跳珠图、黑云翻墨图、雨过天晴图 B.白雨跳珠图、黑云翻墨图、雨过天晴图、狂风吹散图 C.雨过天晴图、狂风吹散图、白雨跳珠图、黑云翻墨图 D.黑云翻墨图、白雨跳珠图、狂风吹散图、雨过天晴图</strong></p>",
|
"Name": "<p>《<strong>六月二十七日望湖楼醉书</strong>》一诗中描绘的四幅图画,展现了西湖的风云变幻。其正确排序是( )。</p><p><br></p><p><strong> A.狂风吹散图、白雨跳珠图、黑云翻墨图、雨过天晴图</strong></p><p><strong> B.白雨跳珠图、黑云翻墨图、雨过天晴图、狂风吹散图</strong></p><p><strong> C.雨过天晴图、狂风吹散图、白雨跳珠图、黑云翻墨图</strong></p><p><strong> D.黑云翻墨图、白雨跳珠图、狂风吹散图、雨过天晴图</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -218,7 +218,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>辛弃疾《<span style=\"color: rgb(225, 60, 57);\"><strong>西江月·夜行黄沙道中</strong></span>》的上阕中,没有写到的声音是( )。</p><p><br></p><p><strong> A.蝉鸣 B.青蛙叫声 C.喜鹊叫声 D.蟋蟀叫声</strong></p>",
|
"Name": "<p>辛弃疾《<strong>西江月·夜行黄沙道中</strong>》的上阕中,没有写到的声音是( )。</p><p><br></p><p><strong> A.蝉鸣 B.青蛙叫声 C.喜鹊叫声 D.蟋蟀叫声</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -226,7 +226,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>诗句“待到重阳日,还来就菊花”中,体现了唐朝过<span style=\"color: rgb(225, 60, 57);\"><strong>重阳节</strong></span>的传统习俗是( )。</p><p><br></p><p><strong> A.登高 B.赏菊、饮菊花酒 C.插茱萸 D.种菊花</strong></p>",
|
"Name": "<p>诗句“待到重阳日,还来就菊花”中,体现了唐朝过<strong>重阳节</strong>的传统习俗是( )。</p><p><br></p><p><strong> A.登高 B.赏菊、饮菊花酒 C.插茱萸 D.种菊花</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -234,7 +234,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>诗题“回乡偶书”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>偶书</strong></span>”的意思是( )。</p><p><br></p><p><strong> A.偶然得到的书 B.偶尔读书 C.就偶然所见即景抒怀 D.好书</strong></p>",
|
"Name": "<p>诗题“回乡偶书”中,“<strong>偶书</strong>”的意思是( )。</p><p><br></p><p><strong> A.偶然得到的书</strong></p><p><strong> B.偶尔读书</strong></p><p><strong> C.就偶然所见即景抒怀</strong></p><p><strong> D.好书</strong></p>",
|
||||||
"Answer": "C",
|
"Answer": "C",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -242,7 +242,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,不是描写<span style=\"color: rgb(225, 60, 57);\"><strong>乡村田园风光</strong></span>的是( )。</p><p><br></p><p><strong> A.稻花香里说丰年,听取蛙声一片 B.竹外桃花三两枝,春江水暖鸭先知 C.绿树村边合,青山郭外斜 D.一道残阳铺水中,半江瑟瑟半江红</strong></p>",
|
"Name": "<p>下列诗句中,不是描写<strong>乡村田园风光</strong>的是( )。</p><p><br></p><p><strong> A.稻花香里说丰年,听取蛙声一片</strong></p><p><strong> B.竹外桃花三两枝,春江水暖鸭先知</strong></p><p><strong> C.绿树村边合,青山郭外斜</strong></p><p><strong> D.一道残阳铺水中,半江瑟瑟半江红</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -250,7 +250,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,没有表达<span style=\"color: rgb(225, 60, 57);\"><strong>思乡之情</strong></span>的是( )。</p><p><br></p><p><strong> A.此夜曲中闻折柳,何人不起故园情 B.最是一年春好处,绝胜烟柳满皇都 C.春风又绿江南岸,明月何时照我还 D.少小离家老大回,乡音无改鬓毛衰</strong></p>",
|
"Name": "<p>下列诗句中,没有表达<strong>思乡之情</strong>的是( )。</p><p><br></p><p><strong> A.此夜曲中闻折柳,何人不起故园情</strong></p><p><strong> B.最是一年春好处,绝胜烟柳满皇都</strong></p><p><strong> C.春风又绿江南岸,明月何时照我还</strong></p><p><strong> D.少小离家老大回,乡音无改鬓毛衰</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -258,7 +258,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>“谁言寸草心,报得三春晖”中,“<span style=\"color: rgb(225, 60, 57);\"><strong>三春</strong></span>”指的是( )。</p><p><br></p><p><strong> A.早春、孟春、仲春 B.早春、孟春、季春 C.早春、孟春、晚春 D.孟春、仲春、季春</strong></p>",
|
"Name": "<p>“谁言寸草心,报得三春晖”中,“<strong>三春</strong>”指的是( )。</p><p><br></p><p><strong> A.早春、孟春、仲春</strong></p><p><strong> B.早春、孟春、季春</strong></p><p><strong> C.早春、孟春、晚春</strong></p><p><strong> D.孟春、仲春、季春</strong></p>",
|
||||||
"Answer": "D",
|
"Answer": "D",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -266,7 +266,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,没有用到<span style=\"color: rgb(225, 60, 57);\"><strong>对偶</strong></span>的是( )。</p><p><br></p><p><strong> A.绿树村边合,青山郭外斜 B.黄河远上白云间,一片孤城万仞山 C.七八个星天外,两三点雨山前 D.两个黄鹂鸣翠柳,一行白鹭上青天</strong></p>",
|
"Name": "<p>下列诗句中,没有用到<strong>对偶</strong>的是( )。</p><p><br></p><p><strong> A.绿树村边合,青山郭外斜</strong></p><p><strong> B.黄河远上白云间,一片孤城万仞山</strong></p><p><strong> C.七八个星天外,两三点雨山前</strong></p><p><strong> D.两个黄鹂鸣翠柳,一行白鹭上青天</strong></p>",
|
||||||
"Answer": "B",
|
"Answer": "B",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -274,7 +274,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 28,
|
"QuestionId": 28,
|
||||||
"Name": "<p>下列诗句中,不是描写<span style=\"color: rgb(225, 60, 57);\"><strong>战争</strong></span>的是( )。</p><p><br></p><p><strong> A.生当作人杰,死亦为鬼雄 B.黄沙百战穿金甲,不破楼兰终不还 C.秦时明月汉时关,万里长征人未还 D.壮志饥餐胡虏肉,笑谈渴饮匈奴血</strong></p>",
|
"Name": "<p>下列诗句中,不是描写<strong>战争</strong>的是( )。</p><p><br></p><p><strong> A.生当作人杰,死亦为鬼雄</strong></p><p><strong> B.黄沙百战穿金甲,不破楼兰终不还</strong></p><p><strong> C.秦时明月汉时关,万里长征人未还</strong></p><p><strong> D.壮志饥餐胡虏肉,笑谈渴饮匈奴血</strong></p>",
|
||||||
"Answer": "A",
|
"Answer": "A",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"question_bank": [
|
"question_bank": [
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,落花时节又逢君。",
|
"Name": "___________________,落花时节又逢君。",
|
||||||
"Answer": "正是江南好风景",
|
"Answer": "正是江南好风景",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -10,7 +10,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,霜叶红于二月花。",
|
"Name": "___________________,霜叶红于二月花。",
|
||||||
"Answer": "停车坐爱枫林晚",
|
"Answer": "停车坐爱枫林晚",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,小荷才露尖尖角。",
|
"Name": "___________________,芙蓉向脸两边开。",
|
||||||
"Answer": "荷叶罗裙一色裁",
|
"Answer": "荷叶罗裙一色裁",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -26,7 +26,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,夜深篱落一灯明。",
|
"Name": "___________________,夜深篱落一灯明。",
|
||||||
"Answer": "知有儿童挑促织",
|
"Answer": "知有儿童挑促织",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -34,7 +34,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,白云生处有人家。",
|
"Name": "___________________,白云生处有人家。",
|
||||||
"Answer": "远上寒山石径斜",
|
"Answer": "远上寒山石径斜",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -42,7 +42,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,江上秋风动客情。",
|
"Name": "___________________,江上秋风动客情。",
|
||||||
"Answer": "萧萧梧叶送寒声",
|
"Answer": "萧萧梧叶送寒声",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -50,7 +50,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,碧水东流至此回。",
|
"Name": "___________________,碧水东流至此回。",
|
||||||
"Answer": "天门中断楚江开",
|
"Answer": "天门中断楚江开",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -58,7 +58,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,闻歌始觉有人来。",
|
"Name": "___________________,闻歌始觉有人来。",
|
||||||
"Answer": "乱入池中看不见",
|
"Answer": "乱入池中看不见",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -66,7 +66,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,思君不见下渝州。",
|
"Name": "___________________,思君不见下渝州。",
|
||||||
"Answer": "夜发清溪向三峡",
|
"Answer": "夜发清溪向三峡",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -74,7 +74,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,雪却输梅一段香。",
|
"Name": "___________________,雪却输梅一段香。",
|
||||||
"Answer": "梅须逊雪三分白",
|
"Answer": "梅须逊雪三分白",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -82,7 +82,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,半江瑟瑟半江红。",
|
"Name": "___________________,半江瑟瑟半江红。",
|
||||||
"Answer": "一道残阳铺水中",
|
"Answer": "一道残阳铺水中",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -90,7 +90,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,却话巴山夜雨时。",
|
"Name": "___________________,却话巴山夜雨时。",
|
||||||
"Answer": "何当共剪西窗烛",
|
"Answer": "何当共剪西窗烛",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -98,7 +98,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,骚人阁笔费评章。",
|
"Name": "___________________,骚人阁笔费评章。",
|
||||||
"Answer": "梅雪争春未肯降",
|
"Answer": "梅雪争春未肯降",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -106,7 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,碧海青天夜夜心。",
|
"Name": "___________________,碧海青天夜夜心。",
|
||||||
"Answer": "嫦娥应悔偷灵药",
|
"Answer": "嫦娥应悔偷灵药",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -114,7 +114,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,只缘身在此山中。",
|
"Name": "___________________,只缘身在此山中。",
|
||||||
"Answer": "不识庐山真面目",
|
"Answer": "不识庐山真面目",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -122,7 +122,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,蒙冲巨舰一毛轻。",
|
"Name": "___________________,蒙冲巨舰一毛轻。",
|
||||||
"Answer": "昨夜江边春水生",
|
"Answer": "昨夜江边春水生",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -130,7 +130,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,此日中流自在行。",
|
"Name": "___________________,此日中流自在行。",
|
||||||
"Answer": "向来枉费推移力",
|
"Answer": "向来枉费推移力",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,天光云影共徘徊。",
|
"Name": "___________________,天光云影共徘徊。",
|
||||||
"Answer": "半亩方塘一鉴开",
|
"Answer": "半亩方塘一鉴开",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -146,7 +146,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,桃花流水鳜鱼肥。",
|
"Name": "___________________,桃花流水鳜鱼肥。",
|
||||||
"Answer": "西塞山前白鹭飞",
|
"Answer": "西塞山前白鹭飞",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -154,7 +154,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______?为有源头活水来。",
|
"Name": "___________________?为有源头活水来。",
|
||||||
"Answer": "问渠那得清如许",
|
"Answer": "问渠那得清如许",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -162,7 +162,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,铁马冰河入梦来。",
|
"Name": "___________________,铁马冰河入梦来。",
|
||||||
"Answer": "夜阑卧听风吹雨",
|
"Answer": "夜阑卧听风吹雨",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -170,7 +170,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,家祭无忘告乃翁。",
|
"Name": "___________________,家祭无忘告乃翁。",
|
||||||
"Answer": "王师北定中原日",
|
"Answer": "王师北定中原日",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -178,7 +178,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,穿尽红丝几万条。",
|
"Name": "___________________,穿尽红丝几万条。",
|
||||||
"Answer": "家家乞巧望秋月",
|
"Answer": "家家乞巧望秋月",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -186,7 +186,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,我言秋日胜春朝。",
|
"Name": "___________________,我言秋日胜春朝。",
|
||||||
"Answer": "自古逢秋悲寂寥",
|
"Answer": "自古逢秋悲寂寥",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -194,7 +194,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,万马齐喑究可哀。",
|
"Name": "___________________,万马齐喑究可哀。",
|
||||||
"Answer": "九州生气恃风雷",
|
"Answer": "九州生气恃风雷",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -202,7 +202,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,听取蛙声一片。",
|
"Name": "___________________,听取蛙声一片。",
|
||||||
"Answer": "稻花香里说丰年",
|
"Answer": "稻花香里说丰年",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -210,7 +210,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,同到牵牛织女家。",
|
"Name": "___________________,同到牵牛织女家。",
|
||||||
"Answer": "如今直上银河去",
|
"Answer": "如今直上银河去",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -218,7 +218,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,乡音无改鬓毛衰。",
|
"Name": "___________________,乡音无改鬓毛衰。",
|
||||||
"Answer": "少小离家老大回",
|
"Answer": "少小离家老大回",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -226,7 +226,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,两山排闼送青来。",
|
"Name": "___________________,两山排闼送青来。",
|
||||||
"Answer": "一水护田将绿绕",
|
"Answer": "一水护田将绿绕",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -234,7 +234,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,多少楼台烟雨中。",
|
"Name": "___________________,多少楼台烟雨中。",
|
||||||
"Answer": "南朝四百八十寺",
|
"Answer": "南朝四百八十寺",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -242,7 +242,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,笑问客从何处来。",
|
"Name": "___________________,笑问客从何处来。",
|
||||||
"Answer": "儿童相见不相识",
|
"Answer": "儿童相见不相识",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -250,7 +250,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,不问苍生问鬼神。",
|
"Name": "___________________,不问苍生问鬼神。",
|
||||||
"Answer": "可怜夜半虚前席",
|
"Answer": "可怜夜半虚前席",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -258,7 +258,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,望湖楼下水如天。",
|
"Name": "___________________,望湖楼下水如天。",
|
||||||
"Answer": "卷地风来忽吹散",
|
"Answer": "卷地风来忽吹散",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -266,7 +266,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,浪淘风簸自天涯。",
|
"Name": "___________________,浪淘风簸自天涯。",
|
||||||
"Answer": "九曲黄河万里沙",
|
"Answer": "九曲黄河万里沙",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
@ -274,7 +274,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"QuestionId": 30,
|
"QuestionId": 30,
|
||||||
"Name": "_______,三军过后尽开颜。",
|
"Name": "___________________,三军过后尽开颜。",
|
||||||
"Answer": "更喜岷山千里雪",
|
"Answer": "更喜岷山千里雪",
|
||||||
"Type": "text",
|
"Type": "text",
|
||||||
"IsGood": 0,
|
"IsGood": 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user