123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head th:replace="common::header(~{::title},~{::link})">
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>阿凡提-品牌建设</title>
- <link th:href="${portalHost + '/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost + '/newMenu/brandBuild.css'}" rel="stylesheet">
- <body>
- <header>
- <div th:replace="common::nav('service','')"></div>
- </header>
- <!-- 公共头部结束 -->
- <div class="continueHighBanner">
- <img th:src="${portalHost+'/img/load/brandBuild_1.png'}" alt="">
- </div>
- <div class="brandTop">
- <div class="brandTitle">
- <h2>概念</h2>
- <span>concept</span>
- <p>品牌建设以塑造强势品牌为核心的企业战略</p>
- <p>将品牌建设提升到企业经营战略的高度,其核心在于建立与同类型企业更加优质的品牌识别,为企业发</p>
- <p>展设立目标、方向、原则与指导策略,为日后的具体品牌建设战术与行为制定"宪法"。</p>
- </div>
- </div>
- <div class="brandTitle">
- <h2>业务介绍</h2>
- <span>Business introduction</span>
- </div>
- <div class="brandBuess">
- <ul>
- <li th:each="l:${list}">
- <a th:href="@{/portal/service/serviceDetail(id=${l.id})}">
- <div>
- <h3 th:text="${l.name}">体品牌建</h3>
- <img th:src="${portalHost+'/img/load/brandBuild_right.png'}" alt="">
- <p th:text="${#strings.abbreviate(l.summary,30)}">导策略,</p>
- </div>
- <!--下面的图为后台取图-->
- <img th:src="${l.maxImgUrl}==null or ${l.maxImgUrl} == ''?${portalHost+'/img/load/brandBuild_3.png'}:${avatarUploadHost+l.maxImgUrl}" alt="">
- </a>
- </li>
-
- </ul>
- <img th:src="${portalHost+'/img/load/brandBuild_3.png'}" alt="" class="brandImg2">
- </div>
- <div class="brandTitle">
- <h2>优势</h2>
- <span>Business advantage</span>
- </div>
- <div class="advantage">
- <div class="advantageBody">
- <div>
- <p>平台</p>
- <p>权威可靠</p>
- </div>
- <div>
- <p>团队</p>
- <p>优质精专</p>
- </div>
- <div>
- <p>交易</p>
- <p>公平自主</p>
- </div>
- </div>
- </div>
- <div class="brandTitle">
- <h2>客户案例</h2>
- <span>Business case</span>
- </div>
- <div class="brandCase">
- <img th:src="${portalHost+'/img/load/brandBuild_4.png'}" alt="">
- <img th:src="${portalHost+'/img/load/brandBuild_5.png'}" alt="">
- <img th:src="${portalHost+'/img/load/brandBuild_6.png'}" alt="">
- <img th:src="${portalHost+'/img/load/brandBuild_7.jpg'}" alt="">
- </div>
- <!-- 公共底部开始 -->
- <footer>
- <div th:replace="common::copyright"></div>
- <div th:replace="common::login"></div>
- </footer>
- <div th:replace="common::footer(~{::script})">
- <script type="text/javascript" th:src="${portalHost + '/dll/dll.js'}"></script>
- <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
- <script type="text/javascript" th:src="${portalHost + '/newMenu/brandBuild.js'}"></script>
- </div>
- </body>
- </html>
|