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

16 lines
610 B
HTML

<div class="{$TpStyle.dom_prefix}-t2-wrap">
<h3 class="{$TpStyle.dom_prefix}-t2-title">热播精选</h3>
<div class="{$TpStyle.dom_prefix}-t2-scroll">
{volist name="arrVideoPiaofang" id="vo" offset="0" length="8"}
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-t2-card">
<img loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-t2-img">
<span>{$vo.v_name}</span>
</a>
{/volist}
</div>
</div>