地址
河北省石家庄市平山县
西柏坡镇西柏坡红色教育基地
距石家庄市区约100公里
交通便利,环境优美
微信公众号
扫码关注
获取最新资讯
点击查看二维码
手机网站
扫码访问
随时随地查看
点击查看二维码
⏰ 工作时间
办公时间: 周一至周日 8:30 - 17:30
接待时间: 周一至周日 9:00 - 17:00
咨询热线: 24小时在线(节假日正常接听)
法定节假日: 正常开放,提前预约
特殊天气: 请提前电话确认
团队接待: 需提前3-5天预约
📍 基地位置
🚗 交通指南
自驾路线:
- 从石家庄出发:沿G5京昆高速北行,西柏坡出口下,约1.5小时
- 从北京出发:沿G4京港澳高速南行转G5京昆高速,约3.5小时
公共交通:
- 石家庄客运北站有直达西柏坡的班车,每天多班次
- 也可乘坐火车到石家庄站,再转乘班车前往
💬 在线留言
如有任何问题或建议,欢迎给我们留言,我们会尽快回复您!
document.getElementById('contactForm').addEventListener('submit', function(e) { e.preventDefault(); var formData = new FormData(this); var data = {}; formData.forEach(function(value, key) { data[key] = value; }); fetch('/message/submit', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: new URLSearchParams(data) }) .then(response => response.json()) .then(result => { var alertDiv = document.getElementById('message-alert'); alertDiv.style.display = 'block'; if (result.success) { alertDiv.className = 'alert alert-success'; alertDiv.textContent = result.message; document.getElementById('contactForm').reset(); // 滚动到提示信息位置 alertDiv.scrollIntoView({ behavior: 'smooth', block: 'center' }); } else { alertDiv.className = 'alert alert-danger'; alertDiv.textContent = result.message; } // 5秒后自动隐藏提示 setTimeout(function() { alertDiv.style.display = 'none'; }, 5000); }) .catch(error => { var alertDiv = document.getElementById('message-alert'); alertDiv.style.display = 'block'; alertDiv.className = 'alert alert-danger'; alertDiv.textContent = '提交失败,请稍后重试'; }); });温馨提示: 我们会在收到留言后24小时内与您联系,请保持电话畅通。如需紧急咨询,请直接拨打咨询热线。
' +
'西柏坡红色教育基地
' + '河北省石家庄市平山县西柏坡镇
' + '西柏坡纪念馆' + '
';
marker.bindPopup(popupContent);
marker.openPopup();
// 添加永久显示的标签
marker.bindTooltip('西柏坡红色教育基地', {
permanent: true,
direction: 'top',
offset: [0, -30],
className: 'marker-label',
opacity: 1
});
});
function showQRCode(type) {
const modal = document.getElementById('qrcodeModal');
const title = document.getElementById('qrcodeTitle');
const image = document.getElementById('qrcodeImage');
const desc = document.getElementById('qrcodeDesc');
if (type === 'wechat') {
title.innerHTML = ' 微信公众号';
image.innerHTML = '' + '河北省石家庄市平山县西柏坡镇
' + '西柏坡纪念馆' + '
';
desc.textContent = '扫码关注我们的微信公众号,获取最新资讯和课程信息';
} else if (type === 'mobile') {
title.innerHTML = ' 手机网站';
image.innerHTML = '
';
desc.textContent = '扫码访问手机版网站,随时随地查看基地信息和课程安排';
}
modal.style.display = 'flex';
}
function closeQRCode() {
document.getElementById('qrcodeModal').style.display = 'none';
}
// 点击背景关闭弹窗
document.getElementById('qrcodeModal').addEventListener('click', function(e) {
if (e.target === this) {
closeQRCode();
}
});
// ESC键关闭弹窗
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
closeQRCode();
}
});