contact.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <div class="social-media common-width">
  3. <h5 class="social-media-header">
  4. <span class="inner-text">联系我们</span>
  5. </h5>
  6. <div class="d-flex">
  7. <div class="left">
  8. <h2>欢迎关注,了解门墩儿的新动态。</h2>
  9. <p class="mt-3" style="font-size: .9rem;">门墩儿在所有主流社交媒体都有账号。欢迎关注我们,以便了解关于发展趋势和领导力问题的最新见解。</p>
  10. <div class="d-flex align-center social-contact mt-5 justify-space-between">
  11. <div>
  12. <p class="mb-2">联系方式</p>
  13. <p>猎头顾问: 姚嘉庆 Julia</p>
  14. <p>邮&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;箱:Julia.yao@menduner.com</p>
  15. <p>手&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;机:18501626969</p>
  16. </div>
  17. <div class="text-center">
  18. <div style="width: 120px; height: 120px; margin: auto;">
  19. <v-img class="ml-2" cover aspect-ratio="1/1" src="https://minio.citupro.com/dev/menduner/official-account-code4.jpg" width="120" height="120"></v-img>
  20. </div>
  21. <div class="font-size-15 ml-4 mt-1">关注menduner公众号</div>
  22. </div>
  23. </div>
  24. </div>
  25. <div class="right text-end">
  26. <img src="https://minio.citupro.com/dev/menduner/headhunting/concact-bg.jpg" height="324" width="460" alt="" />
  27. </div>
  28. </div>
  29. </div>
  30. </template>
  31. <script setup>
  32. defineOptions({ name: 'contactPage'})
  33. </script>
  34. <style scoped lang="scss">
  35. .common-width {
  36. width: 100%;
  37. max-width: 1000px;
  38. }
  39. .social-media {
  40. margin: auto;
  41. padding-bottom: 100px;
  42. &-header {
  43. position: relative;
  44. text-transform: uppercase;
  45. text-align: center;
  46. margin: 0 0 52px;
  47. .inner-text {
  48. display: inline-block;
  49. background-color: #fff;
  50. padding: 0 18px;
  51. color: #4c4c4e;
  52. position: relative;
  53. z-index: 2;
  54. }
  55. &::after {
  56. content: "";
  57. position: absolute;
  58. width: 100%;
  59. height: 0;
  60. border-top: 1px dotted #747476;
  61. left: 0;
  62. bottom: 50%;
  63. margin-bottom: 2px;
  64. }
  65. }
  66. .left {
  67. width: 50%;
  68. color: #4c4c4e;
  69. .social-contact {
  70. padding: 20px 20px;
  71. background-color: #e8f0f7;
  72. }
  73. }
  74. .right {
  75. flex: 1;
  76. }
  77. }
  78. </style>