20 lines
762 B
HTML
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>
|