MainBusiness.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <script setup>
  2. import { nextTick, onMounted, ref } from 'vue';
  3. import Layout from '../components/common/Layout.vue';
  4. </script>
  5. <template>
  6. <div>
  7. <Layout>
  8. <div class="contact">
  9. <div class="index-page" style="width: 100%">
  10. <div class="page-header-sub">
  11. <!-- <img src="../assets/images/business.png" alt=""> -->
  12. <img src="../assets/images/jtgk.jpg" alt="">
  13. </div>
  14. </div>
  15. <div class="contactContainer1">
  16. <div class="contactContent">
  17. <div>{{ $t("message.ywjs") }}</div>
  18. <div class="fw">{{ $t('message.ywjs1') }}</div>
  19. </div>
  20. <div class="contactContent">
  21. <div>{{ $t('message.ywzx') }}</div>
  22. <div class="cardContent">
  23. <div>
  24. <img src="../assets/images/call.png" alt="">
  25. <div>
  26. +852 XXXX XXXX
  27. </div>
  28. <div>
  29. <div>{{ $t('message.ywzx2') }}</div>
  30. </div>
  31. </div>
  32. <div>
  33. <img src="../assets/images/call.png" alt="">
  34. <div>
  35. +852 XXXX XXXX
  36. </div>
  37. <div>
  38. <div>{{ $t('message.ywzx1') }}</div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </Layout>
  46. </div>
  47. </template>
  48. <style scoped lang="scss">
  49. .contactContainer {
  50. width: 100%;
  51. height: 100%;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. font-size: 24px;
  56. color: #333;
  57. }
  58. .contactContainer1 {
  59. width: 100%;
  60. height: 100%;
  61. background-color: #f7f7f7;
  62. padding-bottom: 5rem;
  63. }
  64. .contact {
  65. width: 100%;
  66. }
  67. .fw {
  68. // font-weight: 550;
  69. color: #444;
  70. }
  71. .bgImg {
  72. width: 100%;
  73. >img {
  74. width: 100%;
  75. height: 100%;
  76. }
  77. }
  78. .contactContent {
  79. width: 65%;
  80. margin: 0px auto 20px;
  81. font-size: 1.3rem;
  82. padding-top:3rem;
  83. >div:nth-child(1) {
  84. font-size: 1.5rem;
  85. color: #F7B334;
  86. font-weight: bold;
  87. margin-bottom: 1.7rem;
  88. }
  89. }
  90. .cardContent {
  91. display: flex;
  92. >div {
  93. width: 45%;
  94. // height: 15rem;
  95. background: #fff;
  96. padding: 1.3rem;
  97. text-align: center;
  98. font-size: 1.6rem;
  99. font-weight: 550;
  100. color: #444;
  101. >img {
  102. width: 3rem;
  103. height: 3rem;
  104. margin: 2rem 0rem 0rem 0rem
  105. }
  106. >div:nth-child(2) {
  107. font-size: 2.2rem;
  108. color: #F7B334;
  109. }
  110. >div:nth-child(3) {
  111. font-size: 1rem;
  112. color: #333;
  113. }
  114. }
  115. >div:nth-child(1) {
  116. margin-right: 5rem;
  117. }
  118. @media screen and (max-width: 767px) {
  119. width: 100%;
  120. display: block;
  121. >div {
  122. padding:0rem;
  123. width: 100%;
  124. margin-bottom: 2rem;
  125. padding-bottom:2rem;
  126. padding-top:1rem;
  127. }
  128. }
  129. }
  130. </style>