brand.vue 30 KB

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