index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <script setup>
  2. const { t, locale, setLocale } = useI18n()
  3. // const dataList = ref([
  4. // {
  5. // bg: '',
  6. // abg: 'abg1',
  7. // id: 'Beginning',
  8. // wowDelay: '0.3s',
  9. // img: '/picture/012.png',
  10. // title: 'Beginning',
  11. // ageBracket: '6-9 years old',
  12. // subTitle: 'Enlightenment in listening and speaking stimulates interest in Chinese learning.'
  13. // },
  14. // {
  15. // bg: 'bg-2',
  16. // abg: '',
  17. // id: 'Growing',
  18. // wowDelay: '0.5s',
  19. // img: '/picture/021.png',
  20. // title: 'Growing',
  21. // ageBracket: '6-12 years old',
  22. // subTitle:
  23. // 'The primary school Chinese textbooks compiled by the deep matching department have reached the domestic primary school Chinese level and improved Chinese literacy.'
  24. // },
  25. // {
  26. // bg: 'bg-5',
  27. // abg: 'abg3',
  28. // id: 'DrawingClass',
  29. // wowDelay: '0.7s',
  30. // img: '/picture/012.png',
  31. // title: 'Drawing Class',
  32. // ageBracket: '9-15 years old',
  33. // subTitle:
  34. // 'Comprehensive improvement of listening speaking, reading and writing skills, high-level direct HSK/AP/IB Chinese tests.'
  35. // },
  36. // {
  37. // bg: 'bg-6',
  38. // abg: 'abg4',
  39. // id: 'Expanding',
  40. // wowDelay: '0.9s',
  41. // img: '/picture/021.png',
  42. // title: 'Beginning',
  43. // ageBracket: '12-18years old',
  44. // subTitle:
  45. // 'Benchmark HSK and YCT syllabuses to comprehensively improve Chinese listening, speaking, reading and writing skills for overseas students with zero foundation.'
  46. // }
  47. // ])
  48. </script>
  49. <style lang="css" scoped>
  50. .multi-line {
  51. overflow: hidden;
  52. display: -webkit-box;
  53. -webkit-box-orient: vertical;
  54. }
  55. .h-color {
  56. color: white;
  57. }
  58. .clamp-1 {
  59. -webkit-line-clamp: 1;
  60. }
  61. .clamp-2 {
  62. -webkit-line-clamp: 2;
  63. }
  64. </style>
  65. <template>
  66. <section class="work-process-section fix section-padding fix">
  67. <div class="container">
  68. <div class="process-work-wrapper">
  69. <div class="row g-4">
  70. <div class="col-xl-3 col-lg-4 col-md-6 wow fadeInUp" data-wow-delay=".3s">
  71. <div class="work-process-items text-center">
  72. <div class="line-shape"><img src="/picture/line.png" alt="shape-img" /></div>
  73. <div class="icon bg-cover" style="background-image: url('/image/icon-bg.png')">
  74. <img src="/picture/01.svg" alt="img" />
  75. </div>
  76. <div class="content">
  77. <h4>Expert Teachers</h4>
  78. <p>The excellent team of teachers escorts students' learning</p>
  79. </div>
  80. </div>
  81. </div>
  82. <div class="col-xl-3 col-lg-4 col-md-6 wow fadeInUp" data-wow-delay=".5s">
  83. <div class="work-process-items text-center style-2">
  84. <div class="line-shape-2"><img src="/picture/line-2.png" alt="shape-img" /></div>
  85. <div class="icon bg-cover" style="background-image: url('/image/icon-bg.png')">
  86. <img src="/picture/02.svg" alt="img" />
  87. </div>
  88. <div class="content">
  89. <h4>E-learning Media</h4>
  90. <p>Learners can freely explore knowledge via E-learning media</p>
  91. </div>
  92. </div>
  93. </div>
  94. <div class="col-xl-3 col-lg-4 col-md-6 wow fadeInUp" data-wow-delay=".7s">
  95. <div class="work-process-items text-center">
  96. <div class="line-shape"><img src="/picture/line.png" alt="shape-img" /></div>
  97. <div class="icon bg-cover" style="background-image: url('/image/icon-bg.png')">
  98. <img src="/picture/03.svg" alt="img" />
  99. </div>
  100. <div class="content">
  101. <h4>Professional Service</h4>
  102. <p>Tailor-made learning plans for students to achieve personalized development</p>
  103. </div>
  104. </div>
  105. </div>
  106. <div class="col-xl-3 col-lg-4 col-md-6 wow fadeInUp" data-wow-delay=".8s">
  107. <div class="work-process-items text-center">
  108. <div class="content style-two">
  109. <h4>Teaching Assistant Tracking</h4>
  110. <p>
  111. Remedial system of professional teaching assistant to track during the whole
  112. process.
  113. </p>
  114. </div>
  115. <div class="icon bg-cover" style="background-image: url('/image/icon-bg.png')">
  116. <img src="/picture/04.svg" alt="img" />
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </div>
  123. </section>
  124. </template>