trends.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <script lang='ts' setup>
  2. </script>
  3. <template>
  4. <div class="bg-#0F0820 ">
  5. <div class="header">
  6. <div class=" w-1200-auto flex items-center h-800px bg-no-repeat bg-center pos-relative">
  7. <div class="pos-relative">
  8. <h1 class="text-58px fw-800 text-#fff ls-2 custom-title-font">
  9. Stay Ahead with
  10. </h1>
  11. <h1 class="text-58px fw-800 text-#fff ls-2 custom-title-font">
  12. Trendy Products!
  13. </h1>
  14. <el-button class="mt-65px !bg-#878490 !text-#fff !bg-#878490 !w-160px !h-40px !b-#fff !b-rd-200px" round>
  15. Contact US
  16. </el-button>
  17. <div
  18. class="pos-absolute top--16px text-center right--60px w-150px py-8px bg-#FFFF66 b-rd-20px transform-rotate-16deg"
  19. >
  20. #Trendy Product
  21. </div>
  22. </div>
  23. <img src="@/assets/images/trendy_banner_img.png" class="w-660px h-730px pos-absolute right-0 bottom-0" alt="">
  24. </div>
  25. </div>
  26. <business-trends />
  27. <business-categories-block />
  28. <common-block-blog />
  29. <common-block-faq />
  30. <AppFooter />
  31. </div>
  32. </template>
  33. <style lang='less' scoped>
  34. .header{
  35. background-image: url('@/assets/images/catalogue_bg.png');
  36. background-position: center center;
  37. background-size: cover;
  38. }
  39. </style>