trends.vue 1.1 KB

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