|
|
|
@ -147,176 +147,130 @@ |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
|
|
|
|
{hcTaglib:category id="374" item="vo" field="*"} |
|
|
|
<section class="ab-culture" id="culture"> |
|
|
|
<div class="ab-culture__bg" aria-hidden="true"> |
|
|
|
<img src="/themes/dist_static/static/images/section-4-bg-I0ikuncR.png" alt="" width="1920" height="900" /> |
|
|
|
<img src="{$vo.thumbnail.url ?? ''}" alt="" width="1920" height="900" /> |
|
|
|
</div> |
|
|
|
<div class="ab-culture__inner section__wrap"> |
|
|
|
<h2 class="ab-culture__title">企业文化</h2> |
|
|
|
<h2 class="ab-culture__title">{$vo.title}</h2> |
|
|
|
{php} |
|
|
|
$culture_raw = explode('#', $vo['description']); |
|
|
|
$culture_list = []; |
|
|
|
foreach ($culture_raw as $item) { |
|
|
|
$parts = explode(';', $item); |
|
|
|
if (count($parts) === 3) { |
|
|
|
$culture_list[] = ['zh' => $parts[0], 'en' => $parts[1], 'text' => $parts[2]]; |
|
|
|
} |
|
|
|
} |
|
|
|
{/php} |
|
|
|
<div class="ab-culture__list"> |
|
|
|
{volist name="culture_list" id="culture"} |
|
|
|
<div class="ab-culture__item"> |
|
|
|
<div class="ab-culture__label"> |
|
|
|
<span class="ab-culture__label-zh">企业愿景</span> |
|
|
|
<span class="ab-culture__label-en">Mission</span> |
|
|
|
</div> |
|
|
|
<p class="ab-culture__text">用卓越自动化共创美好未来</p> |
|
|
|
</div> |
|
|
|
<div class="ab-culture__item"> |
|
|
|
<div class="ab-culture__label"> |
|
|
|
<span class="ab-culture__label-zh">核心价值观</span> |
|
|
|
<span class="ab-culture__label-en">Values</span> |
|
|
|
</div> |
|
|
|
<p class="ab-culture__text">客户第一、真诚协作<br>结果导向、追求卓越</p> |
|
|
|
</div> |
|
|
|
<div class="ab-culture__item"> |
|
|
|
<div class="ab-culture__label"> |
|
|
|
<span class="ab-culture__label-zh">企业宗旨</span> |
|
|
|
<span class="ab-culture__label-en">Purpose</span> |
|
|
|
<span class="ab-culture__label-zh">{$culture.zh}</span> |
|
|
|
<span class="ab-culture__label-en">{$culture.en}</span> |
|
|
|
</div> |
|
|
|
<p class="ab-culture__text">始终坚持以客户需求为核心,以自研技术为根基,以卓越品质为承诺,持续为客户创造最大价值。</p> |
|
|
|
<p class="ab-culture__text">{$culture.text|raw}</p> |
|
|
|
</div> |
|
|
|
{/volist} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
|
|
|
|
{hcTaglib:category id="375" item="vo" field="*"} |
|
|
|
<section class="ab-global section__wrap" id="global" data-header-dark> |
|
|
|
<h2 class="ab-global__title">全球布局</h2> |
|
|
|
<h2 class="ab-global__title">{$vo.title}</h2> |
|
|
|
{php} |
|
|
|
$global_raw = explode(',', $vo['description']); |
|
|
|
$global_list = []; |
|
|
|
foreach ($global_raw as $item) { |
|
|
|
$parts = explode(';', $item, 3); |
|
|
|
if (count($parts) >= 2) { |
|
|
|
$desc = isset($parts[2]) ? str_replace(';', '<br>', $parts[2]) : ''; |
|
|
|
$global_list[] = ['num' => $parts[0], 'unit' => $parts[1], 'desc' => $desc]; |
|
|
|
} |
|
|
|
} |
|
|
|
$global_left = array_slice($global_list, 0, 3); |
|
|
|
$global_right = array_slice($global_list, 3); |
|
|
|
{/php} |
|
|
|
<div class="ab-global__layout"> |
|
|
|
<ul class="ab-global__side ab-global__side--left"> |
|
|
|
{volist name="global_left" id="item"} |
|
|
|
<li> |
|
|
|
<strong><span class="counter">6</span><span>大研发中心</span></strong> |
|
|
|
<span class="ab-global__side-desc">工业自动化:福州、嘉兴、上海、武汉、深圳<br>半导体分销:广州</span> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<strong><span class="counter">3</span><span>大智能制造基地</span></strong> |
|
|
|
<span class="ab-global__side-desc">福州 嘉兴、东莞</span> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<strong><span class="counter">30</span><span>+</span></strong> |
|
|
|
<span class="ab-global__side-desc">海外经销商</span> |
|
|
|
<strong><span class="counter">{$item.num}</span><span>{$item.unit}</span></strong> |
|
|
|
{if $item.desc}<span class="ab-global__side-desc">{$item.desc|raw}</span>{/if} |
|
|
|
</li> |
|
|
|
{/volist} |
|
|
|
</ul> |
|
|
|
<div class="ab-global__visual"> |
|
|
|
<canvas id="earth-canvas" class="ab-global__earth"></canvas> |
|
|
|
</div> |
|
|
|
<ul class="ab-global__side ab-global__side--right"> |
|
|
|
{volist name="global_right" id="item"} |
|
|
|
<li> |
|
|
|
<strong><span class="counter">8</span><span>个海外代表处</span></strong> |
|
|
|
<span class="ab-global__side-desc">孟加拉国、印度、柬埔寨、巴基斯坦、<br>土耳其、阿联酋、印度尼西亚、越南</span> |
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<strong><span class="counter">50</span><span>+</span></strong> |
|
|
|
<span class="ab-global__side-desc">国内销售与服务机构</span> |
|
|
|
<strong><span class="counter">{$item.num}</span><span>{$item.unit}</span></strong> |
|
|
|
{if $item.desc}<span class="ab-global__side-desc">{$item.desc|raw}</span>{/if} |
|
|
|
</li> |
|
|
|
{/volist} |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
|
|
|
|
{hcTaglib:category id="376" item="vo" field="*"} |
|
|
|
<section class="ab-members" id="members"> |
|
|
|
<div class="ab-members__bg" aria-hidden="true"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-bg-C8lgVGE-.png" alt="" width="1920" height="900" /> |
|
|
|
<img src="{$vo.thumbnail.url ?? ''}" alt="" width="1920" height="900" /> |
|
|
|
</div> |
|
|
|
<div class="ab-members__inner section__wrap"> |
|
|
|
<h2 class="ab-members__title">集团成员</h2> |
|
|
|
<h2 class="ab-members__title">{$vo.title}</h2> |
|
|
|
<div class="ab-members__card"> |
|
|
|
<div class="ab-members__panels tab-content"> |
|
|
|
<div class="ab-members__panel tab-pane fade show active" id="ab-member-panel-0" role="tabpanel" aria-labelledby="ab-member-tab-0" tabindex="0"> |
|
|
|
<div class="ab-members__content"> |
|
|
|
<div> |
|
|
|
<h3 class="ab-members__name">上海睿能高齐自动化有限公司</h3> |
|
|
|
<p class="ab-members__desc"> |
|
|
|
上海睿能高齐自动化有限公司成立于2018年,是睿能科技旗下全资子公司。睿能自动化主要从事工业物联网、HMI、PLC、伺服系统、变频器等工业自动化产品的研发、生产、销售及系统集成...... |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<a class="s-btn s-btn--outline s-btn--pill ab-members__more" href="#">探索更多</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="ab-members__panel tab-pane fade" id="ab-member-panel-1" role="tabpanel" aria-labelledby="ab-member-tab-1" tabindex="0"> |
|
|
|
<div class="ab-members__content"> |
|
|
|
<div> |
|
|
|
<h3 class="ab-members__name">奇电电气(GIROD)</h3> |
|
|
|
<p class="ab-members__desc"> |
|
|
|
奇电电气专注工业电气与自动化配套产品,具备研发、制造与系统集成能力。并入睿能科技后,持续完善工业自动化产品矩阵,强化全产业链协同与交付能力。 |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<a class="s-btn s-btn--outline s-btn--pill ab-members__more" href="#">探索更多</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="ab-members__panel tab-pane fade" id="ab-member-panel-2" role="tabpanel" aria-labelledby="ab-member-tab-2" tabindex="0"> |
|
|
|
<div class="ab-members__content"> |
|
|
|
<div> |
|
|
|
<h3 class="ab-members__name">深圳亿维自动化有限公司</h3> |
|
|
|
<p class="ab-members__desc"> |
|
|
|
深圳亿维自动化(UniMAT)深耕可编程控制器与工业自动化控制产品,面向离散制造与过程控制等场景提供可靠的控制解决方案,助力客户实现设备智能化升级。 |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<a class="s-btn s-btn--outline s-btn--pill ab-members__more" href="#">探索更多</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="ab-members__panel tab-pane fade" id="ab-member-panel-3" role="tabpanel" aria-labelledby="ab-member-tab-3" tabindex="0"> |
|
|
|
{php}$member_idx = 0;{/php} |
|
|
|
{hcTaglib:content cid="$vo.id" moduleId="1" name="contentList" item="case_top" limit="10" mainField="id,url,title,sub_title,content,thumbnail" sort="sort desc" subField="" onlyData="2"} |
|
|
|
<div class="ab-members__panel tab-pane fade {if $member_idx == 0}show active{/if}" id="ab-member-panel-{$case_top.id}" role="tabpanel" aria-labelledby="ab-member-tab-{$case_top.id}" tabindex="{$case_top.id}"> |
|
|
|
<div class="ab-members__content"> |
|
|
|
<div> |
|
|
|
<h3 class="ab-members__name">贝诺国际(Burnon International)</h3> |
|
|
|
<h3 class="ab-members__name">{$case_top.title}</h3> |
|
|
|
<p class="ab-members__desc"> |
|
|
|
贝诺国际专注相关领域的技术与市场拓展,依托睿能科技平台资源,持续推进产品与解决方案的国际化布局,服务更广泛的行业客户与合作伙伴。 |
|
|
|
{$case_top.content|strip_tags} |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<a class="s-btn s-btn--outline s-btn--pill ab-members__more" href="#">探索更多</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="ab-members__panel tab-pane fade" id="ab-member-panel-4" role="tabpanel" aria-labelledby="ab-member-tab-4" tabindex="0"> |
|
|
|
<div class="ab-members__content"> |
|
|
|
<div> |
|
|
|
<h3 class="ab-members__name">琪利软件(Qili Software)</h3> |
|
|
|
<p class="ab-members__desc"> |
|
|
|
琪利软件专注工业软件与数字化相关产品研发,围绕自动化控制与智能制造场景,为客户提供软件工具、系统集成与技术服务,赋能生产效率提升。 |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
<a class="s-btn s-btn--outline s-btn--pill ab-members__more" href="#">探索更多</a> |
|
|
|
<a target="_blank" class="s-btn s-btn--outline s-btn--pill ab-members__more" href="{$case_top.url ?? '#'}">探索更多</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
{php}$member_idx++;{/php} |
|
|
|
{/hcTaglib:content} |
|
|
|
</div> |
|
|
|
<div class="ab-members__logos nav" role="tablist" aria-label="集团成员"> |
|
|
|
<button type="button" class="ab-members__logo nav-link active" id="ab-member-tab-0" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-0" |
|
|
|
role="tab" aria-controls="ab-member-panel-0" aria-selected="true"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-logo-1-DVpbfFy_.png" alt="上海睿能高齐" width="160" height="60" /> |
|
|
|
</button> |
|
|
|
<button type="button" class="ab-members__logo nav-link" id="ab-member-tab-1" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-1" |
|
|
|
role="tab" aria-controls="ab-member-panel-1" aria-selected="false"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-logo-2-D0uWVRPO.png" alt="奇电电气" width="160" height="60" /> |
|
|
|
</button> |
|
|
|
<button type="button" class="ab-members__logo nav-link" id="ab-member-tab-2" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-2" |
|
|
|
role="tab" aria-controls="ab-member-panel-2" aria-selected="false"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-logo-3-fn6Kr4ds.png" alt="亿维自动化" width="160" height="60" /> |
|
|
|
</button> |
|
|
|
<button type="button" class="ab-members__logo nav-link" id="ab-member-tab-3" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-3" |
|
|
|
role="tab" aria-controls="ab-member-panel-3" aria-selected="false"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-logo-4-CZyQbg-M.png" alt="贝诺国际" width="160" height="60" /> |
|
|
|
</button> |
|
|
|
<button type="button" class="ab-members__logo nav-link" id="ab-member-tab-4" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-4" |
|
|
|
role="tab" aria-controls="ab-member-panel-4" aria-selected="false"> |
|
|
|
<img src="/themes/dist_static/static/images/section-5-logo-5-Bbt0mBYA.png" alt="琪利软件" width="160" height="60" /> |
|
|
|
{php}$member_idx = 0;{/php} |
|
|
|
{hcTaglib:content cid="$vo.id" moduleId="1" name="contentList" item="case_top" limit="10" mainField="id,title,sub_title,content,thumbnail" sort="sort desc" subField="" onlyData="2"} |
|
|
|
<button type="button" class="ab-members__logo nav-link {if $member_idx == 0}active{/if}" id="ab-member-tab-{$case_top.id}" |
|
|
|
data-bs-toggle="tab" data-bs-target="#ab-member-panel-{$case_top.id}" |
|
|
|
role="tab" aria-controls="ab-member-panel-{$case_top.id}" aria-selected="{if $member_idx == 0}true{else}false{/if}"> |
|
|
|
<img src="{$case_top.thumbnail.url ?? ''}" alt="{$case_top.title}" width="160" height="60" /> |
|
|
|
</button> |
|
|
|
{php}$member_idx++;{/php} |
|
|
|
{/hcTaglib:content} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
|
|
|
|
{hcTaglib:category id="377" item="vo" field="*"} |
|
|
|
<section class="ab-honors section__wrap" id="honors" data-header-dark> |
|
|
|
<div class="ab-honors__head"> |
|
|
|
<h2 class="ab-honors__title">荣誉证书</h2> |
|
|
|
<p class="ab-honors__desc">累计获得各类科技奖项500+项</p> |
|
|
|
<h2 class="ab-honors__title">{$vo.title}</h2> |
|
|
|
<p class="ab-honors__desc">{$vo.description}</p> |
|
|
|
</div> |
|
|
|
<div class="ab-honors__body"> |
|
|
|
<ul class="ab-honors__list"> |
|
|
|
{hcTaglib:content cid="$vo.id" moduleId="1" name="contentList" item="case_top" limit="10" mainField="id,url,title,sub_title,content,thumbnail" sort="sort desc" subField="" onlyData="2"} |
|
|
|
<li class="ab-honors__item"> |
|
|
|
<span class="ab-honors__name">国家高新技术企业</span> |
|
|
|
<span class="ab-honors__name">{$case_top.title}</span> |
|
|
|
<a class="ab-honors__view" href="javascript:;"> |
|
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> |
|
|
|
<g id="eye"> |
|
|
|
@ -327,74 +281,11 @@ |
|
|
|
|
|
|
|
<span>查看证书</span> |
|
|
|
<span class="ab-honors__pop" aria-hidden="true"> |
|
|
|
<img class="ab-honors__cert-img" src="/themes/dist_static/static/images/award-1-D8Z6TI2L.png" alt="荣誉证书" /> |
|
|
|
</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li class="ab-honors__item"> |
|
|
|
<span class="ab-honors__name">国家知识产权优势企业</span> |
|
|
|
<a class="ab-honors__view" href="javascript:;"> |
|
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> |
|
|
|
<g id="eye"> |
|
|
|
<path d="M12.0019 15.5799C10.0219 15.5799 8.42188 13.9799 8.42188 11.9999C8.42188 10.0199 10.0219 8.41992 12.0019 8.41992C13.9819 8.41992 15.5819 10.0199 15.5819 11.9999C15.5819 13.9799 13.9819 15.5799 12.0019 15.5799Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
<path d="M21.1098 14.5907C22.0098 13.1807 22.0098 10.8107 21.1098 9.4007C18.8198 5.8007 15.5298 3.7207 11.9998 3.7207C8.46984 3.7207 5.17984 5.8007 2.88984 9.4007C1.98984 10.8107 1.98984 13.1807 2.88984 14.5907C5.17984 18.1907 8.46984 20.2707 11.9998 20.2707C15.5298 20.2707 18.8198 18.1907 21.1098 14.5907Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
</g> |
|
|
|
</svg> |
|
|
|
|
|
|
|
<span>查看证书</span> |
|
|
|
<span class="ab-honors__pop" aria-hidden="true"> |
|
|
|
<img class="ab-honors__cert-img" src="/themes/dist_static/static/images/award-2-Db5W0QkH.png" alt="荣誉证书" /> |
|
|
|
</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li class="ab-honors__item"> |
|
|
|
<span class="ab-honors__name">国家重点新产品奖</span> |
|
|
|
<a class="ab-honors__view" href="javascript:;"> |
|
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> |
|
|
|
<g id="eye"> |
|
|
|
<path d="M12.0019 15.5799C10.0219 15.5799 8.42188 13.9799 8.42188 11.9999C8.42188 10.0199 10.0219 8.41992 12.0019 8.41992C13.9819 8.41992 15.5819 10.0199 15.5819 11.9999C15.5819 13.9799 13.9819 15.5799 12.0019 15.5799Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
<path d="M21.1098 14.5907C22.0098 13.1807 22.0098 10.8107 21.1098 9.4007C18.8198 5.8007 15.5298 3.7207 11.9998 3.7207C8.46984 3.7207 5.17984 5.8007 2.88984 9.4007C1.98984 10.8107 1.98984 13.1807 2.88984 14.5907C5.17984 18.1907 8.46984 20.2707 11.9998 20.2707C15.5298 20.2707 18.8198 18.1907 21.1098 14.5907Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
</g> |
|
|
|
</svg> |
|
|
|
|
|
|
|
<span>查看证书</span> |
|
|
|
<span class="ab-honors__pop" aria-hidden="true"> |
|
|
|
<img class="ab-honors__cert-img" src="/themes/dist_static/static/images/award-3-s0AV7Wmo.png" alt="荣誉证书" /> |
|
|
|
</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li class="ab-honors__item"> |
|
|
|
<span class="ab-honors__name">国家制造业单项冠军优势企业</span> |
|
|
|
<a class="ab-honors__view" href="javascript:;"> |
|
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> |
|
|
|
<g id="eye"> |
|
|
|
<path d="M12.0019 15.5799C10.0219 15.5799 8.42188 13.9799 8.42188 11.9999C8.42188 10.0199 10.0219 8.41992 12.0019 8.41992C13.9819 8.41992 15.5819 10.0199 15.5819 11.9999C15.5819 13.9799 13.9819 15.5799 12.0019 15.5799Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
<path d="M21.1098 14.5907C22.0098 13.1807 22.0098 10.8107 21.1098 9.4007C18.8198 5.8007 15.5298 3.7207 11.9998 3.7207C8.46984 3.7207 5.17984 5.8007 2.88984 9.4007C1.98984 10.8107 1.98984 13.1807 2.88984 14.5907C5.17984 18.1907 8.46984 20.2707 11.9998 20.2707C15.5298 20.2707 18.8198 18.1907 21.1098 14.5907Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
</g> |
|
|
|
</svg> |
|
|
|
|
|
|
|
<span>查看证书</span> |
|
|
|
<span class="ab-honors__pop" aria-hidden="true"> |
|
|
|
<img class="ab-honors__cert-img" src="/themes/dist_static/static/images/award-4-C3cPoGd1.png" alt="荣誉证书" /> |
|
|
|
</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
<li class="ab-honors__item"> |
|
|
|
<span class="ab-honors__name">国家火炬计划重点高新技术企业</span> |
|
|
|
<a class="ab-honors__view" href="javascript:;"> |
|
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"> |
|
|
|
<g id="eye"> |
|
|
|
<path d="M12.0019 15.5799C10.0219 15.5799 8.42188 13.9799 8.42188 11.9999C8.42188 10.0199 10.0219 8.41992 12.0019 8.41992C13.9819 8.41992 15.5819 10.0199 15.5819 11.9999C15.5819 13.9799 13.9819 15.5799 12.0019 15.5799Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
<path d="M21.1098 14.5907C22.0098 13.1807 22.0098 10.8107 21.1098 9.4007C18.8198 5.8007 15.5298 3.7207 11.9998 3.7207C8.46984 3.7207 5.17984 5.8007 2.88984 9.4007C1.98984 10.8107 1.98984 13.1807 2.88984 14.5907C5.17984 18.1907 8.46984 20.2707 11.9998 20.2707C15.5298 20.2707 18.8198 18.1907 21.1098 14.5907Z" fill-rule="nonzero" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" /> |
|
|
|
</g> |
|
|
|
</svg> |
|
|
|
|
|
|
|
<span>查看证书</span> |
|
|
|
<span class="ab-honors__pop" aria-hidden="true"> |
|
|
|
<img class="ab-honors__cert-img" src="/themes/dist_static/static/images/award-5-BmexD-0Z.png" alt="荣誉证书" /> |
|
|
|
<img class="ab-honors__cert-img" src="{$case_top.thumbnail.url ?? ''}" alt="荣誉证书" /> |
|
|
|
</span> |
|
|
|
</a> |
|
|
|
</li> |
|
|
|
{/hcTaglib:content} |
|
|
|
</ul> |
|
|
|
<button type="button" class="ab-honors__more"> |
|
|
|
<span>展开更多</span> |
|
|
|
@ -402,21 +293,24 @@ |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
|
|
|
|
{hcTaglib:category id="378" item="vo" field="*"} |
|
|
|
<section class="ab-csr" id="csr"> |
|
|
|
<div class="ab-csr__bg" aria-hidden="true"> |
|
|
|
<img src="/themes/dist_static/static/images/section-7-bg-DLM6aENI.png" alt="" width="1920" height="720" /> |
|
|
|
<img src="{$vo.thumbnail.url ?? ''}" alt="" width="1920" height="720" /> |
|
|
|
</div> |
|
|
|
<div class="ab-csr__inner section__wrap"> |
|
|
|
<h2 class="ab-csr__title">企业社会责任</h2> |
|
|
|
<h2 class="ab-csr__title">{$vo.title}</h2> |
|
|
|
<div class="ab-csr__content"> |
|
|
|
<p class="ab-csr__desc"> |
|
|
|
睿能科技在经营公司业务的同时,积极承担社会责任,热心公益,践行环保。本着客观、规范、全面、透明的原则,对每一年度的社会责任履行情况进行回顾与总结,旨在加强公司同社会各界的联系,增强社会公众和投资者对公司的了解。 |
|
|
|
{$vo.description} |
|
|
|
</p> |
|
|
|
<a class="s-btn s-btn--light s-btn--pill" href="download.html?tab=csr">社会责任报告</a> |
|
|
|
<a class="s-btn s-btn--light s-btn--pill" href="/download.html?cid=591">社会责任报告</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
{/hcTaglib:category} |
|
|
|
</main> |
|
|
|
|
|
|
|
<div class="mask" id="mask"> |
|
|
|
|