MainBusiness.vue 3.4 KB

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