123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!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})">
- <title>阿凡提-知识产权维权首页</title>
- <link th:href="${portalHost+'/dll/dll.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/vendors.css'}" rel="stylesheet">
- <link th:href="${portalHost+'/newMenu/safeguarding.css'}" rel="stylesheet"></head>
- <body>
- <div th:replace="common::nav('','safeguarding')"></div>
- <!-- 上面是公共头部 -->
- <div class="continueHighBanner">
- <img th:src="${portalHost+'/img/safeguarding/safeguarding_banner.png'}" alt="">
- </div>
- <div class="container">
- <div class="indexSearch">
- <div class="search-inp">
- <div class="input-group">
- <input type="text" class="form-control demandSearch" placeholder="搜索您要找的法律顾问">
- <span class="input-group-btn">
- <button class="btn btn-default searchBtn" type="button">
- <img th:src="${portalHost+'/img/newMenu/search-icon.jpg'}" alt="">
- </button>
- </span>
- </div>
- </div>
- <span th:if="${userType != 1}">我要成为法律顾问</span>
- </div>
- <!-- <div class="safeIndexPic">
- <img th:src="${portalHost+'/img/newMenu/safeIndex_1.png'}" alt="">
- </div> -->
- <div class="RecommendTitle">
- <h2>专属律师</h2>
- <span></span>
- </div>
- <div class="safeList">
- <ul>
- <li th:each="s:${slist}">
- <a th:href="@{/portal/service/safeguardingDetail(id=${s.uid})}">
- <div>
- <img th:src="${s.personPortraitUrl} != null and ${s.personPortraitUrl} != '' ? ${avatarUploadHost+s.personPortraitUrl}:${portalHost + '/img/newMenu/policyBanner.png'}" alt="">
- </div>
- <h3 th:text="${s.username}">李四光</h3>
- <!-- <span th:text="${s.workUnit}">长沙市律师长沙市律师</span> -->
- <p th:text="${#strings.abbreviate(s.professionalTitle,16)}">专注于商标、版权、专利、不正当竞争...</p>
- </a>
- </li>
- </ul>
- <div>
- <a th:href="@{/portal/service/safeguardingList}">发现更多律师</a>
- </div>
- </div>
- </div>
- <div class="safeBottom">
- <div class="container">
- <div class="RecommendTitle">
- <h2>维权小知识</h2>
- <span></span>
- </div>
- <div class="picTxt">
- <img th:src="${portalHost+'/img/newMenu/safeIndex_2.png'}" alt="">
- <div>
- <h3>商标侵权</h3>
- <p>1、未经商标注册人的许可,在同一种商品或者类似商品上使用与其注册商标相同或者近似的商标的</p>
- <p>2、销售侵犯注册商标专用权的商品的</p>
- <p>3、伪造、擅自制造他人注册商标标识或者销售伪造、擅自制造的注册商标标识</p>
- <p>4、未经商标注册人同意,更换其注册商标并将该更换商标的商品又投入市场 </p>
- <p>5、给他人的注册商标专用权造成其他损害的行为</p>
- </div>
- </div>
- <div class="picTxt">
- <div>
- <h3>专利侵权</h3>
- <p>1、未经许可制造专利产品的行为</p>
- <p>2、故意使用发明或实用新型专利产品的行为</p>
- <p>3、销售、许诺销售未经许可的专利产品的行为</p>
- <p>4、使用专利方法以及使用、销售、许诺销售依照专利方法直接获得的产品的行为 </p>
- <p>5、进口专利产品或进口依照专利方法直接得的产品的行为</p>
- <p>6、假冒他人专利的行为</p>
- <p>7、冒充专利的行为</p>
- </div>
- <img th:src="${portalHost+'/img/newMenu/safeIndex_22.png'}" alt="">
- </div>
- </div>
- </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/safeguarding.js'}"></script>
- </div>
- </body>
- </html>
|