1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!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})">
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>联系我们 - 科德集团</title>
- <meta name="Keywords" Content="科德联系方式,科德电话,联系我们"/>
- <meta name="description" Content="科德集团成立于2001年,拥有21年企业咨询经验,为10万+客户提供企业查询服务。"/>
- <!-- 二级页面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">
- <div class="about-kede-content">
- <h4>联系我们</h4>
- <p>为客户提供优质的一站式服务咨询解决方案</p>
- <div class="content">
- <div id="baidu_container">
- <iframe width="1245" height="350" frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src="https://surl.amap.com/rDGS4SzaTG"></iframe>
- </div>
- <div class="contact_img">
- <img th:src="${portalHost+'/images/logo.jpg'}" />
- <h5>湖南科德信息咨询集团有限公司</h5>
- </div>
- <div class="contact_text">
- <ul>
- <li>地址:湖南省长沙市岳麓区茶子山东路湘江财富金融中心D座12层</li>
- <li>联系我们:400-8800-962 | 0731-89907207</li>
- <li style="display: flex;flex-flow: row nowrap;white-space: nowrap;">
- 客服热线:
- <span style="display: flex;flex-flow: row wrap">
- <div style="padding-right: 10px;">18932403553(陈女士)</div>
- <div>18974979313(颜女士)</div>
- </span>
- </li>
- <li>QQ咨询:1924306267</li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 主体内容 end -->
- <!-- 底部 -->
- <footer>
- <div th:replace="common::copyright('')"></div>
- </footer>
- <!-- 底部 end -->
- </div>
- <div th:replace="common::footer(~{},'')">
- </div>
- </body>
- </html>
|