Files
SEONexus/code/app/home/view/videoGpt1/module/trending/trending_04.html
2025-12-31 00:49:32 +08:00

20 lines
762 B
HTML

<section class="{$TpStyle.dom_prefix}-t4-box">
<h3 class="{$TpStyle.dom_prefix}-t4-tt">热门影视</h3>
<div class="{$TpStyle.dom_prefix}-t4-grid">
{volist name="arrVideoPiaofang" id="vo" offset="0" length="4"}
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-t4-card">
<figure>
<img loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
class="{$TpStyle.dom_prefix}-t4-img"
alt="{$vo.v_name}">
<figcaption class="{$TpStyle.dom_prefix}-t4-cap">
{$vo.v_name}
</figcaption>
</figure>
</a>
{/volist}
</div>
</section>