more.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <div class="bg-#F3F4FB py-120px data-section" data-section-color="#F3F4FB">
  3. <div class="w-1200-auto flex justify-between">
  4. <div>
  5. <h2 class="text-#333 text-36px !fw-800 custom-title-font">
  6. Discover more abour EJET Spark
  7. </h2>
  8. <div
  9. class="h-40px lh-40px !mt-20px text-14px w-128px text-center text-#fff b-rd-200px bg-#0F0820 hover:bg-#9B6CFF hover:text-#fff cursor-pointer"
  10. >
  11. <!-- <nuxt-link to="/faq"> -->
  12. Get started
  13. <!-- </nuxt-link> -->
  14. </div>
  15. </div>
  16. <div class="w-680px pos-relative block gap-40px">
  17. <div
  18. class="p-30px b-rd-10px block-top bg-#F9FAFB block-shadow flex justify-between items-end"
  19. >
  20. <div>
  21. <img
  22. src="@/assets/images/email.png"
  23. class="w-32px h-32px"
  24. alt=""
  25. >
  26. <h3
  27. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  28. >
  29. Download Catalogs
  30. </h3>
  31. <div class="text-#999 lh-22px">
  32. EJET Spark description, spark the trend, ignate sales. EJET
  33. Spark catalog description,
  34. </div>
  35. </div>
  36. <el-button
  37. class="!b-0px !bg-#9B6CFF ml-40px !text-#fff !w-160px !h-32px !text-14px !b-rd-410px"
  38. >
  39. <nuxt-link to="/categories">
  40. View Catalogs
  41. </nuxt-link>
  42. </el-button>
  43. </div>
  44. <div
  45. class="p-30px b-rd-10px bg-#F9FAFB block-shadow flex justify-between items-end"
  46. >
  47. <nuxt-link to="/solutions">
  48. <img
  49. src="@/assets/images/email.png"
  50. class="w-32px h-32px"
  51. alt=""
  52. >
  53. <h3
  54. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  55. >
  56. View Solutions
  57. </h3>
  58. <div class="text-#999 lh-22px">
  59. EJET Spark description, spark the trend, ignate sales. EJET
  60. Spark catalog description,
  61. </div>
  62. </nuxt-link>
  63. </div>
  64. <div
  65. class="p-30px b-rd-10px bg-#F9FAFB block-shadow flex justify-between items-end"
  66. >
  67. <nuxt-link to="/blog">
  68. <img
  69. src="@/assets/images/email.png"
  70. class="w-32px h-32px"
  71. alt=""
  72. >
  73. <h3
  74. class="!mt-20px !mb-10px !text-24px !fw-800 custom-title-font text-#333"
  75. >
  76. View Blogs
  77. </h3>
  78. <div class="text-#999 lh-22px">
  79. EJET Spark description, spark the trend, ignate sales. EJET
  80. Spark catalog description,
  81. </div>
  82. </nuxt-link>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. </template>
  88. <style lang="less" scoped>
  89. .shadow {
  90. box-shadow:
  91. 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
  92. 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  93. }
  94. .block-shadow {
  95. box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  96. }
  97. .block {
  98. display: grid;
  99. grid-template-rows: auto auto;
  100. grid-template-columns: 1fr 1fr;
  101. gap: 40px;
  102. .block-top {
  103. grid-column: 1/-1;
  104. }
  105. }
  106. </style>