This commit is contained in:
make
2025-12-31 00:49:32 +08:00
parent ae57b68f99
commit eb8c097777
709 changed files with 39727 additions and 1041 deletions

View File

@@ -0,0 +1,28 @@
<section class="{$TpStyle.dom_prefix}-recA-wrap">
<header class="{$TpStyle.dom_prefix}-recA-head">
<h2 class="{$TpStyle.dom_prefix}-recA-title">编辑精选</h2>
<span class="{$TpStyle.dom_prefix}-recA-sub">今天值得一看的好片</span>
</header>
<ul class="{$TpStyle.dom_prefix}-recA-grid">
{volist name="arrVideoRecommend" id="vo" offset="0" length="8"}
<li class="{$TpStyle.dom_prefix}-recA-item">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recA-link">
<div class="{$TpStyle.dom_prefix}-recA-coverBox">
<img
loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-recA-cover"
>
{if !empty($vo.v_remarks)}
<span class="{$TpStyle.dom_prefix}-recA-tag">{$vo.v_remarks}</span>
{/if}
</div>
<p class="{$TpStyle.dom_prefix}-recA-name">{$vo.v_name}</p>
</a>
</li>
{/volist}
</ul>
</section>

View File

@@ -0,0 +1,30 @@
<section class="{$TpStyle.dom_prefix}-recB-wrap">
<div class="{$TpStyle.dom_prefix}-recB-head">
<span class="{$TpStyle.dom_prefix}-recB-label">口碑佳作</span>
<h2 class="{$TpStyle.dom_prefix}-recB-title">好评推荐</h2>
</div>
<div class="{$TpStyle.dom_prefix}-recB-scroll">
{volist name="arrVideoRecommend" id="vo" offset="0" length="10"}
<article class="{$TpStyle.dom_prefix}-recB-card">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recB-anchor">
<figure class="{$TpStyle.dom_prefix}-recB-figure">
<img
loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-recB-img"
>
</figure>
<div class="{$TpStyle.dom_prefix}-recB-meta">
<h3 class="{$TpStyle.dom_prefix}-recB-name">{$vo.v_name}</h3>
{if !empty($vo.v_remarks)}
<p class="{$TpStyle.dom_prefix}-recB-info">{$vo.v_remarks}</p>
{/if}
</div>
</a>
</article>
{/volist}
</div>
</section>

View File

@@ -0,0 +1,45 @@
<section class="{$TpStyle.dom_prefix}-recC-block">
<header class="{$TpStyle.dom_prefix}-recC-top">
<h2 class="{$TpStyle.dom_prefix}-recC-title">今日主打</h2>
<span class="{$TpStyle.dom_prefix}-recC-tip">为你挑选的一些好片</span>
</header>
<div class="{$TpStyle.dom_prefix}-recC-body">
{volist name="arrVideoRecommend" id="vo" offset="0" length="1"}
<div class="{$TpStyle.dom_prefix}-recC-main">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recC-mainLink">
<div class="{$TpStyle.dom_prefix}-recC-mainCover">
<img
loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-recC-mainImg"
>
<span class="{$TpStyle.dom_prefix}-recC-mainBadge">主推</span>
</div>
<div class="{$TpStyle.dom_prefix}-recC-mainText">
<h3 class="{$TpStyle.dom_prefix}-recC-mainName">{$vo.v_name}</h3>
{if !empty($vo.v_remarks)}
<p class="{$TpStyle.dom_prefix}-recC-mainRemark">{$vo.v_remarks}</p>
{/if}
</div>
</a>
</div>
{/volist}
<ul class="{$TpStyle.dom_prefix}-recC-side">
{volist name="arrVideoRecommend" id="vo" offset="1" length="6" key="k"}
<li class="{$TpStyle.dom_prefix}-recC-sideItem">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recC-sideLink">
<span class="{$TpStyle.dom_prefix}-recC-sideNo">{:sprintf('%02d',$k)}</span>
<span class="{$TpStyle.dom_prefix}-recC-sideName">{$vo.v_name}</span>
{if !empty($vo.v_remarks)}
<span class="{$TpStyle.dom_prefix}-recC-sideRemark">{$vo.v_remarks}</span>
{/if}
</a>
</li>
{/volist}
</ul>
</div>
</section>

View File

@@ -0,0 +1,32 @@
<section class="{$TpStyle.dom_prefix}-recD-section">
<div class="{$TpStyle.dom_prefix}-recD-header">
<h2 class="{$TpStyle.dom_prefix}-recD-caption">
<span class="{$TpStyle.dom_prefix}-recD-dot"></span> 为你而选
</h2>
<span class="{$TpStyle.dom_prefix}-recD-more">好片不容错过</span>
</div>
<div class="{$TpStyle.dom_prefix}-recD-grid">
{volist name="arrVideoRecommend" id="vo" offset="0" length="6"}
<div class="{$TpStyle.dom_prefix}-recD-cell">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recD-cellLink">
<div class="{$TpStyle.dom_prefix}-recD-thumbBox">
<img
loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-recD-thumb"
>
</div>
<div class="{$TpStyle.dom_prefix}-recD-info">
<p class="{$TpStyle.dom_prefix}-recD-infoName">{$vo.v_name}</p>
{if !empty($vo.v_remarks)}
<p class="{$TpStyle.dom_prefix}-recD-infoSub">{$vo.v_remarks}</p>
{/if}
</div>
</a>
</div>
{/volist}
</div>
</section>

View File

@@ -0,0 +1,30 @@
<section class="{$TpStyle.dom_prefix}-recE-wrap">
<header class="{$TpStyle.dom_prefix}-recE-head">
<h2 class="{$TpStyle.dom_prefix}-recE-title">轻松随便看点什么</h2>
</header>
<ol class="{$TpStyle.dom_prefix}-recE-list">
{volist name="arrVideoRecommend" id="vo" key="k" offset="0" length="8"}
<li class="{$TpStyle.dom_prefix}-recE-row">
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-recE-rowLink">
<span class="{$TpStyle.dom_prefix}-recE-index">{:sprintf('%02d',$k)}</span>
<span class="{$TpStyle.dom_prefix}-recE-text">
<span class="{$TpStyle.dom_prefix}-recE-name">{$vo.v_name}</span>
{if !empty($vo.v_remarks)}
<span class="{$TpStyle.dom_prefix}-recE-tag">{$vo.v_remarks}</span>
{/if}
</span>
<span class="{$TpStyle.dom_prefix}-recE-thumbBox">
<img
loading="lazy"
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
alt="{$vo.v_name}"
class="{$TpStyle.dom_prefix}-recE-thumb"
>
</span>
</a>
</li>
{/volist}
</ol>
</section>