section01.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <script lang='ts' setup>
  2. import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, watch } from 'vue'
  3. </script>
  4. <template>
  5. <div class="flex items-center justify-between mt-160px">
  6. <div class="w-550px mr-20px">
  7. <div class="mb-20px text-#666">
  8. EJET SELECTION
  9. </div>
  10. <h2 class="!mb-20px fw-600 text-48px text-#333 custom-title-font">
  11. Quality Wholesale, Inspiring Global Retail
  12. </h2>
  13. <div class="mb-30px text-#999 text-20px lh-36px">
  14. EJET Selection is one of the top wholesale marketplaces
  15. that connects independent retailers worldwide with premium Chinese manufacturing brands.
  16. </div>
  17. <div class="mb-40px text-#C58C64 underline cursor-pointer">
  18. <NuxtLink to="/about">
  19. Learn More
  20. </NuxtLink>
  21. </div>
  22. <div class="flex justify-between">
  23. <div class="w-20%">
  24. <div class="text-32px text-#5B463E lh-32px fw-500 mb-10px common-bold-font">
  25. 2K +
  26. </div>
  27. <div class="text-24px lh-36px text-#666">
  28. Selected
  29. Brands
  30. </div>
  31. </div>
  32. <div class="custom-center w-40% pos-relative pl-40px ">
  33. <div class="text-32px text-#5B463E lh-32px fw-500 mb-10px common-bold-font">
  34. 40k +
  35. </div>
  36. <div class="text-24px lh-36px text-#666">
  37. Independent
  38. Retailers
  39. </div>
  40. </div>
  41. <div class="w-28%">
  42. <div class="text-32px text-#5B463E lh-32px fw-500 mb-10px common-bold-font">
  43. 100k +
  44. </div>
  45. <div class="text-24px lh-36px text-#666">
  46. Premium
  47. Products
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <div class="pos-relative">
  53. <img src="~/assets/images/section_img.png" class="w-750px h-524px" alt="top home decor wholesale marketplace" srcset="">
  54. </div>
  55. </div>
  56. </template>
  57. <style lang='less' scoped>
  58. .custom-center{
  59. &::before{
  60. position: absolute;
  61. content: "";
  62. bottom: 0%;
  63. top: 0%;
  64. left: 0;
  65. width: 1px;
  66. background: #CC9879;
  67. border-radius: 2px;
  68. }
  69. &::after{
  70. position: absolute;
  71. content: "";
  72. bottom: 0%;
  73. top: 0%;
  74. right:0;
  75. width: 1px;
  76. background: #CC9879;
  77. border-radius: 2px;
  78. }
  79. }
  80. </style>