1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!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, user-scalable=no">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>科德信息咨询</title>
- <!-- 二级页面CSS -->
- <link rel="stylesheet" th:href="${portalHost+'/css/secode.css'}">
- </head>
- <body>
- <div class="app">
- <!-- 头部 -->
- <header>
- <div th:replace="common::nav('','')"></div>
- <!-- 轮播图 -->
- <div class="swiper-containerx">
- <img th:src="${banners}==null?${portalHost+'/images/banner/about_bg.png'}:${avatarUploadHost}+${banners.bannerUrl}" />
- <div class="swiper_title">
- <h6>联系我们</h6>
- </div>
- </div>
- <!-- 轮播图 end -->
- </header>
- <!-- 头部 end -->
- <!-- 主体内容 -->
- <div class="about-cx main about-kede-main">
- <div class="container" style="padding-top: 50px">
- <div class="about-kede-content">
- <h4>联系我们</h4>
- <p>为客户提供优质的一站式服务咨询解决方案</p>
- <div style="display:flex;margin-top: 50px;justify-content: space-between">
- <div style="display:flex;flex-flow: column">
- <div class="contact_img" style="padding-top: 0px;padding-left: 0px;">
- <img th:src="${portalHost+'/images/logo-gz-0.png'}" style="margin-left: 0px"/>
- <h5>广州科德企业信息咨询有限公司</h5>
- </div>
- <div style="display:flex;margin-top: 20px">
- <div style="margin-right: 20px">
- <div style="font-size: 17px;margin-bottom: 15px">地址:广州市白云区嘉禾望岗望岗大道杨村园自编68号长旺大厦A707室</div>
- <div style="font-size: 17px;margin-bottom: 15px">联系我们:400-8800-962</div>
- <div style="font-size: 17px;margin-bottom: 15px">客服咨询:188-2583-2300</div>
- <div style="font-size: 17px;margin-bottom: 15px">QQ咨询:1098110330</div>
- </div>
- </div>
- </div>
- <iframe width="604" height="525" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://j.map.baidu.com/s/5UZIFb"></iframe>
- </div>
- </div>
- </div>
- </div>
- <!-- 主体内容 end -->
- <!-- 底部 -->
- <footer>
- <div th:replace="common::copyright"></div>
- </footer>
- <!-- 底部 end -->
- </div>
- <div th:replace="common::footer(~{},'')">
- <script></script>
- </div>
- </body>
- </html>
|