more cn tooltips

body { font-family: Arial, sans-serif; background-color: #fdfdfd; margin: 0; padding: 0; } .container { max-width: 900px; margin: 20px auto; padding: 0 15px; } .tab-group { margin: 25px 0; } .tab-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-around; margin-bottom: 10px; } .tab-buttons button { padding: 10px 18px; background-color: #ffe082; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; } .tab-buttons button.active { background-color: #ffca28; } .tab-content { display: none; background-color: #fff8e1; padding: 20px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); } .tab-content.active { display: block; } h2 { color: #2e7d32; margin-top: 0; } strong { color: #2e7d32; } textarea { width: 100%; padding: 10px; } .vocab-tooltip { border-bottom: 1px dotted #2e7d32; cursor: help; color: #2e7d32; font-weight: bold; } .non-vocab-tooltip { border-bottom: 1px dotted #000; cursor: help; color: #000; font-weight: bold; } .vocab-tooltip:hover::after, .non-vocab-tooltip:hover::after { content: attr(data-tooltip); position: absolute; background: #333; color: white; padding: 6px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; z-index: 10; } .answer-tooltip { border-bottom: 1px dotted #1976d2; cursor: help; color: #1976d2; font-weight: bold; } .answer-tooltip:hover::after { content: attr(data-answer); position: absolute; background: #1976d2; color: white; padding: 6px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; } /* Chinese story font bigger */ #story-a p { font-size: 20px; line-height: 1.6; }

Summary (25 words): Two friends discuss learning languages in Brazil, sharing experiences with courses, conversation clubs, cultural activities, and strategies to improve speaking and comprehension.

在巴西学习语言

玛丽亚:嗨,乔昂!你最近在参加什么课程吗?
乔昂:是的,我在学习英语,还有一点西班牙语。很有挑战,但是很有趣。
玛丽亚:我也是。我尽量和母语者练习,这样学习效果最好。
乔昂:我喜欢做练习,还会看有字幕的电影。这样可以帮助我提高语言水平。
玛丽亚:你参加城市里的会话俱乐部吗?
乔昂:当然!周末我们会在咖啡馆图书馆聚会。这对练习口语和认识新朋友很有帮助。
玛丽亚:我喜欢这样!我还会了解文化,比如当地的美食、节日和习俗
乔昂:没错!上周我参加了一个音乐节,尝试了很多美味的传统食品
玛丽亚:太棒了!我尝了巴西豆饭,还学会了在家做。
乔昂:学习语言更有趣,如果我们了解这个国家的历史和文化。
玛丽亚:我同意。当我们在巴西旅行时,也可以使用学过的语言与当地人交流。
乔昂:是的!和不同的人交谈很令人兴奋,还能学到新表达
玛丽亚:让我们继续学习并参加文化活动。这样我们的体验会很完整,也很难忘

Learning Languages in Brazil

Maria: Hi, João! Are you taking any language courses lately?
João: Yes, I’m learning English and a bit of Spanish. It’s challenging but very fun.
Maria: True! I also study English, but I try to practice with native speakers whenever I can.
João: I like to do exercises and watch movies with subtitles. It really helps to improve.
Maria: Do you participate in conversation clubs in the city?
João: Yes! On weekends we have meetings in cafés and libraries. It’s great for practicing and meeting new people.
Maria: I love that! I also learn about the culture, like typical foods, local festivals, and customs.
João: Exactly! Last week I joined a music festival and tried delicious local foods.
Maria: That’s great! I tried a feijoada and learned the recipe to cook at home.
João: That’s wonderful. Learning languages is more fun when we understand the culture and history of the country.
Maria: I agree. And when we travel around Brazil, we can use the languages and practice with locals.
João: Yes! It’s exciting to talk to different people and learn new expressions.
Maria: Let’s keep studying and participating in cultural activities. That way, our experience will be complete and unforgettable.

document.querySelectorAll(‘.tab-group’).forEach(group => { const buttons = group.querySelectorAll(‘.tab-btn’); const contents = group.querySelectorAll(‘.tab-content’); buttons.forEach(button => { button.addEventListener(‘click’, () => { buttons.forEach(btn => btn.classList.remove(‘active’)); contents.forEach(content => content.classList.remove(‘active’)); button.classList.add(‘active’); document.getElementById(button.dataset.tab).classList.add(‘active’); }); }); });

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top