58 lines
2.3 KiB
HTML
58 lines
2.3 KiB
HTML
{extend name="public/base" /}
|
|
{block name="title"}
|
|
{notempty name=":lang_i18n('品牌介绍')"}<title>{:lang_i18n('品牌介绍')}</title>{else/}{__BLOCK__}{/notempty}
|
|
{/block}
|
|
{block name="style"}
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/aboutus_introduction.css" />
|
|
{/block}
|
|
{block name="main"}
|
|
<div class="oricoEGapp">
|
|
<div class="iotbpage">
|
|
{notempty name="focus_image"}
|
|
<img src="{$focus_image.image}" alt="" class="bdimg1">
|
|
{/notempty}
|
|
{notempty name="why"}
|
|
<div class="iotb_bgw">
|
|
<h1 class="iotbt1">{:lang_i18n('选择我们的理由')}</h1>
|
|
<div class="iotb_part1">
|
|
{volist name="why" id="wh"}
|
|
<div class="iotb_p1_item" style="margin-bottom: 30px;">
|
|
<img src="{$wh.image}" alt="" class="iotbic1">
|
|
<p class="iotbtp1">{$wh.title}</p>
|
|
<span class="iotbts1">{$wh.desc|raw}</span>
|
|
</div>
|
|
{/volist}
|
|
</div>
|
|
</div>
|
|
{/notempty}
|
|
{notempty name="service"}
|
|
<div class="iotb_part2 iotb_part22">
|
|
<h1 class="iotbt1">{:lang_i18n('为您提供专属定制服务')}</h1>
|
|
<div class="fdimgs wcu_list">
|
|
{assign name="flat_service" value=":\think\helper\Arr::flatMap(fn($item) => $item, $service)" /}
|
|
{volist name="flat_service" id="fs"}
|
|
<div class="wcu_ltem">
|
|
<img src="{$fs.image}" alt="" class="fbit">
|
|
<span class="wcu_s1">{$fs.title}</span>
|
|
</div>
|
|
{/volist}
|
|
</div>
|
|
</div>
|
|
{/notempty}
|
|
{notempty name="difference"}
|
|
<div class="iotb_part2">
|
|
<h1 class="iotbt1">{:lang_i18n('对于不同的情况')}</h1>
|
|
<div class="fdimgs wcu_list">
|
|
{assign name="flat_difference" value=":\think\helper\Arr::flatMap(fn($item) => $item, $difference)" /}
|
|
{volist name="flat_difference" id="di"}
|
|
<div class="wcu_ltem">
|
|
<img src="{$di.image}" alt="" class="fbit">
|
|
<span class="wcu_s1">{$di.title}</span>
|
|
</div>
|
|
{/volist}
|
|
</div>
|
|
</div>
|
|
{/notempty}
|
|
</div>
|
|
</div>
|
|
{/block} |