Not sure which radio, accessory, or upgrade to choose? Let them decide. Our E-Gift Card is the easiest and most flexible way to give the gift of communication, perfect for hobbyists, professionals, and anyone who loves reliable two-way radios. Whether it’s for a birthday, holiday, anniversary, or just a thoughtful surprise, this gift card never goes out of style. Frequently Asked Questions (FAQ) Is this a physical gift card? + No. This is a digital (electronic) gift card delivered via email only. How will the gift card be delivered? + After purchase, the E-Gift Card will be sent instantly to the email address used at checkout. Does the E-Gift Card expire? + No. Our E-Gift Cards do not expire. Can I use multiple gift cards on one order? + Yes. Multiple gift card codes can be applied during checkout. What happens if the order total is less than the E-Gift Card value? + The remaining balance stays on the E-Gift Card and can be used for future purchases. Are E-Gift Cards refundable? + E-Gift Cards are non-refundable once purchased. Where can I use this E-Gift Card? + This E-Gift Card can be redeemed only on baofengradio.com. It is not valid on third-party platforms, marketplaces, or offline channels. .faq-section { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; max-width: 800px; margin: 0 auto; padding: 2rem; } .faq-section h4 { color: #1a1a1a; font-size: 2rem; margin-bottom: 2rem; text-align: center; position: relative; } .faq-section h4:after { content: ''; display: block; width: 60px; height: 3px; background: #0066cc; margin: 0.5rem auto; } .faq-item { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; } .faq-item:hover { border-color: #0066cc; box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1); } .faq-question { width: 100%; padding: 1.25rem 1.5rem; background: #fff; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background-color 0.2s ease; font-size: 1.1rem; font-weight: 600; color: #1a1a1a; } .faq-question:hover { background-color: #f8fafc; } .faq-question-text { flex: 1; margin-right: 1rem; } .faq-icon { font-size: 1.5rem; font-weight: 300; color: #0066cc; transition: transform 0.3s ease; min-width: 24px; text-align: center; } .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); content: '−'; } .faq-answer { padding: 0 1.5rem; background: #fff; animation: fadeIn 0.3s ease; } .faq-answer[hidden] { display: none; } .faq-answer p { margin: 1rem 0; color: #555; line-height: 1.6; } .faq-answer p:last-child { margin-bottom: 1.5rem; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* 响应式设计 */ @media (max-width: 768px) { .faq-section { padding: 1rem; } .faq-section h2 { font-size: 1.5rem; } .faq-question { padding: 1rem; font-size: 1rem; } .faq-answer { padding: 0 1rem; } } document.addEventListener('DOMContentLoaded', function() { const faqQuestions = document.querySelectorAll('.faq-question'); faqQuestions.forEach(question => { question.addEventListener('click', function() { const isExpanded = this.getAttribute('aria-expanded') === 'true'; const answerId = this.getAttribute('aria-controls'); const answer = document.getElementById(answerId); // 切换当前FAQ项的状态 this.setAttribute('aria-expanded', !isExpanded); answer.hidden = isExpanded; // 可选:关闭其他打开的FAQ项 // faqQuestions.forEach(otherQuestion => { // if (otherQuestion !== this) { // otherQuestion.setAttribute('aria-expanded', 'false'); // const otherAnswerId = otherQuestion.getAttribute('aria-controls'); // document.getElementById(otherAnswerId).hidden = true; // } // }); }); }); // 添加键盘导航支持 faqQuestions.forEach(question => { question.addEventListener('keydown', function(e) { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); this.click(); } }); }); });