footer.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <div class="footer">
  3. <div class="hflex acenter jbetween footer_top">
  4. <div class="top_item point" @click="toDetail(1)">
  5. <div class="top_item-text hflex acenter jbetween">
  6. <div>跨境贸易</div>
  7. <img src="@/assets/images/common/arrow-right.png" alt="" />
  8. </div>
  9. <div class="top_item-text2">Cross-border Trade</div>
  10. </div>
  11. <div class="top_item point" @click="toDetail(2)">
  12. <div class="top_item-text hflex acenter jbetween">
  13. <div>关于我们</div>
  14. <img src="@/assets/images/common/arrow-right.png" alt="" />
  15. </div>
  16. <div class="top_item-text2">About Us</div>
  17. </div>
  18. <div class="top_item point" @click="toDetail(3)">
  19. <div class="top_item-text hflex acenter jbetween">
  20. <div>联系我们</div>
  21. <img src="@/assets/images/common/arrow-right.png" alt="" />
  22. </div>
  23. <div class="top_item-text2">Contact Us</div>
  24. </div>
  25. </div>
  26. <div class="footer_bottom hflex acenter jbetween">
  27. <div class="point">{{ footer.banquan }}</div>
  28. <div class="hflex acenter point">
  29. <img src="@/assets/images/common/tele.png" class="tele_icon" />
  30. <div>{{ footer.tele }}</div>
  31. </div>
  32. <div class="hflex acenter point">
  33. <img src="@/assets/images/common/addr.png" alt="" class="addr_icon" />
  34. <div>{{ footer.addr }}</div>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. var that = ""
  41. export default {
  42. data() {
  43. return {
  44. footer: {
  45. banquan: '@2023 某某集团所拥有 201314687123',
  46. tele: '18569473721',
  47. addr: 'XX省XX市XX路XX交汇具体地点'
  48. }
  49. }
  50. },
  51. created() {
  52. that = this
  53. },
  54. methods: {
  55. toDetail(index) {
  56. console.log(index)
  57. var url = ''
  58. switch(index) {
  59. case 1:
  60. url= './trade'
  61. break;
  62. case 2:
  63. url= './about'
  64. break;
  65. case 3:
  66. url= './contact'
  67. break;
  68. }
  69. console.log(url)
  70. that.$router.push(url)
  71. }
  72. }
  73. }
  74. </script>
  75. <style scoped>
  76. @media screen and (max-width: 750px) {
  77. .footer .footer_bottom {
  78. flex-direction: column !important;
  79. align-items: start;
  80. }
  81. }
  82. .footer {
  83. width: 100%;
  84. /* height: 400px; */
  85. background: #191818;
  86. box-sizing: border-box;
  87. padding: 120px 202px;
  88. /* position: absolute; */
  89. bottom: 0;
  90. }
  91. .footer .footer_top {
  92. width: 100%;
  93. padding-bottom: 59px;
  94. border-bottom: 1px solid #fff;
  95. }
  96. .footer .footer_top .top_item {
  97. width: 400px;
  98. padding: 59px 0 0;
  99. border-top: 4px solid #fff;
  100. color: #FEFEFE;
  101. }
  102. .footer .footer_top .top_item .top_item-text {
  103. font-size: 70px;
  104. font-weight: 400;
  105. }
  106. .footer .footer_top .top_item:hover {
  107. color: #666;
  108. }
  109. .footer .footer_top .top_item .top_item-text2 {
  110. font-size: 40px;
  111. font-weight: 400;
  112. /* color: #FEFEFE; */
  113. padding-top: 18px;
  114. white-space: nowrap;
  115. width: 100%;
  116. overflow: hidden;
  117. }
  118. .footer .footer_top .top_item .top_item-text img {
  119. width: 58px;
  120. height: 58px;
  121. }
  122. .footer .footer_top .top_item:hover .top_item-text img {
  123. animation: tran 0.2s linear;
  124. animation-iteration-count: 1
  125. }
  126. @keyframes tran {
  127. 0% {
  128. transform: translate3d(-20px, 0 ,0);
  129. opacity: 0;
  130. }
  131. 100% {
  132. transform: translate(0 ,0);
  133. opacity: 1;
  134. }
  135. }
  136. .footer .footer_bottom {
  137. width: 100%;
  138. font-size: 24px;
  139. font-weight: 400;
  140. margin: 49px 0 0;
  141. }
  142. .footer .footer_bottom div {
  143. color: #FEFEFE;
  144. }
  145. .footer .footer_bottom div:hover {
  146. color: #666;
  147. }
  148. .footer .footer_bottom .tele_icon {
  149. width: 32px;
  150. margin-right: 23px;
  151. height: 30px;
  152. }
  153. .footer .footer_bottom .addr_icon {
  154. width: 28px;
  155. height: 38px;
  156. margin-right: 23px;
  157. }
  158. </style>