callme.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <title>联系我们</title>
  8. <script type="text/javascript" src="../js/vue.min.js"></script>
  9. <link rel="stylesheet" href="../css/bootstrap.min.css" />
  10. <link rel="stylesheet" href="../css/header.css" />
  11. <link rel="stylesheet" href="../css/normalize.css" />
  12. <link rel="stylesheet" href="../css/callme.css" />
  13. </head>
  14. <body>
  15. <section id="app">
  16. <header>
  17. <div>
  18. <a class="left" href="/"><img src="../img/left-point.png" alt=""/></a>
  19. <h2>联系我们</h2>
  20. <a class="right" href=""><img src="../img/tools.png" alt=""/></a>
  21. </div>
  22. </header>
  23. <section class="callme">
  24. <section class="map"></section>
  25. <section class="call-phone">
  26. <p>联系方式</p>
  27. <div>
  28. <span
  29. >如果您有任何DIISEA技术的疑问,需要帮助与支援,或想登记注册您的DIISEA产品,请与我们DIISEA专家联系。</span
  30. >
  31. </div>
  32. <ul>
  33. <li>
  34. <p>总机电话:</p>
  35. <span>4008120098</span>
  36. </li>
  37. <li>
  38. <p>招聘邮箱:</p>
  39. <span>hr@diisea.com</span>
  40. </li>
  41. <li>
  42. <p>办公地址:</p>
  43. <span>湖北省国际级葛店经济开发区光谷联合科技城D3-3栋</span>
  44. </li>
  45. </ul>
  46. </section>
  47. </section>
  48. <!-- <footer>
  49. <section class="callme">
  50. <div class="telphone">
  51. <p>全国统一服务热线:</p>
  52. <span>电话:400-812-0098</span>
  53. </div>
  54. <div class="online">
  55. <img src="../img/call_03.jpg" alt="" />
  56. </div>
  57. </section>
  58. <section class="copy">
  59. <span>鄂ICP备19009716号 Copyright@2019 滴水科技版权所有</span>
  60. </section>
  61. </footer> -->
  62. </section>
  63. </body>
  64. <script type="text/javascript">
  65. new Vue({
  66. el: "#app",
  67. data() {
  68. return {};
  69. },
  70. mounted() {},
  71. methods: {}
  72. });
  73. </script>
  74. </html>