about-us.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <script lang='ts' setup>
  2. </script>
  3. <template>
  4. <div>
  5. <div class="bg-#0F0820">
  6. <div class="header w-1200-auto flex items-center justify-between pt-180px pb-150px">
  7. <div>
  8. <h1 class="text-58px fw-800 text-#fff ls-2 custom-title-font">
  9. About The <br>
  10. EJET Spark <span class="custom-title-bg02 !pb-0px title-h1">Team</span>
  11. </h1>
  12. <el-button class="my-60px !text-#fff !bg-#878490 !w-160px !h-40px !b-#fff !b-rd-400px" round>
  13. <nuxt-link :to="{ name: 'contact' }">
  14. Contact Us
  15. </nuxt-link>
  16. </el-button>
  17. </div>
  18. <img src="@/assets/images/about_banner.png" class="w-540px h-460px" alt="">
  19. </div>
  20. </div>
  21. <business-about-intro />
  22. <business-about-show />
  23. <business-categories-block />
  24. <business-about-team />
  25. <common-block-exhibited />
  26. <common-block-partner />
  27. <common-block-faq />
  28. <AppFooter />
  29. </div>
  30. </template>
  31. <style lang='less' scoped>
  32. .title-h1{
  33. padding-bottom: 0px !important;
  34. background-position: center 90% !important;
  35. }
  36. </style>