brand.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  1. <template>
  2. <div class="Brand-container">
  3. <div class="banner-img">
  4. <img :src="bannerImg" alt="">
  5. <section class="label">品牌故事</section>
  6. </div>
  7. <div class="company-intro">
  8. <section
  9. class="company-intro-label"
  10. >公司简介</section>
  11. <div class="company-intro-text">
  12. 全球顶级儿童逻辑思维教育专家以国际教育理念为指导,推动中国学前教育事业发展填补了中国学前儿童思维教育领域空白率先领导和实践幼儿园思维游戏化教学,
  13. 用全球同频使用的优质思维教育内容,为0-12岁儿童培养优质思维模式,建构思维“芯”。
  14. 是国际化科技教育内容的创始者,以“让中国孩子幸福成长”为使命,始终以“走出去、
  15. 请进来”、“洋为中用”的全球化视野,融合中西文化,全力打造具有成长型思维模式的未来人才。
  16. </div>
  17. </div>
  18. <!-- 大事记 -->
  19. <div class="event">
  20. <div class="label wow animate__animated animate__fadeInDown">
  21. <div class="label-en">EVENTS</div>
  22. <div class="label-zn">大事记</div>
  23. </div>
  24. <div class="event-box">
  25. <img
  26. class="event-bgimg"
  27. src="http://res.training.luojigou.vip/Fhe0g5Z_6DRjLf3-lSDXKTff-A6Q?imageView2/0/q/50|imageslim"
  28. alt=""
  29. >
  30. <div
  31. :style="{top: 139 + 240 * item.site.y + 'px' ,
  32. left: 121 + 261 * item.site.x + 'px'}"
  33. :class="['event-box-item']"
  34. v-for="item in eventData"
  35. :key="item.id"
  36. >
  37. <img
  38. @mouseenter="currentEventImg(item)"
  39. class="yearImgurl cp"
  40. :src="item.yearImgurl"
  41. :srcset="`${item.yearImgurlSet[0]} 1x, ${item.yearImgurlSet[1]} 2x`"
  42. alt=""
  43. >
  44. <img
  45. v-if="currentEventImgId === item.id"
  46. @mouseleave="currentEventImgId = ''"
  47. class="eventImgurl"
  48. :src="item.eventImgurl"
  49. :style="{width: item.eventImgurlWidth + 'px', height:item.eventImgurlHeight + 'px'}"
  50. alt=""
  51. >
  52. </div>
  53. </div>
  54. </div>
  55. <!-- 核心团队 -->
  56. <div class="kernel">
  57. <div class="label wow animate__animated animate__fadeInDown">
  58. <div class="label-en">KERNEL</div>
  59. <div class="label-zn">核心团队</div>
  60. </div>
  61. <div class="kernel-box w1200">
  62. <div
  63. :class="['kernel-box-item']"
  64. v-for="item in kernelData"
  65. :key="item.id"
  66. >
  67. <div class="top">
  68. <img class="people-img" :src="item.imgUrl" alt="">
  69. <!-- <img
  70. class="overlay-img"
  71. @mouseleave="currentMouserEnter = false"
  72. :style="{display: currentMouserEnter && currentMouserId === item.id ? 'block' : 'none'}"
  73. src="http://res.training.luojigou.vip/FstkGdSgJ91jUeZFYT35-ZOdxXT2?imageView2/0/q/50|imageslim"
  74. alt=""
  75. > -->
  76. <div class="people-intro">
  77. <div class="name">{{item.name}}</div>
  78. <div class="position">{{item.position}}</div>
  79. </div>
  80. <div
  81. class="intro"
  82. >
  83. <div class="intro-label">简历介绍</div>
  84. <div class="resume">{{item.resume}}</div>
  85. </div>
  86. <div class="mask"></div>
  87. </div>
  88. <div class="bottom"></div>
  89. </div>
  90. </div>
  91. </div>
  92. <!-- 文化 -->
  93. <div class="cultrue">
  94. <div class="label wow animate__animated animate__fadeInDown">
  95. <div class="label-en">CULTURE OF PRACTIVE</div>
  96. <div class="label-zn">我们努力践行的文化</div>
  97. </div>
  98. <div class="cultrue-box">
  99. <div class="cultrue-box-item" v-for="item in cultrueData" :key="item.id">
  100. <img :src="item.imgUrl" :class="['wow animate__animated']" alt="" />
  101. <div class="cultrue-box-item-label">{{ item.label }}</div>
  102. <div class="cultrue-box-item-text" v-html="item.text"></div>
  103. </div>
  104. </div>
  105. <div class="cultrue-bgimg">
  106. <img
  107. src="http://res.training.luojigou.vip/Fj4XvDNdIw6iDP8gWQuRHKijlFwM?imageView2/0/q/50|imageslim"
  108. alt=""
  109. >
  110. </div>
  111. </div>
  112. <!-- 理念 -->
  113. <div class="idea">
  114. <div class="label">
  115. <div class="label-en wow animate__animated animate__fadeInDown">THE PHILOSPHY</div>
  116. <div class="label-zn wow animate__animated animate__fadeInDown">我们始终秉承的理念</div>
  117. </div>
  118. <div class="idea-box">
  119. <div
  120. class="idea-box-item"
  121. v-for="item in ideaData"
  122. :key="item.id"
  123. >
  124. <div class="top">
  125. <img :src="item.imgUrl" alt="">
  126. </div>
  127. <div class="center">
  128. <img :src="item.numUrl" alt="">
  129. <div>{{item.label}}</div>
  130. </div>
  131. <div class="footer">
  132. <div>{{item.resume}}</div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </div>
  138. </template>
  139. <script>
  140. if (process.browser) {
  141. var { WOW } = require("wowjs");
  142. }
  143. const kernelData = Object.freeze([
  144. {
  145. id: 0,
  146. imgUrl: require("~/assets/images/about/team_01.png"),
  147. position: "董事长",
  148. name: "张洁",
  149. resume:
  150. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  151. },
  152. {
  153. id: 1,
  154. imgUrl: require("~/assets/images/about/team_02.png"),
  155. position: "培训部 总监",
  156. name: "钟建春",
  157. resume:
  158. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  159. }
  160. ]);
  161. const cultrueData = Object.freeze([
  162. {
  163. id: 0,
  164. // imgUrl: "http://res.training.luojigou.vip/Fj0eXd5OYcJRX6z_yBEFbF0OW1Oy?imageView2/0/q/50|imageslim",
  165. imgUrl: require("~/assets/images/about/cultrue_01@2x.png"),
  166. label: "宗旨",
  167. text: "关注儿童成长</br>服务中国母亲",
  168. },
  169. {
  170. id: 1,
  171. // imgUrl: "http://res.training.luojigou.vip/FrhQqD5x8r45P0_Dod_21toOFgle?imageView2/0/q/50|imageslim",
  172. imgUrl: require("~/assets/images/about/cultrue_02@2x.png"),
  173. label: "文化",
  174. text: "缔造愿景,追求卓越</br>共生共荣,体现价值",
  175. },
  176. {
  177. id: 2,
  178. // imgUrl: "http://res.training.luojigou.vip/FuBgZGe-F3km2mVM4wByusZFFfAw?imageView2/0/q/50|imageslim",
  179. imgUrl: require("~/assets/images/about/cultrue_03@2x.png"),
  180. label: "愿景",
  181. text: "让中国的孩子幸福成长",
  182. },
  183. {
  184. id: 3,
  185. // imgUrl: "http://res.training.luojigou.vip/FqOmEqUyO9YBjT65wqfSRr4gKFHD?imageView2/0/q/50|imageslim",
  186. imgUrl: require("~/assets/images/about/cultrue_04@2x.png"),
  187. label: "价值观",
  188. text:
  189. "客户第一</br>团队合力第二</br>专业专注</br>诚信公正</br>拥抱变化</br>激情快乐 ",
  190. },
  191. ]);
  192. const ideaData = Object.freeze([
  193. {
  194. id: 0,
  195. // imgUrl: "http://res.training.luojigou.vip/FgJw7WqbyCVkQJCgCBd07qipb_PI?imageView2/0/q/50|imageslim",
  196. // numUrl: "http://res.training.luojigou.vip/FgX-hI1Y2fjoIvturT1uYaeVjnfB?imageView2/0/q/50|imageslim",
  197. imgUrl: require("~/assets/images/about/idea_01@2x.png"),
  198. numUrl: require("~/assets/images/about/num_01@2x.png"),
  199. label: "专业技术",
  200. resume:
  201. "我们拥有行业专业技术实力与自身 工程开发团队,为您的商业变现及 产品需求保驾护航。",
  202. },
  203. {
  204. id: 1,
  205. // imgUrl: "http://res.training.luojigou.vip/Fl4S2hBlBWsTvfwdvYHaE3RKpLyO?imageView2/0/q/50|imageslim",
  206. // numUrl: "http://res.training.luojigou.vip/Fk5hTknpr4deZWFtcfmRJSHNV3_K?imageView2/0/q/50|imageslim",
  207. imgUrl: require("~/assets/images/about/idea_02@2x.png"),
  208. numUrl: require("~/assets/images/about/num_02@2x.png"),
  209. label: "贴心服务",
  210. resume:
  211. "我们始终坚持优质的服务理念,无 论任何时候您遇到困难,我们都会 及时提供精准有效的解决方案。",
  212. },
  213. {
  214. id: 2,
  215. // imgUrl: "http://res.training.luojigou.vip/FkRWFwiFQu4XL1BPA96jHbmK1X1D?imageView2/0/q/50|imageslim",
  216. // numUrl: "http://res.training.luojigou.vip/FiBasqi9NpLdJ_U9jr-95yxgvL1C?imageView2/0/q/50|imageslim",
  217. imgUrl: require("~/assets/images/about/idea_03@2x.png"),
  218. numUrl: require("~/assets/images/about/num_03@2x.png"),
  219. label: "创业伙伴",
  220. resume:
  221. "我们把每一位客户都当作创业伙伴,期 盼在未来成长的道路上一路相伴,携手 前行。",
  222. },
  223. ]);
  224. const eventData = Object.freeze([
  225. {
  226. id: 2003,
  227. site: {
  228. x: 3,
  229. y: 4,
  230. },
  231. // yearImgurl: "http://res.training.luojigou.vip/FsTtnNKFpIsYh69tIsWqEiocc0Jr?imageView2/0/q/50|imageslim",
  232. // eventImgurl: "http://res.training.luojigou.vip/FrFfg21nonbZyNSUSpAWCiREn7lk?imageView2/0/q/50|imageslim",
  233. yearImgurl: require('~/assets/images/about/year_2003.png'),
  234. yearImgurlSet: [require('~/assets/images/about/year_2003.png'), require('~/assets/images/about/year_2003@2x.png')],
  235. eventImgurl: "http://res.training.luojigou.vip/FrFfg21nonbZyNSUSpAWCiREn7lk?imageView2/0/q/50|imageslim",
  236. eventImgurlWidth: '270',
  237. eventImgurlHeight: '350'
  238. },
  239. {
  240. id: 2004,
  241. site: {
  242. x: 2,
  243. y: 4,
  244. },
  245. // yearImgurl:
  246. // "http://res.training.luojigou.vip/Fhe4VjIQDeQtQzPnSVmsDc4yYYzE?imageView2/0/q/50|imageslim",
  247. eventImgurl:
  248. "http://res.training.luojigou.vip/FvnL2N118R-0Cp9OcKgK9Ru8nAyp?imageView2/0/q/50|imageslim",
  249. yearImgurl: require('~/assets/images/about/year_2004.png'),
  250. yearImgurlSet: [require('~/assets/images/about/year_2004.png'), require('~/assets/images/about/year_2004@2x.png')],
  251. eventImgurlWidth: '270',
  252. eventImgurlHeight: '240'
  253. },
  254. {
  255. id: 2005,
  256. site: {
  257. x: 1,
  258. y: 4,
  259. },
  260. // yearImgurl:
  261. // "http://res.training.luojigou.vip/FodjYYc3-VyZyJHnfuKJQGapkJzt?imageView2/0/q/50|imageslim",
  262. eventImgurl:
  263. "http://res.training.luojigou.vip/FqNcz_3P81MubVeHzAnn_RrkMoCQ?imageView2/0/q/50|imageslim",
  264. yearImgurl: require('~/assets/images/about/year_2005.png'),
  265. yearImgurlSet: [require('~/assets/images/about/year_2005.png'), require('~/assets/images/about/year_2005@2x.png')],
  266. eventImgurlWidth: '270',
  267. eventImgurlHeight: '212'
  268. },
  269. {
  270. id: 2006,
  271. site: {
  272. x: 0,
  273. y: 4,
  274. },
  275. // yearImgurl:
  276. // "http://res.training.luojigou.vip/Fj_2tRMk_1H9NSp9rE0XK0nEcv6g?imageView2/0/q/50|imageslim",
  277. eventImgurl:
  278. "http://res.training.luojigou.vip/FkvModMYKxFJcnqRrpGSULyd9Th7?imageView2/0/q/50|imageslim",
  279. yearImgurl: require('~/assets/images/about/year_2006.png'),
  280. yearImgurlSet: [require('~/assets/images/about/year_2006.png'), require('~/assets/images/about/year_2006@2x.png')],
  281. eventImgurlWidth: '270',
  282. eventImgurlHeight: '264'
  283. },
  284. {
  285. id: 2007,
  286. site: {
  287. x: 0,
  288. y: 3,
  289. },
  290. // yearImgurl:
  291. // "http://res.training.luojigou.vip/Fm4DqB0VKXcLXaa4P2suM1i-2LMZ?imageView2/0/q/50|imageslim",
  292. eventImgurl:
  293. "http://res.training.luojigou.vip/Fkp-2UvHIyIqEW9pu5tZKNpvcCov?imageView2/0/q/50|imageslim",
  294. yearImgurl: require('~/assets/images/about/year_2007.png'),
  295. yearImgurlSet: [require('~/assets/images/about/year_2007.png'), require('~/assets/images/about/year_2007@2x.png')],
  296. eventImgurlWidth: '270',
  297. eventImgurlHeight: '392'
  298. },
  299. {
  300. id: 2008,
  301. site: {
  302. x: 1,
  303. y: 3,
  304. },
  305. // yearImgurl:
  306. // "http://res.training.luojigou.vip/FlEj53_PWeL59J8V6qqduokmrEif?imageView2/0/q/50|imageslim",
  307. eventImgurl:
  308. "http://res.training.luojigou.vip/FpIzAvfIOeIhBEtzVEZYp74y7Wh3?imageView2/0/q/50|imageslim",
  309. yearImgurl: require('~/assets/images/about/year_2008.png'),
  310. yearImgurlSet: [require('~/assets/images/about/year_2008.png'), require('~/assets/images/about/year_2008@2x.png')],
  311. eventImgurlWidth: '270',
  312. eventImgurlHeight: '238'
  313. },
  314. {
  315. id: 2009,
  316. site: {
  317. x: 2,
  318. y: 3,
  319. },
  320. // yearImgurl:
  321. // "http://res.training.luojigou.vip/FtRU3rBk7D0SBEmbTujXX1o3THTU?imageView2/0/q/50|imageslim",
  322. eventImgurl:
  323. "http://res.training.luojigou.vip/Fnmlx106pwroL9I6UNo81BTpxGyO?imageView2/0/q/50|imageslim",
  324. yearImgurl: require('~/assets/images/about/year_2009.png'),
  325. yearImgurlSet: [require('~/assets/images/about/year_2009.png'), require('~/assets/images/about/year_2009@2x.png')],
  326. eventImgurlWidth: '270',
  327. eventImgurlHeight: '212'
  328. },
  329. {
  330. id: 2010,
  331. site: {
  332. x: 3,
  333. y: 3,
  334. },
  335. // yearImgurl:
  336. // "http://res.training.luojigou.vip/Fmx2IObHIKURUiGbrvX4cpZ-u5MB?imageView2/0/q/50|imageslim",
  337. eventImgurl:
  338. "http://res.training.luojigou.vip/Fg2GfiNmRknqRjTbzvCq09ewERIH?imageView2/0/q/50|imageslim",
  339. yearImgurl: require('~/assets/images/about/year_2010.png'),
  340. yearImgurlSet: [require('~/assets/images/about/year_2010.png'), require('~/assets/images/about/year_2010@2x.png')],
  341. eventImgurlWidth: '270',
  342. eventImgurlHeight: '392'
  343. },
  344. {
  345. id: 2011,
  346. site: {
  347. x: 3,
  348. y: 2,
  349. },
  350. // yearImgurl:
  351. // "http://res.training.luojigou.vip/FutAwrnX_ypeS4bUqol5xKVVqrXU?imageView2/0/q/50|imageslim",
  352. eventImgurl:
  353. "http://res.training.luojigou.vip/FuPF8r4-f8-_SY_v0Tky2AnFPYeH?imageView2/0/q/50|imageslim",
  354. yearImgurl: require('~/assets/images/about/year_2011.png'),
  355. yearImgurlSet: [require('~/assets/images/about/year_2011.png'), require('~/assets/images/about/year_2011@2x.png')],
  356. eventImgurlWidth: '270',
  357. eventImgurlHeight: '420'
  358. },
  359. {
  360. id: 2012,
  361. site: {
  362. x: 2,
  363. y: 2,
  364. },
  365. // yearImgurl:
  366. // "http://res.training.luojigou.vip/Fg3Jph3aJcX-hQtbvOs5UJZCzmj7?imageView2/0/q/50|imageslim",
  367. eventImgurl:
  368. "http://res.training.luojigou.vip/Fp5DT3Tg3CBl2rvjT9sIsCBcUSWu?imageView2/0/q/50|imageslim",
  369. yearImgurl: require('~/assets/images/about/year_2012.png'),
  370. yearImgurlSet: [require('~/assets/images/about/year_2012.png'), require('~/assets/images/about/year_2012@2x.png')],
  371. eventImgurlWidth: '270',
  372. eventImgurlHeight: '314'
  373. },
  374. {
  375. id: 2013,
  376. site: {
  377. x: 1,
  378. y: 2,
  379. },
  380. // yearImgurl:
  381. // "http://res.training.luojigou.vip/FjWOsyUqGM6eIaPW3_lCzDzw3h1M?imageView2/0/q/50|imageslim",
  382. eventImgurl:
  383. "http://res.training.luojigou.vip/FirCgjTps0bLqGV5-TOpuX6q8SMl?imageView2/0/q/50|imageslim",
  384. yearImgurl: require('~/assets/images/about/year_2013.png'),
  385. yearImgurlSet: [require('~/assets/images/about/year_2013.png'), require('~/assets/images/about/year_2013@2x.png')],
  386. eventImgurlWidth: '270',
  387. eventImgurlHeight: '394'
  388. },
  389. {
  390. id: 2014,
  391. site: {
  392. x: 0,
  393. y: 2,
  394. },
  395. // yearImgurl:
  396. // "http://res.training.luojigou.vip/FqI9b5_4iP6WmoVE_z7o9RLm7RZe?imageView2/0/q/50|imageslim",
  397. eventImgurl:
  398. "http://res.training.luojigou.vip/FlyzOxQWuiW2nYmACRUPsiCLyuw7?imageView2/0/q/50|imageslim",
  399. yearImgurl: require('~/assets/images/about/year_2014.png'),
  400. yearImgurlSet: [require('~/assets/images/about/year_2014.png'), require('~/assets/images/about/year_2014@2x.png')],
  401. eventImgurlWidth: '270',
  402. eventImgurlHeight: '654'
  403. },
  404. {
  405. id: 2015,
  406. site: {
  407. x: 0,
  408. y: 1,
  409. },
  410. // yearImgurl:
  411. // "http://res.training.luojigou.vip/FoeSNwPl-fQXqwwow99j9Rsd9tjB?imageView2/0/q/50|imageslim",
  412. eventImgurl:
  413. "http://res.training.luojigou.vip/FmBATtftJW08bU-5KGBFuKsAQSN1?imageView2/0/q/50|imageslim",
  414. yearImgurl: require('~/assets/images/about/year_2015.png'),
  415. yearImgurlSet: [require('~/assets/images/about/year_2015.png'), require('~/assets/images/about/year_2015@2x.png')],
  416. eventImgurlWidth: '270',
  417. eventImgurlHeight: '316'
  418. },
  419. {
  420. id: 2016,
  421. site: {
  422. x: 1,
  423. y: 1,
  424. },
  425. // yearImgurl:
  426. // "http://res.training.luojigou.vip/Fl2SA1cd8DqIzQGIQqh5qrNUMmR6?imageView2/0/q/50|imageslim",
  427. eventImgurl:
  428. "http://res.training.luojigou.vip/FoaOya6X8s6j3Bzc2oBNDvX-JHW2?imageView2/0/q/50|imageslim",
  429. yearImgurl: require('~/assets/images/about/year_2016.png'),
  430. yearImgurlSet: [require('~/assets/images/about/year_2016.png'), require('~/assets/images/about/year_2016@2x.png')],
  431. eventImgurlWidth: '269',
  432. eventImgurlHeight: '576'
  433. },
  434. {
  435. id: 2017,
  436. site: {
  437. x: 2,
  438. y: 1,
  439. },
  440. // yearImgurl:
  441. // "http://res.training.luojigou.vip/Fi_RKVrGct2V235xsKpwsIA51YX-?imageView2/0/q/50|imageslim",
  442. eventImgurl:
  443. "http://res.training.luojigou.vip/FsALqlvULFPhf-kxcPw1YtRiZjIG?imageView2/0/q/50|imageslim",
  444. yearImgurl: require('~/assets/images/about/year_2017.png'),
  445. yearImgurlSet: [require('~/assets/images/about/year_2017.png'), require('~/assets/images/about/year_2017@2x.png')],
  446. eventImgurlWidth: '270',
  447. eventImgurlHeight: '524'
  448. },
  449. {
  450. id: 2018,
  451. site: {
  452. x: 3,
  453. y: 1,
  454. },
  455. // yearImgurl:
  456. // "http://res.training.luojigou.vip/FvN4BWxIckbJmo_qrN7mlILrtQKg?imageView2/0/q/50|imageslim",
  457. eventImgurl:
  458. "http://res.training.luojigou.vip/FvQZtrIRkaNzGJ8KbF1-Cl-k5hfJ?imageView2/0/q/50|imageslim",
  459. yearImgurl: require('~/assets/images/about/year_2018.png'),
  460. yearImgurlSet: [require('~/assets/images/about/year_2018.png'), require('~/assets/images/about/year_2018@2x.png')],
  461. eventImgurlWidth: '270',
  462. eventImgurlHeight: '550'
  463. },
  464. {
  465. id: 2019,
  466. site: {
  467. x: 3,
  468. y: 0,
  469. },
  470. // yearImgurl:
  471. // "http://res.training.luojigou.vip/Fgr3xXoLsgpIP2wBglovLx0e89Mb?imageView2/0/q/50|imageslim",
  472. eventImgurl:
  473. "http://res.training.luojigou.vip/Flio74FIlTt_aYhyW-3scKmhSrHc?imageView2/0/q/50|imageslim",
  474. yearImgurl: require('~/assets/images/about/year_2019.png'),
  475. yearImgurlSet: [require('~/assets/images/about/year_2019.png'), require('~/assets/images/about/year_2019@2x.png')],
  476. eventImgurlWidth: '270',
  477. eventImgurlHeight: '706'
  478. },
  479. {
  480. id: 2020,
  481. site: {
  482. x: 2,
  483. y: 0,
  484. },
  485. // yearImgurl:
  486. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  487. yearImgurl: require('~/assets/images/about/year_2020.png'),
  488. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  489. },
  490. ]);
  491. export default {
  492. name: "BrandPage",
  493. head() {
  494. return {
  495. title: "逻辑狗官网-中德智慧教育",
  496. meta: [
  497. {
  498. name: "keywords",
  499. hid: "keywords",
  500. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  501. },
  502. {
  503. name: "description",
  504. hid: "description",
  505. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  506. },
  507. ],
  508. };
  509. },
  510. components: {},
  511. mounted() {
  512. if (process.browser) {
  513. new WOW({
  514. offset: 0,
  515. live: true,
  516. }).init();
  517. }
  518. },
  519. data() {
  520. return {
  521. bannerImg: require('~/assets/images/about/about_brand.png'),
  522. kernelData,
  523. currentMouserEnter: false,
  524. currentMouserId: "",
  525. cultrueData,
  526. ideaData,
  527. eventData,
  528. currentEventImgId: 2019,
  529. };
  530. },
  531. methods: {
  532. currentElement(item) {
  533. this.currentMouserId = item.id;
  534. this.currentMouserEnter = true;
  535. },
  536. currentEventImg(item) {
  537. this.currentEventImgId = item.id;
  538. },
  539. },
  540. };
  541. </script>
  542. <style scoped lang="scss">
  543. @import '~static/common/style.sass';
  544. .Brand-container {
  545. .label {
  546. .label-en {
  547. height: 78px;
  548. font-size: 56px;
  549. font-family: PingFangSC-Semibold, sans-serif;
  550. font-weight: 600;
  551. color:rgba(35,106,250,0.16);
  552. line-height: 78px;
  553. }
  554. .label-zn {
  555. height: 65px;
  556. font-size: 46px;
  557. font-family: PingFangSC-Semibold, sans-serif;
  558. font-weight: 600;
  559. color: #262626;
  560. line-height: 65px;
  561. letter-spacing: 1px;
  562. }
  563. }
  564. .banner-img {
  565. position: relative;
  566. img {
  567. width: 100%;
  568. height: 595px;
  569. display: block;
  570. }
  571. .label {
  572. color: #ffffff;
  573. position: absolute;
  574. top: 50%;
  575. left: 50%;
  576. transform: translate(-50%, -50%);
  577. font-size: 66px;
  578. font-family: PingFangSC-Medium, sans-serif;
  579. font-weight: 500;
  580. }
  581. }
  582. .company-intro {
  583. width: 1200px;
  584. height: 447px;
  585. border-radius: 14px;
  586. position: relative;
  587. top: 50%;
  588. left: 50%;
  589. transform: translateX(-50%);
  590. z-index: 1;
  591. overflow: hidden;
  592. margin-top: -80px;
  593. // background: url("http://res.training.luojigou.vip/FnRDWlB5l2fF-qQ8xtP6LQC1MRwq?imageView2/0/q/50|imageslim") no-repeat;
  594. background: url("~assets/images/about/tabImg.png") no-repeat;
  595. background-size: 1200px 447px;
  596. .company-intro-label {
  597. text-align: center;
  598. margin-top: 60px;
  599. font-size: 46px;
  600. font-family: PingFangSC-Semibold, sans-serif;
  601. font-weight: 600;
  602. color: #262626;
  603. line-height: 65px;
  604. letter-spacing: 1px;
  605. }
  606. .company-intro-text {
  607. width: 1009px;
  608. // height: 144px;
  609. margin: 32px;
  610. position: absolute;
  611. left: 50%;
  612. transform: translateX(-50%);
  613. font-size: 18px;
  614. font-family: PingFangSC-Regular, sans-serif;
  615. font-weight: 400;
  616. color: #999999;
  617. line-height: 36px;
  618. }
  619. }
  620. .event {
  621. position: relative;
  622. height: 1500px;
  623. .label {
  624. position: absolute;
  625. // width: 600px;
  626. // left: 778px;
  627. width: 100%;
  628. .label-en {
  629. // font-size: 78px;
  630. // font-family: PingFangSC-Semibold, sans-serif;
  631. // font-weight: 600;
  632. // color: rgba(35, 106, 250, 1);
  633. // opacity: 0.16;
  634. position: absolute;
  635. left: 50%;
  636. transform: translateX(-50%);
  637. }
  638. .label-zn {
  639. // font-size: 58px;
  640. // font-family: PingFangSC-Semibold, sans-serif;
  641. // font-weight: 600;
  642. // color: rgba(38, 38, 38, 1);
  643. position: absolute;
  644. top: 30px;
  645. left: 50%;
  646. transform: translateX(-50%);
  647. }
  648. }
  649. .event-box {
  650. width: 1297px;
  651. height: 1296px;
  652. position: absolute;
  653. left: 50%;
  654. top: 259px;
  655. transform: translateX(-50%);
  656. .event-bgimg {
  657. width: 1297px;
  658. height: 1296px;
  659. position: absolute;
  660. left: 0;
  661. top: 0;
  662. right: 0;
  663. bottom: 0;
  664. // object-fit: cover;
  665. }
  666. .event-box-item {
  667. position: absolute;
  668. .yearImgurl {
  669. width: 65px;
  670. height: 30px;
  671. object-fit: cover;
  672. }
  673. .eventImgurl {
  674. position: absolute;
  675. z-index: 1;
  676. transform: translate(-50%, -50%);
  677. }
  678. }
  679. }
  680. }
  681. .kernel {
  682. margin: 200px auto;
  683. // height: 2000px;
  684. position: relative;
  685. .label {
  686. // position: absolute;
  687. width: 100%;
  688. text-align: center;
  689. .label-en {
  690. // font-size: 78px;
  691. // font-family: PingFangSC-Semibold, sans-serif;
  692. // font-weight: 600;
  693. // color: rgba(35, 106, 250, 1);
  694. // opacity: 0.16;
  695. }
  696. .label-zn {
  697. // font-size: 58px;
  698. // font-family: PingFangSC-Semibold, sans-serif;
  699. // font-weight: 600;
  700. // color: rgba(38, 38, 38, 1);
  701. // position: absolute;
  702. // top: 45px;
  703. // left: 32px;
  704. position: absolute;
  705. top: 30px;
  706. left: 50%;
  707. transform: translateX(-50%);
  708. // margin-top: -65px;
  709. }
  710. }
  711. .kernel-box {
  712. // position: absolute;
  713. // top: 300px;
  714. // left: 50%;
  715. // transform: translateX(-50%);
  716. margin-top: 178px;
  717. display: flex;
  718. flex-wrap: wrap;
  719. // justify-content: space-between;
  720. align-items: center;
  721. .kernel-box-item {
  722. position: relative;
  723. margin-right: 40px;
  724. margin-bottom: 51px;
  725. &:hover {
  726. .mask {
  727. display: block;
  728. background: rgba(0, 0, 0, 0.44);
  729. transition: all .5s;
  730. -webkit-transition: all .5s;
  731. }
  732. .top {
  733. .intro {
  734. display: block;
  735. }
  736. }
  737. }
  738. &:nth-child(3n) {
  739. margin-right: 0;
  740. }
  741. .top {
  742. width: 373px;
  743. height: 466px;
  744. position: relative;
  745. z-index: 66;
  746. .people-img {
  747. width: 373px;
  748. height: 466px;
  749. display: block;
  750. }
  751. .overlay-img {
  752. width: 373px;
  753. height: 466px;
  754. position: absolute;
  755. top: 0;
  756. left: 0;
  757. z-index: 1;
  758. }
  759. .people-intro {
  760. position: absolute;
  761. bottom: 12px;
  762. left: 37px;
  763. z-index: 66;
  764. .name {
  765. font-size: 45px;
  766. font-family: PingFangSC-Semibold, sans-serif;
  767. font-weight: 600;
  768. color: rgba(255, 255, 255, 1);
  769. letter-spacing: 1px;
  770. }
  771. .position {
  772. font-size: 20px;
  773. font-family: PingFangSC-Regular, sans-serif;
  774. font-weight: 400;
  775. color: rgba(255, 255, 255, 1);
  776. letter-spacing: 0.5px;
  777. }
  778. }
  779. .intro {
  780. display: none;
  781. position: absolute;
  782. z-index: 66;
  783. bottom: 160px;
  784. left: 37px;
  785. font-family: PingFangSC-Regular, sans-serif;
  786. font-weight: 400;
  787. color: rgba(255, 255, 255, 1);
  788. .intro-label {
  789. font-size: 16px;
  790. margin-bottom: 12px;
  791. }
  792. .resume {
  793. width: 280px;
  794. font-size: 14px;
  795. font-family: PingFangSC-Regular, sans-serif;
  796. font-weight: 400;
  797. color: #FFFFFF;
  798. line-height: 28px;
  799. }
  800. }
  801. }
  802. .bottom {
  803. width: 373px;
  804. height: 8px;
  805. background-color: #83abf9;
  806. }
  807. .mask {
  808. display: none;
  809. position: absolute;
  810. border-radius: 10px;
  811. top: 0;
  812. bottom: 0;
  813. left: 0;
  814. right: 0;
  815. transition: all .5s;
  816. -webkit-transition: all .5s;
  817. }
  818. }
  819. }
  820. }
  821. .cultrue {
  822. position: relative;
  823. height: 1000px;
  824. overflow: hidden;
  825. .label {
  826. position: absolute;
  827. width: 100%;
  828. // left: 778px;
  829. .label-en {
  830. // font-size: 78px;
  831. // font-family: PingFangSC-Semibold, sans-serif;
  832. // font-weight: 600;
  833. // color: rgba(35, 106, 250, 1);
  834. // opacity: 0.16;
  835. position: absolute;
  836. left: 50%;
  837. transform: translateX(-50%);
  838. }
  839. .label-zn {
  840. // font-size: 58px;
  841. // font-family: PingFangSC-Semibold, sans-serif;
  842. // font-weight: 600;
  843. // color: rgba(38, 38, 38, 1);
  844. position: absolute;
  845. top: 30px;
  846. left: 50%;
  847. transform: translateX(-50%);
  848. }
  849. }
  850. .cultrue-box {
  851. display: flex;
  852. justify-content: center;
  853. margin-top: 313px;
  854. .cultrue-box-item {
  855. margin-right: 151px;
  856. img {
  857. width: 178px;
  858. height: 159px;
  859. }
  860. .cultrue-box-item-label {
  861. font-size: 38px;
  862. font-family: PingFangSC-Regular, sans-serif;
  863. font-weight: 400;
  864. color: rgba(0, 0, 0, 1);
  865. text-align: center;
  866. }
  867. .cultrue-box-item-text {
  868. // width: 178px;
  869. text-align: center;
  870. font-size: 18px;
  871. font-family: PingFangSC-Regular, sans-serif;
  872. font-weight: 400;
  873. color: rgba(153, 153, 153, 1);
  874. letter-spacing: 0.5px;
  875. margin-top: 31px;
  876. }
  877. }
  878. }
  879. .cultrue-bgimg {
  880. position: absolute;
  881. z-index: -1;
  882. right: 226px;
  883. bottom: 155px;
  884. img {
  885. width: 627px;
  886. height: 499px;
  887. }
  888. }
  889. }
  890. .idea {
  891. height: 800px;
  892. position: relative;
  893. .label {
  894. position: absolute;
  895. left: 50%;
  896. transform: translateX(-50%);
  897. width: 540px;
  898. .label-en {
  899. // font-size: 78px;
  900. // font-family: PingFangSC-Semibold, sans-serif;
  901. // font-weight: 600;
  902. // color: rgba(35, 106, 250, 1);
  903. // opacity: 0.16;
  904. // position: absolute;
  905. }
  906. .label-zn {
  907. // font-size: 58px;
  908. // font-family: PingFangSC-Semibold, sans-serif;
  909. // font-weight: 600;
  910. // color: rgba(38, 38, 38, 1);
  911. position: absolute;
  912. top: 30px;
  913. left: 100px;
  914. // transform: translateX(-50%);
  915. }
  916. }
  917. .idea-box {
  918. display: flex;
  919. justify-content: center;
  920. .idea-box-item {
  921. margin-top: 286px;
  922. margin-right: 40px;
  923. width: 373px;
  924. height: 299px;
  925. background: rgba(255, 255, 255, 1);
  926. box-shadow: 0px 2px 14px 0px rgba(201, 199, 195, 0.25);
  927. border-radius: 6px;
  928. padding: 22px 63px 51px 36px;
  929. box-sizing: border-box;
  930. .top {
  931. img {
  932. width: 77px;
  933. height: 79px;
  934. object-fit: cover;
  935. }
  936. }
  937. .center {
  938. margin-top: 20px;
  939. display: flex;
  940. align-items: flex-end;
  941. img {
  942. width: 22px;
  943. height: 36px;
  944. margin-right: 9px;
  945. object-fit: fill;
  946. }
  947. div {
  948. font-size: 24px;
  949. font-family: PingFangSC-Medium, sans-serif;
  950. font-weight: 500;
  951. color: rgba(0, 0, 0, 1);
  952. }
  953. }
  954. .footer {
  955. font-size: 15px;
  956. font-family: PingFangSC-Regular, sans-serif;
  957. font-weight: 400;
  958. color: #999999;
  959. line-height: 26px;
  960. margin-top: 10px;
  961. padding-left: 32px
  962. }
  963. }
  964. }
  965. }
  966. }
  967. .cp {
  968. cursor: pointer;
  969. }
  970. </style>