6849 lines
380 KiB
HTML
6849 lines
380 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>单词默写系统</title>
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
}
|
||
|
||
body {
|
||
background: linear-gradient(135deg, #0a2a1a, #0c3a4a, #0d4b66);
|
||
min-height: 100vh;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding: 20px;
|
||
overflow-x: hidden;
|
||
position: relative;
|
||
}
|
||
|
||
/* 鼠标跟随小圈 - 更慢更滑溜 */
|
||
.cursor-follower {
|
||
position: fixed;
|
||
width: 20px;
|
||
height: 20px;
|
||
border: 2px solid rgba(100, 255, 200, 0.7);
|
||
border-radius: 50%;
|
||
pointer-events: none;
|
||
transform: translate(-50%, -50%);
|
||
z-index: 9999;
|
||
transition: width 0.5s, height 0.5s, border 0.5s, transform 0.1s;
|
||
mix-blend-mode: difference;
|
||
}
|
||
|
||
.cursor-follower.hover {
|
||
width: 40px;
|
||
height: 40px;
|
||
border: 2px solid rgba(100, 255, 200, 0.9);
|
||
background: rgba(100, 255, 200, 0.1);
|
||
}
|
||
|
||
.container {
|
||
width: 100%;
|
||
max-width: 1000px;
|
||
text-align: center;
|
||
position: relative;
|
||
z-index: 10;
|
||
}
|
||
|
||
.header {
|
||
margin-bottom: 40px;
|
||
animation: fadeInDown 1s ease-out;
|
||
position: relative;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 4.5rem;
|
||
margin-bottom: 20px;
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
-webkit-background-clip: text;
|
||
background-clip: text;
|
||
color: transparent;
|
||
text-shadow: 0 0 20px rgba(100, 255, 200, 0.3);
|
||
animation: pulse 3s infinite;
|
||
}
|
||
|
||
.title {
|
||
font-size: 2.8rem;
|
||
font-weight: 700;
|
||
margin-bottom: 15px;
|
||
color: #fff;
|
||
text-shadow: 0 0 15px rgba(100, 255, 200, 0.5);
|
||
position: relative;
|
||
z-index: 20;
|
||
}
|
||
|
||
.subtitle {
|
||
font-size: 1.2rem;
|
||
color: #c0ffea;
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
line-height: 1.6;
|
||
position: relative;
|
||
z-index: 20;
|
||
}
|
||
|
||
/* 模式选择按钮 */
|
||
.mode-selector {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 30px;
|
||
margin: 40px 0;
|
||
animation: fadeInUp 1s ease-out 0.3s both;
|
||
}
|
||
|
||
.mode-btn {
|
||
padding: 20px 40px;
|
||
border-radius: 25px;
|
||
font-size: 1.2rem;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.4s ease;
|
||
position: relative;
|
||
overflow: hidden;
|
||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
|
||
border: none;
|
||
color: #0a2a1a;
|
||
min-width: 180px;
|
||
}
|
||
|
||
.teacher-btn {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
}
|
||
|
||
.student-btn {
|
||
background: linear-gradient(45deg, #5de6ff, #00d2ff, #7cffcb);
|
||
}
|
||
|
||
.mode-btn:hover {
|
||
transform: translateY(-5px) scale(1.05);
|
||
box-shadow: 0 15px 35px rgba(100, 255, 200, 0.4);
|
||
}
|
||
|
||
.mode-btn:active {
|
||
transform: scale(0.95);
|
||
}
|
||
|
||
.mode-btn::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: -100%;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||
transition: 0.5s;
|
||
}
|
||
|
||
.mode-btn:hover::before {
|
||
left: 100%;
|
||
}
|
||
|
||
/* 主要内容区域 */
|
||
.main-content {
|
||
background: rgba(10, 42, 26, 0.7);
|
||
border-radius: 30px;
|
||
padding: 40px;
|
||
margin: 30px 0;
|
||
backdrop-filter: blur(15px);
|
||
border: 1px solid rgba(100, 255, 200, 0.3);
|
||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
|
||
animation: fadeInUp 1s ease-out 0.6s both;
|
||
position: relative;
|
||
overflow: hidden; /* 防止内容溢出 */
|
||
height: auto; /* 或者设置一个固定高度 */
|
||
}
|
||
|
||
/* 欢迎界面 */
|
||
.welcome-screen {
|
||
padding: 40px 20px;
|
||
}
|
||
|
||
.welcome-icon {
|
||
font-size: 5rem;
|
||
margin-bottom: 30px;
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
-webkit-background-clip: text;
|
||
background-clip: text;
|
||
color: transparent;
|
||
}
|
||
|
||
.welcome-title {
|
||
font-size: 2.2rem;
|
||
color: #fff;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.welcome-text {
|
||
color: #c0ffea;
|
||
font-size: 1.1rem;
|
||
line-height: 1.8;
|
||
max-width: 600px;
|
||
margin: 0 auto 30px;
|
||
}
|
||
|
||
/* 老师端界面 */
|
||
.teacher-screen {
|
||
display: none;
|
||
}
|
||
|
||
/* 标签页 */
|
||
.tabs {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 15px;
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.tab-btn {
|
||
padding: 12px 25px;
|
||
border-radius: 20px;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border: 1px solid rgba(100, 255, 200, 0.3);
|
||
color: #c0ffea;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.tab-btn.active {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
color: #0a2a1a;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.tab-btn:hover:not(.active) {
|
||
background: rgba(255, 255, 255, 0.2);
|
||
}
|
||
|
||
/* 搜索框 */
|
||
.search-container {
|
||
display: flex;
|
||
gap: 15px;
|
||
margin: 25px 0;
|
||
max-width: 600px;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
|
||
.search-input {
|
||
flex: 1;
|
||
padding: 15px 20px;
|
||
border-radius: 15px;
|
||
border: 1px solid rgba(100, 255, 200, 0.3);
|
||
background: rgba(0, 0, 0, 0.2);
|
||
color: #fff;
|
||
font-size: 1rem;
|
||
outline: none;
|
||
}
|
||
|
||
.search-input::placeholder {
|
||
color: #a0ffe0;
|
||
}
|
||
|
||
.search-input:focus {
|
||
border-color: #7cffcb;
|
||
box-shadow: 0 0 15px rgba(124, 255, 203, 0.3);
|
||
}
|
||
|
||
/* 按钮组 */
|
||
.button-group {
|
||
display: flex;
|
||
justify-content: center;
|
||
flex-wrap: wrap;
|
||
gap: 15px;
|
||
margin: 25px 0;
|
||
}
|
||
|
||
.action-btn {
|
||
padding: 12px 25px;
|
||
border-radius: 15px;
|
||
border: none;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.btn-primary {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.btn-secondary {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
color: #c0ffea;
|
||
border: 1px solid rgba(100, 255, 200, 0.3);
|
||
}
|
||
|
||
.btn-success {
|
||
background: linear-gradient(45deg, #34C759, #7cffcb);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.btn-warning {
|
||
background: linear-gradient(45deg, #FFCC00, #ffd93d);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.btn-danger {
|
||
background: linear-gradient(45deg, #FF3B30, #ff6b6b);
|
||
color: white;
|
||
}
|
||
|
||
/* --- 禁用按钮样式 --- */
|
||
.action-btn:disabled {
|
||
opacity: 0.5;
|
||
cursor: not-allowed;
|
||
/* 移除或减弱 hover 和 active 效果 */
|
||
}
|
||
.action-btn:disabled:hover {
|
||
transform: none;
|
||
box-shadow: none;
|
||
}
|
||
.action-btn:disabled:active {
|
||
transform: none;
|
||
}
|
||
.action-btn:disabled::before {
|
||
/* 移除或减弱 hover 效果动画 */
|
||
display: none;
|
||
}
|
||
/* --- 结束禁用按钮样式 --- */
|
||
|
||
|
||
.action-btn:hover {
|
||
transform: translateY(-3px);
|
||
box-shadow: 0 8px 20px rgba(100, 255, 200, 0.3);
|
||
}
|
||
|
||
.action-btn:active {
|
||
transform: translateY(-1px);
|
||
}
|
||
|
||
.action-btn::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0;
|
||
left: -100%;
|
||
width: 100%;
|
||
height: 100%;
|
||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||
transition: 0.5s;
|
||
}
|
||
|
||
.action-btn:hover::before {
|
||
left: 100%;
|
||
}
|
||
|
||
/* 统计信息 */
|
||
.stats-container {
|
||
display: flex;
|
||
justify-content: space-around;
|
||
margin: 30px 0;
|
||
flex-wrap: wrap;
|
||
gap: 20px;
|
||
}
|
||
|
||
.stat-card {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 15px;
|
||
padding: 20px;
|
||
min-width: 120px;
|
||
border: 1px solid rgba(100, 255, 200, 0.2);
|
||
}
|
||
|
||
.stat-number {
|
||
font-size: 2rem;
|
||
font-weight: 700;
|
||
color: #7cffcb;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.stat-label {
|
||
color: #c0ffea;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
/* 单词网格 */
|
||
.word-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
||
gap: 15px;
|
||
margin: 30px 0;
|
||
max-height: 300px;
|
||
overflow-y: auto;
|
||
padding: 10px;
|
||
}
|
||
|
||
.word-grid::-webkit-scrollbar {
|
||
width: 8px;
|
||
}
|
||
|
||
.word-grid::-webkit-scrollbar-track {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.word-grid::-webkit-scrollbar-thumb {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff);
|
||
border-radius: 4px;
|
||
}
|
||
|
||
.word-item {
|
||
padding: 15px 10px;
|
||
border-radius: 10px;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
color: #c0ffea;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
border: 1px solid transparent;
|
||
font-weight: 500;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.word-item:hover {
|
||
background: rgba(255, 255, 255, 0.2);
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
.word-item.selected {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
color: #0a2a1a;
|
||
border: 1px solid rgba(255, 255, 255, 0.5);
|
||
font-weight: 600;
|
||
}
|
||
|
||
.word-text {
|
||
font-weight: bold;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.word-translation {
|
||
font-size: 0.8em;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
/* 添加单词提示 */
|
||
.add-word-suggestion {
|
||
background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(255, 107, 107, 0.2));
|
||
border-radius: 15px;
|
||
padding: 20px;
|
||
margin: 20px 0;
|
||
border: 1px solid rgba(255, 204, 0, 0.3);
|
||
display: none;
|
||
}
|
||
|
||
.add-word-suggestion p {
|
||
color: #ffd93d;
|
||
margin-bottom: 15px;
|
||
}
|
||
|
||
/* 添加单词输入框 */
|
||
.add-word-inputs {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 10px;
|
||
margin-top: 10px;
|
||
}
|
||
|
||
.add-word-input {
|
||
padding: 10px;
|
||
border-radius: 8px;
|
||
border: 1px solid rgba(100, 255, 200, 0.3);
|
||
background: rgba(0, 0, 0, 0.2);
|
||
color: #fff;
|
||
}
|
||
|
||
/* 学生端界面 */
|
||
.student-screen {
|
||
display: none;
|
||
}
|
||
|
||
/* 文件上传区域 */
|
||
.file-upload-area {
|
||
border: 2px dashed rgba(100, 255, 200, 0.3);
|
||
border-radius: 20px;
|
||
padding: 50px 30px;
|
||
margin: 30px 0;
|
||
text-align: center;
|
||
transition: all 0.3s ease;
|
||
background: rgba(0, 0, 0, 0.2);
|
||
cursor: pointer;
|
||
}
|
||
|
||
.file-upload-area:hover {
|
||
border-color: #7cffcb;
|
||
background: rgba(124, 255, 203, 0.1);
|
||
}
|
||
|
||
.upload-icon {
|
||
font-size: 4rem;
|
||
color: #7cffcb;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.upload-text {
|
||
color: #c0ffea;
|
||
font-size: 1.2rem;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.upload-subtext {
|
||
color: #a0ffe0;
|
||
font-size: 0.9rem;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
/* 导入信息卡片 */
|
||
.import-info {
|
||
background: linear-gradient(135deg, rgba(52, 199, 89, 0.2), rgba(124, 255, 203, 0.2));
|
||
border-radius: 20px;
|
||
padding: 30px;
|
||
margin: 30px 0;
|
||
border: 1px solid rgba(52, 199, 89, 0.3);
|
||
display: none;
|
||
}
|
||
|
||
.import-info h3 {
|
||
color: #7cffcb;
|
||
margin-bottom: 20px;
|
||
font-size: 1.5rem;
|
||
}
|
||
|
||
.import-details {
|
||
color: #c0ffea;
|
||
margin-bottom: 20px;
|
||
text-align: left;
|
||
}
|
||
|
||
.import-details p {
|
||
margin: 10px 0;
|
||
}
|
||
|
||
/* 默写区域 */
|
||
.dictation-area {
|
||
display: none;
|
||
padding: 30px 0;
|
||
}
|
||
|
||
.word-display {
|
||
font-size: 3rem;
|
||
font-weight: 300;
|
||
color: #fff;
|
||
margin: 40px 0;
|
||
text-shadow: 0 0 30px rgba(100, 255, 200, 0.5);
|
||
min-height: 150px;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.word-blank {
|
||
display: inline-block;
|
||
min-width: 300px;
|
||
text-align: center;
|
||
margin: 10px 0;
|
||
font-family: 'Courier New', monospace;
|
||
letter-spacing: 5px;
|
||
font-size: 2.5rem;
|
||
}
|
||
|
||
.word-translation-student {
|
||
color: #a0ffe0;
|
||
font-size: 1.5rem;
|
||
margin-top: 15px;
|
||
}
|
||
|
||
.answer-input {
|
||
padding: 15px 20px;
|
||
border-radius: 15px;
|
||
border: 2px solid rgba(100, 255, 200, 0.3);
|
||
background: rgba(0, 0, 0, 0.2);
|
||
color: #fff;
|
||
font-size: 1.5rem;
|
||
text-align: center;
|
||
outline: none;
|
||
width: 300px;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.answer-input:focus {
|
||
border-color: #7cffcb;
|
||
box-shadow: 0 0 20px rgba(124, 255, 203, 0.5);
|
||
}
|
||
|
||
.input-indicator {
|
||
color: #7cffcb;
|
||
font-size: 1.2rem;
|
||
margin-bottom: 10px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.progress-info {
|
||
color: #c0ffea;
|
||
font-size: 1.2rem;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.progress-bar {
|
||
width: 100%;
|
||
height: 10px;
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 5px;
|
||
overflow: hidden;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.progress-fill {
|
||
height: 100%;
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff, #5de6ff);
|
||
border-radius: 5px;
|
||
width: 0%;
|
||
transition: width 0.5s ease;
|
||
}
|
||
|
||
.dictation-controls {
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 20px;
|
||
margin: 40px 0;
|
||
flex-wrap: wrap;
|
||
}
|
||
|
||
.control-btn {
|
||
padding: 15px 30px;
|
||
border-radius: 15px;
|
||
border: none;
|
||
font-size: 1.1rem;
|
||
font-weight: 600;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
min-width: 150px;
|
||
}
|
||
|
||
.prev-btn {
|
||
background: linear-gradient(45deg, #5de6ff, #00d2ff);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.next-btn {
|
||
background: linear-gradient(45deg, #7cffcb, #00d2ff);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.end-btn {
|
||
background: linear-gradient(45deg, #FF3B30, #ff6b6b);
|
||
color: white;
|
||
}
|
||
|
||
.submit-btn {
|
||
background: linear-gradient(45deg, #34C759, #7cffcb);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
/* 成绩报告区域 */
|
||
.result-area {
|
||
display: none;
|
||
padding: 30px 0;
|
||
}
|
||
|
||
.result-header {
|
||
color: #fff;
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.score-circle {
|
||
width: 200px;
|
||
height: 200px;
|
||
border-radius: 50%;
|
||
background: conic-gradient(#7cffcb 0% 70%, #5de6ff 70% 100%);
|
||
margin: 0 auto 30px;
|
||
position: relative;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.score-inner {
|
||
width: 160px;
|
||
height: 160px;
|
||
border-radius: 50%;
|
||
background: rgba(10, 42, 26, 0.9);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.score-number {
|
||
font-size: 3rem;
|
||
font-weight: 700;
|
||
color: #7cffcb;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.score-text {
|
||
color: #c0ffea;
|
||
font-size: 1.2rem;
|
||
}
|
||
|
||
.result-stats {
|
||
display: flex;
|
||
justify-content: space-around;
|
||
margin: 30px 0;
|
||
flex-wrap: wrap;
|
||
gap: 20px;
|
||
}
|
||
|
||
.result-stat-card {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 15px;
|
||
padding: 20px;
|
||
min-width: 150px;
|
||
border: 1px solid rgba(100, 255, 200, 0.2);
|
||
}
|
||
|
||
.result-stat-number {
|
||
font-size: 2rem;
|
||
font-weight: 700;
|
||
color: #7cffcb;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.result-stat-label {
|
||
color: #c0ffea;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
.grade-badge {
|
||
padding: 10px 20px;
|
||
border-radius: 20px;
|
||
font-weight: 600;
|
||
margin: 20px 0;
|
||
display: inline-block;
|
||
}
|
||
|
||
.grade-a {
|
||
background: linear-gradient(45deg, #34C759, #7cffcb);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.grade-b {
|
||
background: linear-gradient(45deg, #FFCC00, #ffd93d);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.grade-c {
|
||
background: linear-gradient(45deg, #FF9500, #ffcc80);
|
||
color: #0a2a1a;
|
||
}
|
||
|
||
.grade-d {
|
||
background: linear-gradient(45deg, #FF3B30, #ff6b6b);
|
||
color: white;
|
||
}
|
||
|
||
/* 错误详情列表 */
|
||
.error-details {
|
||
background: rgba(255, 255, 255, 0.1);
|
||
border-radius: 15px;
|
||
padding: 25px;
|
||
margin: 30px 0;
|
||
border: 1px solid rgba(255, 107, 107, 0.3);
|
||
}
|
||
|
||
.error-details h3 {
|
||
color: #ff6b6b;
|
||
margin-bottom: 20px;
|
||
text-align: center;
|
||
}
|
||
|
||
.error-list {
|
||
list-style: none;
|
||
text-align: left;
|
||
}
|
||
|
||
.error-item {
|
||
display: flex;
|
||
align-items: center;
|
||
padding: 15px;
|
||
margin: 10px 0;
|
||
background: rgba(255, 255, 255, 0.05);
|
||
border-radius: 10px;
|
||
border-left: 4px solid #ff6b6b;
|
||
}
|
||
|
||
.error-number {
|
||
font-weight: bold;
|
||
color: #ff6b6b;
|
||
margin-right: 15px;
|
||
min-width: 30px;
|
||
}
|
||
|
||
.error-content {
|
||
flex: 1;
|
||
}
|
||
|
||
.error-word {
|
||
font-weight: bold;
|
||
color: #fff;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.error-answer {
|
||
color: #ffd93d;
|
||
margin-bottom: 5px;
|
||
}
|
||
|
||
.error-correct {
|
||
color: #7cffcb;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.error-arrow {
|
||
margin: 0 10px;
|
||
color: #ffd93d;
|
||
}
|
||
|
||
/* Particles background */
|
||
.particles {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.particle {
|
||
position: absolute;
|
||
border-radius: 50%;
|
||
background: rgba(100, 255, 200, 0.2);
|
||
animation: float 15s infinite linear;
|
||
}
|
||
|
||
@keyframes float {
|
||
0% {
|
||
transform: translateY(0) translateX(0) rotate(0deg);
|
||
opacity: 0;
|
||
}
|
||
10% {
|
||
opacity: 1;
|
||
}
|
||
90% {
|
||
opacity: 0.5;
|
||
}
|
||
100% {
|
||
transform: translateY(-100vh) translateX(100px) rotate(360deg);
|
||
opacity: 0;
|
||
}
|
||
}
|
||
|
||
/* 旋转立方体 */
|
||
.cube-container {
|
||
position: absolute;
|
||
top: 20%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: 150px;
|
||
height: 150px;
|
||
perspective: 1000px;
|
||
z-index: 5;
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.cube {
|
||
width: 100%;
|
||
height: 100%;
|
||
position: relative;
|
||
transform-style: preserve-3d;
|
||
animation: rotate 20s infinite linear;
|
||
}
|
||
|
||
.cube-face {
|
||
position: absolute;
|
||
width: 150px;
|
||
height: 150px;
|
||
background: rgba(100, 255, 200, 0.1);
|
||
border: 2px solid rgba(100, 255, 200, 0.3);
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
font-size: 2rem;
|
||
font-weight: bold;
|
||
color: rgba(100, 255, 200, 0.7);
|
||
backdrop-filter: blur(2px);
|
||
}
|
||
|
||
.cube-face-front { transform: rotateY(0deg) translateZ(75px); }
|
||
.cube-face-back { transform: rotateY(180deg) translateZ(75px); }
|
||
.cube-face-right { transform: rotateY(90deg) translateZ(75px); }
|
||
.cube-face-left { transform: rotateY(-90deg) translateZ(75px); }
|
||
.cube-face-top { transform: rotateX(90deg) translateZ(75px); }
|
||
.cube-face-bottom { transform: rotateX(-90deg) translateZ(75px); }
|
||
|
||
@keyframes rotate {
|
||
0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
|
||
100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
|
||
}
|
||
|
||
/* Animations */
|
||
@keyframes fadeIn {
|
||
from { opacity: 0; }
|
||
to { opacity: 1; }
|
||
}
|
||
|
||
@keyframes fadeInDown {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(-30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes fadeInUp {
|
||
from {
|
||
opacity: 0;
|
||
transform: translateY(30px);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
}
|
||
|
||
@keyframes pulse {
|
||
0% { text-shadow: 0 0 10px rgba(100, 255, 200, 0.3); }
|
||
50% { text-shadow: 0 0 30px rgba(100, 255, 200, 0.6); }
|
||
100% { text-shadow: 0 0 10px rgba(100, 255, 200, 0.3); }
|
||
}
|
||
|
||
/* --- 添加滚动动画相关的 CSS --- */
|
||
|
||
/* 为需要动画的容器添加基类 */
|
||
.animate-container {
|
||
position: relative;
|
||
overflow: hidden; /* 防止内容溢出 */
|
||
}
|
||
|
||
/* 定义动画类 */
|
||
.slide-transition {
|
||
transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease-in-out;
|
||
}
|
||
|
||
/* 水平滑入(从右到左) */
|
||
.slide-enter-from-right {
|
||
transform: translateX(100%);
|
||
opacity: 0;
|
||
}
|
||
|
||
.slide-enter-to-right, .slide-leave-from-right {
|
||
transform: translateX(0);
|
||
opacity: 1;
|
||
}
|
||
|
||
.slide-leave-to-right {
|
||
transform: translateX(-100%);
|
||
opacity: 0;
|
||
}
|
||
|
||
/* 水平滑出(从左到右) */
|
||
.slide-enter-from-left {
|
||
transform: translateX(-100%);
|
||
opacity: 0;
|
||
}
|
||
|
||
.slide-enter-to-left, .slide-leave-from-left {
|
||
transform: translateX(0);
|
||
opacity: 1;
|
||
}
|
||
|
||
.slide-leave-to-left {
|
||
transform: translateX(100%);
|
||
opacity: 0;
|
||
}
|
||
|
||
/* 垂直滑入(从下到上) - 用于标签页切换 */
|
||
.slide-v-enter-from {
|
||
transform: translateY(20px);
|
||
opacity: 0;
|
||
}
|
||
|
||
.slide-v-enter-to, .slide-v-leave-from {
|
||
transform: translateY(0);
|
||
opacity: 1;
|
||
}
|
||
|
||
.slide-v-leave-to {
|
||
transform: translateY(-20px);
|
||
opacity: 0;
|
||
}
|
||
|
||
/* --- 修改现有样式以支持动画 --- */
|
||
|
||
/* 老师端和学生端屏幕需要绝对定位来实现滚动效果 */
|
||
/* 但为了兼容性,我们使用 opacity 和 transform 来模拟 */
|
||
.teacher-screen, .student-screen {
|
||
/* 移除 display: none; */
|
||
/* display: none; */
|
||
opacity: 0;
|
||
transform: translateX(100%);
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
padding: 40px; /* 与 .main-content padding 一致 */
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.teacher-screen.active, .student-screen.active {
|
||
position: relative; /* 激活时恢复相对定位 */
|
||
opacity: 1;
|
||
transform: translateX(0);
|
||
}
|
||
|
||
/* 标签内容区域动画 */
|
||
.tab-content {
|
||
/* display: none; */ /* 移除 display: none */
|
||
opacity: 0;
|
||
transform: translateY(20px);
|
||
}
|
||
|
||
.tab-content.active {
|
||
/* display: block; */ /* 移除 display: block */
|
||
opacity: 1;
|
||
transform: translateY(0);
|
||
}
|
||
|
||
/* --- 结束添加滚动动画相关的 CSS --- */
|
||
|
||
/* 响应式设计 */
|
||
@media (max-width: 768px) {
|
||
.title {
|
||
font-size: 2.2rem;
|
||
}
|
||
|
||
.logo {
|
||
font-size: 3.5rem;
|
||
}
|
||
|
||
.mode-selector {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 15px;
|
||
}
|
||
|
||
.mode-btn {
|
||
width: 100%;
|
||
max-width: 300px;
|
||
}
|
||
|
||
.main-content {
|
||
padding: 25px 20px;
|
||
}
|
||
|
||
.word-grid {
|
||
grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
|
||
gap: 10px;
|
||
}
|
||
|
||
.word-item {
|
||
padding: 12px 8px;
|
||
font-size: 0.9rem;
|
||
}
|
||
|
||
.word-display {
|
||
font-size: 2rem;
|
||
}
|
||
|
||
.word-blank {
|
||
font-size: 1.8rem;
|
||
min-width: 200px;
|
||
}
|
||
|
||
.answer-input {
|
||
width: 250px;
|
||
font-size: 1.2rem;
|
||
}
|
||
|
||
.dictation-controls {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.control-btn {
|
||
width: 100%;
|
||
max-width: 250px;
|
||
}
|
||
|
||
.cube-container {
|
||
width: 100px;
|
||
height: 100px;
|
||
top: 25%;
|
||
}
|
||
|
||
.cube-face {
|
||
width: 100px;
|
||
height: 100px;
|
||
font-size: 1.5rem;
|
||
}
|
||
|
||
.cube-face-front { transform: rotateY(0deg) translateZ(50px); }
|
||
.cube-face-back { transform: rotateY(180deg) translateZ(50px); }
|
||
.cube-face-right { transform: rotateY(90deg) translateZ(50px); }
|
||
.cube-face-left { transform: rotateY(-90deg) translateZ(50px); }
|
||
.cube-face-top { transform: rotateX(90deg) translateZ(50px); }
|
||
.cube-face-bottom { transform: rotateX(-90deg) translateZ(50px); }
|
||
}
|
||
|
||
@media (max-width: 480px) {
|
||
.title {
|
||
font-size: 1.8rem;
|
||
}
|
||
|
||
.subtitle {
|
||
font-size: 1rem;
|
||
}
|
||
|
||
.main-content {
|
||
padding: 20px 15px;
|
||
}
|
||
|
||
.word-grid {
|
||
grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
|
||
}
|
||
|
||
.word-display {
|
||
font-size: 1.5rem;
|
||
}
|
||
|
||
.word-blank {
|
||
font-size: 1.5rem;
|
||
min-width: 150px;
|
||
letter-spacing: 3px;
|
||
}
|
||
|
||
.answer-input {
|
||
width: 200px;
|
||
font-size: 1rem;
|
||
}
|
||
|
||
.stats-container {
|
||
flex-direction: column;
|
||
align-items: center;
|
||
}
|
||
|
||
.stat-card {
|
||
width: 100%;
|
||
max-width: 200px;
|
||
}
|
||
|
||
.score-circle {
|
||
width: 150px;
|
||
height: 150px;
|
||
}
|
||
|
||
.score-inner {
|
||
width: 120px;
|
||
height: 120px;
|
||
}
|
||
|
||
.score-number {
|
||
font-size: 2rem;
|
||
}
|
||
|
||
.error-item {
|
||
flex-direction: column;
|
||
align-items: flex-start;
|
||
text-align: left;
|
||
}
|
||
|
||
.error-number {
|
||
margin-bottom: 10px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<!-- 鼠标跟随小圈 -->
|
||
<div class="cursor-follower"></div>
|
||
|
||
<!-- 背景粒子 -->
|
||
<div class="particles" id="particles"></div>
|
||
|
||
<!-- 旋转立方体 -->
|
||
<div class="cube-container">
|
||
<div class="cube">
|
||
<div class="cube-face cube-face-front">单</div>
|
||
<div class="cube-face cube-face-back">词</div>
|
||
<div class="cube-face cube-face-right">默</div>
|
||
<div class="cube-face cube-face-left">写</div>
|
||
<div class="cube-face cube-face-top">系</div>
|
||
<div class="cube-face cube-face-bottom">统</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="container">
|
||
<div class="header">
|
||
<div class="logo">
|
||
<i class="fas fa-book"></i>
|
||
</div>
|
||
<h1 class="title">单词默写系统</h1>
|
||
<p class="subtitle">简单易用的单词默写工具</p>
|
||
</div>
|
||
|
||
<!-- 模式选择 -->
|
||
<div class="mode-selector">
|
||
<button class="mode-btn teacher-btn" onclick="switchMode('teacher')">
|
||
<i class="fas fa-chalkboard-teacher"></i> 教师端
|
||
</button>
|
||
<button class="mode-btn student-btn" onclick="switchMode('student')">
|
||
<i class="fas fa-user-graduate"></i> 学生端
|
||
</button>
|
||
</div>
|
||
|
||
<!-- 主要内容区域 -->
|
||
<div class="main-content">
|
||
<!-- 欢迎界面 -->
|
||
<div id="welcomeScreen" class="welcome-screen">
|
||
<div class="welcome-icon">
|
||
<i class="fas fa-book-open"></i>
|
||
</div>
|
||
<h2 class="welcome-title">欢迎使用单词默写系统</h2>
|
||
<p class="welcome-text">
|
||
这是一个便捷的单词默写工具,老师可以选择单词并导出配置文件,
|
||
学生可以导入配置文件进行单词默写练习。
|
||
</p>
|
||
<p class="welcome-text">
|
||
请先选择使用模式:教师端或学生端
|
||
</p>
|
||
</div>
|
||
|
||
<!-- 老师端界面 -->
|
||
<div id="teacherScreen" class="teacher-screen animate-container">
|
||
<!-- 标签页 -->
|
||
<div class="tabs">
|
||
<button class="tab-btn active" onclick="switchTab('selection')">单词选择</button>
|
||
</div>
|
||
|
||
<!-- 单词选择标签页 -->
|
||
<div id="selectionTab">
|
||
<h3 style="color: #fff; margin: 20px 0;">选择单词</h3>
|
||
|
||
<div class="search-container">
|
||
<input type="text" class="search-input" id="searchInput" placeholder="搜索单词..." oninput="filterWords()">
|
||
<button class="action-btn btn-secondary" onclick="clearSearch()">
|
||
<i class="fas fa-times"></i> 清除
|
||
</button>
|
||
</div>
|
||
|
||
<!-- 添加单词提示 -->
|
||
<div id="addWordSuggestion" class="add-word-suggestion">
|
||
<p><i class="fas fa-lightbulb"></i> 没有找到您要的单词?可以添加到词库中!</p>
|
||
<div class="add-word-inputs">
|
||
<input type="text" class="add-word-input" id="newWordInput" placeholder="英文单词">
|
||
<input type="text" class="add-word-input" id="newTranslationInput" placeholder="中文翻译">
|
||
<button class="action-btn btn-warning" onclick="addNewWordWithTranslation()">
|
||
<i class="fas fa-plus"></i> 添加单词
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="button-group">
|
||
<button class="action-btn btn-primary" onclick="selectAllWords()">
|
||
<i class="fas fa-check-square"></i> 全选
|
||
</button>
|
||
<button class="action-btn btn-secondary" onclick="deselectAllWords()">
|
||
<i class="fas fa-square"></i> 取消全选
|
||
</button>
|
||
<button class="action-btn btn-warning" onclick="randomSelectWords()">
|
||
<i class="fas fa-dice"></i> 随机60个
|
||
</button>
|
||
<button class="action-btn btn-success" onclick="exportConfig()">
|
||
<i class="fas fa-download"></i> 导出配置
|
||
</button>
|
||
</div>
|
||
|
||
<div class="stats-container">
|
||
<div class="stat-card">
|
||
<div class="stat-number" id="totalWords">0</div>
|
||
<div class="stat-label">总单词</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-number" id="selectedCount">0</div>
|
||
<div class="stat-label">已选择</div>
|
||
</div>
|
||
<div class="stat-card">
|
||
<div class="stat-number" id="percentage">0%</div>
|
||
<div class="stat-label">完成度</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="word-grid" id="wordGrid">
|
||
<!-- 单词项将通过JavaScript动态生成 -->
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 学生端界面 -->
|
||
<div id="studentScreen" class="student-screen animate-container">
|
||
<h3 style="color: #fff; margin: 20px 0;">导入配置文件</h3>
|
||
|
||
<div class="file-upload-area" id="fileUploadArea" onclick="document.getElementById('configFile').click()">
|
||
<div class="upload-icon">
|
||
<i class="fas fa-cloud-upload-alt"></i>
|
||
</div>
|
||
<h3 class="upload-text">点击或拖拽文件到此处上传</h3>
|
||
<p class="upload-subtext">支持 .json 格式的配置文件</p>
|
||
<button class="action-btn btn-primary">
|
||
<i class="fas fa-folder-open"></i> 选择文件
|
||
</button>
|
||
<input type="file" id="configFile" accept=".json" style="display: none;" onchange="handleFileSelect(event)">
|
||
</div>
|
||
|
||
<div id="importInfo" class="import-info">
|
||
<h3><i class="fas fa-check-circle"></i> 配置导入成功</h3>
|
||
<div class="import-details">
|
||
<p><strong>单词数量:</strong><span id="importedWordCount">0</span> 个</p>
|
||
<p><strong>创建时间:</strong><span id="importedTime">-</span></p>
|
||
</div>
|
||
<button class="action-btn btn-success" onclick="startDictation()">
|
||
<i class="fas fa-play"></i> 开始默写
|
||
</button>
|
||
</div>
|
||
|
||
<div id="dictationArea" class="dictation-area">
|
||
<h3 style="color: #fff; margin-bottom: 30px;">单词默写</h3>
|
||
<div class="word-display" id="wordDisplay">
|
||
<div class="input-indicator">请输入单词:</div>
|
||
<div class="word-blank" id="wordBlank">_ _ _ _ _</div>
|
||
<div class="word-translation-student" id="wordTranslationStudent"></div> <!-- 新增翻译显示 -->
|
||
</div>
|
||
<input type="text" class="answer-input" id="answerInput" placeholder="请输入单词..." onkeypress="handleKeyPress(event)">
|
||
<div class="progress-info" id="progressInfo">进度: 0/0</div>
|
||
|
||
<div class="progress-bar">
|
||
<div class="progress-fill" id="progressFill"></div>
|
||
</div>
|
||
|
||
<div class="dictation-controls">
|
||
<button class="control-btn prev-btn" onclick="showPrevWord()">
|
||
<i class="fas fa-arrow-left"></i> 上一个
|
||
</button>
|
||
<button class="control-btn submit-btn" onclick="submitAnswer()">
|
||
<i class="fas fa-check"></i> 提交答案
|
||
</button>
|
||
<button class="control-btn next-btn" onclick="showNextWord()">
|
||
下一个 <i class="fas fa-arrow-right"></i>
|
||
</button>
|
||
<button class="control-btn end-btn" onclick="endDictation()">
|
||
<i class="fas fa-stop"></i> 结束默写
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="resultArea" class="result-area">
|
||
<h2 class="result-header">默写成绩报告</h2>
|
||
<div class="score-circle">
|
||
<div class="score-inner">
|
||
<div class="score-number" id="finalScore">0</div>
|
||
<div class="score-text">正确率</div>
|
||
</div>
|
||
</div>
|
||
<div class="grade-badge" id="gradeBadge">等级: A</div>
|
||
|
||
<div class="result-stats">
|
||
<div class="result-stat-card">
|
||
<div class="result-stat-number" id="correctCount">0</div>
|
||
<div class="result-stat-label">正确</div>
|
||
</div>
|
||
<div class="result-stat-card">
|
||
<div class="result-stat-number" id="wrongCount">0</div>
|
||
<div class="result-stat-label">错误</div>
|
||
</div>
|
||
<div class="result-stat-card">
|
||
<div class="result-stat-number" id="totalCount">0</div>
|
||
<div class="result-stat-label">总计</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="errorDetails" class="error-details">
|
||
<h3><i class="fas fa-times-circle"></i> 错误详情</h3>
|
||
<ul class="error-list" id="errorList">
|
||
<!-- 错误列表将通过JavaScript动态生成 -->
|
||
</ul>
|
||
</div>
|
||
|
||
<button class="action-btn btn-primary" onclick="restartDictation()">
|
||
<i class="fas fa-redo"></i> 重新开始
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
// 单词库 - 扩展版 (带中文翻译) - 初始为空
|
||
let toeflWords = [
|
||
{ "word": "a", "translation": "一个" },
|
||
{ "word": "a few", "translation": "一些,几个" },
|
||
{ "word": "a little", "translation": "一点,少量" },
|
||
{ "word": "a lot of", "translation": "许多,大量" },
|
||
{ "word": "a.m.", "translation": "上午" },
|
||
{ "word": "abandon", "translation": "放弃,抛弃" },
|
||
{ "word": "abandoned", "translation": "被遗弃的" },
|
||
{ "word": "ability", "translation": "能力,才能" },
|
||
{ "word": "able", "translation": "能够的,有能力的" },
|
||
{ "word": "abolish", "translation": "废除,废止" },
|
||
{ "word": "abortion", "translation": "流产,堕胎" },
|
||
{ "word": "about", "translation": "关于,大约" },
|
||
{ "word": "above", "translation": "在...之上,超过" },
|
||
{ "word": "abroad", "translation": "在国外,到国外" },
|
||
{ "word": "absence", "translation": "缺席,不在" },
|
||
{ "word": "absent", "translation": "缺席的,不在的" },
|
||
{ "word": "absolute", "translation": "绝对的,完全的" },
|
||
{ "word": "absorb", "translation": "吸收,吸引" },
|
||
{ "word": "abstain", "translation": "戒除,节制" },
|
||
{ "word": "abstract", "translation": "抽象的,摘要" },
|
||
{ "word": "absurd", "translation": "荒谬的,不合理的" },
|
||
{ "word": "abundance", "translation": "丰富,充裕" },
|
||
{ "word": "abundant", "translation": "丰富的,大量的" },
|
||
{ "word": "abuse", "translation": "滥用,虐待" },
|
||
{ "word": "academic", "translation": "学术的,学院的" },
|
||
{ "word": "academy", "translation": "学院,研究院" },
|
||
{ "word": "accelerate", "translation": "加速,促进" },
|
||
{ "word": "accent", "translation": "口音,重音" },
|
||
{ "word": "accept", "translation": "接受" },
|
||
{ "word": "acceptable", "translation": "可以接受的" },
|
||
{ "word": "acceptance", "translation": "接受,承认" },
|
||
{ "word": "access", "translation": "接近,进入,通道" },
|
||
{ "word": "accessory", "translation": "附件,配件,同谋" },
|
||
{ "word": "accident", "translation": "事故,意外" },
|
||
{ "word": "accidental", "translation": "意外的,偶然的" },
|
||
{ "word": "acclaim", "translation": "称赞,喝彩" },
|
||
{ "word": "accommodate", "translation": "容纳,提供住宿" },
|
||
{ "word": "accommodation", "translation": "住宿,膳宿" },
|
||
{ "word": "accompany", "translation": "陪伴,伴随" },
|
||
{ "word": "accomplish", "translation": "完成,实现" },
|
||
{ "word": "accord", "translation": "一致,符合" },
|
||
{ "word": "accordance", "translation": "一致, accordance with 依照" },
|
||
{ "word": "according to", "translation": "根据" },
|
||
{ "word": "accordingly", "translation": "因此,相应地" },
|
||
{ "word": "account", "translation": "账户,解释,说明" },
|
||
{ "word": "accountant", "translation": "会计师" },
|
||
{ "word": "accumulate", "translation": "积累,堆积" },
|
||
{ "word": "accuracy", "translation": "准确(性),精确(度)" },
|
||
{ "word": "accurate", "translation": "准确的,精确的" },
|
||
{ "word": "accusation", "translation": "指控,控告" },
|
||
{ "word": "accuse", "translation": "指控,控告" },
|
||
{ "word": "achieve", "translation": "完成,实现(目标)" },
|
||
{ "word": "acid", "translation": "酸,酸性的" },
|
||
{ "word": "acknowledge", "translation": "承认,答谢" },
|
||
{ "word": "acquaintance", "translation": "熟人,相识" },
|
||
{ "word": "acquire", "translation": "获得,学到" },
|
||
{ "word": "acquisition", "translation": "获得,收购" },
|
||
{ "word": "acre", "translation": "英亩" },
|
||
{ "word": "across", "translation": "穿过,横过" },
|
||
{ "word": "act", "translation": "行动,行为,扮演" },
|
||
{ "word": "action", "translation": "行动,作用" },
|
||
{ "word": "active", "translation": "积极的,活跃的" },
|
||
{ "word": "activist", "translation": "活动家,积极分子" },
|
||
{ "word": "activity", "translation": "活动" },
|
||
{ "word": "actor", "translation": "男演员" },
|
||
{ "word": "actress", "translation": "女演员" },
|
||
{ "word": "actual", "translation": "实际的,真实的" },
|
||
{ "word": "actually", "translation": "实际上,事实上" },
|
||
{ "word": "ad", "translation": "广告 (advertisement)" },
|
||
{ "word": "adapt", "translation": "适应,改编" },
|
||
{ "word": "add", "translation": "增加,添加" },
|
||
{ "word": "addict", "translation": "使沉溺,使上瘾" },
|
||
{ "word": "addiction", "translation": "沉溺,上瘾" },
|
||
{ "word": "addition", "translation": "增加,附加物" },
|
||
{ "word": "additional", "translation": "附加的,额外的" },
|
||
{ "word": "address", "translation": "地址,发表演说" },
|
||
{ "word": "adequate", "translation": "充足的,足够的" },
|
||
{ "word": "adjacent", "translation": "邻近的,毗连的" },
|
||
{ "word": "adjust", "translation": "调整,调节" },
|
||
{ "word": "administer", "translation": "管理,执行" },
|
||
{ "word": "administration", "translation": "管理,行政部门" },
|
||
{ "word": "administrative", "translation": "管理的,行政的" },
|
||
{ "word": "admiration", "translation": "钦佩,赞赏" },
|
||
{ "word": "admire", "translation": "钦佩,赞美" },
|
||
{ "word": "admission", "translation": "承认,入场费" },
|
||
{ "word": "admit", "translation": "承认,准许进入" },
|
||
{ "word": "adolescent", "translation": "青少年(的)" },
|
||
{ "word": "adopt", "translation": "采用,收养" },
|
||
{ "word": "adult", "translation": "成年人(的)" },
|
||
{ "word": "advance", "translation": "前进,预先" },
|
||
{ "word": "advanced", "translation": "先进的,高级的" },
|
||
{ "word": "advantage", "translation": "优势,好处" },
|
||
{ "word": "adventure", "translation": "冒险,奇遇" },
|
||
{ "word": "adverse", "translation": "不利的,有害的" },
|
||
{ "word": "advertise", "translation": "做广告,宣传" },
|
||
{ "word": "advertisement", "translation": "广告" },
|
||
{ "word": "advertising", "translation": "广告业,广告活动" },
|
||
{ "word": "advice", "translation": "建议,忠告" },
|
||
{ "word": "advise", "translation": "建议,劝告" },
|
||
{ "word": "advocate", "translation": "提倡,拥护" },
|
||
{ "word": "aesthetic", "translation": "美学的,审美的" },
|
||
{ "word": "affair", "translation": "事务,事件" },
|
||
{ "word": "affect", "translation": "影响" },
|
||
{ "word": "affection", "translation": "喜爱,感情" },
|
||
{ "word": "afford", "translation": "负担得起" },
|
||
{ "word": "afraid", "translation": "害怕的,恐怕" },
|
||
{ "word": "after", "translation": "在...之后" },
|
||
{ "word": "afternoon", "translation": "下午" },
|
||
{ "word": "afterwards", "translation": "后来,以后" },
|
||
{ "word": "again", "translation": "再一次,又" },
|
||
{ "word": "against", "translation": "反对,靠着" },
|
||
{ "word": "age", "translation": "年龄,时代" },
|
||
{ "word": "aged", "translation": "年老的" },
|
||
{ "word": "agency", "translation": "代理行,机构" },
|
||
{ "word": "agenda", "translation": "议程" },
|
||
{ "word": "agent", "translation": "代理人,代理商" },
|
||
{ "word": "aggressive", "translation": "侵略的,好斗的" },
|
||
{ "word": "ago", "translation": "以前" },
|
||
{ "word": "agree", "translation": "同意,一致" },
|
||
{ "word": "agreement", "translation": "协议,同意" },
|
||
{ "word": "agricultural", "translation": "农业的" },
|
||
{ "word": "agriculture", "translation": "农业" },
|
||
{ "word": "ahead", "translation": "在前面,向前" },
|
||
{ "word": "aid", "translation": "帮助,援助" },
|
||
{ "word": "aim", "translation": "目标,瞄准" },
|
||
{ "word": "air", "translation": "空气" },
|
||
{ "word": "air conditioning", "translation": "空调" },
|
||
{ "word": "air force", "translation": "空军" },
|
||
{ "word": "aircraft", "translation": "飞机,航空器" },
|
||
{ "word": "airline", "translation": "航空公司" },
|
||
{ "word": "airport", "translation": "机场" },
|
||
{ "word": "aisle", "translation": "过道,通道" },
|
||
{ "word": "alarm", "translation": "警报,使惊恐" },
|
||
{ "word": "album", "translation": "相册,唱片集" },
|
||
{ "word": "alcohol", "translation": "酒精" },
|
||
{ "word": "alcoholic", "translation": "含酒精的,酗酒者" },
|
||
{ "word": "alert", "translation": "警觉的,警告" },
|
||
{ "word": "algebra", "translation": "代数" },
|
||
{ "word": "alien", "translation": "外星人,外国的" },
|
||
{ "word": "alike", "translation": "相像的,相同的" },
|
||
{ "word": "alive", "translation": "活着的,存在的" },
|
||
{ "word": "all", "translation": "全部的,所有的" },
|
||
{ "word": "allegation", "translation": "断言,指控" },
|
||
{ "word": "allege", "translation": "断言,宣称" },
|
||
{ "word": "allegiance", "translation": "忠诚" },
|
||
{ "word": "alliance", "translation": "联盟,联合" },
|
||
{ "word": "allow", "translation": "允许,准许" },
|
||
{ "word": "allowance", "translation": "津贴,零用钱" },
|
||
{ "word": "ally", "translation": "盟友,同盟国" },
|
||
{ "word": "almost", "translation": "几乎,差不多" },
|
||
{ "word": "alone", "translation": "单独的,独自" },
|
||
{ "word": "along", "translation": "沿着,一起" },
|
||
{ "word": "alongside", "translation": "在...旁边,沿着" },
|
||
{ "word": "aloud", "translation": "大声地" },
|
||
{ "word": "already", "translation": "已经" },
|
||
{ "word": "also", "translation": "也,同样" },
|
||
{ "word": "alter", "translation": "改变" },
|
||
{ "word": "alternative", "translation": "选择,交替的" },
|
||
{ "word": "although", "translation": "虽然,尽管" },
|
||
{ "word": "altogether", "translation": "总共,完全" },
|
||
{ "word": "aluminium", "translation": "铝" },
|
||
{ "word": "always", "translation": "总是,一直" },
|
||
{ "word": "amateur", "translation": "业余的(爱好者)" },
|
||
{ "word": "amaze", "translation": "使惊奇,使惊愕" },
|
||
{ "word": "ambassador", "translation": "大使" },
|
||
{ "word": "ambiguous", "translation": "模棱两可的,不明确的" },
|
||
{ "word": "ambition", "translation": "雄心,抱负" },
|
||
{ "word": "ambitious", "translation": "有雄心的,野心勃勃的" },
|
||
{ "word": "ambulance", "translation": "救护车" },
|
||
{ "word": "amend", "translation": "修改,修正" },
|
||
{ "word": "amendment", "translation": "修正案,改进" },
|
||
{ "word": "amid", "translation": "在...中,在...之间" },
|
||
{ "word": "among", "translation": "在...之中" },
|
||
{ "word": "amount", "translation": "数量,总额" },
|
||
{ "word": "ample", "translation": "充足的,丰富的" },
|
||
{ "word": "amuse", "translation": "逗乐,使发笑" },
|
||
{ "word": "analogy", "translation": "类比,类推" },
|
||
{ "word": "analyse", "translation": "分析 (BrE)" },
|
||
{ "word": "analysis", "translation": "分析" },
|
||
{ "word": "analyst", "translation": "分析家" },
|
||
{ "word": "ancestor", "translation": "祖先" },
|
||
{ "word": "ancient", "translation": "古代的,古老的" },
|
||
{ "word": "and", "translation": "和,与" },
|
||
{ "word": "angel", "translation": "天使" },
|
||
{ "word": "anger", "translation": "愤怒" },
|
||
{ "word": "angle", "translation": "角度,观点" },
|
||
{ "word": "angry", "translation": "生气的,愤怒的" },
|
||
{ "word": "animal", "translation": "动物" },
|
||
{ "word": "ankle", "translation": "踝关节" },
|
||
{ "word": "anniversary", "translation": "周年纪念日" },
|
||
{ "word": "announce", "translation": "宣布,宣告" },
|
||
{ "word": "announcement", "translation": "公告,宣告" },
|
||
{ "word": "annoy", "translation": "使恼怒,使烦恼" },
|
||
{ "word": "annual", "translation": "每年的,年度的" },
|
||
{ "word": "anonymous", "translation": "匿名的,无名的" },
|
||
{ "word": "another", "translation": "另一个,再一个" },
|
||
{ "word": "answer", "translation": "回答,答案" },
|
||
{ "word": "anticipate", "translation": "预期,期望" },
|
||
{ "word": "anxiety", "translation": "焦虑,忧虑" },
|
||
{ "word": "anxious", "translation": "焦虑的,渴望的" },
|
||
{ "word": "any", "translation": "任何的" },
|
||
{ "word": "anybody", "translation": "任何人" },
|
||
{ "word": "anyone", "translation": "任何人" },
|
||
{ "word": "anything", "translation": "任何事" },
|
||
{ "word": "anyway", "translation": "无论如何,总之" },
|
||
{ "word": "anywhere", "translation": "任何地方" },
|
||
{ "word": "apart", "translation": "分离, apart from 除...之外" },
|
||
{ "word": "apartment", "translation": "公寓 (AmE)" },
|
||
{ "word": "apologize", "translation": "道歉" },
|
||
{ "word": "apology", "translation": "道歉,歉意" },
|
||
{ "word": "apparent", "translation": "显然的,表面上的" },
|
||
{ "word": "appeal", "translation": "呼吁,上诉,吸引力" },
|
||
{ "word": "appear", "translation": "出现,似乎" },
|
||
{ "word": "appearance", "translation": "出现,外貌" },
|
||
{ "word": "appendix", "translation": "附录,阑尾" },
|
||
{ "word": "appetite", "translation": "食欲,胃口" },
|
||
{ "word": "applaud", "translation": "鼓掌,称赞" },
|
||
{ "word": "applause", "translation": "掌声" },
|
||
{ "word": "apple", "translation": "苹果" },
|
||
{ "word": "applicant", "translation": "申请人" },
|
||
{ "word": "application", "translation": "申请,应用" },
|
||
{ "word": "apply", "translation": "申请,应用" },
|
||
{ "word": "appoint", "translation": "任命,指定" },
|
||
{ "word": "appointment", "translation": "约会,任命" },
|
||
{ "word": "appreciate", "translation": "欣赏,感激" },
|
||
{ "word": "approach", "translation": "接近,方法" },
|
||
{ "word": "appropriate", "translation": "适当的,恰当的" },
|
||
{ "word": "approval", "translation": "批准,赞成" },
|
||
{ "word": "approve", "translation": "批准,赞成" },
|
||
{ "word": "approximate", "translation": "近似的" },
|
||
{ "word": "April", "translation": "四月" },
|
||
{ "word": "arbitrary", "translation": "任意的,武断的" },
|
||
{ "word": "arch", "translation": "拱门,主要的" },
|
||
{ "word": "archaeology", "translation": "考古学" },
|
||
{ "word": "architect", "translation": "建筑师" },
|
||
{ "word": "architecture", "translation": "建筑学,建筑风格" },
|
||
{ "word": "archive", "translation": "档案馆,存档" },
|
||
{ "word": "area", "translation": "区域,面积" },
|
||
{ "word": "arena", "translation": "竞技场,活动场所" },
|
||
{ "word": "argue", "translation": "争论,论证" },
|
||
{ "word": "argument", "translation": "争论,论点" },
|
||
{ "word": "arise", "translation": "出现,发生" },
|
||
{ "word": "arm", "translation": "手臂,武器" },
|
||
{ "word": "army", "translation": "军队" },
|
||
{ "word": "around", "translation": "在周围,大约" },
|
||
{ "word": "arrange", "translation": "安排,排列" },
|
||
{ "word": "arrangement", "translation": "安排,布置" },
|
||
{ "word": "arrest", "translation": "逮捕" },
|
||
{ "word": "arrival", "translation": "到达,到达者" },
|
||
{ "word": "arrive", "translation": "到达" },
|
||
{ "word": "arrow", "translation": "箭头,箭" },
|
||
{ "word": "art", "translation": "艺术,美术" },
|
||
{ "word": "article", "translation": "文章,物品,冠词" },
|
||
{ "word": "artificial", "translation": "人工的,人造的" },
|
||
{ "word": "artist", "translation": "艺术家" },
|
||
{ "word": "artistic", "translation": "艺术的,有艺术才能的" },
|
||
{ "word": "as", "translation": "作为,因为,当...时候" },
|
||
{ "word": "ascend", "translation": "上升,攀登" },
|
||
{ "word": "ash", "translation": "灰,灰烬" },
|
||
{ "word": "ashamed", "translation": "羞愧的,惭愧的" },
|
||
{ "word": "aside", "translation": "在旁边, aside from 除...之外" },
|
||
{ "word": "ask", "translation": "问,要求" },
|
||
{ "word": "asleep", "translation": "睡着的" },
|
||
{ "word": "aspect", "translation": "方面,外观" },
|
||
{ "word": "aspiration", "translation": "渴望,抱负" },
|
||
{ "word": "assassination", "translation": "暗杀" },
|
||
{ "word": "assault", "translation": "攻击,袭击" },
|
||
{ "word": "assemble", "translation": "集合,组装" },
|
||
{ "word": "assembly", "translation": "集会,装配" },
|
||
{ "word": "assert", "translation": "断言,坚持" },
|
||
{ "word": "assess", "translation": "评估,评定" },
|
||
{ "word": "assessment", "translation": "评估,评价" },
|
||
{ "word": "asset", "translation": "资产,优点" },
|
||
{ "word": "assign", "translation": "分配,指派" },
|
||
{ "word": "assignment", "translation": "任务,分配" },
|
||
{ "word": "assist", "translation": "帮助,援助" },
|
||
{ "word": "assistance", "translation": "帮助,援助" },
|
||
{ "word": "assistant", "translation": "助手,助理的" },
|
||
{ "word": "associate", "translation": "联系,交往" },
|
||
{ "word": "association", "translation": "协会,联合" },
|
||
{ "word": "assume", "translation": "假定,假设" },
|
||
{ "word": "assumption", "translation": "假定,假设" },
|
||
{ "word": "assurance", "translation": "保证,确信" },
|
||
{ "word": "assure", "translation": "保证,确信" },
|
||
{ "word": "astonish", "translation": "使惊讶" },
|
||
{ "word": "astronomer", "translation": "天文学家" },
|
||
{ "word": "astronomy", "translation": "天文学" },
|
||
{ "word": "asylum", "translation": "庇护,避难所" },
|
||
{ "word": "at", "translation": "在" },
|
||
{ "word": "athlete", "translation": "运动员" },
|
||
{ "word": "atmosphere", "translation": "大气,气氛" },
|
||
{ "word": "atom", "translation": "原子" },
|
||
{ "word": "attach", "translation": "附上,系上" },
|
||
{ "word": "attachment", "translation": "附件,依恋" },
|
||
{ "word": "attack", "translation": "攻击,袭击" },
|
||
{ "word": "attempt", "translation": "尝试,企图" },
|
||
{ "word": "attend", "translation": "出席,照料" },
|
||
{ "word": "attendance", "translation": "出席,出席人数" },
|
||
{ "word": "attention", "translation": "注意,关注" },
|
||
{ "word": "attitude", "translation": "态度,看法" },
|
||
{ "word": "attorney", "translation": "律师" },
|
||
{ "word": "attract", "translation": "吸引" },
|
||
{ "word": "attraction", "translation": "吸引,吸引力" },
|
||
{ "word": "attractive", "translation": "有吸引力的" },
|
||
{ "word": "attribute", "translation": "属性,归因于" },
|
||
{ "word": "auction", "translation": "拍卖" },
|
||
{ "word": "audience", "translation": "观众,听众" },
|
||
{ "word": "audit", "translation": "审计,查账" },
|
||
{ "word": "August", "translation": "八月" },
|
||
{ "word": "aunt", "translation": "阿姨,姑姑" },
|
||
{ "word": "author", "translation": "作者" },
|
||
{ "word": "authority", "translation": "权威,权力" },
|
||
{ "word": "authorize", "translation": "授权,批准" },
|
||
{ "word": "automatic", "translation": "自动的" },
|
||
{ "word": "automobile", "translation": "汽车 (AmE)" },
|
||
{ "word": "autumn", "translation": "秋天" },
|
||
{ "word": "available", "translation": "可得到的,可用的" },
|
||
{ "word": "avenue", "translation": "大街,途径" },
|
||
{ "word": "average", "translation": "平均的,平均数" },
|
||
{ "word": "avoid", "translation": "避免" },
|
||
{ "word": "await", "translation": "等候,等待" },
|
||
{ "word": "awake", "translation": "醒着的" },
|
||
{ "word": "award", "translation": "奖品,授予" },
|
||
{ "word": "aware", "translation": "知道的,意识到的" },
|
||
{ "word": "awareness", "translation": "意识,觉悟" },
|
||
{ "word": "away", "translation": "离开,在远处" },
|
||
{ "word": "awful", "translation": "糟糕的,可怕的" },
|
||
{ "word": "awkward", "translation": "笨拙的,尴尬的" },
|
||
{ "word": "baby", "translation": "婴儿" },
|
||
{ "word": "back", "translation": "背部,后面,支持" },
|
||
{ "word": "background", "translation": "背景" },
|
||
{ "word": "backward", "translation": "向后的,落后的" },
|
||
{ "word": "bacteria", "translation": "细菌" },
|
||
{ "word": "bad", "translation": "坏的,严重的" },
|
||
{ "word": "badly", "translation": "坏地,严重地" },
|
||
{ "word": "bag", "translation": "包,袋" },
|
||
{ "word": "bail", "translation": "保释" },
|
||
{ "word": "bake", "translation": "烘烤" },
|
||
{ "word": "balance", "translation": "平衡,天平" },
|
||
{ "word": "ball", "translation": "球" },
|
||
{ "word": "balloon", "translation": "气球" },
|
||
{ "word": "ballot", "translation": "投票,选票" },
|
||
{ "word": "ban", "translation": "禁止" },
|
||
{ "word": "banana", "translation": "香蕉" },
|
||
{ "word": "band", "translation": "乐队,带子" },
|
||
{ "word": "bank", "translation": "银行,河岸" },
|
||
{ "word": "bankruptcy", "translation": "破产" },
|
||
{ "word": "bar", "translation": "酒吧,条,栏" },
|
||
{ "word": "bare", "translation": "赤裸的,光秃秃的" },
|
||
{ "word": "barely", "translation": "仅仅,几乎不" },
|
||
{ "word": "bargain", "translation": "交易,便宜货" },
|
||
{ "word": "barrel", "translation": "桶" },
|
||
{ "word": "barrier", "translation": "障碍,屏障" },
|
||
{ "word": "base", "translation": "基础,基地" },
|
||
{ "word": "baseball", "translation": "棒球" },
|
||
{ "word": "basic", "translation": "基本的" },
|
||
{ "word": "basically", "translation": "基本上" },
|
||
{ "word": "basis", "translation": "基础,根据" },
|
||
{ "word": "basket", "translation": "篮子" },
|
||
{ "word": "basketball", "translation": "篮球" },
|
||
{ "word": "bass", "translation": "低音" },
|
||
{ "word": "bat", "translation": "蝙蝠,球棒" },
|
||
{ "word": "bath", "translation": "洗澡,浴室" },
|
||
{ "word": "bathroom", "translation": "浴室,洗手间" },
|
||
{ "word": "battery", "translation": "电池" },
|
||
{ "word": "battle", "translation": "战斗,战役" },
|
||
{ "word": "bay", "translation": "海湾" },
|
||
{ "word": "be", "translation": "是,存在" },
|
||
{ "word": "beach", "translation": "海滩" },
|
||
{ "word": "beam", "translation": "光束,梁" },
|
||
{ "word": "bean", "translation": "豆子" },
|
||
{ "word": "bear", "translation": "熊,忍受" },
|
||
{ "word": "beard", "translation": "胡须" },
|
||
{ "word": "beast", "translation": "野兽" },
|
||
{ "word": "beat", "translation": "打败,敲打" },
|
||
{ "word": "beautiful", "translation": "美丽的" },
|
||
{ "word": "beauty", "translation": "美,美人" },
|
||
{ "word": "because", "translation": "因为" },
|
||
{ "word": "become", "translation": "变成,成为" },
|
||
{ "word": "bed", "translation": "床" },
|
||
{ "word": "bedroom", "translation": "卧室" },
|
||
{ "word": "bee", "translation": "蜜蜂" },
|
||
{ "word": "beef", "translation": "牛肉" },
|
||
{ "word": "beer", "translation": "啤酒" },
|
||
{ "word": "before", "translation": "在...之前" },
|
||
{ "word": "beg", "translation": "乞求" },
|
||
{ "word": "begin", "translation": "开始" },
|
||
{ "word": "beginning", "translation": "开始,开端" },
|
||
{ "word": "behalf", "translation": "代表,利益" },
|
||
{ "word": "behave", "translation": "表现,举止" },
|
||
{ "word": "behavior", "translation": "行为,举止 (AmE)" },
|
||
{ "word": "behind", "translation": "在...后面" },
|
||
{ "word": "being", "translation": "存在,生物" },
|
||
{ "word": "belief", "translation": "信念,相信" },
|
||
{ "word": "believe", "translation": "相信" },
|
||
{ "word": "bell", "translation": "钟,铃" },
|
||
{ "word": "belong", "translation": "属于" },
|
||
{ "word": "beloved", "translation": "心爱的" },
|
||
{ "word": "below", "translation": "在...下面" },
|
||
{ "word": "belt", "translation": "带子,腰带" },
|
||
{ "word": "bench", "translation": "长凳,工作台" },
|
||
{ "word": "bend", "translation": "弯曲" },
|
||
{ "word": "beneath", "translation": "在...下面" },
|
||
{ "word": "beneficial", "translation": "有益的,有利的" },
|
||
{ "word": "beneficiary", "translation": "受益人" },
|
||
{ "word": "benefit", "translation": "利益,好处" },
|
||
{ "word": "bent", "translation": "弯曲的" },
|
||
{ "word": "beside", "translation": "在...旁边" },
|
||
{ "word": "besides", "translation": "除...之外(还有)" },
|
||
{ "word": "best", "translation": "最好的" },
|
||
{ "word": "bet", "translation": "打赌" },
|
||
{ "word": "betray", "translation": "背叛,出卖" },
|
||
{ "word": "better", "translation": "更好的" },
|
||
{ "word": "between", "translation": "在...之间" },
|
||
{ "word": "beyond", "translation": "在...之外,超过" },
|
||
{ "word": "bias", "translation": "偏见" },
|
||
{ "word": "bicycle", "translation": "自行车" },
|
||
{ "word": "bid", "translation": "出价,投标" },
|
||
{ "word": "big", "translation": "大的" },
|
||
{ "word": "bike", "translation": "自行车" },
|
||
{ "word": "bill", "translation": "账单,法案" },
|
||
{ "word": "billion", "translation": "十亿" },
|
||
{ "word": "bin", "translation": "垃圾箱" },
|
||
{ "word": "bind", "translation": "捆绑,装订" },
|
||
{ "word": "biography", "translation": "传记" },
|
||
{ "word": "biological", "translation": "生物的,生物学的" },
|
||
{ "word": "biology", "translation": "生物学" },
|
||
{ "word": "bird", "translation": "鸟" },
|
||
{ "word": "birth", "translation": "出生" },
|
||
{ "word": "birthday", "translation": "生日" },
|
||
{ "word": "biscuit", "translation": "饼干" },
|
||
{ "word": "bishop", "translation": "主教" },
|
||
{ "word": "bit", "translation": "一点,一些" },
|
||
{ "word": "bite", "translation": "咬,叮" },
|
||
{ "word": "bitter", "translation": "苦的,痛苦的" },
|
||
{ "word": "black", "translation": "黑色的" },
|
||
{ "word": "blade", "translation": "刀片,叶片" },
|
||
{ "word": "blame", "translation": "责备" },
|
||
{ "word": "blank", "translation": "空白的,空的" },
|
||
{ "word": "blanket", "translation": "毯子" },
|
||
{ "word": "blast", "translation": "爆炸,冲击波" },
|
||
{ "word": "bleed", "translation": "流血" },
|
||
{ "word": "bless", "translation": "祝福" },
|
||
{ "word": "blind", "translation": "瞎的,盲目的" },
|
||
{ "word": "blink", "translation": "眨眼" },
|
||
{ "word": "block", "translation": "街区,阻挡" },
|
||
{ "word": "blond", "translation": "金色的,金发的" },
|
||
{ "word": "blood", "translation": "血" },
|
||
{ "word": "blow", "translation": "吹,打击" },
|
||
{ "word": "blue", "translation": "蓝色的" },
|
||
{ "word": "board", "translation": "板,董事会" },
|
||
{ "word": "boast", "translation": "自夸,吹嘘" },
|
||
{ "word": "boat", "translation": "船" },
|
||
{ "word": "body", "translation": "身体" },
|
||
{ "word": "boil", "translation": "煮沸" },
|
||
{ "word": "bold", "translation": "大胆的,粗体的" },
|
||
{ "word": "bomb", "translation": "炸弹" },
|
||
{ "word": "bombing", "translation": "轰炸" },
|
||
{ "word": "bond", "translation": "联系,债券" },
|
||
{ "word": "bone", "translation": "骨头" },
|
||
{ "word": "book", "translation": "书,预订" },
|
||
{ "word": "boom", "translation": "繁荣,隆隆声" },
|
||
{ "word": "boost", "translation": "提高,推动" },
|
||
{ "word": "boot", "translation": "靴子,启动" },
|
||
{ "word": "border", "translation": "边界,边缘" },
|
||
{ "word": "bore", "translation": "使厌烦" },
|
||
{ "word": "bored", "translation": "感到厌烦的" },
|
||
{ "word": "boring", "translation": "无聊的,令人厌烦的" },
|
||
{ "word": "born", "translation": "出生的" },
|
||
{ "word": "borrow", "translation": "借入" },
|
||
{ "word": "boss", "translation": "老板" },
|
||
{ "word": "both", "translation": "两者都" },
|
||
{ "word": "bother", "translation": "打扰,麻烦" },
|
||
{ "word": "bottle", "translation": "瓶子" },
|
||
{ "word": "bottom", "translation": "底部" },
|
||
{ "word": "bounce", "translation": "弹跳" },
|
||
{ "word": "bound", "translation": "一定的, bound to 必定" },
|
||
{ "word": "boundary", "translation": "边界,界限" },
|
||
{ "word": "bow", "translation": "鞠躬,弓" },
|
||
{ "word": "bowl", "translation": "碗" },
|
||
{ "word": "box", "translation": "盒子,拳击" },
|
||
{ "word": "boy", "translation": "男孩" },
|
||
{ "word": "boyfriend", "translation": "男朋友" },
|
||
{ "word": "brain", "translation": "大脑" },
|
||
{ "word": "brake", "translation": "刹车" },
|
||
{ "word": "branch", "translation": "分支,树枝" },
|
||
{ "word": "brand", "translation": "品牌" },
|
||
{ "word": "brave", "translation": "勇敢的" },
|
||
{ "word": "bread", "translation": "面包" },
|
||
{ "word": "break", "translation": "打破,休息" },
|
||
{ "word": "breakfast", "translation": "早餐" },
|
||
{ "word": "breast", "translation": "胸部,乳房" },
|
||
{ "word": "breath", "translation": "呼吸" },
|
||
{ "word": "breathe", "translation": "呼吸" },
|
||
{ "word": "breed", "translation": "繁殖,品种" },
|
||
{ "word": "brick", "translation": "砖" },
|
||
{ "word": "bride", "translation": "新娘" },
|
||
{ "word": "bridge", "translation": "桥" },
|
||
{ "word": "brief", "translation": "简短的,摘要" },
|
||
{ "word": "bright", "translation": "明亮的" },
|
||
{ "word": "brilliant", "translation": "光辉的,卓越的" },
|
||
{ "word": "bring", "translation": "带来" },
|
||
{ "word": "broad", "translation": "宽的,广泛的" },
|
||
{ "word": "broadcast", "translation": "广播,播放" },
|
||
{ "word": "broadcaster", "translation": "广播员" },
|
||
{ "word": "brother", "translation": "兄弟" },
|
||
{ "word": "brown", "translation": "棕色的" },
|
||
{ "word": "brush", "translation": "刷子,刷" },
|
||
{ "word": "brutal", "translation": "残忍的,野蛮的" },
|
||
{ "word": "bubble", "translation": "气泡" },
|
||
{ "word": "buck", "translation": "美元,雄鹿" },
|
||
{ "word": "bucket", "translation": "桶" },
|
||
{ "word": "budget", "translation": "预算" },
|
||
{ "word": "bug", "translation": "虫子,窃听器" },
|
||
{ "word": "build", "translation": "建造" },
|
||
{ "word": "building", "translation": "建筑物" },
|
||
{ "word": "bulb", "translation": "灯泡" },
|
||
{ "word": "bulk", "translation": "体积,大部分" },
|
||
{ "word": "bull", "translation": "公牛" },
|
||
{ "word": "bullet", "translation": "子弹" },
|
||
{ "word": "bulletin", "translation": "公告,简报" },
|
||
{ "word": "bunch", "translation": "束,串" },
|
||
{ "word": "burden", "translation": "负担" },
|
||
{ "word": "bureau", "translation": "局,办公桌" },
|
||
{ "word": "burn", "translation": "燃烧,烧伤" },
|
||
{ "word": "burst", "translation": "爆发,破裂" },
|
||
{ "word": "bury", "translation": "埋葬" },
|
||
{ "word": "bus", "translation": "公共汽车" },
|
||
{ "word": "bush", "translation": "灌木丛" },
|
||
{ "word": "business", "translation": "生意,商业" },
|
||
{ "word": "businessman", "translation": "商人" },
|
||
{ "word": "busy", "translation": "忙碌的" },
|
||
{ "word": "but", "translation": "但是" },
|
||
{ "word": "butter", "translation": "黄油" },
|
||
{ "word": "butterfly", "translation": "蝴蝶" },
|
||
{ "word": "button", "translation": "纽扣,按钮" },
|
||
{ "word": "buy", "translation": "买" },
|
||
{ "word": "buyer", "translation": "买主" },
|
||
{ "word": "by", "translation": "通过,被,依据" },
|
||
{ "word": "bye", "translation": "再见" },
|
||
{ "word": "cabin", "translation": "小屋,船舱" },
|
||
{ "word": "cabinet", "translation": "内阁,橱柜" },
|
||
{ "word": "cable", "translation": "电缆,缆绳" },
|
||
{ "word": "cafe", "translation": "咖啡馆" },
|
||
{ "word": "cake", "translation": "蛋糕" },
|
||
{ "word": "calculate", "translation": "计算" },
|
||
{ "word": "calculation", "translation": "计算,估计" },
|
||
{ "word": "calendar", "translation": "日历" },
|
||
{ "word": "call", "translation": "打电话,叫喊" },
|
||
{ "word": "calm", "translation": "平静的,使平静" },
|
||
{ "word": "camera", "translation": "照相机" },
|
||
{ "word": "camp", "translation": "野营,营地" },
|
||
{ "word": "campaign", "translation": "运动,战役" },
|
||
{ "word": "campus", "translation": "校园" },
|
||
{ "word": "can", "translation": "能够,罐头" },
|
||
{ "word": "canal", "translation": "运河,管道" },
|
||
{ "word": "cancel", "translation": "取消" },
|
||
{ "word": "cancer", "translation": "癌症" },
|
||
{ "word": "candidate", "translation": "候选人,应试者" },
|
||
{ "word": "candle", "translation": "蜡烛" },
|
||
{ "word": "candy", "translation": "糖果" },
|
||
{ "word": "canvas", "translation": "帆布" },
|
||
{ "word": "cap", "translation": "帽子,盖子" },
|
||
{ "word": "capability", "translation": "能力,性能" },
|
||
{ "word": "capable", "translation": "有能力的,能干的" },
|
||
{ "word": "capacity", "translation": "容量,能力" },
|
||
{ "word": "capital", "translation": "首都,资本,大写的" },
|
||
{ "word": "captain", "translation": "船长,队长" },
|
||
{ "word": "capture", "translation": "捕获,占领" },
|
||
{ "word": "car", "translation": "汽车" },
|
||
{ "word": "carbon", "translation": "碳" },
|
||
{ "word": "card", "translation": "卡片" },
|
||
{ "word": "care", "translation": "关心,照顾" },
|
||
{ "word": "career", "translation": "职业,生涯" },
|
||
{ "word": "careful", "translation": "小心的,仔细的" },
|
||
{ "word": "carefully", "translation": "小心地" },
|
||
{ "word": "carpet", "translation": "地毯" },
|
||
{ "word": "carriage", "translation": "马车,车厢" },
|
||
{ "word": "carrier", "translation": "搬运者,载体" },
|
||
{ "word": "carrot", "translation": "胡萝卜" },
|
||
{ "word": "carry", "translation": "携带,搬运" },
|
||
{ "word": "cart", "translation": "手推车" },
|
||
{ "word": "cartoon", "translation": "卡通画,动画片" },
|
||
{ "word": "carve", "translation": "雕刻" },
|
||
{ "word": "case", "translation": "情况,案例,箱子" },
|
||
{ "word": "cash", "translation": "现金" },
|
||
{ "word": "casino", "translation": "赌场" },
|
||
{ "word": "cast", "translation": "投,扔,演员表" },
|
||
{ "word": "castle", "translation": "城堡" },
|
||
{ "word": "casual", "translation": "偶然的,随便的" },
|
||
{ "word": "cat", "translation": "猫" },
|
||
{ "word": "catalogue", "translation": "目录" },
|
||
{ "word": "catch", "translation": "抓住,赶上" },
|
||
{ "word": "category", "translation": "种类,类别" },
|
||
{ "word": "cattle", "translation": "牛" },
|
||
{ "word": "cause", "translation": "原因,导致" },
|
||
{ "word": "caution", "translation": "小心,警告" },
|
||
{ "word": "cautious", "translation": "小心的,谨慎的" },
|
||
{ "word": "cave", "translation": "洞穴" },
|
||
{ "word": "cease", "translation": "停止" },
|
||
{ "word": "ceiling", "translation": "天花板" },
|
||
{ "word": "celebrate", "translation": "庆祝" },
|
||
{ "word": "celebration", "translation": "庆祝,庆典" },
|
||
{ "word": "celebrity", "translation": "名人" },
|
||
{ "word": "cell", "translation": "细胞,牢房" },
|
||
{ "word": "cellar", "translation": "地窖" },
|
||
{ "word": "cemetery", "translation": "墓地" },
|
||
{ "word": "cent", "translation": "分(货币单位)" },
|
||
{ "word": "central", "translation": "中心的,中央的" },
|
||
{ "word": "centre", "translation": "中心 (BrE)" },
|
||
{ "word": "century", "translation": "世纪" },
|
||
{ "word": "ceremony", "translation": "典礼,仪式" },
|
||
{ "word": "certain", "translation": "确定的,某些" },
|
||
{ "word": "certainly", "translation": "当然,确实" },
|
||
{ "word": "certainty", "translation": "确定,必然的事" },
|
||
{ "word": "certificate", "translation": "证书" },
|
||
{ "word": "chain", "translation": "链子,连锁" },
|
||
{ "word": "chair", "translation": "椅子" },
|
||
{ "word": "chairman", "translation": "主席,董事长" },
|
||
{ "word": "chalk", "translation": "粉笔" },
|
||
{ "word": "challenge", "translation": "挑战" },
|
||
{ "word": "chamber", "translation": "房间, chamber of commerce 商会" },
|
||
{ "word": "champion", "translation": "冠军,拥护" },
|
||
{ "word": "championship", "translation": "锦标赛" },
|
||
{ "word": "chance", "translation": "机会,可能性" },
|
||
{ "word": "change", "translation": "改变,零钱" },
|
||
{ "word": "channel", "translation": "频道,海峡" },
|
||
{ "word": "chaos", "translation": "混乱" },
|
||
{ "word": "chapter", "translation": "章节" },
|
||
{ "word": "character", "translation": "性格,角色,字符" },
|
||
{ "word": "characteristic", "translation": "特征,特色的" },
|
||
{ "word": "characterize", "translation": "以...为特征,描述" },
|
||
{ "word": "charge", "translation": "收费,指控,充电" },
|
||
{ "word": "charity", "translation": "慈善机构,慈善" },
|
||
{ "word": "charm", "translation": "魅力,符咒" },
|
||
{ "word": "chart", "translation": "图表" },
|
||
{ "word": "charter", "translation": "宪章,包租" },
|
||
{ "word": "chase", "translation": "追赶" },
|
||
{ "word": "chat", "translation": "聊天" },
|
||
{ "word": "cheap", "translation": "便宜的" },
|
||
{ "word": "cheat", "translation": "欺骗,作弊" },
|
||
{ "word": "check", "translation": "检查,支票" },
|
||
{ "word": "cheek", "translation": "脸颊" },
|
||
{ "word": "cheer", "translation": "欢呼" },
|
||
{ "word": "cheerful", "translation": "愉快的,高兴的" },
|
||
{ "word": "cheese", "translation": "奶酪" },
|
||
{ "word": "chef", "translation": "主厨" },
|
||
{ "word": "chemical", "translation": "化学的,化学制品" },
|
||
{ "word": "chemistry", "translation": "化学" },
|
||
{ "word": "chest", "translation": "胸部,箱子" },
|
||
{ "word": "chew", "translation": "咀嚼" },
|
||
{ "word": "chicken", "translation": "鸡,鸡肉" },
|
||
{ "word": "chief", "translation": "主要的,首领" },
|
||
{ "word": "child", "translation": "孩子" },
|
||
{ "word": "childhood", "translation": "童年" },
|
||
{ "word": "chip", "translation": "芯片,薯片" },
|
||
{ "word": "chocolate", "translation": "巧克力" },
|
||
{ "word": "choice", "translation": "选择" },
|
||
{ "word": "choir", "translation": "合唱队" },
|
||
{ "word": "choose", "translation": "选择" },
|
||
{ "word": "chop", "translation": "砍" },
|
||
{ "word": "chronic", "translation": "慢性的,长期的" },
|
||
{ "word": "chunk", "translation": "厚块,相当大的部分" },
|
||
{ "word": "church", "translation": "教堂" },
|
||
{ "word": "cigarette", "translation": "香烟" },
|
||
{ "word": "cinema", "translation": "电影院" },
|
||
{ "word": "circle", "translation": "圆圈,环绕" },
|
||
{ "word": "circuit", "translation": "电路,环行" },
|
||
{ "word": "circulate", "translation": "循环,流通" },
|
||
{ "word": "circulation", "translation": "循环,发行量" },
|
||
{ "word": "circumstance", "translation": "情况,环境" },
|
||
{ "word": "cite", "translation": "引用,引证" },
|
||
{ "word": "citizen", "translation": "公民" },
|
||
{ "word": "citizenship", "translation": "公民身份" },
|
||
{ "word": "city", "translation": "城市" },
|
||
{ "word": "civil", "translation": "公民的,国内的" },
|
||
{ "word": "civilian", "translation": "平民(的)" },
|
||
{ "word": "civilization", "translation": "文明" },
|
||
{ "word": "claim", "translation": "声称,要求" },
|
||
{ "word": "clarify", "translation": "澄清,阐明" },
|
||
{ "word": "clarity", "translation": "清晰,清楚" },
|
||
{ "word": "clash", "translation": "冲突,撞击声" },
|
||
{ "word": "class", "translation": "班级,阶级" },
|
||
{ "word": "classic", "translation": "经典的" },
|
||
{ "word": "classical", "translation": "古典的,经典的" },
|
||
{ "word": "classification", "translation": "分类,分级" },
|
||
{ "word": "classify", "translation": "分类,归类" },
|
||
{ "word": "classroom", "translation": "教室" },
|
||
{ "word": "clause", "translation": "条款,从句" },
|
||
{ "word": "clay", "translation": "粘土" },
|
||
{ "word": "clean", "translation": "清洁的,打扫" },
|
||
{ "word": "clear", "translation": "清楚的,清理" },
|
||
{ "word": "clearly", "translation": "清楚地" },
|
||
{ "word": "clerk", "translation": "职员,书记" },
|
||
{ "word": "clever", "translation": "聪明的" },
|
||
{ "word": "click", "translation": "点击,咔哒声" },
|
||
{ "word": "client", "translation": "客户,委托人" },
|
||
{ "word": "cliff", "translation": "悬崖" },
|
||
{ "word": "climate", "translation": "气候" },
|
||
{ "word": "climb", "translation": "爬,攀登" },
|
||
{ "word": "cling", "translation": "粘住,依附" },
|
||
{ "word": "clinic", "translation": "诊所" },
|
||
{ "word": "clinical", "translation": "临床的" },
|
||
{ "word": "clip", "translation": "夹子,修剪" },
|
||
{ "word": "clock", "translation": "时钟" },
|
||
{ "word": "close", "translation": "关闭,靠近的" },
|
||
{ "word": "closed", "translation": "关闭的" },
|
||
{ "word": "closely", "translation": "紧密地,仔细地" },
|
||
{ "word": "closet", "translation": "壁橱" },
|
||
{ "word": "closure", "translation": "关闭,结束" },
|
||
{ "word": "cloth", "translation": "布" },
|
||
{ "word": "clothes", "translation": "衣服" },
|
||
{ "word": "clothing", "translation": "服装" },
|
||
{ "word": "cloud", "translation": "云" },
|
||
{ "word": "club", "translation": "俱乐部" },
|
||
{ "word": "clue", "translation": "线索" },
|
||
{ "word": "cluster", "translation": "群,簇" },
|
||
{ "word": "coach", "translation": "教练,长途汽车" },
|
||
{ "word": "coal", "translation": "煤" },
|
||
{ "word": "coalition", "translation": "联盟,联合政府" },
|
||
{ "word": "coast", "translation": "海岸" },
|
||
{ "word": "coastal", "translation": "海岸的" },
|
||
{ "word": "coat", "translation": "外套" },
|
||
{ "word": "cocaine", "translation": "可卡因" },
|
||
{ "word": "code", "translation": "代码,准则" },
|
||
{ "word": "coffee", "translation": "咖啡" },
|
||
{ "word": "cognitive", "translation": "认知的" },
|
||
{ "word": "coin", "translation": "硬币,铸造" },
|
||
{ "word": "coincide", "translation": "一致,同时发生" },
|
||
{ "word": "coincidence", "translation": "巧合" },
|
||
{ "word": "cold", "translation": "冷的,寒冷" },
|
||
{ "word": "collaborate", "translation": "合作" },
|
||
{ "word": "collapse", "translation": "倒塌,崩溃" },
|
||
{ "word": "collar", "translation": "衣领" },
|
||
{ "word": "colleague", "translation": "同事" },
|
||
{ "word": "collect", "translation": "收集" },
|
||
{ "word": "collection", "translation": "收集,收藏品" },
|
||
{ "word": "collective", "translation": "集体的" },
|
||
{ "word": "college", "translation": "学院,大学" },
|
||
{ "word": "colonial", "translation": "殖民地的" },
|
||
{ "word": "colony", "translation": "殖民地" },
|
||
{ "word": "color", "translation": "颜色 (AmE)" },
|
||
{ "word": "column", "translation": "柱子,专栏" },
|
||
{ "word": "columnist", "translation": "专栏作家" },
|
||
{ "word": "combat", "translation": "战斗,与...斗争" },
|
||
{ "word": "combination", "translation": "结合,联合" },
|
||
{ "word": "combine", "translation": "结合,联合" },
|
||
{ "word": "come", "translation": "来" },
|
||
{ "word": "comedy", "translation": "喜剧" },
|
||
{ "word": "comfort", "translation": "安慰,舒适" },
|
||
{ "word": "comfortable", "translation": "舒适的" },
|
||
{ "word": "comic", "translation": "喜剧的,连环漫画" },
|
||
{ "word": "command", "translation": "命令,指挥" },
|
||
{ "word": "commander", "translation": "指挥官" },
|
||
{ "word": "commence", "translation": "开始,着手" },
|
||
{ "word": "comment", "translation": "评论" },
|
||
{ "word": "commentary", "translation": "评论,解说" },
|
||
{ "word": "commentator", "translation": "评论员" },
|
||
{ "word": "commerce", "translation": "商业" },
|
||
{ "word": "commercial", "translation": "商业的,广告" },
|
||
{ "word": "commission", "translation": "委员会,佣金" },
|
||
{ "word": "commissioner", "translation": "专员" },
|
||
{ "word": "commit", "translation": "犯(罪),承诺" },
|
||
{ "word": "commitment", "translation": "承诺,投入" },
|
||
{ "word": "committee", "translation": "委员会" },
|
||
{ "word": "commodity", "translation": "商品" },
|
||
{ "word": "common", "translation": "共同的,普通的" },
|
||
{ "word": "commonly", "translation": "通常,一般地" },
|
||
{ "word": "communicate", "translation": "交流,沟通" },
|
||
{ "word": "communication", "translation": "交流,通讯" },
|
||
{ "word": "communist", "translation": "共产主义的,共产党员" },
|
||
{ "word": "community", "translation": "社区,团体" },
|
||
{ "word": "companion", "translation": "同伴,伙伴" },
|
||
{ "word": "company", "translation": "公司,陪伴" },
|
||
{ "word": "comparable", "translation": "可比较的" },
|
||
{ "word": "comparative", "translation": "比较的" },
|
||
{ "word": "compare", "translation": "比较" },
|
||
{ "word": "comparison", "translation": "比较" },
|
||
{ "word": "compartment", "translation": "隔间" },
|
||
{ "word": "compassion", "translation": "同情,怜悯" },
|
||
{ "word": "compatible", "translation": "兼容的,合得来的" },
|
||
{ "word": "compel", "translation": "强迫,迫使" },
|
||
{ "word": "compensate", "translation": "补偿,赔偿" },
|
||
{ "word": "compensation", "translation": "补偿,赔偿金" },
|
||
{ "word": "compete", "translation": "竞争" },
|
||
{ "word": "competence", "translation": "能力,胜任" },
|
||
{ "word": "competent", "translation": "有能力的,胜任的" },
|
||
{ "word": "competition", "translation": "竞争,比赛" },
|
||
{ "word": "competitive", "translation": "竞争的,有竞争力的" },
|
||
{ "word": "competitor", "translation": "竞争者,对手" },
|
||
{ "word": "compile", "translation": "编译,编辑" },
|
||
{ "word": "complain", "translation": "抱怨,投诉" },
|
||
{ "word": "complaint", "translation": "抱怨,投诉" },
|
||
{ "word": "complement", "translation": "补充,补足物" },
|
||
{ "word": "complete", "translation": "完成,完整的" },
|
||
{ "word": "completely", "translation": "完全地" },
|
||
{ "word": "completion", "translation": "完成,结束" },
|
||
{ "word": "complex", "translation": "复杂的" },
|
||
{ "word": "complexity", "translation": "复杂性" },
|
||
{ "word": "compliance", "translation": "服从,遵守" },
|
||
{ "word": "complicate", "translation": "使复杂化" },
|
||
{ "word": "complicated", "translation": "复杂的" },
|
||
{ "word": "comply", "translation": "遵守,服从" },
|
||
{ "word": "component", "translation": "组成部分,组件" },
|
||
{ "word": "compose", "translation": "组成,创作" },
|
||
{ "word": "composer", "translation": "作曲家" },
|
||
{ "word": "composition", "translation": "作文,组成" },
|
||
{ "word": "compound", "translation": "化合物,复合的" },
|
||
{ "word": "comprehensive", "translation": "综合的,全面的" },
|
||
{ "word": "comprise", "translation": "包含,由...组成" },
|
||
{ "word": "compromise", "translation": "妥协" },
|
||
{ "word": "compulsory", "translation": "强制的,义务的" },
|
||
{ "word": "compute", "translation": "计算" },
|
||
{ "word": "computer", "translation": "计算机" },
|
||
{ "word": "conceal", "translation": "隐藏,隐瞒" },
|
||
{ "word": "concede", "translation": "承认,让步" },
|
||
{ "word": "conceive", "translation": "设想,怀孕" },
|
||
{ "word": "concentrate", "translation": "集中,浓缩" },
|
||
{ "word": "concentration", "translation": "集中,专注" },
|
||
{ "word": "concept", "translation": "概念" },
|
||
{ "word": "conception", "translation": "概念,怀孕" },
|
||
{ "word": "concern", "translation": "关心,担心,涉及" },
|
||
{ "word": "concerned", "translation": "有关的,担心的" },
|
||
{ "word": "concert", "translation": "音乐会" },
|
||
{ "word": "concession", "translation": "让步, concessionaire 特许经营者" },
|
||
{ "word": "conclude", "translation": "推断出,结束" },
|
||
{ "word": "conclusion", "translation": "结论" },
|
||
{ "word": "concrete", "translation": "混凝土,具体的" },
|
||
{ "word": "condemn", "translation": "谴责,判刑" },
|
||
{ "word": "condition", "translation": "条件,状况" },
|
||
{ "word": "conduct", "translation": "进行,引导,行为" },
|
||
{ "word": "conductor", "translation": "指挥,导体" },
|
||
{ "word": "conference", "translation": "会议" },
|
||
{ "word": "confess", "translation": "承认,坦白" },
|
||
{ "word": "confession", "translation": "坦白,供认" },
|
||
{ "word": "confidence", "translation": "信心,信任" },
|
||
{ "word": "confident", "translation": "自信的" },
|
||
{ "word": "configuration", "translation": "配置,结构" },
|
||
{ "word": "confine", "translation": "限制,禁闭" },
|
||
{ "word": "confirm", "translation": "确认,证实" },
|
||
{ "word": "conflict", "translation": "冲突,矛盾" },
|
||
{ "word": "conform", "translation": "符合,遵守" },
|
||
{ "word": "confront", "translation": "面对,对抗" },
|
||
{ "word": "confrontation", "translation": "对抗" },
|
||
{ "word": "confuse", "translation": "使困惑,混淆" },
|
||
{ "word": "confusion", "translation": "困惑,混乱" },
|
||
{ "word": "congratulate", "translation": "祝贺" },
|
||
{ "word": "congregation", "translation": "聚会,会众" },
|
||
{ "word": "congress", "translation": "国会,代表大会" },
|
||
{ "word": "conjunction", "translation": "连接词,同时发生" },
|
||
{ "word": "connect", "translation": "连接" },
|
||
{ "word": "connection", "translation": "连接,关系" },
|
||
{ "word": "conscience", "translation": "良心" },
|
||
{ "word": "conscious", "translation": "有意识的,清醒的" },
|
||
{ "word": "consciousness", "translation": "意识,知觉" },
|
||
{ "word": "consensus", "translation": "一致意见" },
|
||
{ "word": "consent", "translation": "同意,允许" },
|
||
{ "word": "consequence", "translation": "结果,后果" },
|
||
{ "word": "consequently", "translation": "因此,结果" },
|
||
{ "word": "conservation", "translation": "保护,保存" },
|
||
{ "word": "conservative", "translation": "保守的,保守派" },
|
||
{ "word": "conserve", "translation": "保存,保护" },
|
||
{ "word": "consider", "translation": "考虑,认为" },
|
||
{ "word": "considerable", "translation": "相当大的,重要的" },
|
||
{ "word": "considerably", "translation": "相当地,非常" },
|
||
{ "word": "consideration", "translation": "考虑,体贴" },
|
||
{ "word": "consist", "translation": "由...组成, consist of" },
|
||
{ "word": "consistency", "translation": "一致性,连贯性" },
|
||
{ "word": "consistent", "translation": "一致的,始终如一的" },
|
||
{ "word": "consistently", "translation": "始终如一地" },
|
||
{ "word": "consolidate", "translation": "巩固,合并" },
|
||
{ "word": "conspiracy", "translation": "阴谋" },
|
||
{ "word": "constant", "translation": "不断的,恒定的" },
|
||
{ "word": "constantly", "translation": "不断地" },
|
||
{ "word": "constituency", "translation": "选区,支持者" },
|
||
{ "word": "constitute", "translation": "构成,组成" },
|
||
{ "word": "constitution", "translation": "宪法,体质" },
|
||
{ "word": "constitutional", "translation": "宪法的,体质的" },
|
||
{ "word": "constraint", "translation": "约束,限制" },
|
||
{ "word": "construct", "translation": "建造,构筑" },
|
||
{ "word": "construction", "translation": "建设,建筑物" },
|
||
{ "word": "consult", "translation": "咨询,请教" },
|
||
{ "word": "consultant", "translation": "顾问" },
|
||
{ "word": "consume", "translation": "消费,消耗" },
|
||
{ "word": "consumer", "translation": "消费者" },
|
||
{ "word": "consumption", "translation": "消费,消耗" },
|
||
{ "word": "contact", "translation": "接触,联系" },
|
||
{ "word": "contain", "translation": "包含,容纳" },
|
||
{ "word": "container", "translation": "容器" },
|
||
{ "word": "contemplate", "translation": "沉思,打算" },
|
||
{ "word": "contemporary", "translation": "当代的,同时代的" },
|
||
{ "word": "contempt", "translation": "轻视,蔑视" },
|
||
{ "word": "contend", "translation": "竞争,主张" },
|
||
{ "word": "content", "translation": "内容,满意的" },
|
||
{ "word": "contention", "translation": "争论,主张" },
|
||
{ "word": "contest", "translation": "竞赛,争辩" },
|
||
{ "word": "context", "translation": "上下文,语境" },
|
||
{ "word": "continent", "translation": "大陆" },
|
||
{ "word": "continuation", "translation": "继续,延续" },
|
||
{ "word": "continue", "translation": "继续" },
|
||
{ "word": "continuous", "translation": "连续的,持续的" },
|
||
{ "word": "contract", "translation": "合同,收缩" },
|
||
{ "word": "contractor", "translation": "承包商" },
|
||
{ "word": "contradiction", "translation": "矛盾,反驳" },
|
||
{ "word": "contrary", "translation": "相反的,反之" },
|
||
{ "word": "contrast", "translation": "对比,对照" },
|
||
{ "word": "contribute", "translation": "贡献,有助于" },
|
||
{ "word": "contribution", "translation": "贡献,捐款" },
|
||
{ "word": "control", "translation": "控制" },
|
||
{ "word": "controversial", "translation": "有争议的" },
|
||
{ "word": "controversy", "translation": "争议" },
|
||
{ "word": "convenience", "translation": "便利,方便" },
|
||
{ "word": "convenient", "translation": "方便的" },
|
||
{ "word": "convention", "translation": "大会,惯例" },
|
||
{ "word": "conventional", "translation": "传统的,常规的" },
|
||
{ "word": "conversation", "translation": "对话,交谈" },
|
||
{ "word": "conversion", "translation": "转换,改变" },
|
||
{ "word": "convert", "translation": "转换,改变" },
|
||
{ "word": "convey", "translation": "传达,运输" },
|
||
{ "word": "convict", "translation": "定罪,证明...有罪" },
|
||
{ "word": "conviction", "translation": "定罪,信念" },
|
||
{ "word": "convince", "translation": "说服,使相信" },
|
||
{ "word": "convincing", "translation": "令人信服的" },
|
||
{ "word": "cook", "translation": "烹饪,厨师" },
|
||
{ "word": "cooker", "translation": "炊具" },
|
||
{ "word": "cookie", "translation": "饼干 (AmE)" },
|
||
{ "word": "cool", "translation": "凉爽的,冷静的" },
|
||
{ "word": "cooperate", "translation": "合作" },
|
||
{ "word": "cooperative", "translation": "合作的,合作社" },
|
||
{ "word": "coordinate", "translation": "协调,配合" },
|
||
{ "word": "coordinator", "translation": "协调员" },
|
||
{ "word": "cop", "translation": "警察 (slang)" },
|
||
{ "word": "cope", "translation": "应付,处理" },
|
||
{ "word": "copper", "translation": "铜" },
|
||
{ "word": "copy", "translation": "复制,副本" },
|
||
{ "word": "copyright", "translation": "版权" },
|
||
{ "word": "cord", "translation": "绳索, cordless 无线的" },
|
||
{ "word": "core", "translation": "核心,果核" },
|
||
{ "word": "corn", "translation": "玉米" },
|
||
{ "word": "corner", "translation": "角落" },
|
||
{ "word": "corporate", "translation": "公司的,法人的" },
|
||
{ "word": "corporation", "translation": "公司,企业" },
|
||
{ "word": "correct", "translation": "正确的,纠正" },
|
||
{ "word": "correction", "translation": "纠正,改正" },
|
||
{ "word": "correctly", "translation": "正确地" },
|
||
{ "word": "correlate", "translation": "关联,相关" },
|
||
{ "word": "correlation", "translation": "关联,相关性" },
|
||
{ "word": "correspond", "translation": "符合,通信" },
|
||
{ "word": "correspondence", "translation": "通信,信件" },
|
||
{ "word": "correspondent", "translation": "通讯员" },
|
||
{ "word": "corresponding", "translation": "相应的,对应的" },
|
||
{ "word": "corridor", "translation": "走廊" },
|
||
{ "word": "corrupt", "translation": "腐败的,使腐败" },
|
||
{ "word": "corruption", "translation": "腐败,贪污" },
|
||
{ "word": "cost", "translation": "成本,花费" },
|
||
{ "word": "costly", "translation": "昂贵的" },
|
||
{ "word": "costume", "translation": "服装,戏装" },
|
||
{ "word": "cottage", "translation": "小屋" },
|
||
{ "word": "cotton", "translation": "棉花" },
|
||
{ "word": "cough", "translation": "咳嗽" },
|
||
{ "word": "could", "translation": "能,可以(can的过去式)" },
|
||
{ "word": "council", "translation": "委员会,理事会" },
|
||
{ "word": "councillor", "translation": "议员,顾问" },
|
||
{ "word": "counsel", "translation": "劝告,法律顾问" },
|
||
{ "word": "counselling", "translation": "咨询服务" },
|
||
{ "word": "counselor", "translation": "顾问,咨询师" },
|
||
{ "word": "count", "translation": "计算,数数" },
|
||
{ "word": "counter", "translation": "柜台,相反地" },
|
||
{ "word": "counterpart", "translation": "对应的人(或物)" },
|
||
{ "word": "country", "translation": "国家,乡村" },
|
||
{ "word": "countryside", "translation": "乡村,农村" },
|
||
{ "word": "county", "translation": "郡,县" },
|
||
{ "word": "coup", "translation": "政变" },
|
||
{ "word": "couple", "translation": "夫妇,几个" },
|
||
{ "word": "courage", "translation": "勇气" },
|
||
{ "word": "course", "translation": "课程,过程" },
|
||
{ "word": "court", "translation": "法庭,球场" },
|
||
{ "word": "courtesy", "translation": "礼貌,好意" },
|
||
{ "word": "cousin", "translation": "堂(表)兄弟姐妹" },
|
||
{ "word": "cover", "translation": "覆盖,封面" },
|
||
{ "word": "coverage", "translation": "覆盖范围,新闻报道" },
|
||
{ "word": "cow", "translation": "母牛" },
|
||
{ "word": "crack", "translation": "裂缝, crack down on 严厉打击" },
|
||
{ "word": "craft", "translation": "工艺,手艺" },
|
||
{ "word": "crash", "translation": "碰撞,坠毁" },
|
||
{ "word": "crawl", "translation": "爬行" },
|
||
{ "word": "crazy", "translation": "疯狂的" },
|
||
{ "word": "cream", "translation": "奶油" },
|
||
{ "word": "create", "translation": "创造" },
|
||
{ "word": "creation", "translation": "创造,创作" },
|
||
{ "word": "creative", "translation": "创造性的" },
|
||
{ "word": "creature", "translation": "生物,动物" },
|
||
{ "word": "credibility", "translation": "可信度" },
|
||
{ "word": "credible", "translation": "可信的" },
|
||
{ "word": "credit", "translation": "信用,学分" },
|
||
{ "word": "crew", "translation": "全体船员" },
|
||
{ "word": "crime", "translation": "犯罪" },
|
||
{ "word": "criminal", "translation": "犯罪的,罪犯" },
|
||
{ "word": "crisis", "translation": "危机" },
|
||
{ "word": "criterion", "translation": "标准 (单数)" },
|
||
{ "word": "critic", "translation": "批评家" },
|
||
{ "word": "critical", "translation": "关键的,批评的" },
|
||
{ "word": "criticism", "translation": "批评" },
|
||
{ "word": "criticize", "translation": "批评" },
|
||
{ "word": "crop", "translation": "农作物, crop up 出现" },
|
||
{ "word": "cross", "translation": "十字,交叉" },
|
||
{ "word": "crowd", "translation": "人群, crowd in 涌入" },
|
||
{ "word": "crowded", "translation": "拥挤的" },
|
||
{ "word": "crown", "translation": "王冠,加冕" },
|
||
{ "word": "crucial", "translation": "关键的,决定性的" },
|
||
{ "word": "cruel", "translation": "残酷的" },
|
||
{ "word": "cruise", "translation": "巡航,游船旅行" },
|
||
{ "word": "crush", "translation": "压碎, crush on 迷恋" },
|
||
{ "word": "cry", "translation": "哭,叫喊" },
|
||
{ "word": "crystal", "translation": "水晶" },
|
||
{ "word": "cue", "translation": "提示, cue in 通知" },
|
||
{ "word": "cult", "translation": "狂热崇拜,邪教" },
|
||
{ "word": "cultivate", "translation": "培养,耕作" },
|
||
{ "word": "cultural", "translation": "文化的" },
|
||
{ "word": "culture", "translation": "文化" },
|
||
{ "word": "cup", "translation": "杯子" },
|
||
{ "word": "cupboard", "translation": "橱柜" },
|
||
{ "word": "cure", "translation": "治愈,疗法" },
|
||
{ "word": "curiosity", "translation": "好奇心" },
|
||
{ "word": "curious", "translation": "好奇的" },
|
||
{ "word": "curl", "translation": "卷曲" },
|
||
{ "word": "currency", "translation": "货币" },
|
||
{ "word": "current", "translation": "当前的,电流" },
|
||
{ "word": "currently", "translation": "目前,现在" },
|
||
{ "word": "curriculum", "translation": "课程" },
|
||
{ "word": "curtain", "translation": "窗帘" },
|
||
{ "word": "curve", "translation": "曲线,弯曲" },
|
||
{ "word": "cushion", "translation": "垫子, cushion sth against 保护免受" },
|
||
{ "word": "custom", "translation": "习俗,海关" },
|
||
{ "word": "customer", "translation": "顾客" },
|
||
{ "word": "cut", "translation": "切,割" },
|
||
{ "word": "cute", "translation": "可爱的" },
|
||
{ "word": "cutting", "translation": "切, cutting-edge 尖端的" },
|
||
{ "word": "cycle", "translation": "循环,自行车" },
|
||
{ "word": "cynical", "translation": "愤世嫉俗的,怀疑的" },
|
||
{ "word": "dad", "translation": "爸爸" },
|
||
{ "word": "daily", "translation": "每日的,日报" },
|
||
{ "word": "dairy", "translation": "乳制品,牛奶场" },
|
||
{ "word": "dam", "translation": "水坝" },
|
||
{ "word": "damage", "translation": "损害,损坏" },
|
||
{ "word": "damn", "translation": "该死的(表示愤怒)" },
|
||
{ "word": "damp", "translation": "潮湿的,使潮湿" },
|
||
{ "word": "dance", "translation": "跳舞,舞蹈" },
|
||
{ "word": "dancer", "translation": "舞蹈演员" },
|
||
{ "word": "dancing", "translation": "舞蹈" },
|
||
{ "word": "danger", "translation": "危险" },
|
||
{ "word": "dangerous", "translation": "危险的" },
|
||
{ "word": "dare", "translation": "敢,敢于" },
|
||
{ "word": "dark", "translation": "黑暗的" },
|
||
{ "word": "darkness", "translation": "黑暗" },
|
||
{ "word": "data", "translation": "数据 (复数)" },
|
||
{ "word": "database", "translation": "数据库" },
|
||
{ "word": "date", "translation": "日期,约会" },
|
||
{ "word": "daughter", "translation": "女儿" },
|
||
{ "word": "dawn", "translation": "黎明" },
|
||
{ "word": "day", "translation": "天,白天" },
|
||
{ "word": "daylight", "translation": "日光,白天" },
|
||
{ "word": "dead", "translation": "死的,完全的" },
|
||
{ "word": "deadline", "translation": "最后期限" },
|
||
{ "word": "deadly", "translation": "致命的" },
|
||
{ "word": "deaf", "translation": "聋的" },
|
||
{ "word": "deal", "translation": "交易, deal with 处理" },
|
||
{ "word": "dealer", "translation": "商人,贩子" },
|
||
{ "word": "dear", "translation": "亲爱的,昂贵的" },
|
||
{ "word": "death", "translation": "死亡" },
|
||
{ "word": "debate", "translation": "辩论,争论" },
|
||
{ "word": "debris", "translation": "碎片,残骸" },
|
||
{ "word": "debt", "translation": "债务" },
|
||
{ "word": "debut", "translation": "初次登台, debut as 作为...首次亮相" },
|
||
{ "word": "decade", "translation": "十年" },
|
||
{ "word": "December", "translation": "十二月" },
|
||
{ "word": "decent", "translation": "体面的,相当好的" },
|
||
{ "word": "decide", "translation": "决定" },
|
||
{ "word": "decision", "translation": "决定" },
|
||
{ "word": "decisive", "translation": "决定性的" },
|
||
{ "word": "deck", "translation": "甲板" },
|
||
{ "word": "declaration", "translation": "宣布,声明" },
|
||
{ "word": "declare", "translation": "宣布,声明" },
|
||
{ "word": "decline", "translation": "下降,拒绝" },
|
||
{ "word": "decorate", "translation": "装饰" },
|
||
{ "word": "decoration", "translation": "装饰,装饰品" },
|
||
{ "word": "decrease", "translation": "减少" },
|
||
{ "word": "dedicate", "translation": "奉献,致力" },
|
||
{ "word": "dedicated", "translation": "专注的,献身的" },
|
||
{ "word": "deduction", "translation": "扣除,推理" },
|
||
{ "word": "deed", "translation": "行为, deed of gift 赠与契约" },
|
||
{ "word": "deem", "translation": "认为,视为" },
|
||
{ "word": "deep", "translation": "深的,深入的" },
|
||
{ "word": "deeply", "translation": "深深地" },
|
||
{ "word": "deer", "translation": "鹿" },
|
||
{ "word": "default", "translation": "默认,违约" },
|
||
{ "word": "defeat", "translation": "击败,挫败" },
|
||
{ "word": "defect", "translation": "缺陷" },
|
||
{ "word": "defence", "translation": "防御,保卫" },
|
||
{ "word": "defend", "translation": "保卫,辩护" },
|
||
{ "word": "defendant", "translation": "被告" },
|
||
{ "word": "defender", "translation": "防御者,辩护者" },
|
||
{ "word": "defensive", "translation": "防御的,防卫的" },
|
||
{ "word": "deficiency", "translation": "缺乏,不足" },
|
||
{ "word": "deficit", "translation": "赤字,不足额" },
|
||
{ "word": "define", "translation": "定义,规定" },
|
||
{ "word": "definite", "translation": "明确的,一定的" },
|
||
{ "word": "definitely", "translation": "明确地,肯定地" },
|
||
{ "word": "definition", "translation": "定义,释义" },
|
||
{ "word": "defy", "translation": "违抗,蔑视" },
|
||
{ "word": "degree", "translation": "程度,学位" },
|
||
{ "word": "delay", "translation": "延迟,耽搁" },
|
||
{ "word": "delegate", "translation": "代表" },
|
||
{ "word": "delegation", "translation": "代表团" },
|
||
{ "word": "delete", "translation": "删除" },
|
||
{ "word": "deliberate", "translation": "故意的,深思熟虑的" },
|
||
{ "word": "deliberately", "translation": "故意地" },
|
||
{ "word": "delicate", "translation": "精致的,脆弱的" },
|
||
{ "word": "delicious", "translation": "美味的" },
|
||
{ "word": "delight", "translation": "高兴" },
|
||
{ "word": "delighted", "translation": "高兴的" },
|
||
{ "word": "deliver", "translation": "递送,发表" },
|
||
{ "word": "delivery", "translation": "递送,分娩" },
|
||
{ "word": "demand", "translation": "要求,需求" },
|
||
{ "word": "democracy", "translation": "民主" },
|
||
{ "word": "democratic", "translation": "民主的" },
|
||
{ "word": "demon", "translation": "恶魔" },
|
||
{ "word": "demonstrate", "translation": "证明,展示" },
|
||
{ "word": "demonstration", "translation": "示范,游行示威" },
|
||
{ "word": "denial", "translation": "否认,拒绝" },
|
||
{ "word": "denounce", "translation": "谴责,告发" },
|
||
{ "word": "dense", "translation": "密集的,浓厚的" },
|
||
{ "word": "density", "translation": "密度" },
|
||
{ "word": "dentist", "translation": "牙医" },
|
||
{ "word": "deny", "translation": "否认,拒绝" },
|
||
{ "word": "depart", "translation": "离开,出发" },
|
||
{ "word": "department", "translation": "部门,系" },
|
||
{ "word": "departure", "translation": "离开,出发" },
|
||
{ "word": "depend", "translation": "依靠,取决于" },
|
||
{ "word": "dependence", "translation": "依赖,依靠" },
|
||
{ "word": "dependent", "translation": "依赖的,取决于的" },
|
||
{ "word": "depict", "translation": "描述,描绘" },
|
||
{ "word": "deploy", "translation": "部署,展开" },
|
||
{ "word": "deposit", "translation": "存款,押金" },
|
||
{ "word": "depress", "translation": "使沮丧,压下" },
|
||
{ "word": "depression", "translation": "沮丧,萧条" },
|
||
{ "word": "deprive", "translation": "剥夺,使丧失" },
|
||
{ "word": "depth", "translation": "深度" },
|
||
{ "word": "deputy", "translation": "副职,代表" },
|
||
{ "word": "derive", "translation": "得到,源于" },
|
||
{ "word": "descend", "translation": "下降, descend from 源于" },
|
||
{ "word": "descent", "translation": "下降,血统" },
|
||
{ "word": "describe", "translation": "描述" },
|
||
{ "word": "description", "translation": "描述,说明书" },
|
||
{ "word": "desert", "translation": "沙漠,抛弃" },
|
||
{ "word": "deserve", "translation": "应得,值得" },
|
||
{ "word": "design", "translation": "设计,图案" },
|
||
{ "word": "designate", "translation": "指定,委派" },
|
||
{ "word": "designer", "translation": "设计师" },
|
||
{ "word": "desirable", "translation": "令人满意的,值得要的" },
|
||
{ "word": "desire", "translation": "欲望,渴望" },
|
||
{ "word": "desk", "translation": "书桌" },
|
||
{ "word": "desktop", "translation": "桌面" },
|
||
{ "word": "despair", "translation": "绝望" },
|
||
{ "word": "desperate", "translation": "绝望的,不顾一切的" },
|
||
{ "word": "desperately", "translation": "绝望地" },
|
||
{ "word": "despite", "translation": "尽管" },
|
||
{ "word": "destination", "translation": "目的地" },
|
||
{ "word": "destroy", "translation": "破坏,毁灭" },
|
||
{ "word": "destruction", "translation": "破坏,毁灭" },
|
||
{ "word": "detail", "translation": "细节" },
|
||
{ "word": "detailed", "translation": "详细的" },
|
||
{ "word": "detain", "translation": "拘留,扣留" },
|
||
{ "word": "detect", "translation": "察觉,侦查" },
|
||
{ "word": "detection", "translation": "察觉,侦查" },
|
||
{ "word": "detective", "translation": "侦探" },
|
||
{ "word": "detector", "translation": "探测器" },
|
||
{ "word": "deteriorate", "translation": "恶化,变坏" },
|
||
{ "word": "determination", "translation": "决心,决定" },
|
||
{ "word": "determine", "translation": "决定,确定" },
|
||
{ "word": "determined", "translation": "坚定的,下决心的" },
|
||
{ "word": "devastate", "translation": "破坏,毁坏" },
|
||
{ "word": "develop", "translation": "发展,开发" },
|
||
{ "word": "development", "translation": "发展,开发" },
|
||
{ "word": "device", "translation": "装置,设备" },
|
||
{ "word": "devil", "translation": "魔鬼" },
|
||
{ "word": "devise", "translation": "设计,想出" },
|
||
{ "word": "devote", "translation": "致力于,奉献" },
|
||
{ "word": "diagnose", "translation": "诊断" },
|
||
{ "word": "diagnosis", "translation": "诊断" },
|
||
{ "word": "diagram", "translation": "图表" },
|
||
{ "word": "dial", "translation": "拨(电话),刻度盘" },
|
||
{ "word": "dialogue", "translation": "对话" },
|
||
{ "word": "diameter", "translation": "直径" },
|
||
{ "word": "diamond", "translation": "钻石" },
|
||
{ "word": "diary", "translation": "日记" },
|
||
{ "word": "dictate", "translation": "口述,命令" },
|
||
{ "word": "dictator", "translation": "独裁者" },
|
||
{ "word": "dictionary", "translation": "词典" },
|
||
{ "word": "die", "translation": "死" },
|
||
{ "word": "diet", "translation": "饮食,节食" },
|
||
{ "word": "differ", "translation": "不同" },
|
||
{ "word": "difference", "translation": "不同,差异" },
|
||
{ "word": "different", "translation": "不同的" },
|
||
{ "word": "differential", "translation": "差别的,差额" },
|
||
{ "word": "differentiate", "translation": "区分,区别" },
|
||
{ "word": "differently", "translation": "不同地" },
|
||
{ "word": "difficult", "translation": "困难的" },
|
||
{ "word": "difficulty", "translation": "困难" },
|
||
{ "word": "dig", "translation": "挖" },
|
||
{ "word": "digital", "translation": "数字的" },
|
||
{ "word": "dignity", "translation": "尊严" },
|
||
{ "word": "dilemma", "translation": "困境,进退两难" },
|
||
{ "word": "dimension", "translation": "方面,维度" },
|
||
{ "word": "diminish", "translation": "减少,降低" },
|
||
{ "word": "dine", "translation": "吃饭" },
|
||
{ "word": "dinner", "translation": "晚餐" },
|
||
{ "word": "dioxide", "translation": "二氧化物" },
|
||
{ "word": "dip", "translation": "浸,蘸" },
|
||
{ "word": "diplomat", "translation": "外交官" },
|
||
{ "word": "diplomatic", "translation": "外交的,老练的" },
|
||
{ "word": "direct", "translation": "直接的,指导" },
|
||
{ "word": "direction", "translation": "方向,指导" },
|
||
{ "word": "directly", "translation": "直接地,立即" },
|
||
{ "word": "director", "translation": "董事,导演" },
|
||
{ "word": "directory", "translation": "目录,电话簿" },
|
||
{ "word": "dirt", "translation": "泥土,污垢" },
|
||
{ "word": "dirty", "translation": "脏的" },
|
||
{ "word": "disability", "translation": "残疾" },
|
||
{ "word": "disabled", "translation": "残疾的" },
|
||
{ "word": "disagree", "translation": "不同意" },
|
||
{ "word": "disagreement", "translation": "分歧,不一致" },
|
||
{ "word": "disappear", "translation": "消失" },
|
||
{ "word": "disappoint", "translation": "使失望" },
|
||
{ "word": "disappointed", "translation": "失望的" },
|
||
{ "word": "disappointment", "translation": "失望" },
|
||
{ "word": "disaster", "translation": "灾难" },
|
||
{ "word": "disastrous", "translation": "灾难性的" },
|
||
{ "word": "disc", "translation": "圆盘, disc brake 盘式制动器" },
|
||
{ "word": "discard", "translation": "丢弃,抛弃" },
|
||
{ "word": "discharge", "translation": "释放, discharge sb from 解雇某人" },
|
||
{ "word": "discipline", "translation": "纪律,学科" },
|
||
{ "word": "disclose", "translation": "公开,透露" },
|
||
{ "word": "discount", "translation": "折扣" },
|
||
{ "word": "discourage", "translation": "使气馁,阻止" },
|
||
{ "word": "discourse", "translation": "话语, Discourse on 谈论" },
|
||
{ "word": "discover", "translation": "发现" },
|
||
{ "word": "discovery", "translation": "发现" },
|
||
{ "word": "discretion", "translation": "谨慎,判断力" },
|
||
{ "word": "discrimination", "translation": "歧视,区别对待" },
|
||
{ "word": "discuss", "translation": "讨论" },
|
||
{ "word": "discussion", "translation": "讨论" },
|
||
{ "word": "disease", "translation": "疾病" },
|
||
{ "word": "dish", "translation": "盘子,菜肴" },
|
||
{ "word": "disk", "translation": "磁盘 (AmE)" },
|
||
{ "word": "dismiss", "translation": "解雇,解散" },
|
||
{ "word": "dismissal", "translation": "解雇,解散" },
|
||
{ "word": "disorder", "translation": "混乱,失调" },
|
||
{ "word": "display", "translation": "展示,显示" },
|
||
{ "word": "disposal", "translation": "处理,处置" },
|
||
{ "word": "dispose", "translation": "处理, dispose of 处理掉" },
|
||
{ "word": "dispute", "translation": "争论,纠纷" },
|
||
{ "word": "disrupt", "translation": "扰乱,中断" },
|
||
{ "word": "dissolve", "translation": "溶解,解散" },
|
||
{ "word": "distance", "translation": "距离,远处" },
|
||
{ "word": "distant", "translation": "遥远的" },
|
||
{ "word": "distinct", "translation": "明显的,不同的" },
|
||
{ "word": "distinction", "translation": "区别,杰出" },
|
||
{ "word": "distinctive", "translation": "独特的,有特色的" },
|
||
{ "word": "distinguish", "translation": "区分,辨别" },
|
||
{ "word": "distort", "translation": "扭曲,歪曲" },
|
||
{ "word": "distract", "translation": "分散(注意力),转移" },
|
||
{ "word": "distress", "translation": "痛苦,危难" },
|
||
{ "word": "distribute", "translation": "分发,分布" },
|
||
{ "word": "distribution", "translation": "分发,分布" },
|
||
{ "word": "district", "translation": "地区,区域" },
|
||
{ "word": "disturb", "translation": "打扰,扰乱" },
|
||
{ "word": "disturbance", "translation": "打扰,骚乱" },
|
||
{ "word": "dive", "translation": "跳水,俯冲" },
|
||
{ "word": "diverse", "translation": "不同的,多样的" },
|
||
{ "word": "diversity", "translation": "多样性" },
|
||
{ "word": "divert", "translation": "转移, divert sb from sth 使某人偏离某事" },
|
||
{ "word": "divide", "translation": "分割,除" },
|
||
{ "word": "divine", "translation": "神圣的,神的" },
|
||
{ "word": "division", "translation": "分割,部门" },
|
||
{ "word": "divorce", "translation": "离婚" },
|
||
{ "word": "do", "translation": "做" },
|
||
{ "word": "dock", "translation": "码头, dock workers 码头工人" },
|
||
{ "word": "doctor", "translation": "医生,博士" },
|
||
{ "word": "doctrine", "translation": "教义,主义" },
|
||
{ "word": "document", "translation": "文件,文档" },
|
||
{ "word": "documentary", "translation": "纪录片" },
|
||
{ "word": "dog", "translation": "狗" },
|
||
{ "word": "dollar", "translation": "美元" },
|
||
{ "word": "domain", "translation": "领域,领土" },
|
||
{ "word": "domestic", "translation": "国内的,家用的" },
|
||
{ "word": "dominant", "translation": "占主导地位的" },
|
||
{ "word": "dominate", "translation": "支配,占主导地位" },
|
||
{ "word": "donate", "translation": "捐赠" },
|
||
{ "word": "donation", "translation": "捐赠物,捐款" },
|
||
{ "word": "donor", "translation": "捐赠者" },
|
||
{ "word": "door", "translation": "门" },
|
||
{ "word": "dose", "translation": "剂量" },
|
||
{ "word": "dot", "translation": "点" },
|
||
{ "word": "double", "translation": "双倍的,加倍" },
|
||
{ "word": "doubt", "translation": "怀疑" },
|
||
{ "word": "doubtful", "translation": "怀疑的,可疑的" },
|
||
{ "word": "down", "translation": "向下,在下面" },
|
||
{ "word": "downstairs", "translation": "在楼下" },
|
||
{ "word": "downtown", "translation": "市中心" },
|
||
{ "word": "dozen", "translation": "一打" },
|
||
{ "word": "draft", "translation": "草稿,征兵" },
|
||
{ "word": "drag", "translation": "拖,拉" },
|
||
{ "word": "drain", "translation": "排水, drain away 流失" },
|
||
{ "word": "drama", "translation": "戏剧" },
|
||
{ "word": "dramatic", "translation": "戏剧性的,引人注目的" },
|
||
{ "word": "dramatically", "translation": "戏剧性地,显著地" },
|
||
{ "word": "draw", "translation": "画,拉" },
|
||
{ "word": "drawer", "translation": "抽屉" },
|
||
{ "word": "drawing", "translation": "图画,绘画" },
|
||
{ "word": "dream", "translation": "梦,梦想" },
|
||
{ "word": "dress", "translation": "连衣裙,给...穿衣" },
|
||
{ "word": "dressed", "translation": "穿着...的" },
|
||
{ "word": "drift", "translation": "漂流, drift away 漂离" },
|
||
{ "word": "drink", "translation": "喝,饮料" },
|
||
{ "word": "drive", "translation": "驾驶,驱动" },
|
||
{ "word": "driver", "translation": "司机" },
|
||
{ "word": "driving", "translation": "驾驶的" },
|
||
{ "word": "drop", "translation": "滴,掉落" },
|
||
{ "word": "drought", "translation": "干旱" },
|
||
{ "word": "drown", "translation": "淹死" },
|
||
{ "word": "drug", "translation": "药,毒品" },
|
||
{ "word": "drum", "translation": "鼓" },
|
||
{ "word": "drunk", "translation": "喝醉的" },
|
||
{ "word": "dry", "translation": "干的,使干燥" },
|
||
{ "word": "dual", "translation": "双重的" },
|
||
{ "word": "duck", "translation": "鸭子" },
|
||
{ "word": "due", "translation": "到期的, due to 由于" },
|
||
{ "word": "dull", "translation": "枯燥的,阴暗的" },
|
||
{ "word": "dumb", "translation": "哑的,无言的" },
|
||
{ "word": "dump", "translation": "倾倒,丢弃" },
|
||
{ "word": "duplicate", "translation": "复制的,副本" },
|
||
{ "word": "duration", "translation": "持续时间" },
|
||
{ "word": "during", "translation": "在...期间" },
|
||
{ "word": "dust", "translation": "灰尘" },
|
||
{ "word": "duty", "translation": "责任,关税" },
|
||
{ "word": "duo", "translation": "二人组" },
|
||
{ "word": "each", "translation": "每个" },
|
||
{ "word": "eager", "translation": "渴望的,热切的" },
|
||
{ "word": "ear", "translation": "耳朵" },
|
||
{ "word": "early", "translation": "早的,早期" },
|
||
{ "word": "earn", "translation": "赚得,获得" },
|
||
{ "word": "earnings", "translation": "收入,赚得的钱" },
|
||
{ "word": "earth", "translation": "地球,泥土" },
|
||
{ "word": "earthquake", "translation": "地震" },
|
||
{ "word": "ease", "translation": "容易,安逸" },
|
||
{ "word": "easily", "translation": "容易地" },
|
||
{ "word": "east", "translation": "东方的,东部" },
|
||
{ "word": "eastern", "translation": "东方的" },
|
||
{ "word": "easy", "translation": "容易的" },
|
||
{ "word": "eat", "translation": "吃" },
|
||
{ "word": "echo", "translation": "回声,重复" },
|
||
{ "word": "ecological", "translation": "生态的" },
|
||
{ "word": "economic", "translation": "经济的" },
|
||
{ "word": "economics", "translation": "经济学" },
|
||
{ "word": "economist", "translation": "经济学家" },
|
||
{ "word": "economy", "translation": "经济" },
|
||
{ "word": "edge", "translation": "边缘" },
|
||
{ "word": "edit", "translation": "编辑" },
|
||
{ "word": "edition", "translation": "版本" },
|
||
{ "word": "editor", "translation": "编辑" },
|
||
{ "word": "educate", "translation": "教育" },
|
||
{ "word": "education", "translation": "教育" },
|
||
{ "word": "educational", "translation": "教育的" },
|
||
{ "word": "effect", "translation": "效果,作用" },
|
||
{ "word": "effective", "translation": "有效的" },
|
||
{ "word": "effectively", "translation": "有效地" },
|
||
{ "word": "effectiveness", "translation": "有效性" },
|
||
{ "word": "efficiency", "translation": "效率" },
|
||
{ "word": "efficient", "translation": "有效率的" },
|
||
{ "word": "effort", "translation": "努力" },
|
||
{ "word": "egg", "translation": "蛋" },
|
||
{ "word": "ego", "translation": "自我" },
|
||
{ "word": "eight", "translation": "八" },
|
||
{ "word": "eighteen", "translation": "十八" },
|
||
{ "word": "eighty", "translation": "八十" },
|
||
{ "word": "either", "translation": "(两者中的)任何一个" },
|
||
{ "word": "elaborate", "translation": "精心制作的,详述" },
|
||
{ "word": "elbow", "translation": "肘部" },
|
||
{ "word": "elderly", "translation": "年老的" },
|
||
{ "word": "elect", "translation": "选举" },
|
||
{ "word": "election", "translation": "选举" },
|
||
{ "word": "electoral", "translation": "选举的" },
|
||
{ "word": "electric", "translation": "电的" },
|
||
{ "word": "electrical", "translation": "电的,电气的" },
|
||
{ "word": "electricity", "translation": "电" },
|
||
{ "word": "electron", "translation": "电子" },
|
||
{ "word": "electronic", "translation": "电子的" },
|
||
{ "word": "electronics", "translation": "电子学,电子产品" },
|
||
{ "word": "elegant", "translation": "优雅的" },
|
||
{ "word": "element", "translation": "元素,要素" },
|
||
{ "word": "elementary", "translation": "基本的,初级的" },
|
||
{ "word": "elephant", "translation": "大象" },
|
||
{ "word": "elevate", "translation": "提升,举起" },
|
||
{ "word": "eleven", "translation": "十一" },
|
||
{ "word": "eligible", "translation": "合格的,有资格的" },
|
||
{ "word": "eliminate", "translation": "消除,淘汰" },
|
||
{ "word": "elite", "translation": "精英" },
|
||
{ "word": "else", "translation": "其他的" },
|
||
{ "word": "elsewhere", "translation": "在别处" },
|
||
{ "word": "email", "translation": "电子邮件" },
|
||
{ "word": "embark", "translation": "从事, embark on 开始" },
|
||
{ "word": "embarrassed", "translation": "尴尬的" },
|
||
{ "word": "embassy", "translation": "大使馆" },
|
||
{ "word": "embody", "translation": "体现,包含" },
|
||
{ "word": "embrace", "translation": "拥抱,接受" },
|
||
{ "word": "emerge", "translation": "出现,浮现" },
|
||
{ "word": "emergency", "translation": "紧急情况" },
|
||
{ "word": "emerging", "translation": "新兴的" },
|
||
{ "word": "emission", "translation": "排放,发射" },
|
||
{ "word": "emotion", "translation": "情感" },
|
||
{ "word": "emotional", "translation": "情感的" },
|
||
{ "word": "emphasis", "translation": "强调" },
|
||
{ "word": "emphasize", "translation": "强调" },
|
||
{ "word": "empire", "translation": "帝国" },
|
||
{ "word": "employ", "translation": "雇用" },
|
||
{ "word": "employee", "translation": "雇员" },
|
||
{ "word": "employer", "translation": "雇主" },
|
||
{ "word": "employment", "translation": "雇用,工作" },
|
||
{ "word": "empty", "translation": "空的" },
|
||
{ "word": "enable", "translation": "使能够, enable sb to do sth 使某人能够做某事" },
|
||
{ "word": "enclose", "translation": "围住,附上" },
|
||
{ "word": "encounter", "translation": "遭遇,遇到" },
|
||
{ "word": "encourage", "translation": "鼓励" },
|
||
{ "word": "encouragement", "translation": "鼓励" },
|
||
{ "word": "encouraging", "translation": "鼓舞人心的" },
|
||
{ "word": "end", "translation": "结束,末端" },
|
||
{ "word": "ending", "translation": "结尾,结局" },
|
||
{ "word": "endless", "translation": "无止境的" },
|
||
{ "word": "endorse", "translation": "支持, endorsement 背书" },
|
||
{ "word": "endure", "translation": "忍受,持久" },
|
||
{ "word": "enemy", "translation": "敌人" },
|
||
{ "word": "energy", "translation": "能量" },
|
||
{ "word": "enforce", "translation": "强制执行, enforce laws 实施法律" },
|
||
{ "word": "enforcement", "translation": "执行,实施" },
|
||
{ "word": "engage", "translation": "从事,订婚" },
|
||
{ "word": "engaged", "translation": "忙于,订婚的" },
|
||
{ "word": "engagement", "translation": "订婚,约会" },
|
||
{ "word": "engine", "translation": "引擎" },
|
||
{ "word": "engineer", "translation": "工程师" },
|
||
{ "word": "engineering", "translation": "工程学" },
|
||
{ "word": "enhance", "translation": "提高,增强" },
|
||
{ "word": "enjoy", "translation": "享受" },
|
||
{ "word": "enjoyable", "translation": "令人愉快的" },
|
||
{ "word": "enjoyment", "translation": "享受,乐趣" },
|
||
{ "word": "enormous", "translation": "巨大的" },
|
||
{ "word": "enough", "translation": "足够的" },
|
||
{ "word": "enquire", "translation": "询问" },
|
||
{ "word": "enquiry", "translation": "询问,调查" },
|
||
{ "word": "enrich", "translation": "使丰富, enrich sb's life 丰富某人的生活" },
|
||
{ "word": "enroll", "translation": "注册,入学" },
|
||
{ "word": "ensue", "translation": "接着发生, ensue from 由...引起" },
|
||
{ "word": "ensure", "translation": "确保,保证" },
|
||
{ "word": "enter", "translation": "进入" },
|
||
{ "word": "enterprise", "translation": "企业,事业心" },
|
||
{ "word": "entertain", "translation": "娱乐,招待" },
|
||
{ "word": "entertainment", "translation": "娱乐" },
|
||
{ "word": "enthusiasm", "translation": "热情" },
|
||
{ "word": "enthusiastic", "translation": "热情的" },
|
||
{ "word": "entire", "translation": "整个的" },
|
||
{ "word": "entirely", "translation": "完全地" },
|
||
{ "word": "entitle", "translation": "给...权利, entitled to 有权享有" },
|
||
{ "word": "entity", "translation": "实体" },
|
||
{ "word": "entrance", "translation": "入口" },
|
||
{ "word": "entrepreneur", "translation": "企业家" },
|
||
{ "word": "entry", "translation": "进入,条目" },
|
||
{ "word": "envelope", "translation": "信封" },
|
||
{ "word": "environment", "translation": "环境" },
|
||
{ "word": "environmental", "translation": "环境的" },
|
||
{ "word": "epidemic", "translation": "流行病" },
|
||
{ "word": "episode", "translation": "插曲,一集" },
|
||
{ "word": "equal", "translation": "相等的,等于" },
|
||
{ "word": "equality", "translation": "平等" },
|
||
{ "word": "equally", "translation": "同样地" },
|
||
{ "word": "equation", "translation": "方程式" },
|
||
{ "word": "equip", "translation": "装备" },
|
||
{ "word": "equipment", "translation": "设备" },
|
||
{ "word": "equity", "translation": "公平,股权" },
|
||
{ "word": "equivalent", "translation": "相等的,等价物" },
|
||
{ "word": "era", "translation": "时代" },
|
||
{ "word": "erect", "translation": "竖立, erect barriers 设置障碍" },
|
||
{ "word": "error", "translation": "错误" },
|
||
{ "word": "erupt", "translation": "爆发, erupt into 突然爆发" },
|
||
{ "word": "escalate", "translation": "升级, escalator 自动扶梯" },
|
||
{ "word": "escape", "translation": "逃跑,逃避" },
|
||
{ "word": "especially", "translation": "特别,尤其" },
|
||
{ "word": "essay", "translation": "文章,散文" },
|
||
{ "word": "essence", "translation": "本质,精髓" },
|
||
{ "word": "essential", "translation": "基本的,必要的" },
|
||
{ "word": "essentially", "translation": "本质上,基本上" },
|
||
{ "word": "establish", "translation": "建立,确立" },
|
||
{ "word": "establishment", "translation": "建立,机构" },
|
||
{ "word": "estate", "translation": "房地产,庄园" },
|
||
{ "word": "estimate", "translation": "估计,估价" },
|
||
{ "word": "eternal", "translation": "永恒的" },
|
||
{ "word": "ethic", "translation": "道德规范" },
|
||
{ "word": "ethical", "translation": "道德的" },
|
||
{ "word": "ethnic", "translation": "种族的" },
|
||
{ "word": "euro", "translation": "欧元" },
|
||
{ "word": "evacuate", "translation": "疏散,撤出" },
|
||
{ "word": "evaluate", "translation": "评估,评价" },
|
||
{ "word": "evaluation", "translation": "评估,评价" },
|
||
{ "word": "even", "translation": "甚至,即使" },
|
||
{ "word": "evening", "translation": "晚上" },
|
||
{ "word": "event", "translation": "事件" },
|
||
{ "word": "eventually", "translation": "最终,终于" },
|
||
{ "word": "ever", "translation": "曾经,永远" },
|
||
{ "word": "every", "translation": "每个" },
|
||
{ "word": "everybody", "translation": "每个人" },
|
||
{ "word": "everyday", "translation": "每天的,日常的" },
|
||
{ "word": "everyone", "translation": "每个人" },
|
||
{ "word": "everything", "translation": "每件事" },
|
||
{ "word": "everywhere", "translation": "到处" },
|
||
{ "word": "evidence", "translation": "证据" },
|
||
{ "word": "evident", "translation": "明显的" },
|
||
{ "word": "evil", "translation": "邪恶的,邪恶" },
|
||
{ "word": "evoke", "translation": "唤起,引起" },
|
||
{ "word": "evolution", "translation": "进化,演变" },
|
||
{ "word": "evolve", "translation": "进化,演变" },
|
||
{ "word": "exact", "translation": "精确的" },
|
||
{ "word": "exactly", "translation": "确切地,正是" },
|
||
{ "word": "exaggerate", "translation": "夸大" },
|
||
{ "word": "exam", "translation": "考试" },
|
||
{ "word": "examination", "translation": "考试,检查" },
|
||
{ "word": "examine", "translation": "检查,考试" },
|
||
{ "word": "example", "translation": "例子" },
|
||
{ "word": "exceed", "translation": "超过,超越" },
|
||
{ "word": "excellence", "translation": "优秀,卓越" },
|
||
{ "word": "excellent", "translation": "优秀的" },
|
||
{ "word": "except", "translation": "除...之外" },
|
||
{ "word": "exception", "translation": "例外" },
|
||
{ "word": "exceptional", "translation": "例外的,杰出的" },
|
||
{ "word": "excess", "translation": "过量,超过" },
|
||
{ "word": "excessive", "translation": "过多的,过度的" },
|
||
{ "word": "exchange", "translation": "交换,交易所" },
|
||
{ "word": "excite", "translation": "使兴奋" },
|
||
{ "word": "excited", "translation": "兴奋的" },
|
||
{ "word": "excitement", "translation": "兴奋,刺激" },
|
||
{ "word": "exciting", "translation": "令人兴奋的" },
|
||
{ "word": "exclude", "translation": "排除,不包括" },
|
||
{ "word": "exclusion", "translation": "排除,排斥" },
|
||
{ "word": "exclusive", "translation": "独有的,排外的" },
|
||
{ "word": "exclusively", "translation": "仅仅,只" },
|
||
{ "word": "excuse", "translation": "借口,原谅" },
|
||
{ "word": "execute", "translation": "执行,处决" },
|
||
{ "word": "execution", "translation": "执行,死刑" },
|
||
{ "word": "executive", "translation": "执行的,行政主管" },
|
||
{ "word": "exercise", "translation": "练习,运动" },
|
||
{ "word": "exert", "translation": "运用, exert pressure 施加压力" },
|
||
{ "word": "exhaust", "translation": "使筋疲力尽, exhaust fumes 废气" },
|
||
{ "word": "exhibit", "translation": "展览,显示" },
|
||
{ "word": "exhibition", "translation": "展览" },
|
||
{ "word": "exile", "translation": "流放, exile sb to 将某人流放到" },
|
||
{ "word": "exist", "translation": "存在" },
|
||
{ "word": "existence", "translation": "存在,生存" },
|
||
{ "word": "exit", "translation": "出口,退出" },
|
||
{ "word": "exotic", "translation": "异国情调的" },
|
||
{ "word": "expand", "translation": "扩大,膨胀" },
|
||
{ "word": "expansion", "translation": "扩大,扩张" },
|
||
{ "word": "expect", "translation": "期待,预料" },
|
||
{ "word": "expectation", "translation": "期望" },
|
||
{ "word": "expedition", "translation": "远征,探险队" },
|
||
{ "word": "expenditure", "translation": "支出,花费" },
|
||
{ "word": "expense", "translation": "费用" },
|
||
{ "word": "expensive", "translation": "昂贵的" },
|
||
{ "word": "experience", "translation": "经验,经历" },
|
||
{ "word": "experienced", "translation": "有经验的" },
|
||
{ "word": "experiment", "translation": "实验" },
|
||
{ "word": "experimental", "translation": "实验的" },
|
||
{ "word": "expert", "translation": "专家" },
|
||
{ "word": "expertise", "translation": "专门知识,专业技能" },
|
||
{ "word": "expire", "translation": "期满, expire on 于...期满" },
|
||
{ "word": "explain", "translation": "解释" },
|
||
{ "word": "explanation", "translation": "解释" },
|
||
{ "word": "explicit", "translation": "明确的,清楚的" },
|
||
{ "word": "explode", "translation": "爆炸" },
|
||
{ "word": "exploit", "translation": "开发,剥削" },
|
||
{ "word": "exploration", "translation": "探索,勘探" },
|
||
{ "word": "explore", "translation": "探索" },
|
||
{ "word": "explosion", "translation": "爆炸" },
|
||
{ "word": "export", "translation": "出口" },
|
||
{ "word": "expose", "translation": "暴露,揭露" },
|
||
{ "word": "exposure", "translation": "暴露,曝光" },
|
||
{ "word": "express", "translation": "表达,快车" },
|
||
{ "word": "expression", "translation": "表达,表情" },
|
||
{ "word": "extend", "translation": "延伸,扩展" },
|
||
{ "word": "extension", "translation": "延伸,分机" },
|
||
{ "word": "extensive", "translation": "广泛的" },
|
||
{ "word": "extensively", "translation": "广泛地" },
|
||
{ "word": "extent", "translation": "程度,范围" },
|
||
{ "word": "external", "translation": "外部的" },
|
||
{ "word": "extra", "translation": "额外的,特别地" },
|
||
{ "word": "extract", "translation": "提取,摘录" },
|
||
{ "word": "extraordinary", "translation": "非凡的,特别的" },
|
||
{ "word": "extreme", "translation": "极端的" },
|
||
{ "word": "extremely", "translation": "极其,非常" },
|
||
{ "word": "extremist", "translation": "极端主义者" },
|
||
{ "word": "eye", "translation": "眼睛" },
|
||
{ "word": "fabric", "translation": "织物, fabricate 编造" },
|
||
{ "word": "face", "translation": "脸,面对" },
|
||
{ "word": "facilitate", "translation": "促进,使便利" },
|
||
{ "word": "facility", "translation": "设施" },
|
||
{ "word": "fact", "translation": "事实" },
|
||
{ "word": "faction", "translation": "派别,小集团" },
|
||
{ "word": "factor", "translation": "因素" },
|
||
{ "word": "factory", "translation": "工厂" },
|
||
{ "word": "faculty", "translation": "全体教员, faculty to do sth 做某事的能力" },
|
||
{ "word": "fade", "translation": "褪色, fade away 逐渐消失" },
|
||
{ "word": "fail", "translation": "失败,不及格" },
|
||
{ "word": "failure", "translation": "失败" },
|
||
{ "word": "fair", "translation": "公平的,集市" },
|
||
{ "word": "fairly", "translation": "相当地,公平地" },
|
||
{ "word": "faith", "translation": "信仰,信任" },
|
||
{ "word": "fake", "translation": "假的,伪造" },
|
||
{ "word": "fall", "translation": "落下,秋天" },
|
||
{ "word": "false", "translation": "错误的,假的" },
|
||
{ "word": "fame", "translation": "名声" },
|
||
{ "word": "familiar", "translation": "熟悉的" },
|
||
{ "word": "family", "translation": "家庭" },
|
||
{ "word": "famous", "translation": "著名的" },
|
||
{ "word": "fan", "translation": "风扇,迷" },
|
||
{ "word": "fancy", "translation": "花哨的, fancy doing sth 想要做某事" },
|
||
{ "word": "fantastic", "translation": "极好的" },
|
||
{ "word": "fantasy", "translation": "幻想" },
|
||
{ "word": "far", "translation": "远的,远" },
|
||
{ "word": "fare", "translation": "车费, fare well/worse 表现好/差" },
|
||
{ "word": "farm", "translation": "农场" },
|
||
{ "word": "farmer", "translation": "农民" },
|
||
{ "word": "farming", "translation": "农业" },
|
||
{ "word": "fascinate", "translation": "迷住,吸引" },
|
||
{ "word": "fascinating", "translation": "迷人的" },
|
||
{ "word": "fashion", "translation": "时尚, fashion sth after 仿照...的样式制作某物" },
|
||
{ "word": "fashionable", "translation": "流行的,时髦的" },
|
||
{ "word": "fast", "translation": "快的,快速地" },
|
||
{ "word": "fasten", "translation": "系牢, fasten seat belts 系好安全带" },
|
||
{ "word": "fat", "translation": "胖的,脂肪" },
|
||
{ "word": "fatal", "translation": "致命的" },
|
||
{ "word": "fate", "translation": "命运" },
|
||
{ "word": "father", "translation": "父亲" },
|
||
{ "word": "fault", "translation": "错误,故障" },
|
||
{ "word": "favor", "translation": "赞同, favor sb with sth 给某人以..." },
|
||
{ "word": "favorable", "translation": "有利的,赞成的" },
|
||
{ "word": "favorite", "translation": "最喜爱的 (AmE)" },
|
||
{ "word": "favour", "translation": "赞同,恩惠 (BrE)" },
|
||
{ "word": "favourite", "translation": "最喜爱的 (BrE)" },
|
||
{ "word": "fear", "translation": "害怕,恐惧" },
|
||
{ "word": "feat", "translation": "功绩,技艺" },
|
||
{ "word": "feather", "translation": "羽毛" },
|
||
{ "word": "feature", "translation": "特征,特色节目" },
|
||
{ "word": "February", "translation": "二月" },
|
||
{ "word": "federal", "translation": "联邦的" },
|
||
{ "word": "fee", "translation": "费用" },
|
||
{ "word": "feed", "translation": "喂养, feed on 以...为食" },
|
||
{ "word": "feedback", "translation": "反馈" },
|
||
{ "word": "feeding", "translation": "喂养" },
|
||
{ "word": "feel", "translation": "感觉" },
|
||
{ "word": "feeling", "translation": "感觉,情绪" },
|
||
{ "word": "fellow", "translation": "同伴, fellow citizen 同胞" },
|
||
{ "word": "female", "translation": "女性的,女性" },
|
||
{ "word": "fence", "translation": "栅栏" },
|
||
{ "word": "festival", "translation": "节日,音乐节" },
|
||
{ "word": "fever", "translation": "发烧, feverishly 狂热地" },
|
||
{ "word": "few", "translation": "很少的,少数" },
|
||
{ "word": "fiber", "translation": "纤维 (AmE)" },
|
||
{ "word": "fiction", "translation": "小说" },
|
||
{ "word": "field", "translation": "田地,领域" },
|
||
{ "word": "fierce", "translation": "凶猛的,激烈的" },
|
||
{ "word": "fifteen", "translation": "十五" },
|
||
{ "word": "fifth", "translation": "第五" },
|
||
{ "word": "fifty", "translation": "五十" },
|
||
{ "word": "fight", "translation": "战斗,打架" },
|
||
{ "word": "fighter", "translation": "战士,战斗机" },
|
||
{ "word": "fighting", "translation": "战斗,斗志" },
|
||
{ "word": "figure", "translation": "数字,人物, figure out 弄清楚" },
|
||
{ "word": "file", "translation": "文件,档案" },
|
||
{ "word": "fill", "translation": "装满" },
|
||
{ "word": "film", "translation": "电影,胶卷" },
|
||
{ "word": "filter", "translation": "过滤器,过滤" },
|
||
{ "word": "final", "translation": "最后的" },
|
||
{ "word": "finally", "translation": "最后,终于" },
|
||
{ "word": "finance", "translation": "财政,金融" },
|
||
{ "word": "financial", "translation": "财政的,金融的" },
|
||
{ "word": "find", "translation": "找到,发现" },
|
||
{ "word": "finding", "translation": "发现,调查结果" },
|
||
{ "word": "fine", "translation": "好的,罚款" },
|
||
{ "word": "finger", "translation": "手指" },
|
||
{ "word": "finish", "translation": "完成,结束" },
|
||
{ "word": "fire", "translation": "火,解雇" },
|
||
{ "word": "firefighter", "translation": "消防员" },
|
||
{ "word": "firework", "translation": "烟火" },
|
||
{ "word": "firm", "translation": "坚固的,公司" },
|
||
{ "word": "firmly", "translation": "坚固地,坚决地" },
|
||
{ "word": "first", "translation": "第一,首先" },
|
||
{ "word": "firstly", "translation": "首先" },
|
||
{ "word": "fiscal", "translation": "财政的, fiscal year 财政年度" },
|
||
{ "word": "fish", "translation": "鱼,钓鱼" },
|
||
{ "word": "fisherman", "translation": "渔夫" },
|
||
{ "word": "fishing", "translation": "钓鱼" },
|
||
{ "word": "fit", "translation": "适合的,安装" },
|
||
{ "word": "fitness", "translation": "健康, fit for 适合于" },
|
||
{ "word": "five", "translation": "五" },
|
||
{ "word": "fix", "translation": "固定,修理" },
|
||
{ "word": "fixed", "translation": "固定的" },
|
||
{ "word": "flag", "translation": "旗帜" },
|
||
{ "word": "flame", "translation": "火焰" },
|
||
{ "word": "flash", "translation": "闪光,闪现" },
|
||
{ "word": "flat", "translation": "平的,公寓" },
|
||
{ "word": "flavor", "translation": "味道,风味 (AmE)" },
|
||
{ "word": "flaw", "translation": "缺陷,瑕疵" },
|
||
{ "word": "flee", "translation": "逃跑" },
|
||
{ "word": "fleet", "translation": "舰队, fleet of 一支...的舰队" },
|
||
{ "word": "flesh", "translation": "肉, flesh out 充实" },
|
||
{ "word": "flexibility", "translation": "灵活性" },
|
||
{ "word": "flexible", "translation": "灵活的" },
|
||
{ "word": "flight", "translation": "航班,飞行" },
|
||
{ "word": "float", "translation": "漂浮" },
|
||
{ "word": "flood", "translation": "洪水,淹没" },
|
||
{ "word": "floor", "translation": "地板" },
|
||
{ "word": "flour", "translation": "面粉" },
|
||
{ "word": "flow", "translation": "流动" },
|
||
{ "word": "flower", "translation": "花" },
|
||
{ "word": "flu", "translation": "流感" },
|
||
{ "word": "fluid", "translation": "液体, fluid ounce 液量盎司" },
|
||
{ "word": "fly", "translation": "飞,苍蝇" },
|
||
{ "word": "focus", "translation": "焦点,集中" },
|
||
{ "word": "fold", "translation": "折叠" },
|
||
{ "word": "folding", "translation": "折叠的" },
|
||
{ "word": "folk", "translation": "民间的, folks 人们" },
|
||
{ "word": "follow", "translation": "跟随,遵循" },
|
||
{ "word": "following", "translation": "下列的,追随者" },
|
||
{ "word": "fond", "translation": "喜爱的, be fond of 喜爱" },
|
||
{ "word": "food", "translation": "食物" },
|
||
{ "word": "fool", "translation": "傻瓜,愚弄" },
|
||
{ "word": "foot", "translation": "脚" },
|
||
{ "word": "football", "translation": "足球" },
|
||
{ "word": "for", "translation": "为了,因为" },
|
||
{ "word": "forbid", "translation": "禁止" },
|
||
{ "word": "force", "translation": "力量,强迫" },
|
||
{ "word": "forecast", "translation": "预测,预报" },
|
||
{ "word": "foreign", "translation": "外国的" },
|
||
{ "word": "foreigner", "translation": "外国人" },
|
||
{ "word": "forest", "translation": "森林" },
|
||
{ "word": "forever", "translation": "永远" },
|
||
{ "word": "forge", "translation": "锻造,伪造" },
|
||
{ "word": "forget", "translation": "忘记" },
|
||
{ "word": "forgive", "translation": "原谅" },
|
||
{ "word": "fork", "translation": "叉子" },
|
||
{ "word": "form", "translation": "形式,形成" },
|
||
{ "word": "formal", "translation": "正式的" },
|
||
{ "word": "format", "translation": "格式" },
|
||
{ "word": "formation", "translation": "形成,队形" },
|
||
{ "word": "former", "translation": "以前的,前者" },
|
||
{ "word": "formerly", "translation": "以前,从前" },
|
||
{ "word": "formula", "translation": "公式" },
|
||
{ "word": "forth", "translation": "向前,往外" },
|
||
{ "word": "forthcoming", "translation": "即将到来的" },
|
||
{ "word": "fortnight", "translation": "两星期" },
|
||
{ "word": "fortunate", "translation": "幸运的" },
|
||
{ "word": "fortunately", "translation": "幸运地" },
|
||
{ "word": "fortune", "translation": "运气,财富" },
|
||
{ "word": "forty", "translation": "四十" },
|
||
{ "word": "forum", "translation": "论坛" },
|
||
{ "word": "forward", "translation": "向前的,转交" },
|
||
{ "word": "fossil", "translation": "化石" },
|
||
{ "word": "foster", "translation": "促进, foster child 养子" },
|
||
{ "word": "found", "translation": "建立, find 的过去式" },
|
||
{ "word": "foundation", "translation": "基础,基金会" },
|
||
{ "word": "founder", "translation": "建立者" },
|
||
{ "word": "four", "translation": "四" },
|
||
{ "word": "fourteen", "translation": "十四" },
|
||
{ "word": "fourth", "translation": "第四" },
|
||
{ "word": "fraction", "translation": "小部分,分数" },
|
||
{ "word": "fragile", "translation": "易碎的,脆弱的" },
|
||
{ "word": "fragment", "translation": "碎片" },
|
||
{ "word": "frame", "translation": "框架,帧" },
|
||
{ "word": "framework", "translation": "框架,体系" },
|
||
{ "word": "franchise", "translation": "特许经营权" },
|
||
{ "word": "frankly", "translation": "坦率地" },
|
||
{ "word": "fraud", "translation": "欺诈" },
|
||
{ "word": "free", "translation": "自由的,免费的" },
|
||
{ "word": "freedom", "translation": "自由" },
|
||
{ "word": "freely", "translation": "自由地" },
|
||
{ "word": "freeze", "translation": "结冰,冷冻" },
|
||
{ "word": "frequency", "translation": "频率" },
|
||
{ "word": "frequent", "translation": "频繁的" },
|
||
{ "word": "frequently", "translation": "频繁地" },
|
||
{ "word": "fresh", "translation": "新鲜的" },
|
||
{ "word": "Friday", "translation": "星期五" },
|
||
{ "word": "fridge", "translation": "冰箱" },
|
||
{ "word": "friend", "translation": "朋友" },
|
||
{ "word": "friendly", "translation": "友好的" },
|
||
{ "word": "friendship", "translation": "友谊" },
|
||
{ "word": "frighten", "translation": "使害怕" },
|
||
{ "word": "frightened", "translation": "害怕的" },
|
||
{ "word": "frightening", "translation": "令人害怕的" },
|
||
{ "word": "frog", "translation": "青蛙" },
|
||
{ "word": "from", "translation": "从,来自" },
|
||
{ "word": "front", "translation": "前面的,前线" },
|
||
{ "word": "frozen", "translation": "冰冻的" },
|
||
{ "word": "fruit", "translation": "水果" },
|
||
{ "word": "frustrate", "translation": "使沮丧" },
|
||
{ "word": "frustration", "translation": "挫折感" },
|
||
{ "word": "fry", "translation": "油炸" },
|
||
{ "word": "fuel", "translation": "燃料" },
|
||
{ "word": "fulfil", "translation": "履行,满足" },
|
||
{ "word": "full", "translation": "满的,完全的" },
|
||
{ "word": "full-time", "translation": "全日制的" },
|
||
{ "word": "fully", "translation": "完全地" },
|
||
{ "word": "fun", "translation": "有趣的,乐趣" },
|
||
{ "word": "function", "translation": "功能,函数" },
|
||
{ "word": "functional", "translation": "功能的" },
|
||
{ "word": "fund", "translation": "资金,基金" },
|
||
{ "word": "fundamental", "translation": "基本的,根本的" },
|
||
{ "word": "fundamentally", "translation": "根本上" },
|
||
{ "word": "funding", "translation": "资金,资助" },
|
||
{ "word": "funeral", "translation": "葬礼" },
|
||
{ "word": "funny", "translation": "有趣的,滑稽的" },
|
||
{ "word": "fur", "translation": "毛皮" },
|
||
{ "word": "furniture", "translation": "家具" },
|
||
{ "word": "further", "translation": "更远的,此外" },
|
||
{ "word": "furthermore", "translation": "此外,而且" },
|
||
{ "word": "future", "translation": "未来的" },
|
||
{ "word": "gain", "translation": "获得,收益" },
|
||
{ "word": "gallery", "translation": "画廊" },
|
||
{ "word": "gallon", "translation": "加仑" },
|
||
{ "word": "game", "translation": "游戏,比赛" },
|
||
{ "word": "gang", "translation": "一帮,团伙" },
|
||
{ "word": "gap", "translation": "缺口,间隔" },
|
||
{ "word": "garage", "translation": "车库" },
|
||
{ "word": "garden", "translation": "花园" },
|
||
{ "word": "gas", "translation": "气体,汽油" },
|
||
{ "word": "gate", "translation": "大门" },
|
||
{ "word": "gather", "translation": "聚集,收集" },
|
||
{ "word": "gathering", "translation": "聚集,集会" },
|
||
{ "word": "gay", "translation": "快乐的,同性恋的" },
|
||
{ "word": "gaze", "translation": "凝视" },
|
||
{ "word": "gear", "translation": "齿轮, gear up 准备" },
|
||
{ "word": "gender", "translation": "性别" },
|
||
{ "word": "gene", "translation": "基因" },
|
||
{ "word": "general", "translation": "一般的,将军" },
|
||
{ "word": "generally", "translation": "通常,一般地" },
|
||
{ "word": "generate", "translation": "产生,生成" },
|
||
{ "word": "generation", "translation": "一代,产生" },
|
||
{ "word": "generous", "translation": "慷慨的" },
|
||
{ "word": "genetic", "translation": "遗传的" },
|
||
{ "word": "genius", "translation": "天才" },
|
||
{ "word": "genre", "translation": "类型,流派" },
|
||
{ "word": "gentle", "translation": "温和的" },
|
||
{ "word": "gentleman", "translation": "绅士" },
|
||
{ "word": "gently", "translation": "温和地" },
|
||
{ "word": "genuine", "translation": "真正的,真诚的" },
|
||
{ "word": "genuinely", "translation": "真正地,真诚地" },
|
||
{ "word": "geography", "translation": "地理学" },
|
||
{ "word": "gesture", "translation": "手势" },
|
||
{ "word": "get", "translation": "得到,变得" },
|
||
{ "word": "ghost", "translation": "鬼魂" },
|
||
{ "word": "giant", "translation": "巨大的,巨人" },
|
||
{ "word": "gift", "translation": "礼物" },
|
||
{ "word": "gig", "translation": "演奏会, gigabyte 千兆字节" },
|
||
{ "word": "girl", "translation": "女孩" },
|
||
{ "word": "girlfriend", "translation": "女朋友" },
|
||
{ "word": "give", "translation": "给" },
|
||
{ "word": "glad", "translation": "高兴的" },
|
||
{ "word": "glance", "translation": "一瞥" },
|
||
{ "word": "glass", "translation": "玻璃杯,玻璃" },
|
||
{ "word": "glimpse", "translation": "一瞥, glimpse of 一看到" },
|
||
{ "word": "global", "translation": "全球的" },
|
||
{ "word": "globally", "translation": "全球地" },
|
||
{ "word": "gloom", "translation": "忧郁, gloomily 阴沉地" },
|
||
{ "word": "glorious", "translation": "光荣的,辉煌的" },
|
||
{ "word": "glory", "translation": "光荣" },
|
||
{ "word": "glove", "translation": "手套" },
|
||
{ "word": "go", "translation": "去" },
|
||
{ "word": "goal", "translation": "目标,进球" },
|
||
{ "word": "god", "translation": "神" },
|
||
{ "word": "gold", "translation": "金子,金色的" },
|
||
{ "word": "golden", "translation": "金色的" },
|
||
{ "word": "golf", "translation": "高尔夫球" },
|
||
{ "word": "good", "translation": "好的" },
|
||
{ "word": "goodbye", "translation": "再见" },
|
||
{ "word": "goodness", "translation": "善良,天哪(表示惊讶)" },
|
||
{ "word": "goods", "translation": "货物,商品" },
|
||
{ "word": "gorgeous", "translation": "华丽的,极好的" },
|
||
{ "word": "govern", "translation": "统治,管理" },
|
||
{ "word": "governance", "translation": "治理" },
|
||
{ "word": "government", "translation": "政府" },
|
||
{ "word": "governor", "translation": "州长,主管" },
|
||
{ "word": "grab", "translation": "抓取" },
|
||
{ "word": "grace", "translation": "优雅, grace period 宽限期" },
|
||
{ "word": "grade", "translation": "等级,成绩" },
|
||
{ "word": "gradually", "translation": "逐渐地" },
|
||
{ "word": "graduate", "translation": "毕业生,毕业" },
|
||
{ "word": "grain", "translation": "谷物,颗粒" },
|
||
{ "word": "grand", "translation": "宏伟的,重大的" },
|
||
{ "word": "grandfather", "translation": "祖父" },
|
||
{ "word": "grandmother", "translation": "祖母" },
|
||
{ "word": "grandparent", "translation": "祖父母" },
|
||
{ "word": "grant", "translation": "授予,补助金" },
|
||
{ "word": "graph", "translation": "图表" },
|
||
{ "word": "graphics", "translation": "图像,制图" },
|
||
{ "word": "grasp", "translation": "抓住,理解" },
|
||
{ "word": "grass", "translation": "草" },
|
||
{ "word": "grateful", "translation": "感激的" },
|
||
{ "word": "grave", "translation": "严重的, grave danger 严重危险" },
|
||
{ "word": "gravity", "translation": "重力,严重性" },
|
||
{ "word": "great", "translation": "伟大的,大量的" },
|
||
{ "word": "greatly", "translation": "大大地,非常" },
|
||
{ "word": "green", "translation": "绿色的" },
|
||
{ "word": "greenhouse", "translation": "温室" },
|
||
{ "word": "greet", "translation": "问候" },
|
||
{ "word": "greeting", "translation": "问候语" },
|
||
{ "word": "grey", "translation": "灰色的 (BrE)" },
|
||
{ "word": "grid", "translation": "网格,电网" },
|
||
{ "word": "grief", "translation": "悲伤" },
|
||
{ "word": "grin", "translation": "露齿而笑" },
|
||
{ "word": "grind", "translation": "磨碎, grind to a halt 停滞不前" },
|
||
{ "word": "grip", "translation": "紧握,控制" },
|
||
{ "word": "grocery", "translation": "杂货店" },
|
||
{ "word": "gross", "translation": "总的, gross domestic product 国内生产总值" },
|
||
{ "word": "ground", "translation": "地面,根据" },
|
||
{ "word": "group", "translation": "组,团体" },
|
||
{ "word": "grow", "translation": "成长,种植" },
|
||
{ "word": "growth", "translation": "增长,生长" },
|
||
{ "word": "guarantee", "translation": "保证" },
|
||
{ "word": "guard", "translation": "守卫,警卫" },
|
||
{ "word": "guardian", "translation": "监护人" },
|
||
{ "word": "guerrilla", "translation": "游击队员" },
|
||
{ "word": "guess", "translation": "猜测" },
|
||
{ "word": "guest", "translation": "客人" },
|
||
{ "word": "guidance", "translation": "指导" },
|
||
{ "word": "guide", "translation": "指南,引导" },
|
||
{ "word": "guideline", "translation": "指导原则" },
|
||
{ "word": "guilt", "translation": "内疚" },
|
||
{ "word": "guilty", "translation": "内疚的,有罪的" },
|
||
{ "word": "guitar", "translation": "吉他" },
|
||
{ "word": "gun", "translation": "枪" },
|
||
{ "word": "gut", "translation": "肠道, gut feeling 直觉" },
|
||
{ "word": "guy", "translation": "家伙" },
|
||
{ "word": "gym", "translation": "体育馆" },
|
||
{ "word": "habit", "translation": "习惯" },
|
||
{ "word": "habitat", "translation": "栖息地" },
|
||
{ "word": "hail", "translation": "冰雹, hail from 来自" },
|
||
{ "word": "hair", "translation": "头发" },
|
||
{ "word": "half", "translation": "一半" },
|
||
{ "word": "halfway", "translation": "半路地, halfway through 在...进行到一半时" },
|
||
{ "word": "hall", "translation": "大厅" },
|
||
{ "word": "halt", "translation": "停止, halt to do sth 停下来做某事" },
|
||
{ "word": "hand", "translation": "手" },
|
||
{ "word": "handful", "translation": "少数,一把" },
|
||
{ "word": "handle", "translation": "处理,把手" },
|
||
{ "word": "handsome", "translation": "英俊的" },
|
||
{ "word": "handy", "translation": "方便的" },
|
||
{ "word": "hang", "translation": "悬挂, hang up 挂断(电话)" },
|
||
{ "word": "happen", "translation": "发生" },
|
||
{ "word": "happily", "translation": "快乐地" },
|
||
{ "word": "happiness", "translation": "幸福" },
|
||
{ "word": "happy", "translation": "快乐的" },
|
||
{ "word": "harassment", "translation": "骚扰" },
|
||
{ "word": "harbor", "translation": "港口 (AmE)" },
|
||
{ "word": "harbour", "translation": "港口 (BrE)" },
|
||
{ "word": "hard", "translation": "硬的,困难的" },
|
||
{ "word": "hardly", "translation": "几乎不" },
|
||
{ "word": "hardware", "translation": "硬件" },
|
||
{ "word": "harm", "translation": "伤害" },
|
||
{ "word": "harmful", "translation": "有害的" },
|
||
{ "word": "harmony", "translation": "和谐" },
|
||
{ "word": "harsh", "translation": "严厉的, harsh criticism 严厉批评" },
|
||
{ "word": "harvest", "translation": "收获" },
|
||
{ "word": "haste", "translation": "匆忙" },
|
||
{ "word": "hat", "translation": "帽子" },
|
||
{ "word": "hate", "translation": "憎恨" },
|
||
{ "word": "hatred", "translation": "憎恨" },
|
||
{ "word": "haul", "translation": "拖运, long haul 长途运输" },
|
||
{ "word": "have", "translation": "有" },
|
||
{ "word": "have to", "translation": "必须" },
|
||
{ "word": "hay", "translation": "干草" },
|
||
{ "word": "hazard", "translation": "危险" },
|
||
{ "word": "he", "translation": "他" },
|
||
{ "word": "head", "translation": "头,领导" },
|
||
{ "word": "headache", "translation": "头痛" },
|
||
{ "word": "headline", "translation": "标题" },
|
||
{ "word": "headquarters", "translation": "总部" },
|
||
{ "word": "heal", "translation": "治愈,愈合" },
|
||
{ "word": "health", "translation": "健康" },
|
||
{ "word": "healthcare", "translation": "医疗保健" },
|
||
{ "word": "healthy", "translation": "健康的" },
|
||
{ "word": "hear", "translation": "听见" },
|
||
{ "word": "hearing", "translation": "听力,听证会" },
|
||
{ "word": "heart", "translation": "心脏" },
|
||
{ "word": "heat", "translation": "热,加热" },
|
||
{ "word": "heating", "translation": "供暖" },
|
||
{ "word": "heaven", "translation": "天堂" },
|
||
{ "word": "heavily", "translation": "沉重地,大量地" },
|
||
{ "word": "heavy", "translation": "重的,大量的" },
|
||
{ "word": "heel", "translation": "脚后跟" },
|
||
{ "word": "height", "translation": "高度" },
|
||
{ "word": "heighten", "translation": "提高,增加" },
|
||
{ "word": "helicopter", "translation": "直升机" },
|
||
{ "word": "hell", "translation": "地狱" },
|
||
{ "word": "hello", "translation": "你好" },
|
||
{ "word": "helmet", "translation": "头盔" },
|
||
{ "word": "help", "translation": "帮助" },
|
||
{ "word": "helpful", "translation": "有帮助的" },
|
||
{ "word": "hence", "translation": "因此" },
|
||
{ "word": "her", "translation": "她的" },
|
||
{ "word": "herb", "translation": "草药" },
|
||
{ "word": "herd", "translation": "兽群, herd instinct 从众心理" },
|
||
{ "word": "here", "translation": "这里" },
|
||
{ "word": "heritage", "translation": "遗产" },
|
||
{ "word": "hero", "translation": "英雄" },
|
||
{ "word": "hers", "translation": "她的(东西)" },
|
||
{ "word": "herself", "translation": "她自己" },
|
||
{ "word": "hesitate", "translation": "犹豫" },
|
||
{ "word": "hey", "translation": "嘿" },
|
||
{ "word": "hi", "translation": "你好" },
|
||
{ "word": "hidden", "translation": "隐藏的" },
|
||
{ "word": "hide", "translation": "隐藏" },
|
||
{ "word": "hierarchy", "translation": "等级制度" },
|
||
{ "word": "high", "translation": "高的" },
|
||
{ "word": "highlight", "translation": "强调,最精彩的部分" },
|
||
{ "word": "highly", "translation": "高度地,非常" },
|
||
{ "word": "highway", "translation": "公路" },
|
||
{ "word": "hilarious", "translation": "令人捧腹大笑的" },
|
||
{ "word": "hill", "translation": "小山" },
|
||
{ "word": "him", "translation": "他(宾格)" },
|
||
{ "word": "himself", "translation": "他自己" },
|
||
{ "word": "hint", "translation": "暗示" },
|
||
{ "word": "hip", "translation": "臀部" },
|
||
{ "word": "hire", "translation": "雇用,租用" },
|
||
{ "word": "his", "translation": "他的" },
|
||
{ "word": "historian", "translation": "历史学家" },
|
||
{ "word": "historic", "translation": "历史性的(指事件)" },
|
||
{ "word": "historical", "translation": "历史的(指事物)" },
|
||
{ "word": "history", "translation": "历史" },
|
||
{ "word": "hit", "translation": "打击,击中" },
|
||
{ "word": "hobby", "translation": "业余爱好" },
|
||
{ "word": "hockey", "translation": "曲棍球" },
|
||
{ "word": "hold", "translation": "握住,举行" },
|
||
{ "word": "holder", "translation": "持有者,容器" },
|
||
{ "word": "holding", "translation": "控股公司,财产" },
|
||
{ "word": "hole", "translation": "洞" },
|
||
{ "word": "holiday", "translation": "假期" },
|
||
{ "word": "hollow", "translation": "空的, hollow out 挖空" },
|
||
{ "word": "holy", "translation": "神圣的" },
|
||
{ "word": "home", "translation": "家" },
|
||
{ "word": "homeland", "translation": "祖国" },
|
||
{ "word": "homeless", "translation": "无家可归的" },
|
||
{ "word": "homework", "translation": "家庭作业" },
|
||
{ "word": "honest", "translation": "诚实的" },
|
||
{ "word": "honestly", "translation": "诚实地" },
|
||
{ "word": "honey", "translation": "蜂蜜" },
|
||
{ "word": "honor", "translation": "荣誉 (AmE)" },
|
||
{ "word": "honour", "translation": "荣誉 (BrE)" },
|
||
{ "word": "hook", "translation": "钩子, hook up 连接" },
|
||
{ "word": "hope", "translation": "希望" },
|
||
{ "word": "hopeful", "translation": "有希望的" },
|
||
{ "word": "hopefully", "translation": "有希望地" },
|
||
{ "word": "horizon", "translation": "地平线" },
|
||
{ "word": "horn", "translation": "喇叭,角" },
|
||
{ "word": "horrible", "translation": "可怕的" },
|
||
{ "word": "horror", "translation": "恐怖" },
|
||
{ "word": "horse", "translation": "马" },
|
||
{ "word": "hospital", "translation": "医院" },
|
||
{ "word": "host", "translation": "主人,举办" },
|
||
{ "word": "hostage", "translation": "人质" },
|
||
{ "word": "hostile", "translation": "敌对的" },
|
||
{ "word": "hostility", "translation": "敌意" },
|
||
{ "word": "hot", "translation": "热的" },
|
||
{ "word": "hotel", "translation": "旅馆" },
|
||
{ "word": "hour", "translation": "小时" },
|
||
{ "word": "house", "translation": "房子" },
|
||
{ "word": "household", "translation": "家庭的,一家人" },
|
||
{ "word": "housewife", "translation": "家庭主妇" },
|
||
{ "word": "housing", "translation": "住房" },
|
||
{ "word": "how", "translation": "如何,多么" },
|
||
{ "word": "however", "translation": "然而,无论如何" },
|
||
{ "word": "huge", "translation": "巨大的" },
|
||
{ "word": "human", "translation": "人类的,人类" },
|
||
{ "word": "humanity", "translation": "人类,人性" },
|
||
{ "word": "humble", "translation": "谦逊的, humble beginnings 卑微的出身" },
|
||
{ "word": "humor", "translation": "幽默 (AmE)" },
|
||
{ "word": "humour", "translation": "幽默 (BrE)" },
|
||
{ "word": "hundred", "translation": "一百" },
|
||
{ "word": "hunger", "translation": "饥饿" },
|
||
{ "word": "hungry", "translation": "饥饿的" },
|
||
{ "word": "hunt", "translation": "打猎,寻找" },
|
||
{ "word": "hunting", "translation": "打猎" },
|
||
{ "word": "hurry", "translation": "匆忙" },
|
||
{ "word": "hurt", "translation": "伤害,疼痛" },
|
||
{ "word": "husband", "translation": "丈夫" },
|
||
{ "word": "hut", "translation": "小屋" },
|
||
{ "word": "hypothesis", "translation": "假设" },
|
||
{ "word": "ice", "translation": "冰" },
|
||
{ "word": "ice cream", "translation": "冰淇淋" },
|
||
{ "word": "icon", "translation": "图标,偶像" },
|
||
{ "word": "idea", "translation": "想法" },
|
||
{ "word": "ideal", "translation": "理想的" },
|
||
{ "word": "identical", "translation": "相同的" },
|
||
{ "word": "identification", "translation": "识别,身份证明" },
|
||
{ "word": "identify", "translation": "识别,认同" },
|
||
{ "word": "identity", "translation": "身份,特性" },
|
||
{ "word": "ideological", "translation": "意识形态的" },
|
||
{ "word": "ideology", "translation": "意识形态" },
|
||
{ "word": "idiot", "translation": "白痴" },
|
||
{ "word": "if", "translation": "如果" },
|
||
{ "word": "ignore", "translation": "忽视" },
|
||
{ "word": "ill", "translation": "生病的,坏的" },
|
||
{ "word": "illegal", "translation": "非法的" },
|
||
{ "word": "illness", "translation": "疾病" },
|
||
{ "word": "illusion", "translation": "幻觉,错觉" },
|
||
{ "word": "illustrate", "translation": "说明,图解" },
|
||
{ "word": "illustration", "translation": "说明,插图" },
|
||
{ "word": "image", "translation": "图像,形象" },
|
||
{ "word": "imagery", "translation": "意象,形象化描述" },
|
||
{ "word": "imaginary", "translation": "想象的,假想的" },
|
||
{ "word": "imagination", "translation": "想象力" },
|
||
{ "word": "imagine", "translation": "想象" },
|
||
{ "word": "immediate", "translation": "立即的,直接的" },
|
||
{ "word": "immediately", "translation": "立即,马上" },
|
||
{ "word": "immense", "translation": "巨大的, immense pressure 巨大压力" },
|
||
{ "word": "immigrant", "translation": "移民" },
|
||
{ "word": "immigration", "translation": "移民" },
|
||
{ "word": "imminent", "translation": "即将来临的" },
|
||
{ "word": "immune", "translation": "免疫的, immune to 不受影响的" },
|
||
{ "word": "impact", "translation": "影响,冲击" },
|
||
{ "word": "impatient", "translation": "不耐烦的" },
|
||
{ "word": "implement", "translation": "实施,工具" },
|
||
{ "word": "implementation", "translation": "实施,执行" },
|
||
{ "word": "implication", "translation": "含义,暗示" },
|
||
{ "word": "imply", "translation": "暗示,意味着" },
|
||
{ "word": "import", "translation": "进口" },
|
||
{ "word": "importance", "translation": "重要性" },
|
||
{ "word": "important", "translation": "重要的" },
|
||
{ "word": "impose", "translation": "强加, impose a ban on 禁止" },
|
||
{ "word": "impossible", "translation": "不可能的" },
|
||
{ "word": "impress", "translation": "给...留下印象" },
|
||
{ "word": "impression", "translation": "印象" },
|
||
{ "word": "impressive", "translation": "给人印象深刻的" },
|
||
{ "word": "imprison", "translation": "监禁" },
|
||
{ "word": "imprisonment", "translation": "监禁" },
|
||
{ "word": "improve", "translation": "改进,改善" },
|
||
{ "word": "improvement", "translation": "改进,改善" },
|
||
{ "word": "in", "translation": "在...里面" },
|
||
{ "word": "inability", "translation": "无能力, inability to do sth 无法做某事" },
|
||
{ "word": "inadequate", "translation": "不充足的,不适当的" },
|
||
{ "word": "incentive", "translation": "动机,刺激" },
|
||
{ "word": "inch", "translation": "英寸" },
|
||
{ "word": "incidence", "translation": "发生率" },
|
||
{ "word": "incident", "translation": "事件" },
|
||
{ "word": "inclined", "translation": "倾向于...的, be inclined to do sth 倾向于做某事" },
|
||
{ "word": "include", "translation": "包括" },
|
||
{ "word": "including", "translation": "包括" },
|
||
{ "word": "inclusion", "translation": "包含,包括" },
|
||
{ "word": "income", "translation": "收入" },
|
||
{ "word": "incorporate", "translation": "包含,合并" },
|
||
{ "word": "increase", "translation": "增加" },
|
||
{ "word": "increasingly", "translation": "日益,越来越多地" },
|
||
{ "word": "incredible", "translation": "难以置信的" },
|
||
{ "word": "incredibly", "translation": "难以置信地" },
|
||
{ "word": "incur", "translation": "招致,引发" },
|
||
{ "word": "indeed", "translation": "确实,的确" },
|
||
{ "word": "independence", "translation": "独立" },
|
||
{ "word": "independent", "translation": "独立的" },
|
||
{ "word": "index", "translation": "索引" },
|
||
{ "word": "indicate", "translation": "表明,指示" },
|
||
{ "word": "indication", "translation": "指示,迹象" },
|
||
{ "word": "indicator", "translation": "指示器" },
|
||
{ "word": "indigenous", "translation": "本土的,土著的" },
|
||
{ "word": "indirect", "translation": "间接的" },
|
||
{ "word": "individual", "translation": "个人的,个人" },
|
||
{ "word": "indoor", "translation": "室内的" },
|
||
{ "word": "indoors", "translation": "在室内" },
|
||
{ "word": "induce", "translation": "引诱,引起" },
|
||
{ "word": "indulge", "translation": "纵容, indulgence 沉溺" },
|
||
{ "word": "industrial", "translation": "工业的" },
|
||
{ "word": "industry", "translation": "工业,行业" },
|
||
{ "word": "inequality", "translation": "不平等" },
|
||
{ "word": "inevitable", "translation": "不可避免的" },
|
||
{ "word": "inevitably", "translation": "不可避免地" },
|
||
{ "word": "infant", "translation": "婴儿, infant school 幼儿园" },
|
||
{ "word": "infect", "translation": "感染" },
|
||
{ "word": "infection", "translation": "感染" },
|
||
{ "word": "infinite", "translation": "无限的" },
|
||
{ "word": "inflation", "translation": "通货膨胀" },
|
||
{ "word": "inflict", "translation": "把...强加给, inflict pain on sb 给某人带来痛苦" },
|
||
{ "word": "influence", "translation": "影响" },
|
||
{ "word": "influential", "translation": "有影响力的" },
|
||
{ "word": "info", "translation": "信息 (informal)" },
|
||
{ "word": "inform", "translation": "通知,告知" },
|
||
{ "word": "informal", "translation": "非正式的" },
|
||
{ "word": "information", "translation": "信息" },
|
||
{ "word": "infrastructure", "translation": "基础设施" },
|
||
{ "word": "ingredient", "translation": "成分,原料" },
|
||
{ "word": "inhabitant", "translation": "居民" },
|
||
{ "word": "inherent", "translation": "内在的,固有的" },
|
||
{ "word": "inherit", "translation": "继承" },
|
||
{ "word": "inhibit", "translation": "抑制,阻止" },
|
||
{ "word": "initial", "translation": "最初的" },
|
||
{ "word": "initially", "translation": "最初" },
|
||
{ "word": "initiate", "translation": "开始,发起" },
|
||
{ "word": "initiative", "translation": "主动性,倡议" },
|
||
{ "word": "inject", "translation": "注射" },
|
||
{ "word": "injection", "translation": "注射" },
|
||
{ "word": "injure", "translation": "伤害,损害" },
|
||
{ "word": "injured", "translation": "受伤的" },
|
||
{ "word": "injury", "translation": "伤害,损伤" },
|
||
{ "word": "inmate", "translation": "同住者,囚犯" },
|
||
{ "word": "inner", "translation": "内部的" },
|
||
{ "word": "innocent", "translation": "无辜的,天真的" },
|
||
{ "word": "innovation", "translation": "创新" },
|
||
{ "word": "innovative", "translation": "创新的" },
|
||
{ "word": "input", "translation": "输入" },
|
||
{ "word": "inquest", "translation": "验尸, inquest into 对...的调查" },
|
||
{ "word": "inquiry", "translation": "询问,调查" },
|
||
{ "word": "insect", "translation": "昆虫" },
|
||
{ "word": "insert", "translation": "插入" },
|
||
{ "word": "inside", "translation": "在...里面" },
|
||
{ "word": "insider", "translation": "内部人员" },
|
||
{ "word": "insight", "translation": "洞察力" },
|
||
{ "word": "insist", "translation": "坚持" },
|
||
{ "word": "inspect", "translation": "检查" },
|
||
{ "word": "inspection", "translation": "检查" },
|
||
{ "word": "inspector", "translation": "检查员" },
|
||
{ "word": "inspiration", "translation": "灵感" },
|
||
{ "word": "inspire", "translation": "激励,鼓舞" },
|
||
{ "word": "install", "translation": "安装" },
|
||
{ "word": "installation", "translation": "安装,装置" },
|
||
{ "word": "instance", "translation": "例子,例如" },
|
||
{ "word": "instant", "translation": "立即的,瞬间" },
|
||
{ "word": "instantly", "translation": "立即,马上" },
|
||
{ "word": "instead", "translation": "代替,反而" },
|
||
{ "word": "instinct", "translation": "本能" },
|
||
{ "word": "institute", "translation": "学院,研究所" },
|
||
{ "word": "institution", "translation": "机构,制度" },
|
||
{ "word": "institutional", "translation": "制度的,机构的" },
|
||
{ "word": "instruct", "translation": "指示, instruct sb to do sth 指示某人做某事" },
|
||
{ "word": "instruction", "translation": "指示,说明书" },
|
||
{ "word": "instructor", "translation": "指导者,教练" },
|
||
{ "word": "instrument", "translation": "仪器,乐器" },
|
||
{ "word": "instrumental", "translation": "有帮助的, instrumental in 在...中起重要作用" },
|
||
{ "word": "insufficient", "translation": "不充足的" },
|
||
{ "word": "insult", "translation": "侮辱" },
|
||
{ "word": "insurance", "translation": "保险" },
|
||
{ "word": "intact", "translation": "完整的,未受损的" },
|
||
{ "word": "intake", "translation": "摄入, intake of 摄入量" },
|
||
{ "word": "integral", "translation": "不可或缺的,完整的" },
|
||
{ "word": "integrate", "translation": "整合,融入" },
|
||
{ "word": "integrated", "translation": "综合的,一体化的" },
|
||
{ "word": "integration", "translation": "整合,融合" },
|
||
{ "word": "integrity", "translation": "正直,完整性" },
|
||
{ "word": "intellectual", "translation": "智力的,知识分子" },
|
||
{ "word": "intelligence", "translation": "智力,情报" },
|
||
{ "word": "intelligent", "translation": "聪明的" },
|
||
{ "word": "intend", "translation": "打算" },
|
||
{ "word": "intense", "translation": "强烈的" },
|
||
{ "word": "intensely", "translation": "强烈地" },
|
||
{ "word": "intensify", "translation": "加强, intensify the need to do sth 加强做某事的必要性" },
|
||
{ "word": "intensity", "translation": "强度" },
|
||
{ "word": "intensive", "translation": "密集的,加强的" },
|
||
{ "word": "intent", "translation": "意图,专心的" },
|
||
{ "word": "intention", "translation": "意图,目的" },
|
||
{ "word": "interact", "translation": "互动" },
|
||
{ "word": "interaction", "translation": "互动" },
|
||
{ "word": "interactive", "translation": "互动的" },
|
||
{ "word": "interest", "translation": "兴趣,利益" },
|
||
{ "word": "interested", "translation": "感兴趣的" },
|
||
{ "word": "interesting", "translation": "有趣的" },
|
||
{ "word": "interface", "translation": "界面,接口" },
|
||
{ "word": "interfere", "translation": "干涉,干扰" },
|
||
{ "word": "interference", "translation": "干涉,干扰" },
|
||
{ "word": "interim", "translation": "临时的, interim solution 临时解决方案" },
|
||
{ "word": "interior", "translation": "内部的, interior design 室内设计" },
|
||
{ "word": "intermediate", "translation": "中级的,中间的" },
|
||
{ "word": "internal", "translation": "内部的" },
|
||
{ "word": "international", "translation": "国际的" },
|
||
{ "word": "internet", "translation": "互联网" },
|
||
{ "word": "interpret", "translation": "解释,口译" },
|
||
{ "word": "interpretation", "translation": "解释,口译" },
|
||
{ "word": "interrupt", "translation": "打断" },
|
||
{ "word": "interval", "translation": "间隔,中场休息" },
|
||
{ "word": "intervene", "translation": "干预,介入" },
|
||
{ "word": "intervention", "translation": "干预,介入" },
|
||
{ "word": "interview", "translation": "面试,采访" },
|
||
{ "word": "intimate", "translation": "亲密的,暗示" },
|
||
{ "word": "into", "translation": "到...里面" },
|
||
{ "word": "intriguing", "translation": "引起兴趣的,复杂的" },
|
||
{ "word": "introduce", "translation": "介绍,引进" },
|
||
{ "word": "introduction", "translation": "介绍,引进" },
|
||
{ "word": "invade", "translation": "入侵,侵略" },
|
||
{ "word": "invasion", "translation": "入侵,侵略" },
|
||
{ "word": "invent", "translation": "发明" },
|
||
{ "word": "invention", "translation": "发明" },
|
||
{ "word": "invest", "translation": "投资" },
|
||
{ "word": "investigate", "translation": "调查" },
|
||
{ "word": "investigation", "translation": "调查" },
|
||
{ "word": "investigator", "translation": "调查员" },
|
||
{ "word": "investment", "translation": "投资" },
|
||
{ "word": "investor", "translation": "投资者" },
|
||
{ "word": "invisible", "translation": "看不见的" },
|
||
{ "word": "invitation", "translation": "邀请" },
|
||
{ "word": "invite", "translation": "邀请" },
|
||
{ "word": "invoke", "translation": "唤起, invoke the law 引用法律" },
|
||
{ "word": "involve", "translation": "涉及,包含" },
|
||
{ "word": "involved", "translation": "涉及的,复杂的" },
|
||
{ "word": "involvement", "translation": "参与,涉及" },
|
||
{ "word": "iron", "translation": "铁,熨斗" },
|
||
{ "word": "ironically", "translation": "具有讽刺意味的是" },
|
||
{ "word": "irony", "translation": "讽刺" },
|
||
{ "word": "irrelevant", "translation": "不相关的" },
|
||
{ "word": "island", "translation": "岛屿" },
|
||
{ "word": "isolate", "translation": "隔离,孤立" },
|
||
{ "word": "isolated", "translation": "孤立的,分离的" },
|
||
{ "word": "isolation", "translation": "隔离,孤立" },
|
||
{ "word": "issue", "translation": "问题,发行" },
|
||
{ "word": "it", "translation": "它" },
|
||
{ "word": "item", "translation": "项目,条款" },
|
||
{ "word": "its", "translation": "它的" },
|
||
{ "word": "itself", "translation": "它自己" },
|
||
{ "word": "jacket", "translation": "夹克" },
|
||
{ "word": "jail", "translation": "监狱" },
|
||
{ "word": "jam", "translation": "果酱,堵塞" },
|
||
{ "word": "January", "translation": "一月" },
|
||
{ "word": "jazz", "translation": "爵士乐" },
|
||
{ "word": "jeans", "translation": "牛仔裤" },
|
||
{ "word": "jet", "translation": "喷气式飞机" },
|
||
{ "word": "jewellery", "translation": "珠宝 (BrE)" },
|
||
{ "word": "job", "translation": "工作" },
|
||
{ "word": "join", "translation": "加入,连接" },
|
||
{ "word": "joint", "translation": "联合的,关节" },
|
||
{ "word": "joke", "translation": "玩笑" },
|
||
{ "word": "journal", "translation": "期刊,日报" },
|
||
{ "word": "journalism", "translation": "新闻业" },
|
||
{ "word": "journalist", "translation": "记者" },
|
||
{ "word": "journey", "translation": "旅程" },
|
||
{ "word": "joy", "translation": "欢乐" },
|
||
{ "word": "judge", "translation": "法官,判断" },
|
||
{ "word": "judgement", "translation": "判断,判决 (BrE)" },
|
||
{ "word": "judgment", "translation": "判断,判决 (AmE)" },
|
||
{ "word": "judicial", "translation": "司法的,法庭的" },
|
||
{ "word": "juice", "translation": "果汁" },
|
||
{ "word": "July", "translation": "七月" },
|
||
{ "word": "jump", "translation": "跳跃" },
|
||
{ "word": "junction", "translation": "连接点,十字路口" },
|
||
{ "word": "June", "translation": "六月" },
|
||
{ "word": "junior", "translation": "初级的,年少的" },
|
||
{ "word": "jurisdiction", "translation": "司法权,管辖权" },
|
||
{ "word": "jury", "translation": "陪审团" },
|
||
{ "word": "just", "translation": "只是,仅仅,公正的" },
|
||
{ "word": "justice", "translation": "正义,司法" },
|
||
{ "word": "justification", "translation": "正当理由" },
|
||
{ "word": "justify", "translation": "证明...是正当的" },
|
||
{ "word": "keen", "translation": "热切的, keen on 喜欢" },
|
||
{ "word": "keep", "translation": "保持,保留" },
|
||
{ "word": "key", "translation": "钥匙,关键的" },
|
||
{ "word": "keyboard", "translation": "键盘" },
|
||
{ "word": "kick", "translation": "踢" },
|
||
{ "word": "kid", "translation": "小孩, kid around 开玩笑" },
|
||
{ "word": "kidnap", "translation": "绑架" },
|
||
{ "word": "kidney", "translation": "肾脏" },
|
||
{ "word": "kill", "translation": "杀死" },
|
||
{ "word": "killing", "translation": "杀戮" },
|
||
{ "word": "kilometer", "translation": "公里 (AmE)" },
|
||
{ "word": "kilometre", "translation": "公里 (BrE)" },
|
||
{ "word": "kind", "translation": "种类, kind of 有点儿" },
|
||
{ "word": "king", "translation": "国王" },
|
||
{ "word": "kingdom", "translation": "王国" },
|
||
{ "word": "kiss", "translation": "吻" },
|
||
{ "word": "kit", "translation": "工具箱,装备" },
|
||
{ "word": "kitchen", "translation": "厨房" },
|
||
{ "word": "knee", "translation": "膝盖" },
|
||
{ "word": "knife", "translation": "刀" },
|
||
{ "word": "knock", "translation": "敲,击" },
|
||
{ "word": "know", "translation": "知道" },
|
||
{ "word": "knowledge", "translation": "知识" },
|
||
{ "word": "lab", "translation": "实验室" },
|
||
{ "word": "label", "translation": "标签" },
|
||
{ "word": "laboratory", "translation": "实验室" },
|
||
{ "word": "labour", "translation": "劳动,劳动力 (BrE)" },
|
||
{ "word": "lack", "translation": "缺乏" },
|
||
{ "word": "lad", "translation": "小伙子" },
|
||
{ "word": "ladder", "translation": "梯子" },
|
||
{ "word": "lady", "translation": "女士" },
|
||
{ "word": "lake", "translation": "湖泊" },
|
||
{ "word": "lamp", "translation": "灯" },
|
||
{ "word": "land", "translation": "土地,着陆" },
|
||
{ "word": "landing", "translation": "着陆,登陆" },
|
||
{ "word": "landlord", "translation": "房东" },
|
||
{ "word": "landmark", "translation": "地标" },
|
||
{ "word": "landscape", "translation": "风景,风景画" },
|
||
{ "word": "lane", "translation": "小路,车道" },
|
||
{ "word": "language", "translation": "语言" },
|
||
{ "word": "lap", "translation": "膝盖,一圈" },
|
||
{ "word": "laptop", "translation": "笔记本电脑" },
|
||
{ "word": "large", "translation": "大的" },
|
||
{ "word": "largely", "translation": "主要地,很大程度上" },
|
||
{ "word": "laser", "translation": "激光" },
|
||
{ "word": "last", "translation": "最后的,持续" },
|
||
{ "word": "late", "translation": "晚的,迟到的" },
|
||
{ "word": "lately", "translation": "最近" },
|
||
{ "word": "later", "translation": "后来" },
|
||
{ "word": "latter", "translation": "后者的, latter half 后半部分" },
|
||
{ "word": "laugh", "translation": "笑" },
|
||
{ "word": "laughter", "translation": "笑声" },
|
||
{ "word": "launch", "translation": "发射,发起" },
|
||
{ "word": "law", "translation": "法律" },
|
||
{ "word": "lawn", "translation": "草坪" },
|
||
{ "word": "lawsuit", "translation": "诉讼" },
|
||
{ "word": "lawyer", "translation": "律师" },
|
||
{ "word": "lay", "translation": "放置, lay off 解雇" },
|
||
{ "word": "layer", "translation": "层" },
|
||
{ "word": "layout", "translation": "布局,安排" },
|
||
{ "word": "lazy", "translation": "懒惰的" },
|
||
{ "word": "lead", "translation": "领导,铅" },
|
||
{ "word": "leader", "translation": "领导者" },
|
||
{ "word": "leadership", "translation": "领导" },
|
||
{ "word": "leading", "translation": "领先的,主要的" },
|
||
{ "word": "leaf", "translation": "叶子" },
|
||
{ "word": "leaflet", "translation": "传单" },
|
||
{ "word": "league", "translation": "联盟,联赛" },
|
||
{ "word": "leak", "translation": "泄漏" },
|
||
{ "word": "lean", "translation": "倾斜, lean against 靠着" },
|
||
{ "word": "leap", "translation": "跳跃" },
|
||
{ "word": "learn", "translation": "学习" },
|
||
{ "word": "learning", "translation": "学习" },
|
||
{ "word": "least", "translation": "最少的" },
|
||
{ "word": "leather", "translation": "皮革" },
|
||
{ "word": "leave", "translation": "离开,留下" },
|
||
{ "word": "lecture", "translation": "讲座,训斥" },
|
||
{ "word": "left", "translation": "左边的,剩余的" },
|
||
{ "word": "leg", "translation": "腿" },
|
||
{ "word": "legacy", "translation": "遗产" },
|
||
{ "word": "legal", "translation": "法律的" },
|
||
{ "word": "legally", "translation": "合法地" },
|
||
{ "word": "legend", "translation": "传说" },
|
||
{ "word": "legendary", "translation": "传奇的" },
|
||
{ "word": "legislation", "translation": "立法" },
|
||
{ "word": "legislative", "translation": "立法的" },
|
||
{ "word": "legislator", "translation": "立法者" },
|
||
{ "word": "legislature", "translation": "立法机关" },
|
||
{ "word": "legitimate", "translation": "合法的,合理的" },
|
||
{ "word": "leisure", "translation": "闲暇" },
|
||
{ "word": "lemon", "translation": "柠檬" },
|
||
{ "word": "lend", "translation": "借出" },
|
||
{ "word": "length", "translation": "长度" },
|
||
{ "word": "lengthy", "translation": "冗长的" },
|
||
{ "word": "lens", "translation": "镜头,透镜" },
|
||
{ "word": "lesbian", "translation": "女同性恋的,女同性恋者" },
|
||
{ "word": "less", "translation": "更少的" },
|
||
{ "word": "lesser", "translation": "较小的,次要的" },
|
||
{ "word": "lesson", "translation": "课程,教训" },
|
||
{ "word": "let", "translation": "让,出租" },
|
||
{ "word": "lethal", "translation": "致命的" },
|
||
{ "word": "letter", "translation": "信,字母" },
|
||
{ "word": "level", "translation": "水平,等级" },
|
||
{ "word": "liability", "translation": "责任, liability to do sth 做某事的责任" },
|
||
{ "word": "liable", "translation": "有责任的, liable to 易于" },
|
||
{ "word": "liaison", "translation": "联络, liaison officer 联络官" },
|
||
{ "word": "liberal", "translation": "自由的,自由主义者" },
|
||
{ "word": "liberation", "translation": "解放" },
|
||
{ "word": "liberty", "translation": "自由" },
|
||
{ "word": "library", "translation": "图书馆" },
|
||
{ "word": "lie", "translation": "躺,说谎" },
|
||
{ "word": "life", "translation": "生命,生活" },
|
||
{ "word": "lifelong", "translation": "终生的" },
|
||
{ "word": "lifestyle", "translation": "生活方式" },
|
||
{ "word": "lifetime", "translation": "一生,寿命" },
|
||
{ "word": "lift", "translation": "举起,电梯 (BrE)" },
|
||
{ "word": "light", "translation": "光,轻的" },
|
||
{ "word": "lighting", "translation": "照明" },
|
||
{ "word": "like", "translation": "像,喜欢" },
|
||
{ "word": "likelihood", "translation": "可能性" },
|
||
{ "word": "likely", "translation": "可能的" },
|
||
{ "word": "likewise", "translation": "同样地" },
|
||
{ "word": "limb", "translation": "肢, limb of the law 法律制裁" },
|
||
{ "word": "limit", "translation": "限制" },
|
||
{ "word": "limitation", "translation": "限制,局限性" },
|
||
{ "word": "limited", "translation": "有限的" },
|
||
{ "word": "line", "translation": "线,线路" },
|
||
{ "word": "linear", "translation": "线性的" },
|
||
{ "word": "linger", "translation": "逗留, linger on 持续存在" },
|
||
{ "word": "link", "translation": "链接,连接" },
|
||
{ "word": "lion", "translation": "狮子" },
|
||
{ "word": "lip", "translation": "嘴唇" },
|
||
{ "word": "liquid", "translation": "液体的,液体" },
|
||
{ "word": "list", "translation": "列表" },
|
||
{ "word": "listen", "translation": "听" },
|
||
{ "word": "listener", "translation": "听众" },
|
||
{ "word": "listing", "translation": "列表,清单" },
|
||
{ "word": "literacy", "translation": "读写能力" },
|
||
{ "word": "literal", "translation": "字面的" },
|
||
{ "word": "literally", "translation": "字面上地,确实地" },
|
||
{ "word": "literary", "translation": "文学的" },
|
||
{ "word": "literature", "translation": "文学" },
|
||
{ "word": "litre", "translation": "升" },
|
||
{ "word": "litter", "translation": "垃圾, litter bin 垃圾箱" },
|
||
{ "word": "little", "translation": "小的,少的" },
|
||
{ "word": "live", "translation": "居住, live on 以...为生" },
|
||
{ "word": "lively", "translation": "活泼的,充满活力的" },
|
||
{ "word": "liver", "translation": "肝脏" },
|
||
{ "word": "living", "translation": "生活的,生计" },
|
||
{ "word": "load", "translation": "装载,负担" },
|
||
{ "word": "loan", "translation": "贷款" },
|
||
{ "word": "lobby", "translation": "大厅,游说" },
|
||
{ "word": "local", "translation": "当地的" },
|
||
{ "word": "locate", "translation": "定位, locate in 位于" },
|
||
{ "word": "location", "translation": "位置" },
|
||
{ "word": "lock", "translation": "锁" },
|
||
{ "word": "log", "translation": "原木,登录" },
|
||
{ "word": "logic", "translation": "逻辑" },
|
||
{ "word": "logical", "translation": "逻辑的" },
|
||
{ "word": "logo", "translation": "商标" },
|
||
{ "word": "lonely", "translation": "孤独的" },
|
||
{ "word": "long", "translation": "长的,长期地" },
|
||
{ "word": "long-term", "translation": "长期的" },
|
||
{ "word": "look", "translation": "看,看起来" },
|
||
{ "word": "loom", "translation": "织布机, loom large 显得突出" },
|
||
{ "word": "loop", "translation": "环,循环" },
|
||
{ "word": "loose", "translation": "松的, loose control 失去控制" },
|
||
{ "word": "lord", "translation": "领主,上帝" },
|
||
{ "word": "lorry", "translation": "卡车 (BrE)" },
|
||
{ "word": "lose", "translation": "失去" },
|
||
{ "word": "loss", "translation": "损失" },
|
||
{ "word": "lost", "translation": "失去的,迷路的" },
|
||
{ "word": "lot", "translation": "许多, lots of 大量的" },
|
||
{ "word": "lottery", "translation": "彩票" },
|
||
{ "word": "loud", "translation": "大声的" },
|
||
{ "word": "loudly", "translation": "大声地" },
|
||
{ "word": "love", "translation": "爱" },
|
||
{ "word": "lovely", "translation": "可爱的" },
|
||
{ "word": "lover", "translation": "爱人,爱好者" },
|
||
{ "word": "low", "translation": "低的" },
|
||
{ "word": "lower", "translation": "降低" },
|
||
{ "word": "loyal", "translation": "忠诚的" },
|
||
{ "word": "loyalty", "translation": "忠诚" },
|
||
{ "word": "luck", "translation": "运气" },
|
||
{ "word": "lucky", "translation": "幸运的" },
|
||
{ "word": "lunch", "translation": "午餐" },
|
||
{ "word": "lung", "translation": "肺" },
|
||
{ "word": "luxury", "translation": "奢侈的,奢侈品" },
|
||
{ "word": "lyric", "translation": "抒情诗,歌词" },
|
||
{ "word": "machine", "translation": "机器" },
|
||
{ "word": "machinery", "translation": "机器,机械装置" },
|
||
{ "word": "mad", "translation": "疯狂的" },
|
||
{ "word": "magazine", "translation": "杂志" },
|
||
{ "word": "magic", "translation": "魔法的,魔术" },
|
||
{ "word": "magical", "translation": "有魔力的" },
|
||
{ "word": "magistrate", "translation": "地方法官" },
|
||
{ "word": "magnetic", "translation": "有磁性的,有吸引力的" },
|
||
{ "word": "magnificent", "translation": "壮丽的,极好的" },
|
||
{ "word": "magnitude", "translation": "巨大,重要性" },
|
||
{ "word": "mail", "translation": "邮件" },
|
||
{ "word": "main", "translation": "主要的" },
|
||
{ "word": "mainland", "translation": "大陆" },
|
||
{ "word": "mainly", "translation": "主要地" },
|
||
{ "word": "mainstream", "translation": "主流的" },
|
||
{ "word": "maintain", "translation": "维持,维护" },
|
||
{ "word": "maintenance", "translation": "维护,保养" },
|
||
{ "word": "major", "translation": "主要的,专业" },
|
||
{ "word": "majority", "translation": "大多数" },
|
||
{ "word": "make", "translation": "制造,使得" },
|
||
{ "word": "make-up", "translation": "化妆品" },
|
||
{ "word": "maker", "translation": "制造者" },
|
||
{ "word": "makeup", "translation": "化妆品,组成" },
|
||
{ "word": "male", "translation": "男性的,男性" },
|
||
{ "word": "mall", "translation": "购物中心" },
|
||
{ "word": "man", "translation": "男人" },
|
||
{ "word": "manage", "translation": "管理,设法" },
|
||
{ "word": "management", "translation": "管理" },
|
||
{ "word": "manager", "translation": "经理" },
|
||
{ "word": "managerial", "translation": "管理的" },
|
||
{ "word": "mandate", "translation": "授权, mandate to do sth 授权做某事" },
|
||
{ "word": "mandatory", "translation": "强制的" },
|
||
{ "word": "manifest", "translation": "显示,表明" },
|
||
{ "word": "manipulate", "translation": "操纵,操控" },
|
||
{ "word": "mankind", "translation": "人类" },
|
||
{ "word": "manner", "translation": "方式,礼貌" },
|
||
{ "word": "manufacture", "translation": "制造" },
|
||
{ "word": "manufacturer", "translation": "制造商" },
|
||
{ "word": "manufacturing", "translation": "制造业" },
|
||
{ "word": "manuscript", "translation": "手稿" },
|
||
{ "word": "many", "translation": "许多" },
|
||
{ "word": "map", "translation": "地图" },
|
||
{ "word": "marathon", "translation": "马拉松" },
|
||
{ "word": "marble", "translation": "大理石" },
|
||
{ "word": "march", "translation": "行进,三月" },
|
||
{ "word": "March", "translation": "三月" },
|
||
{ "word": "margin", "translation": "边缘,利润" },
|
||
{ "word": "marginal", "translation": "边缘的, marginal cost 边际成本" },
|
||
{ "word": "marine", "translation": "海的,海军的" },
|
||
{ "word": "mark", "translation": "标记,分数" },
|
||
{ "word": "market", "translation": "市场,销售" },
|
||
{ "word": "marketing", "translation": "市场营销" },
|
||
{ "word": "marketplace", "translation": "市场" },
|
||
{ "word": "marriage", "translation": "婚姻" },
|
||
{ "word": "married", "translation": "已婚的" },
|
||
{ "word": "marry", "translation": "结婚" },
|
||
{ "word": "martial", "translation": "军事的, martial law 戒严令" },
|
||
{ "word": "mask", "translation": "面具,掩饰" },
|
||
{ "word": "mass", "translation": "大量的, mass media 大众媒体" },
|
||
{ "word": "massacre", "translation": "大屠杀" },
|
||
{ "word": "massive", "translation": "巨大的" },
|
||
{ "word": "master", "translation": "主人,掌握" },
|
||
{ "word": "match", "translation": "匹配,火柴" },
|
||
{ "word": "matching", "translation": "匹配的" },
|
||
{ "word": "mate", "translation": "伙伴, mate with 与...交配" },
|
||
{ "word": "material", "translation": "材料,物质的" },
|
||
{ "word": "mathematical", "translation": "数学的" },
|
||
{ "word": "mathematics", "translation": "数学" },
|
||
{ "word": "maths", "translation": "数学 (BrE)" },
|
||
{ "word": "matter", "translation": "物质,事情" },
|
||
{ "word": "mature", "translation": "成熟的" },
|
||
{ "word": "maximize", "translation": "最大化" },
|
||
{ "word": "maximum", "translation": "最大的,最大值" },
|
||
{ "word": "may", "translation": "可能,五月" },
|
||
{ "word": "maybe", "translation": "也许" },
|
||
{ "word": "mayor", "translation": "市长" },
|
||
{ "word": "me", "translation": "我(宾格)" },
|
||
{ "word": "meal", "translation": "一餐" },
|
||
{ "word": "mean", "translation": "意思是, mean to do sth 打算做某事" },
|
||
{ "word": "meaning", "translation": "意思,含义" },
|
||
{ "word": "meaningful", "translation": "有意义的" },
|
||
{ "word": "means", "translation": "方法, means of 通过...的方法" },
|
||
{ "word": "meantime", "translation": "同时" },
|
||
{ "word": "meanwhile", "translation": "与此同时" },
|
||
{ "word": "measure", "translation": "测量,措施" },
|
||
{ "word": "measurement", "translation": "测量,尺寸" },
|
||
{ "word": "meat", "translation": "肉" },
|
||
{ "word": "mechanic", "translation": "机械师" },
|
||
{ "word": "mechanical", "translation": "机械的" },
|
||
{ "word": "mechanism", "translation": "机制,原理" },
|
||
{ "word": "medal", "translation": "奖章" },
|
||
{ "word": "media", "translation": "媒体 (复数)" },
|
||
{ "word": "medical", "translation": "医疗的" },
|
||
{ "word": "medication", "translation": "药物治疗" },
|
||
{ "word": "medicine", "translation": "医学,药物" },
|
||
{ "word": "medieval", "translation": "中世纪的" },
|
||
{ "word": "medium", "translation": "中等的,媒介" },
|
||
{ "word": "meet", "translation": "遇见" },
|
||
{ "word": "meeting", "translation": "会议" },
|
||
{ "word": "melody", "translation": "旋律" },
|
||
{ "word": "melt", "translation": "融化" },
|
||
{ "word": "member", "translation": "成员" },
|
||
{ "word": "membership", "translation": "成员资格" },
|
||
{ "word": "memo", "translation": "备忘录" },
|
||
{ "word": "memoir", "translation": "回忆录" },
|
||
{ "word": "memorable", "translation": "值得纪念的" },
|
||
{ "word": "memorial", "translation": "纪念的,纪念碑" },
|
||
{ "word": "memory", "translation": "记忆" },
|
||
{ "word": "mental", "translation": "精神的,心理的" },
|
||
{ "word": "mentality", "translation": "心态" },
|
||
{ "word": "mention", "translation": "提到" },
|
||
{ "word": "mentor", "translation": "导师" },
|
||
{ "word": "menu", "translation": "菜单" },
|
||
{ "word": "merchant", "translation": "商人" },
|
||
{ "word": "mercy", "translation": "仁慈,宽恕" },
|
||
{ "word": "mere", "translation": "仅仅的, mere 10 minutes 仅仅10分钟" },
|
||
{ "word": "merely", "translation": "仅仅" },
|
||
{ "word": "merge", "translation": "合并" },
|
||
{ "word": "merger", "translation": "合并" },
|
||
{ "word": "merit", "translation": "优点, merit pay 绩效工资" },
|
||
{ "word": "mess", "translation": "混乱, mess up 弄乱" },
|
||
{ "word": "message", "translation": "信息,消息" },
|
||
{ "word": "metal", "translation": "金属" },
|
||
{ "word": "metaphor", "translation": "隐喻" },
|
||
{ "word": "method", "translation": "方法" },
|
||
{ "word": "methodology", "translation": "方法论" },
|
||
{ "word": "metre", "translation": "米" },
|
||
{ "word": "middle", "translation": "中间的" },
|
||
{ "word": "midnight", "translation": "午夜" },
|
||
{ "word": "midst", "translation": "在...当中, in the midst of 在...之中" },
|
||
{ "word": "might", "translation": "可能(may的过去式),力量" },
|
||
{ "word": "migration", "translation": "迁移" },
|
||
{ "word": "mild", "translation": "温和的, mild criticism 温和的批评" },
|
||
{ "word": "mile", "translation": "英里" },
|
||
{ "word": "military", "translation": "军事的" },
|
||
{ "word": "militia", "translation": "民兵" },
|
||
{ "word": "milk", "translation": "牛奶" },
|
||
{ "word": "mill", "translation": "工厂, mill around 闲逛" },
|
||
{ "word": "million", "translation": "百万" },
|
||
{ "word": "mind", "translation": "头脑,介意" },
|
||
{ "word": "mine", "translation": "我的, mine for 开采" },
|
||
{ "word": "miner", "translation": "矿工" },
|
||
{ "word": "mineral", "translation": "矿物" },
|
||
{ "word": "minimal", "translation": "最小的" },
|
||
{ "word": "minimize", "translation": "最小化" },
|
||
{ "word": "minimum", "translation": "最小的,最低限度" },
|
||
{ "word": "mining", "translation": "采矿业" },
|
||
{ "word": "minister", "translation": "部长,牧师" },
|
||
{ "word": "ministry", "translation": "部" },
|
||
{ "word": "minor", "translation": "次要的,未成年" },
|
||
{ "word": "minority", "translation": "少数" },
|
||
{ "word": "minute", "translation": "分钟,微小的" },
|
||
{ "word": "miracle", "translation": "奇迹" },
|
||
{ "word": "mirror", "translation": "镜子" },
|
||
{ "word": "miserable", "translation": "痛苦的,悲惨的" },
|
||
{ "word": "misery", "translation": "痛苦" },
|
||
{ "word": "mislead", "translation": "误导" },
|
||
{ "word": "miss", "translation": "错过,想念" },
|
||
{ "word": "missile", "translation": "导弹" },
|
||
{ "word": "missing", "translation": "失踪的" },
|
||
{ "word": "mission", "translation": "使命,任务" },
|
||
{ "word": "mist", "translation": "薄雾" },
|
||
{ "word": "mistake", "translation": "错误" },
|
||
{ "word": "mix", "translation": "混合" },
|
||
{ "word": "mixed", "translation": "混合的" },
|
||
{ "word": "mixture", "translation": "混合物" },
|
||
{ "word": "mob", "translation": "暴民, mob rule 暴民统治" },
|
||
{ "word": "mobile", "translation": "移动的,手机" },
|
||
{ "word": "mobility", "translation": "流动性" },
|
||
{ "word": "mobilize", "translation": "动员" },
|
||
{ "word": "mode", "translation": "方式,模式" },
|
||
{ "word": "model", "translation": "模型,模特" },
|
||
{ "word": "moderate", "translation": "适度的,缓和" },
|
||
{ "word": "modern", "translation": "现代的" },
|
||
{ "word": "modest", "translation": "谦虚的, modest increase 适度增长" },
|
||
{ "word": "modification", "translation": "修改" },
|
||
{ "word": "modify", "translation": "修改" },
|
||
{ "word": "moment", "translation": "时刻" },
|
||
{ "word": "momentum", "translation": "势头,动力" },
|
||
{ "word": "Monday", "translation": "星期一" },
|
||
{ "word": "money", "translation": "钱" },
|
||
{ "word": "monitor", "translation": "监控,显示器" },
|
||
{ "word": "monk", "translation": "僧侣" },
|
||
{ "word": "monkey", "translation": "猴子" },
|
||
{ "word": "monopoly", "translation": "垄断" },
|
||
{ "word": "monster", "translation": "怪物" },
|
||
{ "word": "month", "translation": "月" },
|
||
{ "word": "monthly", "translation": "每月的" },
|
||
{ "word": "monument", "translation": "纪念碑" },
|
||
{ "word": "mood", "translation": "情绪" },
|
||
{ "word": "moon", "translation": "月亮" },
|
||
{ "word": "moral", "translation": "道德的,道德" },
|
||
{ "word": "morality", "translation": "道德" },
|
||
{ "word": "more", "translation": "更多的" },
|
||
{ "word": "moreover", "translation": "此外" },
|
||
{ "word": "morning", "translation": "早晨" },
|
||
{ "word": "mortgage", "translation": "抵押贷款" },
|
||
{ "word": "mosque", "translation": "清真寺" },
|
||
{ "word": "most", "translation": "最多的" },
|
||
{ "word": "mostly", "translation": "主要地" },
|
||
{ "word": "mother", "translation": "母亲" },
|
||
{ "word": "motion", "translation": "运动, motion picture 电影" },
|
||
{ "word": "motivate", "translation": "激励" },
|
||
{ "word": "motivation", "translation": "动机" },
|
||
{ "word": "motive", "translation": "动机" },
|
||
{ "word": "motor", "translation": "发动机,汽车" },
|
||
{ "word": "motorcycle", "translation": "摩托车" },
|
||
{ "word": "motorist", "translation": "驾车者" },
|
||
{ "word": "mount", "translation": "登上, mountaineering 登山运动" },
|
||
{ "word": "mountain", "translation": "山" },
|
||
{ "word": "mouse", "translation": "老鼠,鼠标" },
|
||
{ "word": "mouth", "translation": "嘴" },
|
||
{ "word": "move", "translation": "移动" },
|
||
{ "word": "movement", "translation": "运动,活动" },
|
||
{ "word": "movie", "translation": "电影 (AmE)" },
|
||
{ "word": "moving", "translation": "移动的,感人的" },
|
||
{ "word": "much", "translation": "许多,非常" },
|
||
{ "word": "mud", "translation": "泥" },
|
||
{ "word": "multiple", "translation": "多重的, multiple choice 多项选择" },
|
||
{ "word": "multiply", "translation": "乘,繁殖" },
|
||
{ "word": "mom", "translation": "妈妈 (AmE)" },
|
||
{ "word": "municipal", "translation": "市政的" },
|
||
{ "word": "murder", "translation": "谋杀" },
|
||
{ "word": "muscle", "translation": "肌肉" },
|
||
{ "word": "museum", "translation": "博物馆" },
|
||
{ "word": "music", "translation": "音乐" },
|
||
{ "word": "musical", "translation": "音乐的,音乐剧" },
|
||
{ "word": "musician", "translation": "音乐家" },
|
||
{ "word": "must", "translation": "必须" },
|
||
{ "word": "mutual", "translation": "相互的" },
|
||
{ "word": "my", "translation": "我的" },
|
||
{ "word": "myself", "translation": "我自己" },
|
||
{ "word": "mysterious", "translation": "神秘的" },
|
||
{ "word": "mystery", "translation": "神秘" },
|
||
{ "word": "myth", "translation": "神话" },
|
||
{ "word": "nail", "translation": "钉子,指甲" },
|
||
{ "word": "naked", "translation": "裸体的" },
|
||
{ "word": "name", "translation": "名字" },
|
||
{ "word": "namely", "translation": "即,也就是" },
|
||
{ "word": "narrative", "translation": "叙述" },
|
||
{ "word": "narrow", "translation": "狭窄的" },
|
||
{ "word": "nasty", "translation": "讨厌的,恶劣的" },
|
||
{ "word": "nation", "translation": "国家" },
|
||
{ "word": "national", "translation": "国家的" },
|
||
{ "word": "nationwide", "translation": "全国范围的" },
|
||
{ "word": "native", "translation": "本地的,本地人" },
|
||
{ "word": "natural", "translation": "自然的" },
|
||
{ "word": "naturally", "translation": "自然地" },
|
||
{ "word": "nature", "translation": "自然" },
|
||
{ "word": "naval", "translation": "海军的" },
|
||
{ "word": "navigation", "translation": "导航" },
|
||
{ "word": "near", "translation": "近的" },
|
||
{ "word": "nearby", "translation": "附近的" },
|
||
{ "word": "nearly", "translation": "几乎" },
|
||
{ "word": "neat", "translation": "整洁的, neat and tidy 整洁的" },
|
||
{ "word": "necessarily", "translation": "必要地" },
|
||
{ "word": "necessary", "translation": "必要的" },
|
||
{ "word": "necessity", "translation": "必要性" },
|
||
{ "word": "neck", "translation": "脖子" },
|
||
{ "word": "need", "translation": "需要" },
|
||
{ "word": "needle", "translation": "针, needle exchange program 针头交换计划" },
|
||
{ "word": "negative", "translation": "消极的,负数" },
|
||
{ "word": "neglect", "translation": "忽视" },
|
||
{ "word": "negotiate", "translation": "谈判" },
|
||
{ "word": "negotiation", "translation": "谈判" },
|
||
{ "word": "neighbor", "translation": "邻居 (AmE)" },
|
||
{ "word": "neighborhood", "translation": "邻里 (AmE)" },
|
||
{ "word": "neighbour", "translation": "邻居 (BrE)" },
|
||
{ "word": "neighbourhood", "translation": "邻里 (BrE)" },
|
||
{ "word": "neither", "translation": "两者都不" },
|
||
{ "word": "nerve", "translation": "神经" },
|
||
{ "word": "nervous", "translation": "紧张的" },
|
||
{ "word": "nest", "translation": "巢" },
|
||
{ "word": "net", "translation": "网,净的" },
|
||
{ "word": "network", "translation": "网络" },
|
||
{ "word": "neutral", "translation": "中立的" },
|
||
{ "word": "never", "translation": "从不" },
|
||
{ "word": "nevertheless", "translation": "然而,不过" },
|
||
{ "word": "new", "translation": "新的" },
|
||
{ "word": "newly", "translation": "新近地" },
|
||
{ "word": "news", "translation": "新闻" },
|
||
{ "word": "newsletter", "translation": "通讯" },
|
||
{ "word": "newspaper", "translation": "报纸" },
|
||
{ "word": "next", "translation": "下一个" },
|
||
{ "word": "next to", "translation": "紧挨着" },
|
||
{ "word": "nice", "translation": "好的" },
|
||
{ "word": "niche", "translation": "壁龛, niche market 细分市场" },
|
||
{ "word": "night", "translation": "夜晚" },
|
||
{ "word": "nightmare", "translation": "噩梦" },
|
||
{ "word": "nine", "translation": "九" },
|
||
{ "word": "nineteen", "translation": "十九" },
|
||
{ "word": "ninety", "translation": "九十" },
|
||
{ "word": "no", "translation": "不,没有" },
|
||
{ "word": "noble", "translation": "高贵的,贵族" },
|
||
{ "word": "nobody", "translation": "没有人" },
|
||
{ "word": "nod", "translation": "点头" },
|
||
{ "word": "noise", "translation": "噪音" },
|
||
{ "word": "noisy", "translation": "吵闹的" },
|
||
{ "word": "nominate", "translation": "提名" },
|
||
{ "word": "nomination", "translation": "提名" },
|
||
{ "word": "none", "translation": "没有一个" },
|
||
{ "word": "nonetheless", "translation": "尽管如此" },
|
||
{ "word": "nonsense", "translation": "废话" },
|
||
{ "word": "noon", "translation": "中午" },
|
||
{ "word": "nor", "translation": "也不" },
|
||
{ "word": "norm", "translation": "规范,常态" },
|
||
{ "word": "normal", "translation": "正常的" },
|
||
{ "word": "normally", "translation": "通常" },
|
||
{ "word": "north", "translation": "北方的,北部" },
|
||
{ "word": "northern", "translation": "北方的" },
|
||
{ "word": "nose", "translation": "鼻子" },
|
||
{ "word": "not", "translation": "不" },
|
||
{ "word": "notable", "translation": "值得注意的" },
|
||
{ "word": "notably", "translation": "尤其,值得注意的是" },
|
||
{ "word": "note", "translation": "笔记,注意到" },
|
||
{ "word": "notebook", "translation": "笔记本" },
|
||
{ "word": "nothing", "translation": "没有什么" },
|
||
{ "word": "notice", "translation": "注意到,通知" },
|
||
{ "word": "notify", "translation": "通知" },
|
||
{ "word": "notion", "translation": "概念,想法" },
|
||
{ "word": "notorious", "translation": "臭名昭著的" },
|
||
{ "word": "novel", "translation": "小说" },
|
||
{ "word": "novelist", "translation": "小说家" },
|
||
{ "word": "November", "translation": "十一月" },
|
||
{ "word": "now", "translation": "现在" },
|
||
{ "word": "nowadays", "translation": "现在,如今" },
|
||
{ "word": "nowhere", "translation": "无处" },
|
||
{ "word": "nuclear", "translation": "核的" },
|
||
{ "word": "number", "translation": "数字,号码" },
|
||
{ "word": "numerous", "translation": "众多的" },
|
||
{ "word": "nurse", "translation": "护士" },
|
||
{ "word": "nursery", "translation": "托儿所,苗圃" },
|
||
{ "word": "nursing", "translation": "护理" },
|
||
{ "word": "nut", "translation": "坚果" },
|
||
{ "word": "nutrition", "translation": "营养" },
|
||
{ "word": "o'clock", "translation": "...点钟" },
|
||
{ "word": "obesity", "translation": "肥胖" },
|
||
{ "word": "obey", "translation": "服从" },
|
||
{ "word": "object", "translation": "物体,反对" },
|
||
{ "word": "objection", "translation": "反对" },
|
||
{ "word": "objective", "translation": "目标,客观的" },
|
||
{ "word": "obligation", "translation": "义务" },
|
||
{ "word": "oblige", "translation": "迫使, oblige sb to do sth 迫使某人做某事" },
|
||
{ "word": "observation", "translation": "观察" },
|
||
{ "word": "observe", "translation": "观察,遵守" },
|
||
{ "word": "observer", "translation": "观察者" },
|
||
{ "word": "obsess", "translation": "迷住, obsession 痴迷" },
|
||
{ "word": "obsession", "translation": "痴迷" },
|
||
{ "word": "obstacle", "translation": "障碍" },
|
||
{ "word": "obtain", "translation": "获得" },
|
||
{ "word": "obvious", "translation": "明显的" },
|
||
{ "word": "obviously", "translation": "显然地" },
|
||
{ "word": "occasion", "translation": "场合,时机" },
|
||
{ "word": "occasional", "translation": "偶尔的" },
|
||
{ "word": "occasionally", "translation": "偶尔" },
|
||
{ "word": "occupation", "translation": "职业,占领" },
|
||
{ "word": "occupy", "translation": "占据,占领" },
|
||
{ "word": "occur", "translation": "发生" },
|
||
{ "word": "occurrence", "translation": "发生,事件" },
|
||
{ "word": "ocean", "translation": "海洋" },
|
||
{ "word": "October", "translation": "十月" },
|
||
{ "word": "odd", "translation": "奇怪的,单数的" },
|
||
{ "word": "odds", "translation": "可能性, odds of 有...的可能性" },
|
||
{ "word": "of", "translation": "的" },
|
||
{ "word": "off", "translation": "关闭,离开" },
|
||
{ "word": "offence", "translation": "犯罪, offense (AmE)" },
|
||
{ "word": "offend", "translation": "冒犯" },
|
||
{ "word": "offender", "translation": "犯罪者" },
|
||
{ "word": "offensive", "translation": "冒犯的,攻击的" },
|
||
{ "word": "offer", "translation": "提供" },
|
||
{ "word": "offering", "translation": "提供物" },
|
||
{ "word": "office", "translation": "办公室" },
|
||
{ "word": "officer", "translation": "官员,军官" },
|
||
{ "word": "official", "translation": "官方的,官员" },
|
||
{ "word": "offspring", "translation": "后代" },
|
||
{ "word": "often", "translation": "经常" },
|
||
{ "word": "oh", "translation": "哦" },
|
||
{ "word": "oil", "translation": "油" },
|
||
{ "word": "ok", "translation": "好的" },
|
||
{ "word": "okay", "translation": "好的" },
|
||
{ "word": "old", "translation": "老的" },
|
||
{ "word": "old-fashioned", "translation": "过时的" },
|
||
{ "word": "on", "translation": "在...上" },
|
||
{ "word": "once", "translation": "一次,曾经" },
|
||
{ "word": "one", "translation": "一个" },
|
||
{ "word": "ongoing", "translation": "正在进行的" },
|
||
{ "word": "onion", "translation": "洋葱" },
|
||
{ "word": "online", "translation": "在线的" },
|
||
{ "word": "only", "translation": "仅仅,唯一的" },
|
||
{ "word": "onto", "translation": "到...上" },
|
||
{ "word": "open", "translation": "打开的,开放" },
|
||
{ "word": "opening", "translation": "开放,开幕" },
|
||
{ "word": "openly", "translation": "公开地" },
|
||
{ "word": "opera", "translation": "歌剧" },
|
||
{ "word": "operate", "translation": "操作,经营" },
|
||
{ "word": "operation", "translation": "操作,手术" },
|
||
{ "word": "operational", "translation": "操作的,运营的" },
|
||
{ "word": "operator", "translation": "操作员" },
|
||
{ "word": "opinion", "translation": "意见" },
|
||
{ "word": "opponent", "translation": "对手" },
|
||
{ "word": "opportunity", "translation": "机会" },
|
||
{ "word": "oppose", "translation": "反对" },
|
||
{ "word": "opposed", "translation": "反对的" },
|
||
{ "word": "opposite", "translation": "相反的,对面" },
|
||
{ "word": "opposition", "translation": "反对,反对派" },
|
||
{ "word": "opt", "translation": "选择, opt for 选择" },
|
||
{ "word": "optical", "translation": "光学的" },
|
||
{ "word": "optimism", "translation": "乐观" },
|
||
{ "word": "optimistic", "translation": "乐观的" },
|
||
{ "word": "option", "translation": "选择" },
|
||
{ "word": "or", "translation": "或者" },
|
||
{ "word": "oral", "translation": "口头的" },
|
||
{ "word": "orange", "translation": "橙色的,橘子" },
|
||
{ "word": "orchestra", "translation": "管弦乐队" },
|
||
{ "word": "order", "translation": "命令,顺序" },
|
||
{ "word": "ordinary", "translation": "普通的" },
|
||
{ "word": "organ", "translation": "器官" },
|
||
{ "word": "organic", "translation": "有机的" },
|
||
{ "word": "organization", "translation": "组织 (AmE)" },
|
||
{ "word": "organizational", "translation": "组织的 (AmE)" },
|
||
{ "word": "organize", "translation": "组织 (AmE)" },
|
||
{ "word": "organized", "translation": "有组织的 (AmE)" },
|
||
{ "word": "organizer", "translation": "组织者 (AmE)" },
|
||
{ "word": "orientation", "translation": "方向,培训" },
|
||
{ "word": "origin", "translation": "起源" },
|
||
{ "word": "original", "translation": "原始的,原创的" },
|
||
{ "word": "originally", "translation": "最初" },
|
||
{ "word": "originate", "translation": "起源, originate from 来源于" },
|
||
{ "word": "orthodox", "translation": "正统的" },
|
||
{ "word": "other", "translation": "其他的" },
|
||
{ "word": "otherwise", "translation": "否则,另外" },
|
||
{ "word": "ought to", "translation": "应该" },
|
||
{ "word": "our", "translation": "我们的" },
|
||
{ "word": "ours", "translation": "我们的(东西)" },
|
||
{ "word": "ourselves", "translation": "我们自己" },
|
||
{ "word": "out", "translation": "在外面,出局" },
|
||
{ "word": "outbreak", "translation": "爆发" },
|
||
{ "word": "outcome", "translation": "结果" },
|
||
{ "word": "outdoor", "translation": "户外的" },
|
||
{ "word": "outdoors", "translation": "在户外" },
|
||
{ "word": "outer", "translation": "外部的" },
|
||
{ "word": "outfit", "translation": "全套服装" },
|
||
{ "word": "outing", "translation": "短途旅行" },
|
||
{ "word": "outlet", "translation": "出口, outlet mall 奥特莱斯" },
|
||
{ "word": "outline", "translation": "轮廓,大纲" },
|
||
{ "word": "outlook", "translation": "前景, outlook on life 人生观" },
|
||
{ "word": "output", "translation": "产量,输出" },
|
||
{ "word": "outrage", "translation": "愤怒, outrage at 对...感到愤怒" },
|
||
{ "word": "outside", "translation": "在外面" },
|
||
{ "word": "outsider", "translation": "局外人" },
|
||
{ "word": "outstanding", "translation": "杰出的, outstanding debt 未偿债务" },
|
||
{ "word": "oven", "translation": "烤箱" },
|
||
{ "word": "over", "translation": "在...上面,超过" },
|
||
{ "word": "overall", "translation": "总体的,总的来说" },
|
||
{ "word": "overcome", "translation": "克服" },
|
||
{ "word": "overlook", "translation": "俯瞰,忽视" },
|
||
{ "word": "overnight", "translation": "过夜地, overnight success 一夜成功" },
|
||
{ "word": "overseas", "translation": "海外的" },
|
||
{ "word": "oversee", "translation": "监督, oversee the project 监督项目" },
|
||
{ "word": "overturn", "translation": "推翻, overturn the decision 推翻决定" },
|
||
{ "word": "overwhelm", "translation": "压倒, overwhelming evidence 压倒性的证据" },
|
||
{ "word": "overwhelming", "translation": "压倒性的" },
|
||
{ "word": "owe", "translation": "欠,归功于" },
|
||
{ "word": "own", "translation": "自己的" },
|
||
{ "word": "owner", "translation": "所有者" },
|
||
{ "word": "ownership", "translation": "所有权" },
|
||
{ "word": "oxygen", "translation": "氧气" },
|
||
{ "word": "pace", "translation": "步伐, pace of life 生活节奏" },
|
||
{ "word": "pack", "translation": "打包" },
|
||
{ "word": "package", "translation": "包裹,包装" },
|
||
{ "word": "packet", "translation": "小包, packet of crisps 一包薯片" },
|
||
{ "word": "pad", "translation": "垫子" },
|
||
{ "word": "page", "translation": "页" },
|
||
{ "word": "pain", "translation": "疼痛" },
|
||
{ "word": "painful", "translation": "痛苦的" },
|
||
{ "word": "paint", "translation": "油漆,绘画" },
|
||
{ "word": "painter", "translation": "画家" },
|
||
{ "word": "painting", "translation": "绘画,油画" },
|
||
{ "word": "pair", "translation": "一对" },
|
||
{ "word": "palace", "translation": "宫殿" },
|
||
{ "word": "pale", "translation": "苍白的" },
|
||
{ "word": "palm", "translation": "手掌" },
|
||
{ "word": "pan", "translation": "平底锅" },
|
||
{ "word": "panel", "translation": "专门小组,仪表盘" },
|
||
{ "word": "panic", "translation": "恐慌" },
|
||
{ "word": "pant", "translation": "气喘, pants (复数,BrE) 内裤" },
|
||
{ "word": "paper", "translation": "纸,论文" },
|
||
{ "word": "parade", "translation": "游行" },
|
||
{ "word": "paragraph", "translation": "段落" },
|
||
{ "word": "parallel", "translation": "平行的, parallel to 与...平行" },
|
||
{ "word": "parameter", "translation": "参数,限制" },
|
||
{ "word": "parent", "translation": "父母" },
|
||
{ "word": "parental", "translation": "父母的" },
|
||
{ "word": "parish", "translation": "教区" },
|
||
{ "word": "park", "translation": "公园,停车" },
|
||
{ "word": "parking", "translation": "停车" },
|
||
{ "word": "parliament", "translation": "议会" },
|
||
{ "word": "parliamentary", "translation": "议会的" },
|
||
{ "word": "part", "translation": "部分" },
|
||
{ "word": "partial", "translation": "部分的,偏袒的" },
|
||
{ "word": "partially", "translation": "部分地" },
|
||
{ "word": "participant", "translation": "参与者" },
|
||
{ "word": "participate", "translation": "参与" },
|
||
{ "word": "participation", "translation": "参与" },
|
||
{ "word": "particle", "translation": "粒子" },
|
||
{ "word": "particular", "translation": "特别的, particular about 对...挑剔" },
|
||
{ "word": "particularly", "translation": "特别地" },
|
||
{ "word": "partly", "translation": "部分地" },
|
||
{ "word": "partner", "translation": "伙伴" },
|
||
{ "word": "partnership", "translation": "伙伴关系" },
|
||
{ "word": "party", "translation": "聚会,政党" },
|
||
{ "word": "pass", "translation": "通过,通行证" },
|
||
{ "word": "passage", "translation": "通道,段落" },
|
||
{ "word": "passenger", "translation": "乘客" },
|
||
{ "word": "passion", "translation": "激情" },
|
||
{ "word": "passionate", "translation": "充满激情的" },
|
||
{ "word": "passive", "translation": "被动的" },
|
||
{ "word": "passport", "translation": "护照" },
|
||
{ "word": "password", "translation": "密码" },
|
||
{ "word": "past", "translation": "过去的,经过" },
|
||
{ "word": "pasture", "translation": "牧场" },
|
||
{ "word": "pat", "translation": "轻拍" },
|
||
{ "word": "patch", "translation": "补丁, patch up 修补" },
|
||
{ "word": "patent", "translation": "专利" },
|
||
{ "word": "path", "translation": "小路" },
|
||
{ "word": "patience", "translation": "耐心" },
|
||
{ "word": "patient", "translation": "耐心的,病人" },
|
||
{ "word": "patrol", "translation": "巡逻" },
|
||
{ "word": "patron", "translation": "赞助人, patron of the arts 艺术赞助人" },
|
||
{ "word": "pattern", "translation": "模式,图案" },
|
||
{ "word": "pause", "translation": "暂停" },
|
||
{ "word": "pay", "translation": "支付" },
|
||
{ "word": "payment", "translation": "支付" },
|
||
{ "word": "peace", "translation": "和平" },
|
||
{ "word": "peaceful", "translation": "和平的" },
|
||
{ "word": "peak", "translation": "顶峰" },
|
||
{ "word": "peasant", "translation": "农民" },
|
||
{ "word": "peculiar", "translation": "奇怪的, peculiar to 特有的" },
|
||
{ "word": "peer", "translation": "同龄人, peer pressure 同辈压力" },
|
||
{ "word": "pen", "translation": "钢笔" },
|
||
{ "word": "penalty", "translation": "惩罚" },
|
||
{ "word": "pencil", "translation": "铅笔" },
|
||
{ "word": "penny", "translation": "便士" },
|
||
{ "word": "pension", "translation": "养老金" },
|
||
{ "word": "people", "translation": "人们" },
|
||
{ "word": "pepper", "translation": "胡椒粉" },
|
||
{ "word": "per", "translation": "每" },
|
||
{ "word": "perceive", "translation": "察觉,理解" },
|
||
{ "word": "percent", "translation": "百分之..." },
|
||
{ "word": "percentage", "translation": "百分比" },
|
||
{ "word": "perception", "translation": "感知,看法" },
|
||
{ "word": "perfect", "translation": "完美的" },
|
||
{ "word": "perfectly", "translation": "完美地" },
|
||
{ "word": "perform", "translation": "执行,表演" },
|
||
{ "word": "performance", "translation": "表演,性能" },
|
||
{ "word": "performer", "translation": "表演者" },
|
||
{ "word": "perhaps", "translation": "也许" },
|
||
{ "word": "period", "translation": "时期,句号" },
|
||
{ "word": "permanent", "translation": "永久的" },
|
||
{ "word": "permanently", "translation": "永久地" },
|
||
{ "word": "permission", "translation": "允许" },
|
||
{ "word": "permit", "translation": "允许,许可证" },
|
||
{ "word": "persist", "translation": "坚持, persist in 坚持做某事" },
|
||
{ "word": "persistent", "translation": "坚持不懈的" },
|
||
{ "word": "person", "translation": "人" },
|
||
{ "word": "personal", "translation": "个人的" },
|
||
{ "word": "personality", "translation": "个性" },
|
||
{ "word": "personally", "translation": "个人地,亲自" },
|
||
{ "word": "personnel", "translation": "人事部门,人员" },
|
||
{ "word": "perspective", "translation": "观点,远景" },
|
||
{ "word": "persuade", "translation": "说服" },
|
||
{ "word": "pet", "translation": "宠物" },
|
||
{ "word": "petition", "translation": "请愿书" },
|
||
{ "word": "gasoline", "translation": "汽油 (AmE)" },
|
||
{ "word": "petrol", "translation": "汽油 (BrE)" },
|
||
{ "word": "petty", "translation": "琐碎的, petty crime 轻罪" },
|
||
{ "word": "phase", "translation": "阶段" },
|
||
{ "word": "phenomenon", "translation": "现象 (单数)" },
|
||
{ "word": "philosopher", "translation": "哲学家" },
|
||
{ "word": "philosophical", "translation": "哲学的" },
|
||
{ "word": "philosophy", "translation": "哲学" },
|
||
{ "word": "phone", "translation": "电话" },
|
||
{ "word": "photo", "translation": "照片" },
|
||
{ "word": "photograph", "translation": "照片" },
|
||
{ "word": "photographer", "translation": "摄影师" },
|
||
{ "word": "photography", "translation": "摄影" },
|
||
{ "word": "phrase", "translation": "短语" },
|
||
{ "word": "physical", "translation": "身体的,物理的" },
|
||
{ "word": "physically", "translation": "身体上地" },
|
||
{ "word": "physician", "translation": "内科医生" },
|
||
{ "word": "physics", "translation": "物理" },
|
||
{ "word": "piano", "translation": "钢琴" },
|
||
{ "word": "pick", "translation": "挑选, pick up 捡起" },
|
||
{ "word": "picture", "translation": "图片" },
|
||
{ "word": "pie", "translation": "派,馅饼" },
|
||
{ "word": "piece", "translation": "块,片" },
|
||
{ "word": "pig", "translation": "猪" },
|
||
{ "word": "pile", "translation": "堆, pile up 堆积" },
|
||
{ "word": "pill", "translation": "药丸" },
|
||
{ "word": "pillar", "translation": "柱子" },
|
||
{ "word": "pillow", "translation": "枕头" },
|
||
{ "word": "pilot", "translation": "飞行员" },
|
||
{ "word": "pin", "translation": "别针,钉住" },
|
||
{ "word": "pink", "translation": "粉红色的" },
|
||
{ "word": "pioneer", "translation": "先驱" },
|
||
{ "word": "pipe", "translation": "管道" },
|
||
{ "word": "pipeline", "translation": "管道系统" },
|
||
{ "word": "pirate", "translation": "海盗,盗版" },
|
||
{ "word": "pit", "translation": "坑, pits of hell 地狱的深渊" },
|
||
{ "word": "pitch", "translation": "音高, pitch for 向...兜售" },
|
||
{ "word": "pity", "translation": "同情,遗憾" },
|
||
{ "word": "place", "translation": "地方,放置" },
|
||
{ "word": "placement", "translation": "放置,实习" },
|
||
{ "word": "plain", "translation": "平原,清楚的" },
|
||
{ "word": "plan", "translation": "计划" },
|
||
{ "word": "plane", "translation": "飞机" },
|
||
{ "word": "planet", "translation": "行星" },
|
||
{ "word": "planning", "translation": "规划" },
|
||
{ "word": "plant", "translation": "植物,工厂" },
|
||
{ "word": "plasma", "translation": "血浆,等离子体" },
|
||
{ "word": "plastic", "translation": "塑料的,塑料" },
|
||
{ "word": "plate", "translation": "盘子,板块" },
|
||
{ "word": "platform", "translation": "平台,月台" },
|
||
{ "word": "play", "translation": "玩,扮演" },
|
||
{ "word": "player", "translation": "运动员,演员" },
|
||
{ "word": "plea", "translation": "恳求, plea bargain 辩诉交易" },
|
||
{ "word": "plead", "translation": "恳求, plea guilty to 承认有罪" },
|
||
{ "word": "pleasant", "translation": "令人愉快的" },
|
||
{ "word": "please", "translation": "请,使高兴" },
|
||
{ "word": "pleased", "translation": "满意的" },
|
||
{ "word": "pleasure", "translation": "快乐" },
|
||
{ "word": "pledge", "translation": "承诺" },
|
||
{ "word": "plenty", "translation": "充足的" },
|
||
{ "word": "plot", "translation": "情节,密谋" },
|
||
{ "word": "plug", "translation": "插头,塞子" },
|
||
{ "word": "plunge", "translation": "投入, plunge into 投身于" },
|
||
{ "word": "plus", "translation": "加,正的" },
|
||
{ "word": "pocket", "translation": "口袋" },
|
||
{ "word": "poem", "translation": "诗" },
|
||
{ "word": "poet", "translation": "诗人" },
|
||
{ "word": "poetry", "translation": "诗歌" },
|
||
{ "word": "point", "translation": "点,指向" },
|
||
{ "word": "pointed", "translation": "尖的" },
|
||
{ "word": "poison", "translation": "毒药" },
|
||
{ "word": "poisonous", "translation": "有毒的" },
|
||
{ "word": "pole", "translation": "极点,杆子" },
|
||
{ "word": "police", "translation": "警察" },
|
||
{ "word": "policeman", "translation": "警察(男)" },
|
||
{ "word": "policy", "translation": "政策,保险单" },
|
||
{ "word": "polite", "translation": "礼貌的" },
|
||
{ "word": "political", "translation": "政治的" },
|
||
{ "word": "politician", "translation": "政治家" },
|
||
{ "word": "politics", "translation": "政治" },
|
||
{ "word": "poll", "translation": "民意调查" },
|
||
{ "word": "pollution", "translation": "污染" },
|
||
{ "word": "pond", "translation": "池塘" },
|
||
{ "word": "pool", "translation": "水池,游泳池" },
|
||
{ "word": "poor", "translation": "贫穷的" },
|
||
{ "word": "pop", "translation": "流行音乐,砰地一声" },
|
||
{ "word": "popular", "translation": "流行的,受欢迎的" },
|
||
{ "word": "popularity", "translation": "流行,受欢迎" },
|
||
{ "word": "population", "translation": "人口" },
|
||
{ "word": "port", "translation": "港口" },
|
||
{ "word": "portfolio", "translation": "文件夹,投资组合" },
|
||
{ "word": "portion", "translation": "部分" },
|
||
{ "word": "portrait", "translation": "肖像" },
|
||
{ "word": "portray", "translation": "描绘" },
|
||
{ "word": "pose", "translation": "摆姿势,造成" },
|
||
{ "word": "position", "translation": "位置,职位" },
|
||
{ "word": "positive", "translation": "积极的,阳性的" },
|
||
{ "word": "possess", "translation": "拥有" },
|
||
{ "word": "possession", "translation": "拥有,财产" },
|
||
{ "word": "possibility", "translation": "可能性" },
|
||
{ "word": "possible", "translation": "可能的" },
|
||
{ "word": "possibly", "translation": "可能地" },
|
||
{ "word": "post", "translation": "邮寄,柱子" },
|
||
{ "word": "poster", "translation": "海报" },
|
||
{ "word": "postpone", "translation": "推迟" },
|
||
{ "word": "pot", "translation": "锅, pot plant 盆栽植物" },
|
||
{ "word": "potato", "translation": "土豆" },
|
||
{ "word": "potential", "translation": "潜在的,潜力" },
|
||
{ "word": "potentially", "translation": "潜在地" },
|
||
{ "word": "pound", "translation": "磅,英镑" },
|
||
{ "word": "pour", "translation": "倾倒" },
|
||
{ "word": "poverty", "translation": "贫穷" },
|
||
{ "word": "powder", "translation": "粉末" },
|
||
{ "word": "power", "translation": "力量,权力" },
|
||
{ "word": "powerful", "translation": "强大的" },
|
||
{ "word": "practical", "translation": "实际的,实用的" },
|
||
{ "word": "practically", "translation": "实际上" },
|
||
{ "word": "practice", "translation": "练习,实践 (AmE)" },
|
||
{ "word": "practise", "translation": "练习,实践 (BrE)" },
|
||
{ "word": "practitioner", "translation": "从业者" },
|
||
{ "word": "praise", "translation": "赞扬" },
|
||
{ "word": "pray", "translation": "祈祷" },
|
||
{ "word": "prayer", "translation": "祈祷" },
|
||
{ "word": "preach", "translation": "宣讲,鼓吹" },
|
||
{ "word": "precaution", "translation": "预防措施" },
|
||
{ "word": "precede", "translation": "在...之前" },
|
||
{ "word": "precedent", "translation": "先例" },
|
||
{ "word": "precious", "translation": "珍贵的" },
|
||
{ "word": "precise", "translation": "精确的" },
|
||
{ "word": "precisely", "translation": "精确地" },
|
||
{ "word": "precision", "translation": "精确" },
|
||
{ "word": "predator", "translation": "捕食者,掠夺者" },
|
||
{ "word": "predecessor", "translation": "前任" },
|
||
{ "word": "predict", "translation": "预测" },
|
||
{ "word": "predictable", "translation": "可预测的" },
|
||
{ "word": "prediction", "translation": "预测" },
|
||
{ "word": "predominantly", "translation": "主要地,绝大多数" },
|
||
{ "word": "prefer", "translation": "更喜欢" },
|
||
{ "word": "preference", "translation": "偏爱" },
|
||
{ "word": "pregnancy", "translation": "怀孕" },
|
||
{ "word": "pregnant", "translation": "怀孕的" },
|
||
{ "word": "prejudice", "translation": "偏见" },
|
||
{ "word": "preliminary", "translation": "初步的" },
|
||
{ "word": "premier", "translation": "首要的,总理" },
|
||
{ "word": "premise", "translation": "前提" },
|
||
{ "word": "premium", "translation": "保险费,优质的" },
|
||
{ "word": "preparation", "translation": "准备" },
|
||
{ "word": "prepare", "translation": "准备" },
|
||
{ "word": "prepared", "translation": "准备好的" },
|
||
{ "word": "prescribe", "translation": "开处方,规定" },
|
||
{ "word": "prescription", "translation": "处方" },
|
||
{ "word": "presence", "translation": "存在,出席" },
|
||
{ "word": "present", "translation": "现在的,呈现" },
|
||
{ "word": "presentation", "translation": "展示,陈述" },
|
||
{ "word": "presently", "translation": "目前,不久" },
|
||
{ "word": "preserve", "translation": "保存,保护" },
|
||
{ "word": "presidency", "translation": "总统职位" },
|
||
{ "word": "president", "translation": "总统" },
|
||
{ "word": "presidential", "translation": "总统的" },
|
||
{ "word": "press", "translation": "按,压,新闻界" },
|
||
{ "word": "pressure", "translation": "压力" },
|
||
{ "word": "prestigious", "translation": "有声望的" },
|
||
{ "word": "presumably", "translation": "大概,可能" },
|
||
{ "word": "presume", "translation": "假定,推测" },
|
||
{ "word": "pretend", "translation": "假装" },
|
||
{ "word": "pretty", "translation": "相当,漂亮的" },
|
||
{ "word": "prevail", "translation": "占上风,盛行" },
|
||
{ "word": "prevalence", "translation": "流行,普遍" },
|
||
{ "word": "prevent", "translation": "阻止" },
|
||
{ "word": "prevention", "translation": "预防" },
|
||
{ "word": "previous", "translation": "以前的" },
|
||
{ "word": "previously", "translation": "以前" },
|
||
{ "word": "prey", "translation": "猎物, prey on 捕食" },
|
||
{ "word": "price", "translation": "价格" },
|
||
{ "word": "pride", "translation": "骄傲" },
|
||
{ "word": "priest", "translation": "牧师" },
|
||
{ "word": "primarily", "translation": "主要地" },
|
||
{ "word": "primary", "translation": "主要的,初级的" },
|
||
{ "word": "prime", "translation": "首要的, prime minister 首相" },
|
||
{ "word": "prince", "translation": "王子" },
|
||
{ "word": "princess", "translation": "公主" },
|
||
{ "word": "principal", "translation": "主要的,校长" },
|
||
{ "word": "principle", "translation": "原则" },
|
||
{ "word": "print", "translation": "打印,印刷" },
|
||
{ "word": "printer", "translation": "打印机" },
|
||
{ "word": "printing", "translation": "印刷" },
|
||
{ "word": "prior", "translation": "在...之前,优先的" },
|
||
{ "word": "priority", "translation": "优先" },
|
||
{ "word": "prison", "translation": "监狱" },
|
||
{ "word": "prisoner", "translation": "囚犯" },
|
||
{ "word": "privacy", "translation": "隐私" },
|
||
{ "word": "private", "translation": "私人的" },
|
||
{ "word": "privately", "translation": "私下地" },
|
||
{ "word": "privilege", "translation": "特权" },
|
||
{ "word": "prize", "translation": "奖品" },
|
||
{ "word": "probability", "translation": "可能性" },
|
||
{ "word": "probable", "translation": "可能的" },
|
||
{ "word": "probably", "translation": "可能地" },
|
||
{ "word": "probe", "translation": "探针,调查" },
|
||
{ "word": "problem", "translation": "问题" },
|
||
{ "word": "procedure", "translation": "程序" },
|
||
{ "word": "proceed", "translation": "继续进行" },
|
||
{ "word": "proceeding", "translation": "程序,诉讼" },
|
||
{ "word": "process", "translation": "过程" },
|
||
{ "word": "processing", "translation": "处理" },
|
||
{ "word": "processor", "translation": "处理器" },
|
||
{ "word": "proclaim", "translation": "宣告,声明" },
|
||
{ "word": "produce", "translation": "生产, produce evidence 提供证据" },
|
||
{ "word": "producer", "translation": "生产者" },
|
||
{ "word": "product", "translation": "产品" },
|
||
{ "word": "production", "translation": "生产" },
|
||
{ "word": "productive", "translation": "多产的,富有成效的" },
|
||
{ "word": "productivity", "translation": "生产力" },
|
||
{ "word": "profession", "translation": "职业" },
|
||
{ "word": "professional", "translation": "专业的" },
|
||
{ "word": "professor", "translation": "教授" },
|
||
{ "word": "profile", "translation": "侧面,轮廓" },
|
||
{ "word": "profit", "translation": "利润" },
|
||
{ "word": "profitable", "translation": "有利可图的" },
|
||
{ "word": "profound", "translation": "深刻的" },
|
||
{ "word": "programming", "translation": "编程" },
|
||
{ "word": "progress", "translation": "进步" },
|
||
{ "word": "progressive", "translation": "进步的" },
|
||
{ "word": "prohibit", "translation": "禁止" },
|
||
{ "word": "project", "translation": "项目,投射" },
|
||
{ "word": "projection", "translation": "预测,投影" },
|
||
{ "word": "prominent", "translation": "突出的,著名的" },
|
||
{ "word": "promise", "translation": "承诺" },
|
||
{ "word": "promising", "translation": "有前途的" },
|
||
{ "word": "promote", "translation": "促进,提升" },
|
||
{ "word": "promotion", "translation": "提升,促销" },
|
||
{ "word": "prompt", "translation": "提示,促使" },
|
||
{ "word": "pronounce", "translation": "发音" },
|
||
{ "word": "pronounced", "translation": "显著的, pronounced dead 宣布死亡" },
|
||
{ "word": "proof", "translation": "证据" },
|
||
{ "word": "propaganda", "translation": "宣传" },
|
||
{ "word": "proper", "translation": "适当的" },
|
||
{ "word": "properly", "translation": "适当地" },
|
||
{ "word": "property", "translation": "财产,特性" },
|
||
{ "word": "proportion", "translation": "比例" },
|
||
{ "word": "proposal", "translation": "提议" },
|
||
{ "word": "propose", "translation": "提议,求婚" },
|
||
{ "word": "proposition", "translation": "提议,命题" },
|
||
{ "word": "prosecute", "translation": "起诉" },
|
||
{ "word": "prosecution", "translation": "起诉" },
|
||
{ "word": "prosecutor", "translation": "检察官" },
|
||
{ "word": "prospect", "translation": "前景, prospect of 有...的前景" },
|
||
{ "word": "prospective", "translation": "预期的, prospective buyer 预期的买家" },
|
||
{ "word": "prosperity", "translation": "繁荣" },
|
||
{ "word": "protect", "translation": "保护" },
|
||
{ "word": "protection", "translation": "保护" },
|
||
{ "word": "protective", "translation": "保护的" },
|
||
{ "word": "protein", "translation": "蛋白质" },
|
||
{ "word": "protest", "translation": "抗议" },
|
||
{ "word": "protocol", "translation": "协议,礼仪" },
|
||
{ "word": "proud", "translation": "骄傲的" },
|
||
{ "word": "prove", "translation": "证明" },
|
||
{ "word": "provide", "translation": "提供" },
|
||
{ "word": "province", "translation": "省" },
|
||
{ "word": "provincial", "translation": "省的, provincial government 省政府" },
|
||
{ "word": "provision", "translation": "供应, provision for 为...提供" },
|
||
{ "word": "provoke", "translation": "激起, provoke a response 引起反应" },
|
||
{ "word": "psychiatric", "translation": "精神病学的" },
|
||
{ "word": "psychological", "translation": "心理的" },
|
||
{ "word": "psychologist", "translation": "心理学家" },
|
||
{ "word": "psychology", "translation": "心理学" },
|
||
{ "word": "pub", "translation": "酒吧 (BrE)" },
|
||
{ "word": "public", "translation": "公共的,公众" },
|
||
{ "word": "publication", "translation": "出版物" },
|
||
{ "word": "publicity", "translation": "宣传" },
|
||
{ "word": "publicly", "translation": "公开地" },
|
||
{ "word": "publish", "translation": "出版" },
|
||
{ "word": "publisher", "translation": "出版商" },
|
||
{ "word": "publishing", "translation": "出版业" },
|
||
{ "word": "pull", "translation": "拉" },
|
||
{ "word": "pulse", "translation": "脉搏" },
|
||
{ "word": "pump", "translation": "泵" },
|
||
{ "word": "punch", "translation": "打拳, punch line 笑点" },
|
||
{ "word": "punish", "translation": "惩罚" },
|
||
{ "word": "punishment", "translation": "惩罚" },
|
||
{ "word": "punk", "translation": "朋克" },
|
||
{ "word": "pupil", "translation": "学生,瞳孔" },
|
||
{ "word": "purchase", "translation": "购买" },
|
||
{ "word": "pure", "translation": "纯净的" },
|
||
{ "word": "purely", "translation": "纯粹地" },
|
||
{ "word": "purple", "translation": "紫色的" },
|
||
{ "word": "purpose", "translation": "目的" },
|
||
{ "word": "purse", "translation": "钱包" },
|
||
{ "word": "pursue", "translation": "追求,从事" },
|
||
{ "word": "pursuit", "translation": "追求" },
|
||
{ "word": "push", "translation": "推" },
|
||
{ "word": "put", "translation": "放" },
|
||
{ "word": "puzzle", "translation": "谜,使迷惑" },
|
||
{ "word": "qualification", "translation": "资格" },
|
||
{ "word": "qualified", "translation": "合格的" },
|
||
{ "word": "qualify", "translation": "使合格, qualify for 有资格获得" },
|
||
{ "word": "quality", "translation": "质量" },
|
||
{ "word": "quantity", "translation": "数量" },
|
||
{ "word": "quarter", "translation": "四分之一,一刻钟" },
|
||
{ "word": "queen", "translation": "女王" },
|
||
{ "word": "query", "translation": "疑问,查询" },
|
||
{ "word": "quest", "translation": "寻求" },
|
||
{ "word": "question", "translation": "问题" },
|
||
{ "word": "questionnaire", "translation": "问卷" },
|
||
{ "word": "queue", "translation": "队列" },
|
||
{ "word": "quick", "translation": "快的" },
|
||
{ "word": "quickly", "translation": "快速地" },
|
||
{ "word": "quiet", "translation": "安静的" },
|
||
{ "word": "quietly", "translation": "安静地" },
|
||
{ "word": "quit", "translation": "退出,停止" },
|
||
{ "word": "quite", "translation": "相当,完全" },
|
||
{ "word": "quota", "translation": "配额" },
|
||
{ "word": "quotation", "translation": "引语,报价" },
|
||
{ "word": "quote", "translation": "引用" },
|
||
{ "word": "rabbit", "translation": "兔子" },
|
||
{ "word": "race", "translation": "种族,赛跑" },
|
||
{ "word": "racial", "translation": "种族的" },
|
||
{ "word": "racing", "translation": "赛马,赛车" },
|
||
{ "word": "racism", "translation": "种族主义" },
|
||
{ "word": "racist", "translation": "种族主义者的" },
|
||
{ "word": "radar", "translation": "雷达" },
|
||
{ "word": "radiation", "translation": "辐射" },
|
||
{ "word": "radical", "translation": "激进的, radical change 激进的改变" },
|
||
{ "word": "radio", "translation": "收音机" },
|
||
{ "word": "rage", "translation": "愤怒" },
|
||
{ "word": "raid", "translation": "突袭" },
|
||
{ "word": "rail", "translation": "铁轨" },
|
||
{ "word": "railway", "translation": "铁路" },
|
||
{ "word": "rain", "translation": "雨" },
|
||
{ "word": "raise", "translation": "提高,筹集" },
|
||
{ "word": "rally", "translation": "集会, rally round 团结起来" },
|
||
{ "word": "random", "translation": "随机的" },
|
||
{ "word": "range", "translation": "范围,山脉" },
|
||
{ "word": "rank", "translation": "等级,排列" },
|
||
{ "word": "ranking", "translation": "排名" },
|
||
{ "word": "rape", "translation": "强奸" },
|
||
{ "word": "rapid", "translation": "快速的" },
|
||
{ "word": "rapidly", "translation": "快速地" },
|
||
{ "word": "rare", "translation": "稀有的" },
|
||
{ "word": "rarely", "translation": "很少地" },
|
||
{ "word": "rat", "translation": "老鼠" },
|
||
{ "word": "rate", "translation": "比率,速度" },
|
||
{ "word": "rather", "translation": "相当,宁愿" },
|
||
{ "word": "rating", "translation": "等级,收视率" },
|
||
{ "word": "ratio", "translation": "比率" },
|
||
{ "word": "rational", "translation": "理性的" },
|
||
{ "word": "raw", "translation": "生的, raw materials 原材料" },
|
||
{ "word": "ray", "translation": "光线" },
|
||
{ "word": "reach", "translation": "到达,够到" },
|
||
{ "word": "react", "translation": "反应" },
|
||
{ "word": "reaction", "translation": "反应" },
|
||
{ "word": "read", "translation": "读" },
|
||
{ "word": "reader", "translation": "读者" },
|
||
{ "word": "readily", "translation": "容易地" },
|
||
{ "word": "reading", "translation": "阅读" },
|
||
{ "word": "ready", "translation": "准备好的" },
|
||
{ "word": "real", "translation": "真实的,真正的" },
|
||
{ "word": "realistic", "translation": "现实的" },
|
||
{ "word": "reality", "translation": "现实" },
|
||
{ "word": "realization", "translation": "实现,认识到" },
|
||
{ "word": "realize", "translation": "意识到,实现" },
|
||
{ "word": "really", "translation": "真正地" },
|
||
{ "word": "realm", "translation": "领域,王国" },
|
||
{ "word": "rear", "translation": "后部的, rear-end collision 追尾事故" },
|
||
{ "word": "reason", "translation": "原因,推理" },
|
||
{ "word": "reasonable", "translation": "合理的" },
|
||
{ "word": "reasonably", "translation": "合理地" },
|
||
{ "word": "reasoning", "translation": "推理" },
|
||
{ "word": "reassure", "translation": "使安心" },
|
||
{ "word": "rebel", "translation": "反叛者,反叛" },
|
||
{ "word": "rebellion", "translation": "反叛" },
|
||
{ "word": "rebuild", "translation": "重建" },
|
||
{ "word": "recall", "translation": "回忆,召回" },
|
||
{ "word": "receipt", "translation": "收据" },
|
||
{ "word": "receive", "translation": "收到" },
|
||
{ "word": "receiver", "translation": "接收者" },
|
||
{ "word": "recent", "translation": "最近的" },
|
||
{ "word": "recently", "translation": "最近" },
|
||
{ "word": "reception", "translation": "接待, reception desk 接待台" },
|
||
{ "word": "recession", "translation": "经济衰退" },
|
||
{ "word": "recipe", "translation": "食谱" },
|
||
{ "word": "recipient", "translation": "接受者" },
|
||
{ "word": "reckon", "translation": "估计,认为" },
|
||
{ "word": "recognition", "translation": "识别,承认" },
|
||
{ "word": "recognize", "translation": "认出,承认" },
|
||
{ "word": "recommend", "translation": "推荐" },
|
||
{ "word": "recommendation", "translation": "推荐" },
|
||
{ "word": "reconstruction", "translation": "重建" },
|
||
{ "word": "record", "translation": "记录" },
|
||
{ "word": "recording", "translation": "录音" },
|
||
{ "word": "recount", "translation": "叙述, recount the story 讲述故事" },
|
||
{ "word": "recover", "translation": "恢复" },
|
||
{ "word": "recovery", "translation": "恢复" },
|
||
{ "word": "recruit", "translation": "招募" },
|
||
{ "word": "recruitment", "translation": "招聘" },
|
||
{ "word": "recycle", "translation": "回收利用" },
|
||
{ "word": "red", "translation": "红色的" },
|
||
{ "word": "reduce", "translation": "减少" },
|
||
{ "word": "reduction", "translation": "减少" },
|
||
{ "word": "refer", "translation": "参考,指的是" },
|
||
{ "word": "referee", "translation": "裁判" },
|
||
{ "word": "reference", "translation": "参考,推荐信" },
|
||
{ "word": "referendum", "translation": "全民公投" },
|
||
{ "word": "reflect", "translation": "反映,思考" },
|
||
{ "word": "reflection", "translation": "反射,反映" },
|
||
{ "word": "reform", "translation": "改革" },
|
||
{ "word": "refuge", "translation": "避难所" },
|
||
{ "word": "refugee", "translation": "难民" },
|
||
{ "word": "refusal", "translation": "拒绝" },
|
||
{ "word": "refuse", "translation": "拒绝" },
|
||
{ "word": "regain", "translation": "重新获得" },
|
||
{ "word": "regard", "translation": "看待, regard as 把...看作" },
|
||
{ "word": "regardless", "translation": "不管怎样, regardless of 不管,不顾" },
|
||
{ "word": "regime", "translation": "政权" },
|
||
{ "word": "region", "translation": "地区" },
|
||
{ "word": "regional", "translation": "地区的" },
|
||
{ "word": "register", "translation": "注册" },
|
||
{ "word": "registration", "translation": "注册" },
|
||
{ "word": "regret", "translation": "后悔" },
|
||
{ "word": "regular", "translation": "定期的,规则的" },
|
||
{ "word": "regularly", "translation": "定期地" },
|
||
{ "word": "regulate", "translation": "调节,控制" },
|
||
{ "word": "regulation", "translation": "规则,法规" },
|
||
{ "word": "regulator", "translation": "监管机构" },
|
||
{ "word": "regulatory", "translation": "监管的" },
|
||
{ "word": "rehabilitation", "translation": "康复" },
|
||
{ "word": "reign", "translation": "统治" },
|
||
{ "word": "reinforce", "translation": "加强, reinforce the idea 加强这个想法" },
|
||
{ "word": "reject", "translation": "拒绝" },
|
||
{ "word": "rejection", "translation": "拒绝" },
|
||
{ "word": "relate", "translation": "联系,讲述" },
|
||
{ "word": "related", "translation": "相关的" },
|
||
{ "word": "relation", "translation": "关系" },
|
||
{ "word": "relationship", "translation": "关系" },
|
||
{ "word": "relative", "translation": "相对的,亲戚" },
|
||
{ "word": "relatively", "translation": "相对地" },
|
||
{ "word": "relax", "translation": "放松" },
|
||
{ "word": "relaxed", "translation": "放松的" },
|
||
{ "word": "relaxing", "translation": "令人放松的" },
|
||
{ "word": "release", "translation": "释放,发布" },
|
||
{ "word": "relevance", "translation": "相关性" },
|
||
{ "word": "relevant", "translation": "相关的" },
|
||
{ "word": "reliability", "translation": "可靠性" },
|
||
{ "word": "reliable", "translation": "可靠的" },
|
||
{ "word": "relief", "translation": "宽慰, relief fund 救济基金" },
|
||
{ "word": "relieve", "translation": "减轻, relieve sb of sth 解除某人的...职务" },
|
||
{ "word": "religion", "translation": "宗教" },
|
||
{ "word": "religious", "translation": "宗教的" },
|
||
{ "word": "reluctant", "translation": "不情愿的" },
|
||
{ "word": "rely", "translation": "依赖, rely on 依靠" },
|
||
{ "word": "remain", "translation": "保持,剩余" },
|
||
{ "word": "remainder", "translation": "剩余物" },
|
||
{ "word": "remains", "translation": "遗迹, remains of 残余" },
|
||
{ "word": "remark", "translation": "评论" },
|
||
{ "word": "remarkable", "translation": "非凡的" },
|
||
{ "word": "remarkably", "translation": "非凡地" },
|
||
{ "word": "remedy", "translation": "补救措施" },
|
||
{ "word": "remember", "translation": "记得" },
|
||
{ "word": "remind", "translation": "提醒" },
|
||
{ "word": "reminder", "translation": "提醒" },
|
||
{ "word": "remote", "translation": "遥远的, remote control 遥控器" },
|
||
{ "word": "removal", "translation": "移除" },
|
||
{ "word": "remove", "translation": "移除" },
|
||
{ "word": "renaissance", "translation": "复兴" },
|
||
{ "word": "render", "translation": "使得, render assistance 提供援助" },
|
||
{ "word": "renew", "translation": "更新, renew a contract 续签合同" },
|
||
{ "word": "rent", "translation": "租金,出租" },
|
||
{ "word": "repair", "translation": "修理" },
|
||
{ "word": "repeat", "translation": "重复" },
|
||
{ "word": "repeatedly", "translation": "反复地" },
|
||
{ "word": "replace", "translation": "替换" },
|
||
{ "word": "replacement", "translation": "替换物" },
|
||
{ "word": "reply", "translation": "回复" },
|
||
{ "word": "report", "translation": "报告" },
|
||
{ "word": "reporter", "translation": "记者" },
|
||
{ "word": "reporting", "translation": "报道" },
|
||
{ "word": "represent", "translation": "代表,表示" },
|
||
{ "word": "representation", "translation": "代表,表现" },
|
||
{ "word": "representative", "translation": "代表" },
|
||
{ "word": "reproduce", "translation": "繁殖,复制" },
|
||
{ "word": "reproduction", "translation": "繁殖,复制品" },
|
||
{ "word": "republic", "translation": "共和国" },
|
||
{ "word": "reputation", "translation": "声誉" },
|
||
{ "word": "request", "translation": "请求" },
|
||
{ "word": "require", "translation": "要求" },
|
||
{ "word": "requirement", "translation": "要求" },
|
||
{ "word": "rescue", "translation": "营救" },
|
||
{ "word": "research", "translation": "研究" },
|
||
{ "word": "researcher", "translation": "研究人员" },
|
||
{ "word": "resemble", "translation": "像, resemble sb in sth 在某方面像某人" },
|
||
{ "word": "reservation", "translation": "预订,保留意见" },
|
||
{ "word": "reserve", "translation": "储备,预订" },
|
||
{ "word": "reside", "translation": "居住" },
|
||
{ "word": "residence", "translation": "住所" },
|
||
{ "word": "resident", "translation": "居民" },
|
||
{ "word": "residential", "translation": "住宅的" },
|
||
{ "word": "residue", "translation": "残余, residue of 残余物" },
|
||
{ "word": "resign", "translation": "辞职" },
|
||
{ "word": "resignation", "translation": "辞职" },
|
||
{ "word": "resist", "translation": "抵抗" },
|
||
{ "word": "resistance", "translation": "抵抗" },
|
||
{ "word": "resolution", "translation": "决议,决心" },
|
||
{ "word": "resolve", "translation": "解决,决心" },
|
||
{ "word": "resort", "translation": "求助于, resort to 诉诸于" },
|
||
{ "word": "resource", "translation": "资源" },
|
||
{ "word": "respect", "translation": "尊重" },
|
||
{ "word": "respective", "translation": "各自的" },
|
||
{ "word": "respectively", "translation": "分别地" },
|
||
{ "word": "respond", "translation": "回应" },
|
||
{ "word": "response", "translation": "回应" },
|
||
{ "word": "responsibility", "translation": "责任" },
|
||
{ "word": "responsible", "translation": "负责的" },
|
||
{ "word": "rest", "translation": "休息,剩余部分" },
|
||
{ "word": "restaurant", "translation": "餐馆" },
|
||
{ "word": "restoration", "translation": "恢复,修复" },
|
||
{ "word": "restore", "translation": "恢复,修复" },
|
||
{ "word": "restraint", "translation": "克制,约束" },
|
||
{ "word": "restrict", "translation": "限制" },
|
||
{ "word": "restriction", "translation": "限制" },
|
||
{ "word": "result", "translation": "结果" },
|
||
{ "word": "resume", "translation": "简历,重新开始" },
|
||
{ "word": "retail", "translation": "零售" },
|
||
{ "word": "retain", "translation": "保留, retain sb as 保留某人作为" },
|
||
{ "word": "retire", "translation": "退休" },
|
||
{ "word": "retired", "translation": "退休的" },
|
||
{ "word": "retirement", "translation": "退休" },
|
||
{ "word": "retreat", "translation": "撤退, retreat from 从...撤退" },
|
||
{ "word": "retrieve", "translation": "取回, retrieve information 检索信息" },
|
||
{ "word": "return", "translation": "返回,归还" },
|
||
{ "word": "reveal", "translation": "揭示,显示" },
|
||
{ "word": "revelation", "translation": "启示,被揭露的事" },
|
||
{ "word": "revenge", "translation": "复仇" },
|
||
{ "word": "revenue", "translation": "收入" },
|
||
{ "word": "reverse", "translation": "颠倒,相反的" },
|
||
{ "word": "review", "translation": "复习,评论" },
|
||
{ "word": "revise", "translation": "修订" },
|
||
{ "word": "revision", "translation": "修订" },
|
||
{ "word": "revival", "translation": "复兴, revival of 复兴" },
|
||
{ "word": "revive", "translation": "复活,复兴" },
|
||
{ "word": "revolution", "translation": "革命" },
|
||
{ "word": "revolutionary", "translation": "革命的" },
|
||
{ "word": "reward", "translation": "奖励" },
|
||
{ "word": "rhetoric", "translation": "修辞, rhetoric of 修辞" },
|
||
{ "word": "rhythm", "translation": "节奏" },
|
||
{ "word": "rice", "translation": "大米" },
|
||
{ "word": "rich", "translation": "富有的" },
|
||
{ "word": "rid", "translation": "使摆脱, rid sb of sth 使某人摆脱某物" },
|
||
{ "word": "ride", "translation": "骑" },
|
||
{ "word": "ridiculous", "translation": "荒谬的" },
|
||
{ "word": "rifle", "translation": "步枪" },
|
||
{ "word": "right", "translation": "正确的,右边" },
|
||
{ "word": "ring", "translation": "戒指,打电话" },
|
||
{ "word": "riot", "translation": "暴乱" },
|
||
{ "word": "rip", "translation": "撕裂" },
|
||
{ "word": "rise", "translation": "上升, rise to one's feet 站起来" },
|
||
{ "word": "risk", "translation": "风险" },
|
||
{ "word": "risky", "translation": "有风险的" },
|
||
{ "word": "ritual", "translation": "仪式" },
|
||
{ "word": "rival", "translation": "竞争对手" },
|
||
{ "word": "river", "translation": "河流" },
|
||
{ "word": "road", "translation": "道路" },
|
||
{ "word": "rob", "translation": "抢劫" },
|
||
{ "word": "robbery", "translation": "抢劫" },
|
||
{ "word": "robot", "translation": "机器人" },
|
||
{ "word": "robust", "translation": "健壮的, robust economy 强劲的经济" },
|
||
{ "word": "rock", "translation": "岩石,摇滚乐" },
|
||
{ "word": "rocket", "translation": "火箭" },
|
||
{ "word": "rod", "translation": "杆, rod for the back 管教杖" },
|
||
{ "word": "role", "translation": "角色" },
|
||
{ "word": "roll", "translation": "滚动, roll out 推出" },
|
||
{ "word": "romance", "translation": "浪漫, romance novel 言情小说" },
|
||
{ "word": "romantic", "translation": "浪漫的" },
|
||
{ "word": "roof", "translation": "屋顶" },
|
||
{ "word": "room", "translation": "房间" },
|
||
{ "word": "root", "translation": "根" },
|
||
{ "word": "rope", "translation": "绳索" },
|
||
{ "word": "rose", "translation": "玫瑰" },
|
||
{ "word": "rotate", "translation": "旋转" },
|
||
{ "word": "rotation", "translation": "旋转" },
|
||
{ "word": "rough", "translation": "粗糙的, rough estimate 粗略估计" },
|
||
{ "word": "roughly", "translation": "粗略地" },
|
||
{ "word": "round", "translation": "圆的,回合" },
|
||
{ "word": "route", "translation": "路线" },
|
||
{ "word": "routine", "translation": "例行公事的" },
|
||
{ "word": "row", "translation": "排, row a boat 划船" },
|
||
{ "word": "royal", "translation": "皇家的" },
|
||
{ "word": "rub", "translation": "摩擦" },
|
||
{ "word": "rubber", "translation": "橡胶" },
|
||
{ "word": "rubbish", "translation": "垃圾" },
|
||
{ "word": "rude", "translation": "粗鲁的" },
|
||
{ "word": "rugby", "translation": "橄榄球" },
|
||
{ "word": "ruin", "translation": "毁灭" },
|
||
{ "word": "rule", "translation": "规则" },
|
||
{ "word": "ruler", "translation": "统治者,尺子" },
|
||
{ "word": "ruling", "translation": "统治的, ruling class 统治阶级" },
|
||
{ "word": "rumor", "translation": "谣言 (AmE)" },
|
||
{ "word": "rumour", "translation": "谣言 (BrE)" },
|
||
{ "word": "run", "translation": "跑" },
|
||
{ "word": "runner", "translation": "跑步者" },
|
||
{ "word": "running", "translation": "跑步" },
|
||
{ "word": "rural", "translation": "农村的" },
|
||
{ "word": "rush", "translation": "冲,匆忙" },
|
||
{ "word": "sack", "translation": "解雇, sack sb for sth 因某事解雇某人" },
|
||
{ "word": "sacred", "translation": "神圣的" },
|
||
{ "word": "sacrifice", "translation": "牺牲" },
|
||
{ "word": "sad", "translation": "悲伤的" },
|
||
{ "word": "sadly", "translation": "悲伤地" },
|
||
{ "word": "safe", "translation": "安全的" },
|
||
{ "word": "safety", "translation": "安全" },
|
||
{ "word": "sail", "translation": "航行" },
|
||
{ "word": "sailor", "translation": "水手" },
|
||
{ "word": "saint", "translation": "圣人" },
|
||
{ "word": "sake", "translation": "缘故, for the sake of 为了" },
|
||
{ "word": "salad", "translation": "沙拉" },
|
||
{ "word": "salary", "translation": "薪水" },
|
||
{ "word": "sale", "translation": "销售,出售" },
|
||
{ "word": "salt", "translation": "盐" },
|
||
{ "word": "same", "translation": "相同的" },
|
||
{ "word": "sample", "translation": "样品,样本" },
|
||
{ "word": "sanction", "translation": "制裁,批准" },
|
||
{ "word": "sand", "translation": "沙子" },
|
||
{ "word": "sandwich", "translation": "三明治" },
|
||
{ "word": "satellite", "translation": "卫星" },
|
||
{ "word": "satisfaction", "translation": "满意" },
|
||
{ "word": "satisfied", "translation": "满意的" },
|
||
{ "word": "satisfy", "translation": "满足,使满意" },
|
||
{ "word": "sauce", "translation": "酱汁" },
|
||
{ "word": "save", "translation": "拯救,节省" },
|
||
{ "word": "saving", "translation": "节省,储蓄" },
|
||
{ "word": "say", "translation": "说" },
|
||
{ "word": "scale", "translation": "规模,天平" },
|
||
{ "word": "scan", "translation": "扫描" },
|
||
{ "word": "scandal", "translation": "丑闻" },
|
||
{ "word": "scare", "translation": "惊吓" },
|
||
{ "word": "scared", "translation": "害怕的" },
|
||
{ "word": "scary", "translation": "吓人的" },
|
||
{ "word": "scattered", "translation": "分散的" },
|
||
{ "word": "scenario", "translation": "情景,剧本" },
|
||
{ "word": "scene", "translation": "场景" },
|
||
{ "word": "skeptical", "translation": "怀疑的" },
|
||
{ "word": "schedule", "translation": "时间表" },
|
||
{ "word": "scheme", "translation": "计划,阴谋" },
|
||
{ "word": "scholar", "translation": "学者" },
|
||
{ "word": "scholarship", "translation": "奖学金" },
|
||
{ "word": "school", "translation": "学校" },
|
||
{ "word": "science", "translation": "科学" },
|
||
{ "word": "scientific", "translation": "科学的" },
|
||
{ "word": "scientist", "translation": "科学家" },
|
||
{ "word": "scope", "translation": "范围" },
|
||
{ "word": "score", "translation": "得分,分数" },
|
||
{ "word": "scratch", "translation": "抓,刮" },
|
||
{ "word": "scream", "translation": "尖叫" },
|
||
{ "word": "screen", "translation": "屏幕" },
|
||
{ "word": "screening", "translation": "筛查" },
|
||
{ "word": "screw", "translation": "螺丝钉" },
|
||
{ "word": "script", "translation": "剧本,脚本" },
|
||
{ "word": "scrutiny", "translation": "仔细检查" },
|
||
{ "word": "sculpture", "translation": "雕塑" },
|
||
{ "word": "sea", "translation": "海" },
|
||
{ "word": "seal", "translation": "密封,海豹" },
|
||
{ "word": "search", "translation": "搜索" },
|
||
{ "word": "season", "translation": "季节" },
|
||
{ "word": "seat", "translation": "座位" },
|
||
{ "word": "second", "translation": "第二,秒" },
|
||
{ "word": "secondary", "translation": "第二的,次要的" },
|
||
{ "word": "secondly", "translation": "第二" },
|
||
{ "word": "secret", "translation": "秘密" },
|
||
{ "word": "secretary", "translation": "秘书" },
|
||
{ "word": "section", "translation": "部分,章节" },
|
||
{ "word": "sector", "translation": "部门,领域" },
|
||
{ "word": "secular", "translation": "世俗的" },
|
||
{ "word": "secure", "translation": "安全的,确保" },
|
||
{ "word": "security", "translation": "安全" },
|
||
{ "word": "see", "translation": "看见" },
|
||
{ "word": "seed", "translation": "种子" },
|
||
{ "word": "seek", "translation": "寻找" },
|
||
{ "word": "seem", "translation": "似乎" },
|
||
{ "word": "segment", "translation": "部分,片段" },
|
||
{ "word": "seize", "translation": "抓住" },
|
||
{ "word": "seldom", "translation": "很少" },
|
||
{ "word": "select", "translation": "选择" },
|
||
{ "word": "selection", "translation": "选择" },
|
||
{ "word": "selective", "translation": "有选择性的" },
|
||
{ "word": "self", "translation": "自己" },
|
||
{ "word": "sell", "translation": "卖" },
|
||
{ "word": "seminar", "translation": "研讨会" },
|
||
{ "word": "senator", "translation": "参议员" },
|
||
{ "word": "send", "translation": "发送" },
|
||
{ "word": "senior", "translation": "年长的,高级的" },
|
||
{ "word": "sensation", "translation": "感觉,轰动" },
|
||
{ "word": "sense", "translation": "感觉,感官" },
|
||
{ "word": "sensible", "translation": "明智的" },
|
||
{ "word": "sensitive", "translation": "敏感的" },
|
||
{ "word": "sensitivity", "translation": "敏感性" },
|
||
{ "word": "sentence", "translation": "句子,判决" },
|
||
{ "word": "sentiment", "translation": "情感,情绪" },
|
||
{ "word": "separate", "translation": "分开的,分离" },
|
||
{ "word": "separation", "translation": "分离" },
|
||
{ "word": "September", "translation": "九月" },
|
||
{ "word": "sequence", "translation": "顺序,序列" },
|
||
{ "word": "serial", "translation": "连续的,连载的" },
|
||
{ "word": "series", "translation": "系列" },
|
||
{ "word": "serious", "translation": "严肃的,严重的" },
|
||
{ "word": "seriously", "translation": "严肃地,认真地" },
|
||
{ "word": "servant", "translation": "仆人" },
|
||
{ "word": "serve", "translation": "服务,提供" },
|
||
{ "word": "service", "translation": "服务" },
|
||
{ "word": "session", "translation": "会议,学期" },
|
||
{ "word": "set", "translation": "放置,一套" },
|
||
{ "word": "setting", "translation": "环境,背景" },
|
||
{ "word": "settle", "translation": "解决,定居" },
|
||
{ "word": "settlement", "translation": "解决,定居点" },
|
||
{ "word": "settler", "translation": "定居者" },
|
||
{ "word": "seven", "translation": "七" },
|
||
{ "word": "seventeen", "translation": "十七" },
|
||
{ "word": "seventy", "translation": "七十" },
|
||
{ "word": "several", "translation": "几个" },
|
||
{ "word": "severe", "translation": "严重的,严厉的" },
|
||
{ "word": "severely", "translation": "严重地,严厉地" },
|
||
{ "word": "sex", "translation": "性别" },
|
||
{ "word": "sexual", "translation": "性的" },
|
||
{ "word": "sexuality", "translation": "性欲,性别" },
|
||
{ "word": "sexy", "translation": "性感的" },
|
||
{ "word": "shade", "translation": "阴影,色调" },
|
||
{ "word": "shadow", "translation": "影子" },
|
||
{ "word": "shake", "translation": "摇晃" },
|
||
{ "word": "shall", "translation": "将要(用于第一人称)" },
|
||
{ "word": "shallow", "translation": "浅的" },
|
||
{ "word": "shame", "translation": "羞耻" },
|
||
{ "word": "shape", "translation": "形状" },
|
||
{ "word": "share", "translation": "分享" },
|
||
{ "word": "shareholder", "translation": "股东" },
|
||
{ "word": "sharp", "translation": "锋利的,急剧的" },
|
||
{ "word": "shatter", "translation": "粉碎" },
|
||
{ "word": "she", "translation": "她" },
|
||
{ "word": "shed", "translation": "棚子,脱落" },
|
||
{ "word": "sheep", "translation": "羊" },
|
||
{ "word": "sheer", "translation": "纯粹的,陡峭的" },
|
||
{ "word": "sheet", "translation": "床单, sheet of paper 一张纸" },
|
||
{ "word": "shelf", "translation": "架子" },
|
||
{ "word": "shell", "translation": "贝壳,壳" },
|
||
{ "word": "shelter", "translation": "庇护所" },
|
||
{ "word": "shift", "translation": "轮班,转变" },
|
||
{ "word": "shine", "translation": "发光" },
|
||
{ "word": "shiny", "translation": "闪亮的" },
|
||
{ "word": "ship", "translation": "船,运送" },
|
||
{ "word": "shipping", "translation": "运输业" },
|
||
{ "word": "shirt", "translation": "衬衫" },
|
||
{ "word": "shock", "translation": "震惊,休克" },
|
||
{ "word": "shocked", "translation": "震惊的" },
|
||
{ "word": "shocking", "translation": "令人震惊的" },
|
||
{ "word": "shoe", "translation": "鞋子" },
|
||
{ "word": "shoot", "translation": "射击" },
|
||
{ "word": "shooting", "translation": "射击" },
|
||
{ "word": "shop", "translation": "商店" },
|
||
{ "word": "shopping", "translation": "购物" },
|
||
{ "word": "shore", "translation": "海岸" },
|
||
{ "word": "short", "translation": "短的" },
|
||
{ "word": "short-term", "translation": "短期的" },
|
||
{ "word": "shortage", "translation": "短缺" },
|
||
{ "word": "shortly", "translation": "不久" },
|
||
{ "word": "shot", "translation": "射击,镜头" },
|
||
{ "word": "should", "translation": "应该" },
|
||
{ "word": "shoulder", "translation": "肩膀" },
|
||
{ "word": "shout", "translation": "喊叫" },
|
||
{ "word": "show", "translation": "展示" },
|
||
{ "word": "shower", "translation": "淋浴,阵雨" },
|
||
{ "word": "shrink", "translation": "收缩" },
|
||
{ "word": "shrug", "translation": "耸肩" },
|
||
{ "word": "shut", "translation": "关闭" },
|
||
{ "word": "shy", "translation": "害羞的" },
|
||
{ "word": "sibling", "translation": "兄弟姐妹" },
|
||
{ "word": "sick", "translation": "生病的" },
|
||
{ "word": "side", "translation": "边,侧面" },
|
||
{ "word": "sigh", "translation": "叹气" },
|
||
{ "word": "sight", "translation": "视力,景象" },
|
||
{ "word": "sign", "translation": "标志,符号,签署" },
|
||
{ "word": "signal", "translation": "信号" },
|
||
{ "word": "signature", "translation": "签名" },
|
||
{ "word": "significance", "translation": "意义,重要性" },
|
||
{ "word": "significant", "translation": "重要的,有意义的" },
|
||
{ "word": "significantly", "translation": "显著地" },
|
||
{ "word": "silence", "translation": "沉默" },
|
||
{ "word": "silent", "translation": "沉默的" },
|
||
{ "word": "silk", "translation": "丝绸" },
|
||
{ "word": "silly", "translation": "愚蠢的" },
|
||
{ "word": "silver", "translation": "银色的,银子" },
|
||
{ "word": "similar", "translation": "相似的" },
|
||
{ "word": "similarity", "translation": "相似性" },
|
||
{ "word": "similarly", "translation": "类似地" },
|
||
{ "word": "simple", "translation": "简单的" },
|
||
{ "word": "simply", "translation": "简单地" },
|
||
{ "word": "simulate", "translation": "模拟" },
|
||
{ "word": "simulation", "translation": "模拟" },
|
||
{ "word": "simultaneously", "translation": "同时地" },
|
||
{ "word": "sin", "translation": "罪恶" },
|
||
{ "word": "since", "translation": "自从,因为" },
|
||
{ "word": "sincere", "translation": "真诚的" },
|
||
{ "word": "sing", "translation": "唱歌" },
|
||
{ "word": "singer", "translation": "歌手" },
|
||
{ "word": "single", "translation": "单一的,单身的" },
|
||
{ "word": "sink", "translation": "下沉,水槽" },
|
||
{ "word": "sir", "translation": "先生" },
|
||
{ "word": "sister", "translation": "姐妹" },
|
||
{ "word": "sit", "translation": "坐" },
|
||
{ "word": "site", "translation": "地点,网站" },
|
||
{ "word": "situate", "translation": "位于" },
|
||
{ "word": "situation", "translation": "情况,形势" },
|
||
{ "word": "six", "translation": "六" },
|
||
{ "word": "sixteen", "translation": "十六" },
|
||
{ "word": "sixty", "translation": "六十" },
|
||
{ "word": "size", "translation": "尺寸,大小" },
|
||
{ "word": "sketch", "translation": "素描" },
|
||
{ "word": "ski", "translation": "滑雪" },
|
||
{ "word": "skiing", "translation": "滑雪运动" },
|
||
{ "word": "skill", "translation": "技能" },
|
||
{ "word": "skilled", "translation": "有技能的" },
|
||
{ "word": "skin", "translation": "皮肤" },
|
||
{ "word": "skip", "translation": "跳过" },
|
||
{ "word": "skirt", "translation": "裙子" },
|
||
{ "word": "skull", "translation": "头骨" },
|
||
{ "word": "sky", "translation": "天空" },
|
||
{ "word": "slam", "translation": "猛力关闭, slam dunk 扣篮" },
|
||
{ "word": "slap", "translation": "掌掴" },
|
||
{ "word": "slash", "translation": "砍,斜线" },
|
||
{ "word": "slave", "translation": "奴隶" },
|
||
{ "word": "slavery", "translation": "奴隶制" },
|
||
{ "word": "sleep", "translation": "睡觉" },
|
||
{ "word": "slice", "translation": "片,切片" },
|
||
{ "word": "slide", "translation": "滑动" },
|
||
{ "word": "slight", "translation": "轻微的" },
|
||
{ "word": "slightly", "translation": "轻微地" },
|
||
{ "word": "slip", "translation": "滑倒" },
|
||
{ "word": "slogan", "translation": "口号" },
|
||
{ "word": "slope", "translation": "斜坡" },
|
||
{ "word": "slot", "translation": " slot machine 老虎机,时间段" },
|
||
{ "word": "slow", "translation": "慢的" },
|
||
{ "word": "slowly", "translation": "缓慢地" },
|
||
{ "word": "small", "translation": "小的" },
|
||
{ "word": "smart", "translation": "聪明的,时髦的" },
|
||
{ "word": "smash", "translation": "粉碎" },
|
||
{ "word": "smell", "translation": "气味,闻" },
|
||
{ "word": "smile", "translation": "微笑" },
|
||
{ "word": "smoke", "translation": "烟,吸烟" },
|
||
{ "word": "smoking", "translation": "吸烟" },
|
||
{ "word": "smooth", "translation": "光滑的,顺利的" },
|
||
{ "word": "snake", "translation": "蛇" },
|
||
{ "word": "snap", "translation": "突然折断,快攻" },
|
||
{ "word": "snow", "translation": "雪" },
|
||
{ "word": "so", "translation": "所以,如此" },
|
||
{ "word": "so-called", "translation": "所谓的" },
|
||
{ "word": "soak", "translation": "浸泡" },
|
||
{ "word": "soap", "translation": "肥皂" },
|
||
{ "word": "soar", "translation": " soaring eagle 雄鹰翱翔,激增" },
|
||
{ "word": "soccer", "translation": "足球 (AmE)" },
|
||
{ "word": "social", "translation": "社会的" },
|
||
{ "word": "socialist", "translation": "社会主义的" },
|
||
{ "word": "society", "translation": "社会" },
|
||
{ "word": "sock", "translation": "袜子" },
|
||
{ "word": "soft", "translation": "柔软的" },
|
||
{ "word": "software", "translation": "软件" },
|
||
{ "word": "soil", "translation": "土壤" },
|
||
{ "word": "solar", "translation": "太阳的, solar energy 太阳能" },
|
||
{ "word": "soldier", "translation": "士兵" },
|
||
{ "word": "sole", "translation": "唯一的, sole trader 独资经营者" },
|
||
{ "word": "solely", "translation": "唯一地" },
|
||
{ "word": "solicitor", "translation": "律师 (BrE)" },
|
||
{ "word": "solid", "translation": "固体的,坚实的" },
|
||
{ "word": "solidarity", "translation": "团结" },
|
||
{ "word": "solo", "translation": "独奏的" },
|
||
{ "word": "solution", "translation": "解决方案" },
|
||
{ "word": "solve", "translation": "解决" },
|
||
{ "word": "some", "translation": "一些" },
|
||
{ "word": "somebody", "translation": "某人" },
|
||
{ "word": "somehow", "translation": "不知怎么地" },
|
||
{ "word": "someone", "translation": "某人" },
|
||
{ "word": "something", "translation": "某事" },
|
||
{ "word": "sometimes", "translation": "有时" },
|
||
{ "word": "somewhat", "translation": "有点儿" },
|
||
{ "word": "somewhere", "translation": "某处" },
|
||
{ "word": "son", "translation": "儿子" },
|
||
{ "word": "song", "translation": "歌曲" },
|
||
{ "word": "soon", "translation": "很快" },
|
||
{ "word": "sophisticated", "translation": "复杂的,精密的" },
|
||
{ "word": "sorry", "translation": "对不起的" },
|
||
{ "word": "sort", "translation": "种类,整理" },
|
||
{ "word": "soul", "translation": "灵魂" },
|
||
{ "word": "sound", "translation": "声音,听起来" },
|
||
{ "word": "soup", "translation": "汤" },
|
||
{ "word": "source", "translation": "来源" },
|
||
{ "word": "south", "translation": "南方的,南部" },
|
||
{ "word": "southern", "translation": "南方的" },
|
||
{ "word": "sovereignty", "translation": "主权" },
|
||
{ "word": "space", "translation": "空间" },
|
||
{ "word": "spare", "translation": "备用的, spare time 业余时间" },
|
||
{ "word": "spark", "translation": "火花,激发" },
|
||
{ "word": "speak", "translation": "说话" },
|
||
{ "word": "speaker", "translation": "演讲者,扬声器" },
|
||
{ "word": "special", "translation": "特殊的" },
|
||
{ "word": "specialist", "translation": "专家" },
|
||
{ "word": "specialize", "translation": "专攻 (AmE)" },
|
||
{ "word": "specialise", "translation": "专攻 (BrE)" },
|
||
{ "word": "specialized", "translation": "专门的 (AmE)" },
|
||
{ "word": "specialised", "translation": "专门的 (BrE)" },
|
||
{ "word": "species", "translation": "物种" },
|
||
{ "word": "specific", "translation": "具体的,特定的" },
|
||
{ "word": "specifically", "translation": "具体地" },
|
||
{ "word": "specification", "translation": "规格,说明书" },
|
||
{ "word": "specify", "translation": "指定" },
|
||
{ "word": "specimen", "translation": "标本" },
|
||
{ "word": "spectacle", "translation": "景象, spectacle lenses 镜片" },
|
||
{ "word": "spectacular", "translation": "壮观的" },
|
||
{ "word": "spectator", "translation": "观众" },
|
||
{ "word": "spectrum", "translation": "光谱, spectrum of 某事物的范围" },
|
||
{ "word": "speculate", "translation": "推测" },
|
||
{ "word": "speculation", "translation": "推测" },
|
||
{ "word": "speech", "translation": "演讲" },
|
||
{ "word": "speed", "translation": "速度" },
|
||
{ "word": "spell", "translation": "拼写" },
|
||
{ "word": "spelling", "translation": "拼写" },
|
||
{ "word": "spend", "translation": "花费" },
|
||
{ "word": "spending", "translation": "开支" },
|
||
{ "word": "sphere", "translation": "球体,领域" },
|
||
{ "word": "spice", "translation": "香料" },
|
||
{ "word": "spider", "translation": "蜘蛛" },
|
||
{ "word": "spill", "translation": "溢出" },
|
||
{ "word": "spin", "translation": "旋转" },
|
||
{ "word": "spine", "translation": "脊椎" },
|
||
{ "word": "spirit", "translation": "精神" },
|
||
{ "word": "spiritual", "translation": "精神上的" },
|
||
{ "word": "spit", "translation": "吐痰" },
|
||
{ "word": "spite", "translation": " spite of 不顾, spiteful 恶意的" },
|
||
{ "word": "split", "translation": "分裂" },
|
||
{ "word": "spoil", "translation": "宠坏, spoilt (BrE past participle)" },
|
||
{ "word": "spoken", "translation": "口语的" },
|
||
{ "word": "spokesman", "translation": "发言人 (male)" },
|
||
{ "word": "spokesperson", "translation": "发言人" },
|
||
{ "word": "spokeswoman", "translation": "发言人 (female)" },
|
||
{ "word": "sponsor", "translation": "赞助商,赞助" },
|
||
{ "word": "sponsorship", "translation": "赞助" },
|
||
{ "word": "spoon", "translation": "勺子" },
|
||
{ "word": "sport", "translation": "运动" },
|
||
{ "word": "sporting", "translation": "体育的" },
|
||
{ "word": "spot", "translation": "地点, spot on 完全正确" },
|
||
{ "word": "spotlight", "translation": "聚光灯" },
|
||
{ "word": "spouse", "translation": "配偶" },
|
||
{ "word": "spread", "translation": "传播, spread out 展开" },
|
||
{ "word": "spring", "translation": "春天,弹簧" },
|
||
{ "word": "spy", "translation": "间谍" },
|
||
{ "word": "squad", "translation": "小队" },
|
||
{ "word": "square", "translation": "正方形的,广场" },
|
||
{ "word": "squeeze", "translation": "挤压" },
|
||
{ "word": "stab", "translation": "刺" },
|
||
{ "word": "stability", "translation": "稳定性" },
|
||
{ "word": "stabilize", "translation": "稳定 (AmE)" },
|
||
{ "word": "stabilise", "translation": "稳定 (BrE)" },
|
||
{ "word": "stable", "translation": "稳定的,马厩" },
|
||
{ "word": "stadium", "translation": "体育场" },
|
||
{ "word": "staff", "translation": "员工" },
|
||
{ "word": "stage", "translation": "舞台,阶段" },
|
||
{ "word": "stagger", "translation": "蹒跚, staggered 错开的" },
|
||
{ "word": "stair", "translation": "楼梯" },
|
||
{ "word": "stake", "translation": "股份, stakeholder 利益相关者" },
|
||
{ "word": "stall", "translation": "摊位, stall tactic 拖延策略" },
|
||
{ "word": "stamp", "translation": "邮票" },
|
||
{ "word": "stance", "translation": "立场" },
|
||
{ "word": "stand", "translation": "站立, stand for 代表" },
|
||
{ "word": "standard", "translation": "标准" },
|
||
{ "word": "standing", "translation": " standing ovation 起立鼓掌, standing committee 常设委员会" },
|
||
{ "word": "star", "translation": "星星" },
|
||
{ "word": "stare", "translation": "凝视" },
|
||
{ "word": "stark", "translation": "严酷的, stark contrast 鲜明对比" },
|
||
{ "word": "start", "translation": "开始" },
|
||
{ "word": "starve", "translation": "饿死" },
|
||
{ "word": "state", "translation": "国家,陈述" },
|
||
{ "word": "statement", "translation": "声明" },
|
||
{ "word": "station", "translation": "车站" },
|
||
{ "word": "statistical", "translation": "统计的" },
|
||
{ "word": "statistics", "translation": "统计数据" },
|
||
{ "word": "statue", "translation": "雕像" },
|
||
{ "word": "status", "translation": "地位" },
|
||
{ "word": "statute", "translation": "法令" },
|
||
{ "word": "stay", "translation": "停留" },
|
||
{ "word": "steadily", "translation": "稳定地" },
|
||
{ "word": "steady", "translation": "稳定的" },
|
||
{ "word": "steal", "translation": "偷" },
|
||
{ "word": "steam", "translation": "蒸汽" },
|
||
{ "word": "steel", "translation": "钢铁" },
|
||
{ "word": "steep", "translation": "陡峭的, steep price 昂贵的价格" },
|
||
{ "word": "steer", "translation": "引导, steer clear of 避开" },
|
||
{ "word": "stem", "translation": "茎, stem from 源于" },
|
||
{ "word": "step", "translation": "步骤" },
|
||
{ "word": "stereotype", "translation": "刻板印象" },
|
||
{ "word": "stick", "translation": "粘住, stick to 坚持" },
|
||
{ "word": "sticky", "translation": "粘的" },
|
||
{ "word": "stiff", "translation": "僵硬的, stiff fine 严厉的罚款" },
|
||
{ "word": "still", "translation": "仍然,静止的" },
|
||
{ "word": "stimulate", "translation": "刺激,激发" },
|
||
{ "word": "stimulus", "translation": "刺激物" },
|
||
{ "word": "stir", "translation": "搅拌, stir up 激起" },
|
||
{ "word": "stock", "translation": "库存,股票" },
|
||
{ "word": "stomach", "translation": "胃" },
|
||
{ "word": "stone", "translation": "石头" },
|
||
{ "word": "stool", "translation": "凳子" },
|
||
{ "word": "stop", "translation": "停止" },
|
||
{ "word": "storage", "translation": "储存" },
|
||
{ "word": "store", "translation": "商店,储存" },
|
||
{ "word": "storm", "translation": "风暴" },
|
||
{ "word": "story", "translation": "故事" },
|
||
{ "word": "straight", "translation": "直接的,笔直的" },
|
||
{ "word": "straightforward", "translation": "直接的,简单明了的" },
|
||
{ "word": "strain", "translation": "拉紧, strain on 对...的压力" },
|
||
{ "word": "strand", "translation": "股, strand of hair 一缕头发" },
|
||
{ "word": "strange", "translation": "奇怪的" },
|
||
{ "word": "stranger", "translation": "陌生人" },
|
||
{ "word": "strategic", "translation": "战略的" },
|
||
{ "word": "strategy", "translation": "战略" },
|
||
{ "word": "straw", "translation": "稻草" },
|
||
{ "word": "stream", "translation": "溪流" },
|
||
{ "word": "street", "translation": "街道" },
|
||
{ "word": "strength", "translation": "力量" },
|
||
{ "word": "strengthen", "translation": "加强" },
|
||
{ "word": "stress", "translation": "压力,强调" },
|
||
{ "word": "stretch", "translation": "伸展" },
|
||
{ "word": "strict", "translation": "严格的" },
|
||
{ "word": "strictly", "translation": "严格地" },
|
||
{ "word": "strike", "translation": "罢工,打击" },
|
||
{ "word": "striking", "translation": "引人注目的, striking distance 伸手可及的距离" },
|
||
{ "word": "string", "translation": "绳子, string together 连接" },
|
||
{ "word": "strip", "translation": "脱掉, strip away 剥离" },
|
||
{ "word": "strive", "translation": "努力奋斗" },
|
||
{ "word": "stroke", "translation": "中风,抚摸" },
|
||
{ "word": "strong", "translation": "强壮的" },
|
||
{ "word": "strongly", "translation": "强烈地" },
|
||
{ "word": "structural", "translation": "结构的" },
|
||
{ "word": "structure", "translation": "结构" },
|
||
{ "word": "struggle", "translation": "斗争" },
|
||
{ "word": "student", "translation": "学生" },
|
||
{ "word": "studio", "translation": "工作室" },
|
||
{ "word": "study", "translation": "学习,书房" },
|
||
{ "word": "stuff", "translation": "东西" },
|
||
{ "word": "stumble", "translation": "绊倒" },
|
||
{ "word": "stun", "translation": "使震惊" },
|
||
{ "word": "stunning", "translation": "极好的" },
|
||
{ "word": "stupid", "translation": "愚蠢的" },
|
||
{ "word": "style", "translation": "风格" },
|
||
{ "word": "subject", "translation": "主题,学科, subject to 受制于" },
|
||
{ "word": "submission", "translation": "提交,屈服" },
|
||
{ "word": "submit", "translation": "提交" },
|
||
{ "word": "subscriber", "translation": "订阅者" },
|
||
{ "word": "subscription", "translation": "订阅" },
|
||
{ "word": "subsequent", "translation": "随后的" },
|
||
{ "word": "subsequently", "translation": "随后" },
|
||
{ "word": "subsidiary", "translation": "附属的,子公司" },
|
||
{ "word": "subsidy", "translation": "补贴" },
|
||
{ "word": "substance", "translation": "物质" },
|
||
{ "word": "substantial", "translation": "大量的,实质的" },
|
||
{ "word": "substantially", "translation": "大量地" },
|
||
{ "word": "substitute", "translation": "替代品,替代" },
|
||
{ "word": "substitution", "translation": "替代" },
|
||
{ "word": "subtle", "translation": "微妙的" },
|
||
{ "word": "suburb", "translation": "郊区" },
|
||
{ "word": "suburban", "translation": "郊区的" },
|
||
{ "word": "succeed", "translation": "成功" },
|
||
{ "word": "success", "translation": "成功" },
|
||
{ "word": "successful", "translation": "成功的" },
|
||
{ "word": "successfully", "translation": "成功地" },
|
||
{ "word": "succession", "translation": "连续, succession of 一系列" },
|
||
{ "word": "successive", "translation": "连续的" },
|
||
{ "word": "successor", "translation": "继任者" },
|
||
{ "word": "such", "translation": "这样的" },
|
||
{ "word": "suck", "translation": "吸" },
|
||
{ "word": "sudden", "translation": "突然的" },
|
||
{ "word": "suddenly", "translation": "突然地" },
|
||
{ "word": "sue", "translation": "起诉" },
|
||
{ "word": "suffer", "translation": "遭受" },
|
||
{ "word": "suffering", "translation": "痛苦" },
|
||
{ "word": "sufficient", "translation": "足够的" },
|
||
{ "word": "sufficiently", "translation": "足够地" },
|
||
{ "word": "sugar", "translation": "糖" },
|
||
{ "word": "suggest", "translation": "建议" },
|
||
{ "word": "suggestion", "translation": "建议" },
|
||
{ "word": "suicide", "translation": "自杀" },
|
||
{ "word": "suit", "translation": "套装,适合" },
|
||
{ "word": "suitable", "translation": "合适的" },
|
||
{ "word": "suite", "translation": "套房" },
|
||
{ "word": "sum", "translation": "总数" },
|
||
{ "word": "summarize", "translation": "总结 (AmE)" },
|
||
{ "word": "summarise", "translation": "总结 (BrE)" },
|
||
{ "word": "summary", "translation": "摘要" },
|
||
{ "word": "summer", "translation": "夏天" },
|
||
{ "word": "summit", "translation": "顶峰" },
|
||
{ "word": "sun", "translation": "太阳" },
|
||
{ "word": "Sunday", "translation": "星期日" },
|
||
{ "word": "super", "translation": "超级的" },
|
||
{ "word": "superb", "translation": "极好的" },
|
||
{ "word": "superior", "translation": "上级的,优越的" },
|
||
{ "word": "supermarket", "translation": "超市" },
|
||
{ "word": "supervise", "translation": "监督" },
|
||
{ "word": "supervision", "translation": "监督" },
|
||
{ "word": "supervisor", "translation": "监督者" },
|
||
{ "word": "supplement", "translation": "补充" },
|
||
{ "word": "supply", "translation": "供应" },
|
||
{ "word": "support", "translation": "支持" },
|
||
{ "word": "supporter", "translation": "支持者" },
|
||
{ "word": "supportive", "translation": "支持的" },
|
||
{ "word": "suppose", "translation": "假设" },
|
||
{ "word": "supposedly", "translation": "据说" },
|
||
{ "word": "suppress", "translation": "压制" },
|
||
{ "word": "supreme", "translation": "最高的" },
|
||
{ "word": "sure", "translation": "确定的" },
|
||
{ "word": "surely", "translation": "肯定地" },
|
||
{ "word": "surface", "translation": "表面" },
|
||
{ "word": "surge", "translation": "激增" },
|
||
{ "word": "surgeon", "translation": "外科医生" },
|
||
{ "word": "surgery", "translation": "外科,手术" },
|
||
{ "word": "surgical", "translation": "外科的" },
|
||
{ "word": "surplus", "translation": "盈余" },
|
||
{ "word": "surprise", "translation": "惊喜" },
|
||
{ "word": "surprised", "translation": "惊讶的" },
|
||
{ "word": "surprising", "translation": "令人惊讶的" },
|
||
{ "word": "surprisingly", "translation": "令人惊讶地" },
|
||
{ "word": "surrender", "translation": "投降" },
|
||
{ "word": "surround", "translation": "围绕" },
|
||
{ "word": "surrounding", "translation": "周围的" },
|
||
{ "word": "surveillance", "translation": "监视" },
|
||
{ "word": "survey", "translation": "调查" },
|
||
{ "word": "survival", "translation": "生存" },
|
||
{ "word": "survive", "translation": "生存" },
|
||
{ "word": "survivor", "translation": "幸存者" },
|
||
{ "word": "suspect", "translation": "嫌疑人,怀疑" },
|
||
{ "word": "suspend", "translation": "暂停" },
|
||
{ "word": "suspension", "translation": "暂停" },
|
||
{ "word": "suspicion", "translation": "怀疑" },
|
||
{ "word": "suspicious", "translation": "可疑的" },
|
||
{ "word": "sustain", "translation": "维持" },
|
||
{ "word": "sustainable", "translation": "可持续的" },
|
||
{ "word": "swallow", "translation": "吞咽,燕子" },
|
||
{ "word": "swear", "translation": "发誓, swear at 诅骂" },
|
||
{ "word": "sweat", "translation": "汗水" },
|
||
{ "word": "sweater", "translation": "毛衣" },
|
||
{ "word": "sweep", "translation": "扫" },
|
||
{ "word": "sweet", "translation": "甜的" },
|
||
{ "word": "swell", "translation": "肿胀" },
|
||
{ "word": "swim", "translation": "游泳" },
|
||
{ "word": "swimming", "translation": "游泳" },
|
||
{ "word": "swing", "translation": "摇摆" },
|
||
{ "word": "switch", "translation": "开关,转换" },
|
||
{ "word": "sword", "translation": "剑" },
|
||
{ "word": "symbol", "translation": "象征" },
|
||
{ "word": "symbolic", "translation": "象征性的" },
|
||
{ "word": "sympathetic", "translation": "同情的" },
|
||
{ "word": "sympathy", "translation": "同情" },
|
||
{ "word": "symptom", "translation": "症状" },
|
||
{ "word": "syndrome", "translation": "综合征" },
|
||
{ "word": "synthesis", "translation": "合成" },
|
||
{ "word": "system", "translation": "系统" },
|
||
{ "word": "systematic", "translation": "系统的" },
|
||
{ "word": "table", "translation": "桌子" },
|
||
{ "word": "tablet", "translation": "药片,平板电脑" },
|
||
{ "word": "tackle", "translation": "处理, tackle a problem 解决问题" },
|
||
{ "word": "tactic", "translation": "战术" },
|
||
{ "word": "tag", "translation": "标签" },
|
||
{ "word": "tail", "translation": "尾巴" },
|
||
{ "word": "take", "translation": "拿, take into account 考虑到" },
|
||
{ "word": "tale", "translation": "故事" },
|
||
{ "word": "talent", "translation": "天赋" },
|
||
{ "word": "talented", "translation": "有才华的" },
|
||
{ "word": "talk", "translation": "谈话" },
|
||
{ "word": "tall", "translation": "高的" },
|
||
{ "word": "tank", "translation": "坦克,水箱" },
|
||
{ "word": "tap", "translation": "水龙头,轻拍" },
|
||
{ "word": "tape", "translation": "磁带,胶带" },
|
||
{ "word": "target", "translation": "目标" },
|
||
{ "word": "task", "translation": "任务" },
|
||
{ "word": "taste", "translation": "味道,品味" },
|
||
{ "word": "tax", "translation": "税" },
|
||
{ "word": "taxi", "translation": "出租车" },
|
||
{ "word": "taxpayer", "translation": "纳税人" },
|
||
{ "word": "tea", "translation": "茶" },
|
||
{ "word": "teach", "translation": "教" },
|
||
{ "word": "teacher", "translation": "老师" },
|
||
{ "word": "teaching", "translation": "教学" },
|
||
{ "word": "team", "translation": "团队" },
|
||
{ "word": "tear", "translation": "眼泪,撕裂" },
|
||
{ "word": "technical", "translation": "技术的" },
|
||
{ "word": "technique", "translation": "技巧" },
|
||
{ "word": "technology", "translation": "技术" },
|
||
{ "word": "teenage", "translation": "十几岁的" },
|
||
{ "word": "teenager", "translation": "青少年" },
|
||
{ "word": "telecommunications", "translation": "电信" },
|
||
{ "word": "telephone", "translation": "电话" },
|
||
{ "word": "telescope", "translation": "望远镜" },
|
||
{ "word": "television", "translation": "电视" },
|
||
{ "word": "tell", "translation": "告诉" },
|
||
{ "word": "temperature", "translation": "温度" },
|
||
{ "word": "temple", "translation": "寺庙,太阳穴" },
|
||
{ "word": "temporarily", "translation": "暂时地" },
|
||
{ "word": "temporary", "translation": "临时的" },
|
||
{ "word": "tempt", "translation": "诱惑" },
|
||
{ "word": "ten", "translation": "十" },
|
||
{ "word": "tenant", "translation": "租户" },
|
||
{ "word": "tend", "translation": "倾向于" },
|
||
{ "word": "tendency", "translation": "趋势" },
|
||
{ "word": "tender", "translation": "嫩的,投标" },
|
||
{ "word": "tennis", "translation": "网球" },
|
||
{ "word": "tension", "translation": "紧张" },
|
||
{ "word": "tent", "translation": "帐篷" },
|
||
{ "word": "tenure", "translation": "任期" },
|
||
{ "word": "term", "translation": "术语,学期" },
|
||
{ "word": "terminal", "translation": "终端,晚期的" },
|
||
{ "word": "terminate", "translation": "终止" },
|
||
{ "word": "terms", "translation": "条款, terms of trade 贸易条件" },
|
||
{ "word": "terrain", "translation": "地形" },
|
||
{ "word": "terrible", "translation": "可怕的" },
|
||
{ "word": "terribly", "translation": "可怕地" },
|
||
{ "word": "terrific", "translation": "极好的" },
|
||
{ "word": "terrify", "translation": "使害怕" },
|
||
{ "word": "territory", "translation": "领土" },
|
||
{ "word": "terror", "translation": "恐怖" },
|
||
{ "word": "terrorism", "translation": "恐怖主义" },
|
||
{ "word": "terrorist", "translation": "恐怖分子" },
|
||
{ "word": "test", "translation": "测试" },
|
||
{ "word": "testify", "translation": "作证" },
|
||
{ "word": "testimony", "translation": "证词" },
|
||
{ "word": "testing", "translation": "测试" },
|
||
{ "word": "text", "translation": "文本" },
|
||
{ "word": "textbook", "translation": "教科书" },
|
||
{ "word": "texture", "translation": "质地" },
|
||
{ "word": "than", "translation": "比" },
|
||
{ "word": "thank", "translation": "感谢" },
|
||
{ "word": "thanks", "translation": "谢谢" },
|
||
{ "word": "that", "translation": "那个" },
|
||
{ "word": "the", "translation": "这个,那个 (定冠词)" },
|
||
{ "word": "theatre", "translation": "剧院 (BrE)" },
|
||
{ "word": "theater", "translation": "剧院 (AmE)" },
|
||
{ "word": "theatrical", "translation": "戏剧的" },
|
||
{ "word": "their", "translation": "他们的" },
|
||
{ "word": "theirs", "translation": "他们的 (名词性物主代词)" },
|
||
{ "word": "them", "translation": "他们 (宾格)" },
|
||
{ "word": "theme", "translation": "主题" },
|
||
{ "word": "themselves", "translation": "他们自己" },
|
||
{ "word": "then", "translation": "然后" },
|
||
{ "word": "theology", "translation": "神学" },
|
||
{ "word": "theoretical", "translation": "理论的" },
|
||
{ "word": "theory", "translation": "理论" },
|
||
{ "word": "therapist", "translation": "治疗师" },
|
||
{ "word": "therapy", "translation": "治疗" },
|
||
{ "word": "there", "translation": "那里" },
|
||
{ "word": "thereafter", "translation": "此后" },
|
||
{ "word": "thereby", "translation": "因此" },
|
||
{ "word": "therefore", "translation": "因此" },
|
||
{ "word": "thesis", "translation": "论文" },
|
||
{ "word": "they", "translation": "他们" },
|
||
{ "word": "thick", "translation": "厚的" },
|
||
{ "word": "thief", "translation": "小偷" },
|
||
{ "word": "thin", "translation": "薄的,瘦的" },
|
||
{ "word": "thing", "translation": "事情" },
|
||
{ "word": "think", "translation": "思考" },
|
||
{ "word": "thinking", "translation": "思考" },
|
||
{ "word": "third", "translation": "第三" },
|
||
{ "word": "thirsty", "translation": "渴的" },
|
||
{ "word": "thirteen", "translation": "十三" },
|
||
{ "word": "thirty", "translation": "三十" },
|
||
{ "word": "this", "translation": "这个" },
|
||
{ "word": "thorough", "translation": "彻底的" },
|
||
{ "word": "thoroughly", "translation": "彻底地" },
|
||
{ "word": "though", "translation": "虽然" },
|
||
{ "word": "thought", "translation": "想法, think 的过去式" },
|
||
{ "word": "thousand", "translation": "千" },
|
||
{ "word": "thread", "translation": "线" },
|
||
{ "word": "threat", "translation": "威胁" },
|
||
{ "word": "threaten", "translation": "威胁" },
|
||
{ "word": "three", "translation": "三" },
|
||
{ "word": "threshold", "translation": "门槛, threshold level 起始水平" },
|
||
{ "word": "thrive", "translation": "繁荣" },
|
||
{ "word": "throat", "translation": "喉咙" },
|
||
{ "word": "through", "translation": "通过" },
|
||
{ "word": "throughout", "translation": "遍及" },
|
||
{ "word": "throw", "translation": "扔" },
|
||
{ "word": "thumb", "translation": "拇指" },
|
||
{ "word": "Thursday", "translation": "星期四" },
|
||
{ "word": "thus", "translation": "因此" },
|
||
{ "word": "ticket", "translation": "票" },
|
||
{ "word": "tide", "translation": "潮汐" },
|
||
{ "word": "tidy", "translation": "整洁的" },
|
||
{ "word": "tie", "translation": "领带,系" },
|
||
{ "word": "tight", "translation": "紧的" },
|
||
{ "word": "tighten", "translation": "收紧" },
|
||
{ "word": "till", "translation": "直到 ( = until)" },
|
||
{ "word": "timber", "translation": "木材" },
|
||
{ "word": "time", "translation": "时间" },
|
||
{ "word": "timely", "translation": "及时的" },
|
||
{ "word": "timing", "translation": "时机" },
|
||
{ "word": "tin", "translation": "锡,罐头" },
|
||
{ "word": "tiny", "translation": "微小的" },
|
||
{ "word": "tip", "translation": "小费,尖端" },
|
||
{ "word": "tired", "translation": "累的" },
|
||
{ "word": "tissue", "translation": "组织,纸巾" },
|
||
{ "word": "title", "translation": "标题" },
|
||
{ "word": "to", "translation": "到,向 (介词)" },
|
||
{ "word": "tobacco", "translation": "烟草" },
|
||
{ "word": "today", "translation": "今天" },
|
||
{ "word": "toe", "translation": "脚趾" },
|
||
{ "word": "together", "translation": "一起" },
|
||
{ "word": "toilet", "translation": "厕所" },
|
||
{ "word": "tolerance", "translation": "容忍" },
|
||
{ "word": "tolerate", "translation": "容忍" },
|
||
{ "word": "toll", "translation": " toll bridge 收费桥, toll on 造成损失" },
|
||
{ "word": "tomato", "translation": "西红柿" },
|
||
{ "word": "tomorrow", "translation": "明天" },
|
||
{ "word": "ton", "translation": "吨" },
|
||
{ "word": "tone", "translation": "音调,语气" },
|
||
{ "word": "tongue", "translation": "舌头" },
|
||
{ "word": "tonight", "translation": "今晚" },
|
||
{ "word": "tonne", "translation": "吨 (公吨, BrE)" },
|
||
{ "word": "too", "translation": "太,也" },
|
||
{ "word": "tool", "translation": "工具" },
|
||
{ "word": "tooth", "translation": "牙齿" },
|
||
{ "word": "top", "translation": "顶部" },
|
||
{ "word": "topic", "translation": "话题" },
|
||
{ "word": "torture", "translation": "折磨" },
|
||
{ "word": "toss", "translation": "投掷" },
|
||
{ "word": "total", "translation": "总数的" },
|
||
{ "word": "totally", "translation": "完全地" },
|
||
{ "word": "touch", "translation": "触摸" },
|
||
{ "word": "tough", "translation": "艰难的, tough on 对...苛刻" },
|
||
{ "word": "tour", "translation": "旅游" },
|
||
{ "word": "tourism", "translation": "旅游业" },
|
||
{ "word": "tourist", "translation": "游客" },
|
||
{ "word": "tournament", "translation": "锦标赛" },
|
||
{ "word": "toward", "translation": "朝,向 (AmE)" },
|
||
{ "word": "towards", "translation": "朝,向 (BrE)" },
|
||
{ "word": "tower", "translation": "塔" },
|
||
{ "word": "town", "translation": "城镇" },
|
||
{ "word": "toxic", "translation": "有毒的" },
|
||
{ "word": "toy", "translation": "玩具" },
|
||
{ "word": "trace", "translation": "痕迹,追踪" },
|
||
{ "word": "track", "translation": "轨道,跟踪" },
|
||
{ "word": "trade", "translation": "贸易" },
|
||
{ "word": "trademark", "translation": "商标" },
|
||
{ "word": "trading", "translation": "贸易" },
|
||
{ "word": "tradition", "translation": "传统" },
|
||
{ "word": "traditional", "translation": "传统的" },
|
||
{ "word": "traffic", "translation": "交通" },
|
||
{ "word": "tragedy", "translation": "悲剧" },
|
||
{ "word": "tragic", "translation": "悲剧的" },
|
||
{ "word": "trail", "translation": "小径, trail behind 落后" },
|
||
{ "word": "trailer", "translation": "拖车" },
|
||
{ "word": "train", "translation": "火车,训练" },
|
||
{ "word": "trainer", "translation": "教练,运动鞋" },
|
||
{ "word": "training", "translation": "训练" },
|
||
{ "word": "trait", "translation": "特征" },
|
||
{ "word": "transaction", "translation": "交易" },
|
||
{ "word": "transcript", "translation": "成绩单" },
|
||
{ "word": "transfer", "translation": "转移" },
|
||
{ "word": "transform", "translation": "改变" },
|
||
{ "word": "transformation", "translation": "改变" },
|
||
{ "word": "transit", "translation": "运输, transit van 运输车" },
|
||
{ "word": "transition", "translation": "过渡" },
|
||
{ "word": "translate", "translation": "翻译" },
|
||
{ "word": "translation", "translation": "翻译" },
|
||
{ "word": "transmission", "translation": "传输,变速器" },
|
||
{ "word": "transmit", "translation": "传输" },
|
||
{ "word": "transport", "translation": "运输" },
|
||
{ "word": "transportation", "translation": "运输" },
|
||
{ "word": "trap", "translation": "陷阱" },
|
||
{ "word": "trauma", "translation": "创伤" },
|
||
{ "word": "travel", "translation": "旅行" },
|
||
{ "word": "traveler", "translation": "旅行者 (AmE)" },
|
||
{ "word": "traveller", "translation": "旅行者 (BrE)" },
|
||
{ "word": "treasure", "translation": "宝藏" },
|
||
{ "word": "treat", "translation": "对待, treat sb to sth 请客" },
|
||
{ "word": "treatment", "translation": "治疗" },
|
||
{ "word": "treaty", "translation": "条约" },
|
||
{ "word": "tree", "translation": "树" },
|
||
{ "word": "tremendous", "translation": "巨大的" },
|
||
{ "word": "trend", "translation": "趋势" },
|
||
{ "word": "trial", "translation": "试验,审判" },
|
||
{ "word": "triangle", "translation": "三角形" },
|
||
{ "word": "tribal", "translation": "部落的" },
|
||
{ "word": "tribe", "translation": "部落" },
|
||
{ "word": "tribunal", "translation": "法庭" },
|
||
{ "word": "tribute", "translation": "致敬" },
|
||
{ "word": "trick", "translation": "诡计" },
|
||
{ "word": "trigger", "translation": "触发" },
|
||
{ "word": "trillion", "translation": "万亿" },
|
||
{ "word": "trio", "translation": "三人组" },
|
||
{ "word": "trip", "translation": "旅行" },
|
||
{ "word": "triumph", "translation": "胜利" },
|
||
{ "word": "troop", "translation": "军队" },
|
||
{ "word": "trophy", "translation": "奖杯" },
|
||
{ "word": "tropical", "translation": "热带的" },
|
||
{ "word": "trouble", "translation": "麻烦" },
|
||
{ "word": "troubled", "translation": "困扰的" },
|
||
{ "word": "trousers", "translation": "裤子" },
|
||
{ "word": "truck", "translation": "卡车 (AmE)" },
|
||
{ "word": "lorry", "translation": "卡车 (BrE)" },
|
||
{ "word": "true", "translation": "真实的" },
|
||
{ "word": "truly", "translation": "真实地" },
|
||
{ "word": "trust", "translation": "信任" },
|
||
{ "word": "trustee", "translation": "受托人" },
|
||
{ "word": "truth", "translation": "真相" },
|
||
{ "word": "try", "translation": "尝试" },
|
||
{ "word": "tsunami", "translation": "海啸" },
|
||
{ "word": "tube", "translation": "管子,地铁 (BrE)" },
|
||
{ "word": "Tuesday", "translation": "星期二" },
|
||
{ "word": "tuition", "translation": "学费" },
|
||
{ "word": "tune", "translation": "曲调" },
|
||
{ "word": "tunnel", "translation": "隧道" },
|
||
{ "word": "turn", "translation": "转动" },
|
||
{ "word": "turnout", "translation": " turnout rate 出席率" },
|
||
{ "word": "turnover", "translation": "营业额" },
|
||
{ "word": "TV", "translation": "电视" },
|
||
{ "word": "twelve", "translation": "十二" },
|
||
{ "word": "twenty", "translation": "二十" },
|
||
{ "word": "twice", "translation": "两次" },
|
||
{ "word": "twin", "translation": "双胞胎的" },
|
||
{ "word": "twist", "translation": "扭转" },
|
||
{ "word": "two", "translation": "二" },
|
||
{ "word": "type", "translation": "类型,打字" },
|
||
{ "word": "typical", "translation": "典型的" },
|
||
{ "word": "typically", "translation": "典型地" },
|
||
{ "word": "tyre", "translation": "轮胎 (BrE)" },
|
||
{ "word": "ugly", "translation": "丑陋的" },
|
||
{ "word": "ultimate", "translation": "最终的" },
|
||
{ "word": "ultimately", "translation": "最终" },
|
||
{ "word": "umbrella", "translation": "雨伞" },
|
||
{ "word": "unable", "translation": "不能的" },
|
||
{ "word": "unacceptable", "translation": "不可接受的" },
|
||
{ "word": "uncertainty", "translation": "不确定性" },
|
||
{ "word": "uncle", "translation": "叔叔" },
|
||
{ "word": "uncomfortable", "translation": "不舒服的" },
|
||
{ "word": "unconscious", "translation": "无意识的" },
|
||
{ "word": "under", "translation": "在...下面" },
|
||
{ "word": "undergo", "translation": "经历" },
|
||
{ "word": "undergraduate", "translation": "本科生" },
|
||
{ "word": "underground", "translation": "地下的" },
|
||
{ "word": "underlying", "translation": "潜在的,根本的" },
|
||
{ "word": "undermine", "translation": "破坏" },
|
||
{ "word": "understand", "translation": "理解" },
|
||
{ "word": "understanding", "translation": "理解" },
|
||
{ "word": "undertake", "translation": "承担" },
|
||
{ "word": "underwear", "translation": "内衣" },
|
||
{ "word": "undoubtedly", "translation": "无疑地" },
|
||
{ "word": "uneasy", "translation": "不安的" },
|
||
{ "word": "unemployed", "translation": "失业的" },
|
||
{ "word": "unemployment", "translation": "失业" },
|
||
{ "word": "unexpected", "translation": "意外的" },
|
||
{ "word": "unfair", "translation": "不公平的" },
|
||
{ "word": "unfold", "translation": "展开" },
|
||
{ "word": "unfortunate", "translation": "不幸的" },
|
||
{ "word": "unfortunately", "translation": "不幸地" },
|
||
{ "word": "unhappy", "translation": "不快乐的" },
|
||
{ "word": "uniform", "translation": "制服" },
|
||
{ "word": "unify", "translation": "统一" },
|
||
{ "word": "union", "translation": "工会,联合" },
|
||
{ "word": "unique", "translation": "独特的" },
|
||
{ "word": "unit", "translation": "单位" },
|
||
{ "word": "unite", "translation": "联合" },
|
||
{ "word": "united", "translation": "联合的" },
|
||
{ "word": "unity", "translation": "团结" },
|
||
{ "word": "universal", "translation": "普遍的" },
|
||
{ "word": "universe", "translation": "宇宙" },
|
||
{ "word": "university", "translation": "大学" },
|
||
{ "word": "unknown", "translation": "未知的" },
|
||
{ "word": "unless", "translation": "除非" },
|
||
{ "word": "unlike", "translation": "不像" },
|
||
{ "word": "unlikely", "translation": "不太可能的" },
|
||
{ "word": "unprecedented", "translation": "前所未有的" },
|
||
{ "word": "until", "translation": "直到" },
|
||
{ "word": "unusual", "translation": "不寻常的" },
|
||
{ "word": "unveil", "translation": "揭幕,公布" },
|
||
{ "word": "up", "translation": "向上" },
|
||
{ "word": "upcoming", "translation": "即将到来的" },
|
||
{ "word": "update", "translation": "更新" },
|
||
{ "word": "upgrade", "translation": "升级" },
|
||
{ "word": "uphold", "translation": "支持,维护" },
|
||
{ "word": "upon", "translation": "在...上" },
|
||
{ "word": "upper", "translation": "上层的" },
|
||
{ "word": "upset", "translation": "使不安" },
|
||
{ "word": "upstairs", "translation": "在楼上" },
|
||
{ "word": "upwards", "translation": "向上地" },
|
||
{ "word": "urban", "translation": "城市的" },
|
||
{ "word": "urge", "translation": "催促" },
|
||
{ "word": "urgent", "translation": "紧急的" },
|
||
{ "word": "us", "translation": "我们" },
|
||
{ "word": "usage", "translation": "用法" },
|
||
{ "word": "use", "translation": "使用" },
|
||
{ "word": "used", "translation": "用过的, used to 过去常常" },
|
||
{ "word": "used to", "translation": "过去常常" },
|
||
{ "word": "useful", "translation": "有用的" },
|
||
{ "word": "useless", "translation": "无用的" },
|
||
{ "word": "user", "translation": "用户" },
|
||
{ "word": "usual", "translation": "通常的" },
|
||
{ "word": "usually", "translation": "通常" },
|
||
{ "word": "utility", "translation": "公用事业,实用性" },
|
||
{ "word": "utilize", "translation": "利用 (AmE)" },
|
||
{ "word": "utilise", "translation": "利用 (BrE)" },
|
||
{ "word": "utterly", "translation": "完全地" },
|
||
{ "word": "vacation", "translation": "假期 (AmE)" },
|
||
{ "word": "vacuum", "translation": "真空" },
|
||
{ "word": "vague", "translation": "模糊的" },
|
||
{ "word": "valid", "translation": "有效的" },
|
||
{ "word": "validity", "translation": "有效性" },
|
||
{ "word": "valley", "translation": "山谷" },
|
||
{ "word": "valuable", "translation": "有价值的" },
|
||
{ "word": "value", "translation": "价值" },
|
||
{ "word": "van", "translation": "面包车" },
|
||
{ "word": "vanish", "translation": "消失" },
|
||
{ "word": "variable", "translation": "可变的,变量" },
|
||
{ "word": "variation", "translation": "变化" },
|
||
{ "word": "varied", "translation": "各种各样的" },
|
||
{ "word": "variety", "translation": "多样性" },
|
||
{ "word": "various", "translation": "各种各样的" },
|
||
{ "word": "vary", "translation": "变化" },
|
||
{ "word": "vast", "translation": "巨大的" },
|
||
{ "word": "vegetable", "translation": "蔬菜" },
|
||
{ "word": "vehicle", "translation": "车辆" },
|
||
{ "word": "vein", "translation": "静脉" },
|
||
{ "word": "venture", "translation": "冒险" },
|
||
{ "word": "venue", "translation": "场所" },
|
||
{ "word": "verb", "translation": "动词" },
|
||
{ "word": "verbal", "translation": "言语的" },
|
||
{ "word": "verdict", "translation": "裁决" },
|
||
{ "word": "verify", "translation": "核实" },
|
||
{ "word": "verse", "translation": "诗句" },
|
||
{ "word": "version", "translation": "版本" },
|
||
{ "word": "versus", "translation": "对抗" },
|
||
{ "word": "vertical", "translation": "垂直的" },
|
||
{ "word": "very", "translation": "非常" },
|
||
{ "word": "vessel", "translation": "船只,血管" },
|
||
{ "word": "veteran", "translation": "老兵" },
|
||
{ "word": "via", "translation": "通过" },
|
||
{ "word": "viable", "translation": "可行的" },
|
||
{ "word": "vibrant", "translation": "充满活力的" },
|
||
{ "word": "vice", "translation": "副的,恶习" },
|
||
{ "word": "vicious", "translation": "恶毒的" },
|
||
{ "word": "victim", "translation": "受害者" },
|
||
{ "word": "victory", "translation": "胜利" },
|
||
{ "word": "video", "translation": "视频" },
|
||
{ "word": "view", "translation": "观点,景色" },
|
||
{ "word": "viewer", "translation": "观看者" },
|
||
{ "word": "viewpoint", "translation": "观点" },
|
||
{ "word": "village", "translation": "村庄" },
|
||
{ "word": "villager", "translation": "村民" },
|
||
{ "word": "violate", "translation": "违反" },
|
||
{ "word": "violation", "translation": "违反" },
|
||
{ "word": "violence", "translation": "暴力" },
|
||
{ "word": "violent", "translation": "暴力的" },
|
||
{ "word": "virtual", "translation": "虚拟的" },
|
||
{ "word": "virtually", "translation": "几乎" },
|
||
{ "word": "virtue", "translation": "美德" },
|
||
{ "word": "virus", "translation": "病毒" },
|
||
{ "word": "visa", "translation": "签证" },
|
||
{ "word": "visible", "translation": "可见的" },
|
||
{ "word": "vision", "translation": "视力,愿景" },
|
||
{ "word": "visit", "translation": "参观" },
|
||
{ "word": "visitor", "translation": "访问者" },
|
||
{ "word": "visual", "translation": "视觉的" },
|
||
{ "word": "vital", "translation": "至关重要的" },
|
||
{ "word": "vitamin", "translation": "维生素" },
|
||
{ "word": "vocal", "translation": "声音的, vocal cords 声带" },
|
||
{ "word": "voice", "translation": "声音" },
|
||
{ "word": "volume", "translation": "体积,音量" },
|
||
{ "word": "voluntary", "translation": "自愿的" },
|
||
{ "word": "volunteer", "translation": "志愿者" },
|
||
{ "word": "vote", "translation": "投票" },
|
||
{ "word": "voting", "translation": "投票" },
|
||
{ "word": "vow", "translation": "誓言" },
|
||
{ "word": "vulnerability", "translation": "脆弱性" },
|
||
{ "word": "vulnerable", "translation": "脆弱的" },
|
||
{ "word": "wage", "translation": "工资 (通常用复数 wages)" },
|
||
{ "word": "wait", "translation": "等待" },
|
||
{ "word": "waiter", "translation": "服务员 (male)" },
|
||
{ "word": "waiting", "translation": "等待" },
|
||
{ "word": "wake", "translation": "醒来, wake up 醒来" },
|
||
{ "word": "walk", "translation": "走路" },
|
||
{ "word": "wall", "translation": "墙" },
|
||
{ "word": "wander", "translation": "漫步" },
|
||
{ "word": "want", "translation": "想要" },
|
||
{ "word": "war", "translation": "战争" },
|
||
{ "word": "ward", "translation": "病房,监护" },
|
||
{ "word": "warehouse", "translation": "仓库" },
|
||
{ "word": "warfare", "translation": "战争" },
|
||
{ "word": "warm", "translation": "温暖的" },
|
||
{ "word": "warmth", "translation": "温暖" },
|
||
{ "word": "warn", "translation": "警告" },
|
||
{ "word": "warning", "translation": "警告" },
|
||
{ "word": "warrant", "translation": " warrant officer 军官, warrent a search 授权搜查" },
|
||
{ "word": "warrior", "translation": "战士" },
|
||
{ "word": "wash", "translation": "洗" },
|
||
{ "word": "washing", "translation": "洗涤" },
|
||
{ "word": "waste", "translation": "浪费" },
|
||
{ "word": "watch", "translation": "手表,观看" },
|
||
{ "word": "water", "translation": "水" },
|
||
{ "word": "wave", "translation": "波浪,挥手" },
|
||
{ "word": "way", "translation": "方式,道路" },
|
||
{ "word": "we", "translation": "我们" },
|
||
{ "word": "weak", "translation": "虚弱的" },
|
||
{ "word": "weaken", "translation": "削弱" },
|
||
{ "word": "weakness", "translation": "弱点" },
|
||
{ "word": "wealth", "translation": "财富" },
|
||
{ "word": "wealthy", "translation": "富有的" },
|
||
{ "word": "weapon", "translation": "武器" },
|
||
{ "word": "wear", "translation": "穿,戴" },
|
||
{ "word": "weather", "translation": "天气" },
|
||
{ "word": "weave", "translation": "编织" },
|
||
{ "word": "web", "translation": "网,网络" },
|
||
{ "word": "website", "translation": "网站" },
|
||
{ "word": "wedding", "translation": "婚礼" },
|
||
{ "word": "Wednesday", "translation": "星期三" },
|
||
{ "word": "weed", "translation": "杂草" },
|
||
{ "word": "week", "translation": "周" },
|
||
{ "word": "weekend", "translation": "周末" },
|
||
{ "word": "weekly", "translation": "每周的" },
|
||
{ "word": "weigh", "translation": "称重" },
|
||
{ "word": "weight", "translation": "重量" },
|
||
{ "word": "weird", "translation": "奇怪的" },
|
||
{ "word": "welcome", "translation": "欢迎" },
|
||
{ "word": "welfare", "translation": "福利" },
|
||
{ "word": "well", "translation": "好地,井" },
|
||
{ "word": "well-being", "translation": "福祉" },
|
||
{ "word": "well-known", "translation": "著名的" },
|
||
{ "word": "west", "translation": "西方的,西部" },
|
||
{ "word": "western", "translation": "西方的" },
|
||
{ "word": "wet", "translation": "湿的" },
|
||
{ "word": "what", "translation": "什么" },
|
||
{ "word": "whatever", "translation": "无论什么" },
|
||
{ "word": "whatsoever", "translation": "无论什么 (更正式)" },
|
||
{ "word": "wheat", "translation": "小麦" },
|
||
{ "word": "wheel", "translation": "轮子" },
|
||
{ "word": "when", "translation": "什么时候" },
|
||
{ "word": "whenever", "translation": "无论何时" },
|
||
{ "word": "where", "translation": "在哪里" },
|
||
{ "word": "whereas", "translation": "然而,鉴于" },
|
||
{ "word": "whereby", "translation": "凭借" },
|
||
{ "word": "wherever", "translation": "无论哪里" },
|
||
{ "word": "whether", "translation": "是否" },
|
||
{ "word": "which", "translation": "哪个" },
|
||
{ "word": "while", "translation": "当...时候,一会儿" },
|
||
{ "word": "whilst", "translation": "当...时候 (较正式,主要用于 BrE)" },
|
||
{ "word": "whip", "translation": "鞭子,鞭打" },
|
||
{ "word": "whisper", "translation": "耳语" },
|
||
{ "word": "white", "translation": "白色的" },
|
||
{ "word": "who", "translation": "谁" },
|
||
{ "word": "whoever", "translation": "无论谁" },
|
||
{ "word": "whole", "translation": "整个的" },
|
||
{ "word": "wholly", "translation": "完全地" },
|
||
{ "word": "whom", "translation": "谁 (宾格,常用于正式文体)" },
|
||
{ "word": "whose", "translation": "谁的" },
|
||
{ "word": "why", "translation": "为什么" },
|
||
{ "word": "wide", "translation": "宽的" },
|
||
{ "word": "widely", "translation": "广泛地" },
|
||
{ "word": "widen", "translation": "加宽" },
|
||
{ "word": "widespread", "translation": "广泛的" },
|
||
{ "word": "widow", "translation": "寡妇" },
|
||
{ "word": "width", "translation": "宽度" },
|
||
{ "word": "wife", "translation": "妻子" },
|
||
{ "word": "wild", "translation": "野生的" },
|
||
{ "word": "wildlife", "translation": "野生动物" },
|
||
{ "word": "will", "translation": "将要,意志" },
|
||
{ "word": "willing", "translation": "愿意的" },
|
||
{ "word": "willingness", "translation": "意愿" },
|
||
{ "word": "win", "translation": "赢" },
|
||
{ "word": "wind", "translation": "风" },
|
||
{ "word": "window", "translation": "窗户" },
|
||
{ "word": "wine", "translation": "葡萄酒" },
|
||
{ "word": "wing", "translation": "翅膀" },
|
||
{ "word": "winner", "translation": "获胜者" },
|
||
{ "word": "winter", "translation": "冬天" },
|
||
{ "word": "wipe", "translation": "擦拭" },
|
||
{ "word": "wire", "translation": "电线" },
|
||
{ "word": "wisdom", "translation": "智慧" },
|
||
{ "word": "wise", "translation": "明智的" },
|
||
{ "word": "wish", "translation": "希望" },
|
||
{ "word": "wit", "translation": "机智" },
|
||
{ "word": "witch", "translation": "女巫" },
|
||
{ "word": "with", "translation": "和...一起" },
|
||
{ "word": "withdraw", "translation": "撤回, withdrawal 撤退" },
|
||
{ "word": "withdrawal", "translation": "撤回,撤退" },
|
||
{ "word": "within", "translation": "在...内部" },
|
||
{ "word": "without", "translation": "没有" },
|
||
{ "word": "witness", "translation": "目击者,见证" },
|
||
{ "word": "woman", "translation": "女人 (复数 women)" },
|
||
{ "word": "wonder", "translation": "想知道,奇迹" },
|
||
{ "word": "wonderful", "translation": "精彩的" },
|
||
{ "word": "wood", "translation": "木头" },
|
||
{ "word": "wooden", "translation": "木制的" },
|
||
{ "word": "wool", "translation": "羊毛" },
|
||
{ "word": "word", "translation": "单词" },
|
||
{ "word": "work", "translation": "工作" },
|
||
{ "word": "worker", "translation": "工人" },
|
||
{ "word": "workforce", "translation": "劳动力" },
|
||
{ "word": "working", "translation": "工作的" },
|
||
{ "word": "workout", "translation": "锻炼" },
|
||
{ "word": "workplace", "translation": "工作场所" },
|
||
{ "word": "works", "translation": "工厂 (复数), work of art 艺术作品" },
|
||
{ "word": "workshop", "translation": "车间,研讨会" },
|
||
{ "word": "world", "translation": "世界" },
|
||
{ "word": "worldwide", "translation": "全世界的" },
|
||
{ "word": "worm", "translation": "蠕虫" },
|
||
{ "word": "worried", "translation": "担心的" },
|
||
{ "word": "worry", "translation": "担心" },
|
||
{ "word": "worse", "translation": "更糟的" },
|
||
{ "word": "worship", "translation": "崇拜" },
|
||
{ "word": "worst", "translation": "最糟的" },
|
||
{ "word": "worth", "translation": "值得的" },
|
||
{ "word": "worthwhile", "translation": "值得做的" },
|
||
{ "word": "worthy", "translation": "值得的,杰出的" },
|
||
{ "word": "would", "translation": "将 (过去将来时), would like 想要" },
|
||
{ "word": "wound", "translation": "伤口" },
|
||
{ "word": "wow", "translation": "哇" },
|
||
{ "word": "wrap", "translation": "包裹" },
|
||
{ "word": "wrist", "translation": "手腕" },
|
||
{ "word": "write", "translation": "写" },
|
||
{ "word": "writer", "translation": "作家" },
|
||
{ "word": "writing", "translation": "写作" },
|
||
{ "word": "written", "translation": "书面的, write 的过去分词" },
|
||
{ "word": "wrong", "translation": "错误的" },
|
||
{ "word": "yard", "translation": "码 (长度单位),院子" },
|
||
{ "word": "yeah", "translation": "是的 (非正式)" },
|
||
{ "word": "year", "translation": "年" },
|
||
{ "word": "yell", "translation": "叫喊" },
|
||
{ "word": "yellow", "translation": "黄色的" },
|
||
{ "word": "yes", "translation": "是的" },
|
||
{ "word": "yesterday", "translation": "昨天" },
|
||
{ "word": "yet", "translation": "还,然而 (用于否定句和疑问句)" },
|
||
{ "word": "yield", "translation": "产量,屈服" },
|
||
{ "word": "you", "translation": "你,你们" },
|
||
{ "word": "young", "translation": "年轻的" },
|
||
{ "word": "youngster", "translation": "年轻人" },
|
||
{ "word": "your", "translation": "你的,你们的" },
|
||
{ "word": "yours", "translation": "你的 (名词性物主代词)" },
|
||
{ "word": "yourself", "translation": "你自己" },
|
||
{ "word": "youth", "translation": "青年" },
|
||
{ "word": "zero", "translation": "零" },
|
||
{ "word": "zone", "translation": "区域" },
|
||
{ "word": "zoo", "translation": "动物园" }
|
||
];
|
||
|
||
// 全局变量
|
||
let selectedWords = []; // 存储选中的单词对象 { word, translation }
|
||
let importedWords = []; // 存储从配置文件导入的单词对象 { word, translation }
|
||
let currentWordIndex = 0;
|
||
let dictationStarted = false;
|
||
let userAnswers = []; // 存储用户答案 (字符串)
|
||
let correctAnswers = []; // 存储正确答案 (字符串) - 修复:存储英文单词字符串
|
||
|
||
// 页面加载时初始化
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
renderWordGrid();
|
||
updateStats();
|
||
createParticles();
|
||
initCursorFollower();
|
||
});
|
||
|
||
// 创建背景粒子
|
||
function createParticles() {
|
||
const particlesContainer = document.getElementById('particles');
|
||
const particleCount = 30;
|
||
|
||
for (let i = 0; i < particleCount; i++) {
|
||
const particle = document.createElement('div');
|
||
particle.classList.add('particle');
|
||
|
||
// 随机大小
|
||
const size = Math.random() * 20 + 5;
|
||
particle.style.width = `${size}px`;
|
||
particle.style.height = `${size}px`;
|
||
|
||
// 随机位置
|
||
particle.style.left = `${Math.random() * 100}%`;
|
||
particle.style.top = `${Math.random() * 100}%`;
|
||
|
||
// 随机动画延迟和时长
|
||
const delay = Math.random() * 15;
|
||
const duration = 15 + Math.random() * 10;
|
||
particle.style.animationDelay = `${delay}s`;
|
||
particle.style.animationDuration = `${duration}s`;
|
||
|
||
// 随机颜色
|
||
const colors = ['rgba(100, 255, 200, 0.2)', 'rgba(0, 210, 255, 0.2)', 'rgba(93, 230, 255, 0.2)'];
|
||
particle.style.background = colors[Math.floor(Math.random() * colors.length)];
|
||
|
||
particlesContainer.appendChild(particle);
|
||
}
|
||
}
|
||
|
||
// 鼠标跟随效果
|
||
function initCursorFollower() {
|
||
const cursor = document.querySelector('.cursor-follower');
|
||
const buttons = document.querySelectorAll('button, .feature-card');
|
||
|
||
let mouseX = 0;
|
||
let mouseY = 0;
|
||
let cursorX = 0;
|
||
let cursorY = 0;
|
||
const speed = 0.1;
|
||
|
||
document.addEventListener('mousemove', e => {
|
||
mouseX = e.clientX;
|
||
mouseY = e.clientY;
|
||
});
|
||
|
||
function animateCursor() {
|
||
const distX = mouseX - cursorX;
|
||
const distY = mouseY - cursorY;
|
||
|
||
cursorX += distX * speed;
|
||
cursorY += distY * speed;
|
||
|
||
cursor.style.left = cursorX + 'px';
|
||
cursor.style.top = cursorY + 'px';
|
||
|
||
requestAnimationFrame(animateCursor);
|
||
}
|
||
|
||
animateCursor();
|
||
|
||
buttons.forEach(button => {
|
||
button.addEventListener('mouseenter', () => {
|
||
cursor.classList.add('hover');
|
||
});
|
||
|
||
button.addEventListener('mouseleave', () => {
|
||
cursor.classList.remove('hover');
|
||
});
|
||
});
|
||
}
|
||
|
||
// 模式切换 (带滑动动画)
|
||
function switchMode(mode) {
|
||
const welcomeScreen = document.getElementById('welcomeScreen');
|
||
const teacherScreen = document.getElementById('teacherScreen');
|
||
const studentScreen = document.getElementById('studentScreen');
|
||
|
||
// 添加动画类
|
||
teacherScreen.classList.add('slide-transition');
|
||
studentScreen.classList.add('slide-transition');
|
||
|
||
// 隐藏所有屏幕
|
||
welcomeScreen.style.display = 'none';
|
||
teacherScreen.classList.remove('active');
|
||
studentScreen.classList.remove('active');
|
||
|
||
// 根据目标模式显示屏幕
|
||
if (mode === 'teacher') {
|
||
// 从右侧滑入
|
||
teacherScreen.classList.add('slide-enter-from-right');
|
||
teacherScreen.style.display = 'block'; // 确保元素可见
|
||
// 强制重绘以触发动画
|
||
teacherScreen.offsetHeight;
|
||
teacherScreen.classList.remove('slide-enter-from-right');
|
||
teacherScreen.classList.add('active');
|
||
} else if (mode === 'student') {
|
||
// 从右侧滑入
|
||
studentScreen.classList.add('slide-enter-from-right');
|
||
studentScreen.style.display = 'block'; // 确保元素可见
|
||
// 强制重绘以触发动画
|
||
studentScreen.offsetHeight;
|
||
studentScreen.classList.remove('slide-enter-from-right');
|
||
studentScreen.classList.add('active');
|
||
} else {
|
||
// 默认显示欢迎界面 (如果需要从其他模式返回)
|
||
welcomeScreen.style.display = 'block';
|
||
}
|
||
}
|
||
|
||
|
||
// 标签页切换(老师端只有一个标签页)
|
||
function switchTab(tabId) {
|
||
// 移除所有标签的active状态
|
||
document.querySelectorAll('.tab-btn').forEach(tab => {
|
||
tab.classList.remove('active');
|
||
});
|
||
|
||
// 设置当前标签为active
|
||
event.target.classList.add('active');
|
||
|
||
// 切换显示内容
|
||
if (tabId === 'selection') {
|
||
document.getElementById('selectionTab').style.display = 'block';
|
||
}
|
||
}
|
||
|
||
// 渲染单词网格
|
||
function renderWordGrid(filteredWords = toeflWords) {
|
||
const wordGrid = document.getElementById('wordGrid');
|
||
wordGrid.innerHTML = '';
|
||
|
||
filteredWords.forEach(wordObj => {
|
||
const wordItem = document.createElement('div');
|
||
wordItem.className = `word-item ${selectedWords.some(w => w.word === wordObj.word) ? 'selected' : ''}`;
|
||
// 修改:显示单词和翻译
|
||
wordItem.innerHTML = `
|
||
<div class="word-text">${wordObj.word}</div>
|
||
<div class="word-translation">${wordObj.translation}</div>
|
||
`;
|
||
wordItem.onclick = () => toggleWordSelection(wordObj); // 传递整个对象
|
||
wordGrid.appendChild(wordItem);
|
||
});
|
||
}
|
||
|
||
// 切换单词选择状态
|
||
function toggleWordSelection(wordObj) {
|
||
const index = selectedWords.findIndex(w => w.word === wordObj.word);
|
||
if (index > -1) {
|
||
selectedWords.splice(index, 1);
|
||
} else {
|
||
selectedWords.push(wordObj);
|
||
}
|
||
renderWordGrid();
|
||
updateStats();
|
||
}
|
||
|
||
// 更新统计信息
|
||
function updateStats() {
|
||
const total = toeflWords.length;
|
||
const selected = selectedWords.length;
|
||
const percentage = total > 0 ? Math.round((selected / total) * 100) : 0;
|
||
|
||
document.getElementById('selectedCount').textContent = selected;
|
||
document.getElementById('totalWords').textContent = total;
|
||
document.getElementById('percentage').textContent = percentage + '%';
|
||
}
|
||
|
||
// 全选单词
|
||
function selectAllWords() {
|
||
// 确保 selectedWords 包含 toeflWords 中的所有单词对象
|
||
selectedWords = [...toeflWords];
|
||
renderWordGrid(); // 重新渲染网格以反映选择状态
|
||
updateStats(); // 更新统计信息
|
||
}
|
||
|
||
// 取消全选
|
||
function deselectAllWords() {
|
||
selectedWords = []; // 清空已选单词数组
|
||
renderWordGrid(); // 重新渲染网格
|
||
updateStats(); // 更新统计信息
|
||
}
|
||
|
||
// 随机选择60个单词
|
||
function randomSelectWords() {
|
||
selectedWords = [];
|
||
// 创建一个 toeflWords 的副本并随机打乱
|
||
const shuffled = [...toeflWords].sort(() => 0.5 - Math.random());
|
||
// 选取前60个(或如果总数不足60个,则全部选取)
|
||
selectedWords = shuffled.slice(0, Math.min(60, shuffled.length));
|
||
renderWordGrid(); // 重新渲染网格
|
||
updateStats(); // 更新统计信息
|
||
}
|
||
|
||
// 搜索单词
|
||
function filterWords() {
|
||
const searchTerm = document.getElementById('searchInput').value.toLowerCase();
|
||
if (searchTerm === '') {
|
||
renderWordGrid();
|
||
document.getElementById('addWordSuggestion').style.display = 'none';
|
||
} else {
|
||
// 修改:在单词和翻译中搜索
|
||
const filtered = toeflWords.filter(wordObj =>
|
||
wordObj.word.toLowerCase().includes(searchTerm) ||
|
||
wordObj.translation.toLowerCase().includes(searchTerm)
|
||
);
|
||
renderWordGrid(filtered);
|
||
|
||
// 如果没有找到匹配的单词,显示添加单词提示
|
||
if (filtered.length === 0) {
|
||
document.getElementById('addWordSuggestion').style.display = 'block';
|
||
// 不再直接设置 newWordText,而是预填充输入框
|
||
document.getElementById('newWordInput').value = searchTerm;
|
||
document.getElementById('newTranslationInput').value = '';
|
||
} else {
|
||
document.getElementById('addWordSuggestion').style.display = 'none';
|
||
}
|
||
}
|
||
}
|
||
|
||
// 添加新单词 (带翻译)
|
||
function addNewWordWithTranslation() {
|
||
const newWord = document.getElementById('newWordInput').value.trim().toLowerCase();
|
||
const newTranslation = document.getElementById('newTranslationInput').value.trim();
|
||
|
||
if (newWord && newTranslation) {
|
||
// 检查是否已存在
|
||
if (!toeflWords.some(w => w.word === newWord)) {
|
||
const newWordObj = { word: newWord, translation: newTranslation };
|
||
toeflWords.push(newWordObj);
|
||
toeflWords.sort((a, b) => a.word.localeCompare(b.word)); // 按字母排序
|
||
renderWordGrid();
|
||
updateStats();
|
||
document.getElementById('addWordSuggestion').style.display = 'none';
|
||
document.getElementById('searchInput').value = '';
|
||
document.getElementById('newWordInput').value = '';
|
||
document.getElementById('newTranslationInput').value = '';
|
||
|
||
// 显示添加成功提示
|
||
alert(`单词 "${newWord}" (${newTranslation}) 已成功添加到词库中!`);
|
||
} else {
|
||
alert(`单词 "${newWord}" 已存在于词库中!`);
|
||
}
|
||
} else {
|
||
alert('请输入英文单词和中文翻译!');
|
||
}
|
||
}
|
||
|
||
// 清除搜索
|
||
function clearSearch() {
|
||
document.getElementById('searchInput').value = '';
|
||
document.getElementById('addWordSuggestion').style.display = 'none';
|
||
renderWordGrid();
|
||
}
|
||
|
||
// 导出配置文件 - 修复下载问题
|
||
function exportConfig() {
|
||
if (selectedWords.length === 0) {
|
||
alert('请先选择单词!');
|
||
return;
|
||
}
|
||
|
||
const config = {
|
||
words: selectedWords, // 导出包含 word 和 translation 的对象数组
|
||
createdTime: new Date().toISOString(),
|
||
version: '1.1' // 更新版本号
|
||
};
|
||
|
||
// 创建Blob对象
|
||
const blob = new Blob([JSON.stringify(config, null, 2)], {type: 'application/json'});
|
||
|
||
// 创建下载链接
|
||
const url = URL.createObjectURL(blob);
|
||
const a = document.createElement('a');
|
||
a.href = url;
|
||
a.download = 'toefl_words_config_with_translation.json';
|
||
document.body.appendChild(a);
|
||
a.click();
|
||
|
||
// 清理
|
||
setTimeout(() => {
|
||
document.body.removeChild(a);
|
||
URL.revokeObjectURL(url);
|
||
}, 100);
|
||
|
||
// 添加成功动画
|
||
const exportBtn = event.target.closest('.action-btn');
|
||
const originalText = exportBtn.innerHTML;
|
||
exportBtn.innerHTML = '<i class="fas fa-check"></i> 已导出';
|
||
exportBtn.classList.add('btn-success');
|
||
|
||
setTimeout(() => {
|
||
exportBtn.innerHTML = originalText;
|
||
exportBtn.classList.remove('btn-success');
|
||
}, 2000);
|
||
}
|
||
|
||
// 处理文件选择
|
||
function handleFileSelect(event) {
|
||
const file = event.target.files[0];
|
||
if (file) {
|
||
const reader = new FileReader();
|
||
reader.onload = function(e) {
|
||
try {
|
||
const config = JSON.parse(e.target.result);
|
||
// 兼容旧版本 (仅包含单词字符串的数组)
|
||
if (Array.isArray(config.words) && config.words.length > 0 && typeof config.words[0] === 'string') {
|
||
// 转换旧格式到新格式 (翻译留空)
|
||
importedWords = config.words.map(word => ({ word, translation: '' }));
|
||
} else if (Array.isArray(config.words) && config.words.length > 0 && typeof config.words[0] === 'object' && config.words[0].hasOwnProperty('word')) {
|
||
// 新格式
|
||
importedWords = config.words || [];
|
||
} else {
|
||
throw new Error('Invalid word list format');
|
||
}
|
||
|
||
const createdTime = new Date(config.createdTime);
|
||
|
||
document.getElementById('importedWordCount').textContent = importedWords.length;
|
||
document.getElementById('importedTime').textContent = createdTime.toLocaleString();
|
||
|
||
document.getElementById('importInfo').style.display = 'block';
|
||
|
||
} catch (error) {
|
||
console.error(error); // 在控制台打印错误详情
|
||
alert('配置文件格式错误或版本不兼容!');
|
||
}
|
||
};
|
||
reader.readAsText(file);
|
||
}
|
||
}
|
||
|
||
// 开始默写
|
||
function startDictation() {
|
||
if (importedWords.length === 0) {
|
||
alert('请先导入配置文件!');
|
||
return;
|
||
}
|
||
|
||
document.getElementById('importInfo').style.display = 'none';
|
||
document.getElementById('dictationArea').style.display = 'block';
|
||
|
||
// 修复:初始化状态
|
||
userAnswers = new Array(importedWords.length).fill('');
|
||
// 修复:correctAnswers 应该是英文单词字符串数组
|
||
correctAnswers = importedWords.map(w => w.word);
|
||
currentWordIndex = 0;
|
||
dictationStarted = true;
|
||
showCurrentWord();
|
||
|
||
// 聚焦到输入框
|
||
document.getElementById('answerInput').focus();
|
||
}
|
||
|
||
// 显示当前单词(横杠形式)和翻译
|
||
function showCurrentWord() {
|
||
if (currentWordIndex >= 0 && currentWordIndex < importedWords.length) {
|
||
// 修复:获取单词对象
|
||
const currentWordObj = importedWords[currentWordIndex];
|
||
const currentWord = currentWordObj.word; // 获取英文单词
|
||
const wordTranslation = currentWordObj.translation; // 获取中文翻译
|
||
const wordLength = currentWord.length;
|
||
|
||
// 显示横杠(每个字母一个横杠)
|
||
const blanks = '_ '.repeat(wordLength).trim();
|
||
document.getElementById('wordBlank').textContent = blanks;
|
||
|
||
// 显示中文翻译
|
||
document.getElementById('wordTranslationStudent').textContent = wordTranslation ? `(${wordTranslation})` : '';
|
||
|
||
// 显示进度
|
||
document.getElementById('progressInfo').textContent =
|
||
`进度: ${currentWordIndex + 1}/${importedWords.length}`;
|
||
|
||
const progress = importedWords.length > 0 ?
|
||
Math.round(((currentWordIndex + 1) / importedWords.length) * 100) : 0;
|
||
document.getElementById('progressFill').style.width = progress + '%';
|
||
|
||
// 显示之前输入的答案(如果有的话)
|
||
document.getElementById('answerInput').value = userAnswers[currentWordIndex] || '';
|
||
document.getElementById('answerInput').focus();
|
||
}
|
||
}
|
||
|
||
// 处理键盘按键
|
||
function handleKeyPress(event) {
|
||
if (event.key === 'Enter') {
|
||
submitAnswer();
|
||
}
|
||
}
|
||
|
||
// 提交答案
|
||
function submitAnswer() {
|
||
const answerInput = document.getElementById('answerInput');
|
||
const userAnswer = answerInput.value.trim().toLowerCase();
|
||
|
||
if (userAnswer) {
|
||
// 保存用户答案 (字符串)
|
||
userAnswers[currentWordIndex] = userAnswer;
|
||
|
||
// 如果是最后一个单词,自动结束
|
||
if (currentWordIndex === importedWords.length - 1) {
|
||
endDictation();
|
||
} else {
|
||
// 自动跳到下一个单词
|
||
showNextWord();
|
||
}
|
||
} else {
|
||
alert('请输入答案!');
|
||
}
|
||
}
|
||
|
||
// 下一个单词
|
||
function showNextWord() {
|
||
if (currentWordIndex < importedWords.length - 1) {
|
||
currentWordIndex++;
|
||
showCurrentWord();
|
||
}
|
||
}
|
||
|
||
// 上一个单词
|
||
function showPrevWord() {
|
||
if (currentWordIndex > 0) {
|
||
currentWordIndex--;
|
||
showCurrentWord();
|
||
}
|
||
}
|
||
|
||
// 结束默写并显示成绩
|
||
function endDictation() {
|
||
dictationStarted = false;
|
||
|
||
// 计算成绩
|
||
let correctCount = 0;
|
||
const errorDetails = [];
|
||
|
||
for (let i = 0; i < importedWords.length; i++) {
|
||
// 修复:比较用户答案和正确答案 (都是字符串)
|
||
if (userAnswers[i] === correctAnswers[i]) {
|
||
correctCount++;
|
||
} else {
|
||
// 记录错误详情 (包含翻译)
|
||
errorDetails.push({
|
||
number: i + 1,
|
||
word: correctAnswers[i], // 正确答案是英文单词字符串
|
||
translation: importedWords[i].translation, // 获取翻译
|
||
userAnswer: userAnswers[i] || '(未作答)'
|
||
});
|
||
}
|
||
}
|
||
|
||
const totalCount = importedWords.length;
|
||
const accuracy = totalCount > 0 ? Math.round((correctCount / totalCount) * 100) : 0;
|
||
|
||
// 显示成绩报告
|
||
document.getElementById('dictationArea').style.display = 'none';
|
||
document.getElementById('resultArea').style.display = 'block';
|
||
|
||
// 更新成绩显示
|
||
document.getElementById('finalScore').textContent = accuracy + '%';
|
||
document.getElementById('correctCount').textContent = correctCount;
|
||
document.getElementById('wrongCount').textContent = totalCount - correctCount;
|
||
document.getElementById('totalCount').textContent = totalCount;
|
||
|
||
// 根据正确率显示等级
|
||
let gradeClass = '';
|
||
let gradeText = '';
|
||
if (accuracy >= 90) {
|
||
gradeClass = 'grade-a';
|
||
gradeText = 'A (优秀)';
|
||
} else if (accuracy >= 80) {
|
||
gradeClass = 'grade-b';
|
||
gradeText = 'B (良好)';
|
||
} else if (accuracy >= 70) {
|
||
gradeClass = 'grade-c';
|
||
gradeText = 'C (及格)';
|
||
} else {
|
||
gradeClass = 'grade-d';
|
||
gradeText = 'D (需要努力)';
|
||
}
|
||
|
||
const gradeBadge = document.getElementById('gradeBadge');
|
||
gradeBadge.textContent = '等级: ' + gradeText;
|
||
gradeBadge.className = 'grade-badge ' + gradeClass;
|
||
|
||
// 更新圆形进度条
|
||
const scoreCircle = document.querySelector('.score-circle');
|
||
const gradientDegree = (accuracy / 100) * 360;
|
||
scoreCircle.style.background = `conic-gradient(#7cffcb 0deg ${gradientDegree}deg, #5de6ff ${gradientDegree}deg 360deg)`;
|
||
|
||
// 显示错误详情
|
||
const errorList = document.getElementById('errorList');
|
||
errorList.innerHTML = '';
|
||
|
||
if (errorDetails.length > 0) {
|
||
errorDetails.forEach(error => {
|
||
const li = document.createElement('li');
|
||
li.className = 'error-item';
|
||
// 修改:显示翻译
|
||
li.innerHTML = `
|
||
<div class="error-number">${error.number}.</div>
|
||
<div class="error-content">
|
||
<div class="error-word">${error.word} ${error.translation ? `(${error.translation})` : ''}</div>
|
||
<div class="error-answer">您的答案: ${error.userAnswer}</div>
|
||
<div class="error-correct">
|
||
<i class="fas fa-times" style="color: #ff6b6b;"></i>
|
||
<span class="error-arrow">→</span>
|
||
<i class="fas fa-check" style="color: #7cffcb;"></i>
|
||
<span style="margin-left: 10px;">正确答案: ${error.word}</span>
|
||
</div>
|
||
</div>
|
||
`;
|
||
errorList.appendChild(li);
|
||
});
|
||
} else {
|
||
const li = document.createElement('li');
|
||
li.innerHTML = '<div style="color: #7cffcb; text-align: center; padding: 20px;"><i class="fas fa-check-circle"></i> 恭喜!全部正确!</div>';
|
||
errorList.appendChild(li);
|
||
}
|
||
}
|
||
|
||
// 重新开始默写
|
||
function restartDictation() {
|
||
document.getElementById('resultArea').style.display = 'none';
|
||
document.getElementById('dictationArea').style.display = 'block';
|
||
|
||
// 重置状态
|
||
userAnswers = new Array(importedWords.length).fill('');
|
||
currentWordIndex = 0;
|
||
dictationStarted = true;
|
||
showCurrentWord();
|
||
}
|
||
|
||
// 拖拽上传功能
|
||
document.addEventListener('DOMContentLoaded', function() {
|
||
const uploadArea = document.getElementById('fileUploadArea');
|
||
|
||
uploadArea.addEventListener('dragover', function(e) {
|
||
e.preventDefault();
|
||
uploadArea.style.borderColor = '#7cffcb';
|
||
uploadArea.style.backgroundColor = 'rgba(124, 255, 203, 0.1)';
|
||
});
|
||
|
||
uploadArea.addEventListener('dragleave', function(e) {
|
||
e.preventDefault();
|
||
uploadArea.style.borderColor = '';
|
||
uploadArea.style.backgroundColor = '';
|
||
});
|
||
|
||
uploadArea.addEventListener('drop', function(e) {
|
||
e.preventDefault();
|
||
uploadArea.style.borderColor = '';
|
||
uploadArea.style.backgroundColor = '';
|
||
|
||
if (e.dataTransfer.files.length) {
|
||
document.getElementById('configFile').files = e.dataTransfer.files;
|
||
const event = new Event('change');
|
||
document.getElementById('configFile').dispatchEvent(event);
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |