TopContent.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="head-content">
  3. <img :src="Logo" />
  4. <div class="head-content-wrap">
  5. <h2>市场迷雾?罗经开路!</h2>
  6. <span class="head-content-wrap__title">
  7. Lookeen 是一个服务于首次出海客户的 AI 商情系统(GTM Analytics
  8. Tools 市场进入分析工具)。目的是提供客户自己的产品品类在目标市场的商业情报,降低用户对产品在目标市场的不确定性。
  9. </span>
  10. <div class="head-content-wrap__step">
  11. <span class="label">只需三步</span>
  12. <span class="tip">(每月可免费获取3次商品分析)</span>
  13. </div>
  14. <div class="head-content-wrap__select">
  15. <CountrySelct></CountrySelct>
  16. </div>
  17. </div>
  18. </div>
  19. </template>
  20. <script lang="ts" setup>
  21. import CountrySelct from '@/components/CountrySelct.vue';
  22. import Logo from '@/assets/images/logo.svg';
  23. </script>
  24. <style lang="scss" scoped>
  25. .head-content {
  26. &-wrap {
  27. margin-top: 1rem;
  28. h2 {
  29. margin: 0;
  30. font-weight: bold;
  31. font-size: 2.5rem;
  32. color: #282e30;
  33. }
  34. padding-left: 1.25rem;
  35. &__title {
  36. display: inline-block;
  37. font-weight: 400;
  38. font-size: 1rem;
  39. color: #282e30;
  40. margin-top: 1.25rem;
  41. }
  42. &__step {
  43. margin-top: 3.75rem;
  44. .label {
  45. font-weight: bold;
  46. font-size: 1.5rem;
  47. color: #036eb8;
  48. }
  49. .tip {
  50. font-weight: 400;
  51. font-size: 0.75rem;
  52. color: #282e30;
  53. margin-left: 0.625rem;
  54. }
  55. }
  56. &__select {
  57. margin-top: 10px;
  58. }
  59. }
  60. }
  61. </style>