|
|
<!-- 网站页脚 -->
|
|
|
<footer class="site-footer">
|
|
|
<div class="footer-container">
|
|
|
<!-- 页脚主要内容 -->
|
|
|
<div class="footer-main">
|
|
|
<!-- 左侧Logo区域 -->
|
|
|
<div class="footer-logo">
|
|
|
<a href="<?php echo home_url(); ?>">
|
|
|
<img width="200px" src="https://cn.nenghui.com/wp-content/uploads/2025/11/logo-1.png" alt="logo">
|
|
|
</a>
|
|
|
</div>
|
|
|
<!-- 右侧导航链接区域 -->
|
|
|
<div class="footer-nav">
|
|
|
<!-- 公司信息 -->
|
|
|
<div class="footer-nav-column">
|
|
|
<h3 class="footer-nav-title">关于我们</h3>
|
|
|
<ul class="footer-nav-list">
|
|
|
<li><a href="https://cn.nenghui.com/about/">关于能辉</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/henghui-core/">能辉核心</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/sustainable-evelopment/">可持续发展</a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
|
|
|
<!-- 投资者关系 -->
|
|
|
<div class="footer-nav-column">
|
|
|
<h3 class="footer-nav-title">投资者关系</h3>
|
|
|
<ul class="footer-nav-list">
|
|
|
<li><a href="https://cn.nenghui.com/investorrelations/">公司治理</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/company-announcement/">公司公告</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/investor-exchange/">投资者交流</a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
|
|
|
<!-- 新闻资讯 -->
|
|
|
<div class="footer-nav-column">
|
|
|
<h3 class="footer-nav-title">新闻资讯</h3>
|
|
|
<ul class="footer-nav-list">
|
|
|
<li><a href="https://cn.nenghui.com/category/news-center/">新闻中心</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/category/social-activities/">社会活动</a></li>
|
|
|
<li><a href="https://cn.nenghui.com/category/company-announcement/">公司公告</a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
|
|
|
<!-- 联系我们 -->
|
|
|
<div class="footer-nav-column">
|
|
|
<h3 class="footer-nav-title">联系我们</h3>
|
|
|
<ul class="footer-nav-list">
|
|
|
<li><a href="https://cn.nenghui.com/connect-us/">联系方式</a></li>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<!-- 页脚底部版权信息 -->
|
|
|
<div class="footer-bottom">
|
|
|
<div class="footer-copyright">
|
|
|
<p>© <?php echo date('Y'); ?> 上海能辉科技股份有限公司 版权所有 |
|
|
|
<a href="https://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31010502007560">公安网备:沪公网安备31010502007560号</a> |
|
|
|
<a href="https://beiancx.miit.gov.cn/" rel="external nofollow">工信部备案:沪ICP备16000753号-8</a>
|
|
|
<a href="https://cn.nenghui.com/privacy-policy/">隐私政策</a>
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</footer>
|
|
|
|
|
|
<!-- 滚动进度指示器 -->
|
|
|
<div class="scroll-indicator" id="scrollIndicator"></div>
|
|
|
|
|
|
<!-- 回到顶部按钮 -->
|
|
|
<a href="#" class="back-to-top" id="backToTop" title="回到顶部">
|
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
|
<polyline points="18 15 12 9 6 15"></polyline>
|
|
|
</svg>
|
|
|
</a>
|
|
|
|
|
|
<!-- 平滑滚动进度脚本 -->
|
|
|
<script>
|
|
|
(function() {
|
|
|
'use strict';
|
|
|
|
|
|
// 滚动进度指示器
|
|
|
function updateScrollIndicator() {
|
|
|
var scrollIndicator = document.getElementById('scrollIndicator');
|
|
|
if (scrollIndicator) {
|
|
|
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
|
|
|
var scrollHeight = document.documentElement.scrollHeight - window.innerHeight;
|
|
|
var scrollPercent = (scrollTop / scrollHeight) * 100;
|
|
|
scrollIndicator.style.width = scrollPercent + '%';
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 回到顶部按钮显示/隐藏
|
|
|
function toggleBackToTop() {
|
|
|
var backToTop = document.getElementById('backToTop');
|
|
|
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;
|
|
|
|
|
|
if (backToTop) {
|
|
|
if (scrollTop > 300) {
|
|
|
backToTop.classList.add('show');
|
|
|
} else {
|
|
|
backToTop.classList.remove('show');
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 平滑滚动到顶部
|
|
|
function scrollToTop(e) {
|
|
|
e.preventDefault();
|
|
|
window.scrollTo({
|
|
|
top: 0,
|
|
|
behavior: 'smooth'
|
|
|
});
|
|
|
}
|
|
|
|
|
|
// 监听滚动事件
|
|
|
window.addEventListener('scroll', function() {
|
|
|
updateScrollIndicator();
|
|
|
toggleBackToTop();
|
|
|
});
|
|
|
|
|
|
// 页面加载完成后初始化
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
|
updateScrollIndicator();
|
|
|
toggleBackToTop();
|
|
|
|
|
|
// 绑定回到顶部按钮点击事件
|
|
|
var backToTop = document.getElementById('backToTop');
|
|
|
if (backToTop) {
|
|
|
backToTop.addEventListener('click', scrollToTop);
|
|
|
}
|
|
|
});
|
|
|
})();
|
|
|
</script>
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
</body>
|
|
|
</html>
|