You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
3.8 KiB
66 lines
3.8 KiB
<!-- 模块:底部 -->
|
|
<footer class="site-footer section__wrap" id="footer" data-header-dark>
|
|
<div class="site-footer__inner">
|
|
<div class="site-footer__main">
|
|
<div class="site-footer__brand">
|
|
<div class="site-footer__logo" aria-label="RAYNEN Technology">
|
|
<img src="{hcTaglib:setting name='dark_logo' type='2' /}" alt="RAYNEN Technology" width="252" height="26" />
|
|
</div>
|
|
<p class="site-footer__stock">Stock code: 603933</p>
|
|
<p class="site-footer__quote" aria-label="Stock quote" data-stock-quote data-stock-code="603933">
|
|
<span class="site-footer__quote-price" data-stock="price" style="{$priceColor}">{$stockInfo.price}</span>
|
|
<span class="site-footer__quote-unit" data-stock="unit" style="{$priceColor}">Yuan</span>
|
|
<span class="site-footer__quote-change" data-stock="change" style="{$priceColor}">{$stockInfo.change} {$stockInfo.changePercent}</span>
|
|
</p>
|
|
<p class="site-footer__follow">Follow us:</p>
|
|
<div class="site-footer__qrs">
|
|
<div class="site-footer__qr">
|
|
<img src="{hcTaglib:setting name='wechat_code' type='2' /}" alt="Official WeChat" />
|
|
<span>Official WeChat</span>
|
|
</div>
|
|
<div class="site-footer__qr">
|
|
{hcTaglib:category id="749" item="vo" field="*"}
|
|
<img src="{$vo.thumbnail.url ?? ''}" alt="Official Channels" />
|
|
{/hcTaglib:category}
|
|
<span>Official Channels</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<nav class="site-footer__cols" aria-label="Footer navigation">
|
|
{php}
|
|
$ui_nav_footer = uiId('nav_footer');
|
|
$ui_product = uiId('product');
|
|
{/php}
|
|
{hcTaglib:nav cid="$ui_nav_footer" max-level="2" item="vo" name="hc_nav" sort="sort asc"}
|
|
{php}
|
|
$ft_is_product = ((int)($vo['category_id'] ?? 0) === $ui_product);
|
|
{/php}
|
|
<div class="site-footer__col">
|
|
<div class="site-footer__colTitle">{$vo.title}</div>
|
|
<div class="site-footer__links">
|
|
{volist name="$vo.children" id="child"}
|
|
{php}
|
|
$ft_href = $child['href'] ?? '';
|
|
$ft_child_cid = (int)($child['category_id'] ?? 0);
|
|
// 产品列:与头部一致,拼接 cat=product-control-{栏目ID}
|
|
if ($ft_is_product && $ft_child_cid > 0 && $ft_href !== '') {
|
|
$ft_href .= (strpos($ft_href, '?') !== false ? '&' : '?') . 'cat=product-control-' . $ft_child_cid;
|
|
}
|
|
{/php}
|
|
<a href="{$ft_href}">{$child.title}</a>
|
|
{/volist}
|
|
</div>
|
|
</div>
|
|
{/hcTaglib:nav}
|
|
</nav>
|
|
</div>
|
|
<div class="site-footer__bottom">
|
|
<p class="site-footer__copyright">Copyright 2026 {hcTaglib:setting name="company_name" type="1" /} All rights reserved | {hcTaglib:setting name="icp" type="2" /} | <img
|
|
class="site-footer__gongan" src="/themes/dist_static/static/images/gongan-DdFBmJbc.png" alt="" /> {hcTaglib:setting name="gwa" type="2" /}</p>
|
|
<div class="site-footer__legal">
|
|
<a href="{:getMuiLangUrl('/sitemap.html')}">Sitemap</a>
|
|
<a href="{:getMuiLangUrl('/privacy.html')}">Privacy Policy</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|