index.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <v-card class="card-box px-5 mt-16 mx-3">
  3. <div class="social-media common-width">
  4. <h5 class="social-media-header mt-10">
  5. <span class="inner-text">客服联系方式</span>
  6. </h5>
  7. <div class="d-flex flex-column align-center">
  8. <svg-icon name="warning" size="300"></svg-icon>
  9. <div class="d-flex justify-space-between">
  10. <div class="d-flex align-center social-contact pa-8 mt-5 justify-space-between">
  11. <div class="ml-3">
  12. <p class="mt-3 mb-2">联系电话:18621329797</p>
  13. <p>电子邮箱:peter.pan@menduner.com</p>
  14. </div>
  15. <div class="mr-10 d-flex flex-column align-center">
  16. <div style="width: 120px; height: 120px;">
  17. <v-img cover aspect-ratio="1/1" src="https://minio.menduner.com/dev/menduner/contact.png" width="120" height="120"></v-img>
  18. </div>
  19. <div class="font-size-15 mt-2">潘青海先生 Peter Pan</div>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. </v-card>
  26. </template>
  27. <script setup>
  28. defineOptions({ name: 'contactUs'})
  29. </script>
  30. <style scoped lang="scss">
  31. .common-width {
  32. width: 100%;
  33. max-width: 1100px;
  34. }
  35. .social-media {
  36. margin: auto;
  37. padding-bottom: 100px;
  38. &-header {
  39. position: relative;
  40. text-transform: uppercase;
  41. text-align: center;
  42. .inner-text {
  43. display: inline-block;
  44. background-color: #fff;
  45. padding: 0 18px;
  46. color: #ff5252;
  47. position: relative;
  48. font-size: 30px;
  49. z-index: 2;
  50. }
  51. &::after {
  52. content: "";
  53. position: absolute;
  54. width: 100%;
  55. height: 0;
  56. border-top: 1px dotted #ff5252;
  57. left: 0;
  58. bottom: 50%;
  59. margin-bottom: -1px;
  60. }
  61. }
  62. }
  63. .social-contact {
  64. width: 600px;
  65. background-color: #e8f0f7;
  66. }
  67. </style>