brand.vue 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157
  1. <template>
  2. <div class="Brand-container">
  3. <common-banner :img="bgImg" :height="643">
  4. <h2>品牌故事</h2>
  5. </common-banner>
  6. <!-- 公司简介 -->
  7. <div class="company-intro">
  8. <div class="left">
  9. <img :src="companyLeft" alt="" srcset="">
  10. </div>
  11. <div class="right">
  12. <img :src="companyRight" alt="" srcset="">
  13. <div class="info">
  14. <div class="name-en">PROFILE</div>
  15. <div class="name">公司简介</div>
  16. <p>全球儿童思维教育专家,儿童思维教育领域中国开创者。率先创研和实践幼儿园及家庭思维游戏化教育体系,以德国优质思维教育内容为载体,填补中国思维教育领域空白,创立了行业领先的线上线下(OMO)交互的教育内容服务模式,是国际化科技思维教育的拓展者,打造具有成长型思维模式、全球胜任力的未来人才,是中国素质教育事业的发展者、创新者。</p>
  17. <p>中德智慧教育围绕儿童思维策略形成期,高度整合幼儿园五大领域教育内容,通过提升幼儿思维能力,培养良好学习习惯,综合促进幼儿学习品质的发展。</p>
  18. </div>
  19. <img class="bgLogo" :src="bgLogo" alt="" srcset="">
  20. </div>
  21. </div>
  22. <!-- 思维教育 -->
  23. <div class="education">
  24. <title-content :title="'思维教育'" :titleSub="'THINKING EDUCATION'"></title-content>
  25. <div class="e-content w1200">
  26. <img src="~/assets/images/brand/eduction_img.png" alt="" srcset="">
  27. </div>
  28. </div>
  29. <!-- 五大领域 -->
  30. <div class="field">
  31. <title-content :title="'中德智慧国际思维教育五大领域'" :titleSub="'FIVE FIELDS OF SINO-GERMAN INTELLIGENT INTERNATIONAL THINKING EDUCATION'"></title-content>
  32. <div class="f-content w1200">
  33. <div class="fields">
  34. <div class="field-container" @mouseenter="handleFieldEnter(item, index)" v-for="(item, index) in fieldData" :key="index">
  35. <div :class="['field-item', index == currentFieldIndex ? 'active' : '']" :style="{'background': item.background}">
  36. <img :src="item.imgUrl" alt="" :style="{ 'height': item.height + 'px', 'width': item.width + 'px'}" srcset="">
  37. </div>
  38. </div>
  39. </div>
  40. <div class="bar" :style="{'background': fieldData[currentFieldIndex].background}"></div>
  41. <div class="content">
  42. <div class="label" :style="{'background': fieldData[currentFieldIndex].background, 'width': fieldData[currentFieldIndex].labelWidth + 'px'}">{{fieldData[currentFieldIndex].label}}</div>
  43. <div class="title" :style="{'color': fieldData[currentFieldIndex].background}">{{fieldData[currentFieldIndex].title}}</div>
  44. <div class="detail" :style="{'background': fieldData[currentFieldIndex].lightBackground}">{{fieldData[currentFieldIndex].desc}}</div>
  45. </div>
  46. <div class="img-wrap">
  47. <img v-show="index == currentFieldIndex" :src="item.fieldImg" alt="" srcset="" v-for="(item, index) in fieldData" :key="index" >
  48. </div>
  49. </div>
  50. </div>
  51. <!-- 35种能力提升方式 -->
  52. <div class="ways">
  53. <title-content :title="'35种能力提升方式'" :titleSub="'35WAYS TO IMPROVE YOUR ABILITY'"></title-content>
  54. <div class="w-content w1200">
  55. <div class="img-wrap">
  56. <img src="~/assets/images/brand/ways_img.png" alt="" srcset="">
  57. </div>
  58. </div>
  59. </div>
  60. <!-- 中德国际思维教育三原则 -->
  61. <div class="principles">
  62. <div class="title-content">
  63. <div class="title">中德国际思维教育三原则</div>
  64. <div class="title-sub">THREE PRINCIPLES OF INTERNATIONAL THINKING EDUCATION BETWEEN CHINA AND GERMANY</div>
  65. </div>
  66. <div class="principles-box w1200">
  67. <div class="principles-box-item" v-for="(item, index) in principlesData" :key="index">
  68. <img :src="item.imgUrl" alt="">
  69. <div class="principles-box-item-num">{{ item.number }}</div>
  70. <div class="principles-box-item-label">{{ item.label }}</div>
  71. </div>
  72. </div>
  73. </div>
  74. <!-- 发展历程 -->
  75. <div class="development">
  76. <title-content :title="'发展历程'" :titleSub="'THE DEVELOPMENT COURSE'"></title-content>
  77. <div class="d-event">
  78. <div class="w1200">
  79. <div class="title">
  80. <img src="~/assets/images/brand/event_label.png" alt="" srcset="">
  81. </div>
  82. <div class="progress-bar">
  83. <template v-for="(item, index) in eventDurationData">
  84. <div :class="['node', currentDurationIndex == index ? 'active' : '' ]" :key="index" @click="chooseYear(item, index)">
  85. <div class="txt">{{item.text}}</div>
  86. <div class="core"></div>
  87. </div>
  88. <div class="line" :key="item.year" v-if="index != eventDurationData.length -1"></div>
  89. </template>
  90. <!-- <div class="node active" data-year="2016" index="1"><div class="txt">2017</div><div class="core"></div></div>
  91. <div class="line"></div>
  92. <div class="node" data-year="2012" index="2"><div class="txt">2012</div><div class="core"></div></div>
  93. <div class="line"></div>
  94. <div class="node" data-year="2007" index="3"><div class="txt">2007</div><div class="core"></div></div>
  95. <div class="line"></div>
  96. <div class="node" data-year="2003" index="4"><div class="txt">2003</div><div class="core"></div></div> -->
  97. </div>
  98. </div>
  99. </div>
  100. <div class="d-event-content" ref="event" :style="{height: eventHeight}">
  101. <div class="mod-con">
  102. <div :class="['event-main', animate ? 'animate' : '']" ref="drag" @mousedown="handleMouseDown" @mousemove="handleMouseMove" @mouseup="handleMouseUp">
  103. <div class="event-main-box" v-for="(item, index) in eventDataReverse" :key="index">
  104. <div class="event-title">{{ item.title }}</div>
  105. <div class="li clearfix" v-for="(ele, index) in item.eventList" :key="index">
  106. <div class="left">{{ ele.month }}</div>
  107. <div class="right">{{ ele.thing }}</div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. <!-- 大事记 -->
  115. <!-- <div class="event">
  116. <title-content :title="'大事记'" :titleSub="'MEMORABILIA'"></title-content>
  117. <div class="event-box w1200">
  118. <img class="event-bgimg" :src="eventImg" alt="" srcset="">
  119. <div
  120. :style="{top: 237 + 225 * item.site.y + 'px', left: 121 + 228 * item.site.x + 'px'}"
  121. :class="['event-box-item']"
  122. v-for="item in eventData"
  123. :key="item.id">
  124. <div class="yearNumber" @mouseenter="currentEventImg(item)">{{item.id}}</div>
  125. <img
  126. v-if="currentEventImgId === item.id"
  127. @mouseleave="currentEventImgId = ''"
  128. :class="['color' + item.id, 'eventImgurl']"
  129. :src="item.eventImgurl"
  130. :style="{width: item.eventImgurlWidth + 'px', height:item.eventImgurlHeight + 'px'}"
  131. alt="">
  132. </div>
  133. </div>
  134. </div> -->
  135. <!-- 核心团队 -->
  136. <!-- <div class="kernel">
  137. <title-content :title="'核心团队'" :titleSub="'THE CORE TEAM'"></title-content>
  138. <div class="kernel-box w1200">
  139. <div class="kernel-box-item item01">
  140. <img class="team01" :src="kernelData[0].imgUrl" alt="" srcset="">
  141. <div class="info">
  142. <div class="name">张洁</div>
  143. <div class="title">中德智慧董事长</div>
  144. </div>
  145. </div>
  146. <div class="kernel-box-item item02">
  147. <img class="team02" :src="kernelData[1].imgUrl" alt="" srcset="">
  148. <div class="info">
  149. <div class="name">钟建春</div>
  150. <div class="title">培训部总监</div>
  151. </div>
  152. </div>
  153. <div class="kernel-box-item item03">
  154. <img class="team03" :src="kernelData[1].imgUrl" alt="" srcset="">
  155. <div class="info">
  156. <div class="name">钟建春</div>
  157. <div class="title">培训部总监</div>
  158. </div>
  159. </div>
  160. <div class="kernel-box-item item04">
  161. <img class="team04" :src="kernelData[1].imgUrl" alt="" srcset="">
  162. <div class="info">
  163. <div class="name">钟建春</div>
  164. <div class="title">培训部总监</div>
  165. </div>
  166. </div>
  167. <div class="kernel-box-item item05">
  168. <img class="team05" :src="kernelData[1].imgUrl" alt="" srcset="">
  169. <div class="info">
  170. <div class="name">钟建春</div>
  171. <div class="title">培训部总监</div>
  172. </div>
  173. </div>
  174. </div>
  175. </div> -->
  176. <!-- 文化 -->
  177. <!-- <div class="cultrue">
  178. <div class="title-content">
  179. <div class="title">我们努力践行的文化 </div>
  180. <div class="title-sub">THE CULTURE THAT WE TRY TO LIVE UP TO</div>
  181. </div>
  182. <div class="cultrue-box w1200">
  183. <div class="cultrue-box-item" v-for="item in cultrueData" :key="item.id">
  184. <img :src="item.imgUrl" :class="['wow animate__animated']" alt="" />
  185. <div class="cultrue-box-item-label">{{ item.label }}</div>
  186. <div class="cultrue-box-item-text" v-html="item.text"></div>
  187. </div>
  188. </div>
  189. <div class="cultrue-bgimg">
  190. <img
  191. src="http://res.training.luojigou.vip/Fj4XvDNdIw6iDP8gWQuRHKijlFwM?imageView2/0/q/50|imageslim"
  192. alt="">
  193. </div>
  194. </div> -->
  195. <!-- 理念 -->
  196. <!-- <div class="idea">
  197. <title-content :title="'我们始终秉承的理念'" :titleSub="'WE ALWAYS UPHOID THE CONCEPT'"></title-content>
  198. <div class="idea-box">
  199. <div
  200. class="idea-box-item"
  201. v-for="item in ideaData"
  202. :key="item.id"
  203. >
  204. <div class="top">
  205. <img :src="item.imgUrl" alt="">
  206. </div>
  207. <div class="center">
  208. <img :src="item.numUrl" alt="">
  209. <div>{{item.label}}</div>
  210. </div>
  211. <div class="footer">
  212. <div>{{item.resume}}</div>
  213. </div>
  214. </div>
  215. </div>
  216. </div> -->
  217. </div>
  218. </template>
  219. <script>
  220. import CommonBanner from '@/components/common/banner';
  221. import TitleContent from '@/components/common/titleContent';
  222. const kernelData = Object.freeze([
  223. {
  224. id: 0,
  225. imgUrl: require("~/assets/images/brand/team_01.png"),
  226. position: "董事长",
  227. name: "张洁",
  228. resume:
  229. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  230. },
  231. {
  232. id: 1,
  233. imgUrl: require("~/assets/images/brand/team_02.png"),
  234. position: "培训部 总监",
  235. name: "钟建春",
  236. resume:
  237. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  238. }
  239. ]);
  240. const cultrueData = Object.freeze([
  241. {
  242. id: 0,
  243. // imgUrl: "http://res.training.luojigou.vip/Fj0eXd5OYcJRX6z_yBEFbF0OW1Oy?imageView2/0/q/50|imageslim",
  244. imgUrl: require("~/assets/images/brand/cultrue_01@2x.png"),
  245. label: "宗旨",
  246. text: "关注儿童成长</br>服务中国母亲",
  247. },
  248. {
  249. id: 1,
  250. // imgUrl: "http://res.training.luojigou.vip/FrhQqD5x8r45P0_Dod_21toOFgle?imageView2/0/q/50|imageslim",
  251. imgUrl: require("~/assets/images/brand/cultrue_02@2x.png"),
  252. label: "文化",
  253. text: "缔造愿景,追求卓越</br>共生共荣,体现价值",
  254. },
  255. {
  256. id: 2,
  257. // imgUrl: "http://res.training.luojigou.vip/FuBgZGe-F3km2mVM4wByusZFFfAw?imageView2/0/q/50|imageslim",
  258. imgUrl: require("~/assets/images/brand/cultrue_03@2x.png"),
  259. label: "愿景",
  260. text: "让中国的孩子幸福成长",
  261. },
  262. {
  263. id: 3,
  264. // imgUrl: "http://res.training.luojigou.vip/FqOmEqUyO9YBjT65wqfSRr4gKFHD?imageView2/0/q/50|imageslim",
  265. imgUrl: require("~/assets/images/brand/cultrue_04@2x.png"),
  266. label: "价值观",
  267. text:
  268. "客户第一</br>团队合力第二</br>专业专注</br>诚信公正</br>拥抱变化</br>激情快乐 ",
  269. },
  270. ]);
  271. const ideaData = Object.freeze([
  272. {
  273. id: 0,
  274. // imgUrl: "http://res.training.luojigou.vip/FgJw7WqbyCVkQJCgCBd07qipb_PI?imageView2/0/q/50|imageslim",
  275. // numUrl: "http://res.training.luojigou.vip/FgX-hI1Y2fjoIvturT1uYaeVjnfB?imageView2/0/q/50|imageslim",
  276. imgUrl: require("~/assets/images/brand/idea_01@2x.png"),
  277. numUrl: require("~/assets/images/brand/num_01@2x.png"),
  278. label: "专业技术",
  279. resume:
  280. "我们拥有行业专业技术实力与自身 工程开发团队,为您的商业变现及 产品需求保驾护航。",
  281. },
  282. {
  283. id: 1,
  284. // imgUrl: "http://res.training.luojigou.vip/Fl4S2hBlBWsTvfwdvYHaE3RKpLyO?imageView2/0/q/50|imageslim",
  285. // numUrl: "http://res.training.luojigou.vip/Fk5hTknpr4deZWFtcfmRJSHNV3_K?imageView2/0/q/50|imageslim",
  286. imgUrl: require("~/assets/images/brand/idea_02@2x.png"),
  287. numUrl: require("~/assets/images/brand/num_02@2x.png"),
  288. label: "贴心服务",
  289. resume:
  290. "我们始终坚持优质的服务理念,无 论任何时候您遇到困难,我们都会 及时提供精准有效的解决方案。",
  291. },
  292. {
  293. id: 2,
  294. // imgUrl: "http://res.training.luojigou.vip/FkRWFwiFQu4XL1BPA96jHbmK1X1D?imageView2/0/q/50|imageslim",
  295. // numUrl: "http://res.training.luojigou.vip/FiBasqi9NpLdJ_U9jr-95yxgvL1C?imageView2/0/q/50|imageslim",
  296. imgUrl: require("~/assets/images/brand/idea_03@2x.png"),
  297. numUrl: require("~/assets/images/brand/num_03@2x.png"),
  298. label: "创业伙伴",
  299. resume:
  300. "我们把每一位客户都当作创业伙伴,期 盼在未来成长的道路上一路相伴,携手前行。",
  301. },
  302. ]);
  303. const eventData = Object.freeze([
  304. {
  305. id: 2003,
  306. title: 2003,
  307. site: {
  308. x: 4,
  309. y: 3,
  310. },
  311. // yearImgurl: "http://res.training.luojigou.vip/FsTtnNKFpIsYh69tIsWqEiocc0Jr?imageView2/0/q/50|imageslim",
  312. // eventImgurl: "http://res.training.luojigou.vip/FrFfg21nonbZyNSUSpAWCiREn7lk?imageView2/0/q/50|imageslim",
  313. yearImgurl: require('~/assets/images/about/year_2003.png'),
  314. yearImgurlSet: [require('~/assets/images/about/year_2003.png'), require('~/assets/images/about/year_2003@2x.png')],
  315. eventImgurl: require('~/assets/images/brand/event_year_2003@2x.png'),
  316. eventImgurlWidth: '269',
  317. eventImgurlHeight: '350',
  318. eventList: [
  319. {
  320. month: '2月',
  321. thing: '张洁女士与德国芬肯教育机构创始人Herrn Krick先生达成中德战略合作协议。'
  322. },
  323. {
  324. month: '4月',
  325. thing: '“逻辑狗儿童思维升级游戏系统”首次专家鉴定会在北京召开,多位知名教育专家参加会议。'
  326. },
  327. {
  328. month: '5月',
  329. thing: '北京中德智慧教育文化有限公司成立,张洁女士作为创始人任董事长&CEO。'
  330. },
  331. {
  332. month: '12月',
  333. thing: '“逻辑狗”儿童思维训练产品正式出版。'
  334. }
  335. ]
  336. },
  337. {
  338. id: 2004,
  339. title: 2004,
  340. site: {
  341. x: 3,
  342. y: 3,
  343. },
  344. // yearImgurl:
  345. // "http://res.training.luojigou.vip/Fhe4VjIQDeQtQzPnSVmsDc4yYYzE?imageView2/0/q/50|imageslim",
  346. // eventImgurl:
  347. // "http://res.training.luojigou.vip/FvnL2N118R-0Cp9OcKgK9Ru8nAyp?imageView2/0/q/50|imageslim",
  348. yearImgurl: require('~/assets/images/about/year_2004.png'),
  349. yearImgurlSet: [require('~/assets/images/about/year_2004.png'), require('~/assets/images/about/year_2004@2x.png')],
  350. eventImgurl: require('~/assets/images/brand/event_year_2004@2x.png'),
  351. eventImgurlWidth: '269',
  352. eventImgurlHeight: '246',
  353. eventList: [
  354. {
  355. month: '1月',
  356. thing: '启动“十五”国家课题《幼儿思维训练与学习能力发展的研究》开题会。'
  357. },
  358. {
  359. month: '8月',
  360. thing: '逻辑狗产品亮相全国市场,入驻北京王府井书店、中关村图书大厦等十余家商厦。'
  361. },
  362. {
  363. month: '12月',
  364. thing: '举办“十五”国家课题园际教研交流会。'
  365. }
  366. ]
  367. },
  368. {
  369. id: 2005,
  370. title: 2005,
  371. site: {
  372. x: 2,
  373. y: 3,
  374. },
  375. // yearImgurl:
  376. // "http://res.training.luojigou.vip/FodjYYc3-VyZyJHnfuKJQGapkJzt?imageView2/0/q/50|imageslim",
  377. // eventImgurl:
  378. // "http://res.training.luojigou.vip/FqNcz_3P81MubVeHzAnn_RrkMoCQ?imageView2/0/q/50|imageslim",
  379. eventImgurl: require('~/assets/images/brand/event_year_2005@2x.png'),
  380. yearImgurl: require('~/assets/images/about/year_2005.png'),
  381. yearImgurlSet: [require('~/assets/images/about/year_2005.png'), require('~/assets/images/about/year_2005@2x.png')],
  382. eventImgurlWidth: '269',
  383. eventImgurlHeight: '245',
  384. eventList: [
  385. {
  386. month: '1月',
  387. thing: '首届代理商年会在北京圆满召开。'
  388. },
  389. {
  390. month: '5月',
  391. thing: '与中央电视台少儿频道《智慧树》节目正式达成内容合作,每周三次播出。'
  392. },
  393. {
  394. month: '7月',
  395. thing: '举办首届中德智慧杯·思维好儿童全国幼儿思维能力挑战赛。'
  396. }
  397. ]
  398. },
  399. {
  400. id: 2006,
  401. title: 2006,
  402. site: {
  403. x: 1,
  404. y: 3,
  405. },
  406. // yearImgurl:
  407. // "http://res.training.luojigou.vip/Fj_2tRMk_1H9NSp9rE0XK0nEcv6g?imageView2/0/q/50|imageslim",
  408. // eventImgurl:
  409. // "http://res.training.luojigou.vip/FkvModMYKxFJcnqRrpGSULyd9Th7?imageView2/0/q/50|imageslim",
  410. yearImgurl: require('~/assets/images/about/year_2006.png'),
  411. yearImgurlSet: [require('~/assets/images/about/year_2006.png'), require('~/assets/images/about/year_2006@2x.png')],
  412. eventImgurl: require('~/assets/images/brand/event_year_2006@2x.png'),
  413. eventImgurlWidth: '269',
  414. eventImgurlHeight: '273',
  415. eventList: [
  416. {
  417. month: '5月',
  418. thing: '出版逻辑狗幼儿园教学版全线产品。'
  419. },
  420. {
  421. month: '6月',
  422. thing: '第二届“十一五”中国教育学会国家课题在全国重点幼儿园实施。'
  423. }
  424. ]
  425. },
  426. {
  427. id: 2007,
  428. title: 2007,
  429. site: {
  430. x: 0,
  431. y: 3,
  432. },
  433. // yearImgurl:
  434. // "http://res.training.luojigou.vip/Fm4DqB0VKXcLXaa4P2suM1i-2LMZ?imageView2/0/q/50|imageslim",
  435. // eventImgurl:
  436. // "http://res.training.luojigou.vip/Fkp-2UvHIyIqEW9pu5tZKNpvcCov?imageView2/0/q/50|imageslim",
  437. yearImgurl: require('~/assets/images/about/year_2007.png'),
  438. yearImgurlSet: [require('~/assets/images/about/year_2007.png'), require('~/assets/images/about/year_2007@2x.png')],
  439. eventImgurl: require('~/assets/images/brand/event_year_2007@2x.png'),
  440. eventImgurlWidth: '269',
  441. eventImgurlHeight: '403',
  442. eventList: [
  443. {
  444. month: '5月',
  445. thing: '第二届幼儿思维能力挑战赛全国总决赛在北京公安部幼儿园举行。并于人民大会堂举行颁奖典礼。'
  446. },
  447. {
  448. month: '10月',
  449. thing: '亮相第六届中国玩具展,“逻辑狗”荣获“教育类玩具金奖”。'
  450. }
  451. ]
  452. },
  453. {
  454. id: 2008,
  455. title: '2008~中德智慧2.0时代',
  456. site: {
  457. x: 0,
  458. y: 2,
  459. },
  460. // yearImgurl:
  461. // "http://res.training.luojigou.vip/FlEj53_PWeL59J8V6qqduokmrEif?imageView2/0/q/50|imageslim",
  462. // eventImgurl:
  463. // "http://res.training.luojigou.vip/FpIzAvfIOeIhBEtzVEZYp74y7Wh3?imageView2/0/q/50|imageslim",
  464. yearImgurl: require('~/assets/images/about/year_2008.png'),
  465. yearImgurlSet: [require('~/assets/images/about/year_2008.png'), require('~/assets/images/about/year_2008@2x.png')],
  466. eventImgurl: require('~/assets/images/brand/event_year_2008@2x.png'),
  467. eventImgurlWidth: '269',
  468. eventImgurlHeight: '245',
  469. eventList: [
  470. {
  471. month: '2月',
  472. thing: '首届品牌系列活动“智慧园长沙龙”在北京启动。'
  473. },
  474. {
  475. month: '7月',
  476. thing: '第三届幼儿思维能力挑战赛开赛。'
  477. }
  478. ]
  479. },
  480. {
  481. id: 2009,
  482. title: 2009,
  483. site: {
  484. x: 1,
  485. y: 2,
  486. },
  487. // yearImgurl:
  488. // "http://res.training.luojigou.vip/FtRU3rBk7D0SBEmbTujXX1o3THTU?imageView2/0/q/50|imageslim",
  489. // eventImgurl:
  490. // "http://res.training.luojigou.vip/Fnmlx106pwroL9I6UNo81BTpxGyO?imageView2/0/q/50|imageslim",
  491. yearImgurl: require('~/assets/images/about/year_2009.png'),
  492. yearImgurlSet: [require('~/assets/images/about/year_2009.png'), require('~/assets/images/about/year_2009@2x.png')],
  493. eventImgurl: require('~/assets/images/brand/event_year_2009@2x.png'),
  494. eventImgurlWidth: '269',
  495. eventImgurlHeight: '220',
  496. eventList: [
  497. {
  498. month: '1月',
  499. thing: '出版逻辑狗儿童思维升级游戏系统小学版全线产品。'
  500. },
  501. {
  502. month: '5月',
  503. thing: '举办首届全国师资培训会。'
  504. },
  505. {
  506. month: '6月',
  507. thing: '主办“送你一把金钥匙”思维课程交流会。'
  508. },
  509. {
  510. month: '7月',
  511. thing: '第四届中德智慧杯,思维好儿童幼儿思维能力挑战赛全国总决赛在北京成功举行。'
  512. }
  513. ]
  514. },
  515. {
  516. id: 2010,
  517. title: 2010,
  518. site: {
  519. x: 2,
  520. y: 2,
  521. },
  522. // yearImgurl:
  523. // "http://res.training.luojigou.vip/Fmx2IObHIKURUiGbrvX4cpZ-u5MB?imageView2/0/q/50|imageslim",
  524. // eventImgurl:
  525. // "http://res.training.luojigou.vip/Fg2GfiNmRknqRjTbzvCq09ewERIH?imageView2/0/q/50|imageslim",
  526. yearImgurl: require('~/assets/images/about/year_2010.png'),
  527. yearImgurlSet: [require('~/assets/images/about/year_2010.png'), require('~/assets/images/about/year_2010@2x.png')],
  528. eventImgurl: require('~/assets/images/brand/event_year_2010@2x.png'),
  529. eventImgurlWidth: '269',
  530. eventImgurlHeight: '403',
  531. eventList: [
  532. {
  533. month: '2月',
  534. thing: '中德智慧教育逻辑狗品牌淘宝官方旗舰店上线。'
  535. },
  536. {
  537. month: '7月',
  538. thing: '第五届幼儿思维能力挑战赛全国总决赛在北京举行。'
  539. },
  540. {
  541. month: '10月',
  542. thing: '全新推出荣获安徒生奖的世界最美童话书——《春夏秋冬思维绘本》。'
  543. }
  544. ]
  545. },
  546. {
  547. id: 2011,
  548. title: 2011,
  549. site: {
  550. x: 3,
  551. y: 2,
  552. },
  553. // yearImgurl:
  554. // "http://res.training.luojigou.vip/FutAwrnX_ypeS4bUqol5xKVVqrXU?imageView2/0/q/50|imageslim",
  555. // eventImgurl:
  556. // "http://res.training.luojigou.vip/FuPF8r4-f8-_SY_v0Tky2AnFPYeH?imageView2/0/q/50|imageslim",
  557. yearImgurl: require('~/assets/images/about/year_2011.png'),
  558. yearImgurlSet: [require('~/assets/images/about/year_2011.png'), require('~/assets/images/about/year_2011@2x.png')],
  559. eventImgurl: require('~/assets/images/brand/event_year_2011@2x.png'),
  560. eventImgurlWidth: '269',
  561. eventImgurlHeight: '480',
  562. eventList: [
  563. {
  564. month: '5月',
  565. thing: '承办第13届北京国际玩具及幼教用品展览会。'
  566. },
  567. {
  568. month: '6月',
  569. thing: '启动品牌系列活动“百城巡讲”,在全国连续举办200场思维教育宣讲活动。'
  570. },
  571. {
  572. month: '7月',
  573. thing: '第六届幼儿思维能力挑战赛全国总决赛在北京举行。'
  574. },
  575. {
  576. month: '10月',
  577. thing: '第三届中国教育学会“十一五”科研重点课题《优质教育模式对促进幼儿早期智力发展的实践研究》子课题《逻辑狗优质教育模式促进儿童思维能力发展的研究》举行结题论证会。'
  578. },
  579. {
  580. month: '11月',
  581. thing: '《蚂蚁沙丘.学前儿童情境科学》产品正式出版。'
  582. }
  583. ]
  584. },
  585. {
  586. id: 2012,
  587. title: 2012,
  588. site: {
  589. x: 4,
  590. y: 2,
  591. },
  592. // yearImgurl:
  593. // "http://res.training.luojigou.vip/Fg3Jph3aJcX-hQtbvOs5UJZCzmj7?imageView2/0/q/50|imageslim",
  594. // eventImgurl:
  595. // "http://res.training.luojigou.vip/Fp5DT3Tg3CBl2rvjT9sIsCBcUSWu?imageView2/0/q/50|imageslim",
  596. yearImgurl: require('~/assets/images/about/year_2012.png'),
  597. yearImgurlSet: [require('~/assets/images/about/year_2012.png'), require('~/assets/images/about/year_2012@2x.png')],
  598. eventImgurl: require('~/assets/images/brand/event_year_2012@2x.png'),
  599. eventImgurlWidth: '269',
  600. eventImgurlHeight: '325',
  601. eventList: [
  602. {
  603. month: '4月',
  604. thing: '德国芬肯一行对中德智慧教育进行友好交流访问,就双方理念、服务理念、产品研发情况等进行了深入交流。'
  605. },
  606. {
  607. month: '7月',
  608. thing: '第七届幼儿思维能力挑战赛全国总决赛在北京举行。'
  609. }
  610. ]
  611. },
  612. {
  613. id: 2013,
  614. title: 2013,
  615. site: {
  616. x: 4,
  617. y: 1,
  618. },
  619. // yearImgurl:
  620. // "http://res.training.luojigou.vip/FjWOsyUqGM6eIaPW3_lCzDzw3h1M?imageView2/0/q/50|imageslim",
  621. // eventImgurl:
  622. // "http://res.training.luojigou.vip/FirCgjTps0bLqGV5-TOpuX6q8SMl?imageView2/0/q/50|imageslim",
  623. yearImgurl: require('~/assets/images/about/year_2013.png'),
  624. yearImgurlSet: [require('~/assets/images/about/year_2013.png'), require('~/assets/images/about/year_2013@2x.png')],
  625. eventImgurl: require('~/assets/images/brand/event_year_2013@2x.png'),
  626. eventImgurlWidth: '269',
  627. eventImgurlHeight: '394',
  628. eventList: [
  629. {
  630. month: '3月',
  631. thing: '创立自媒体时代,开通品牌官方公众号。'
  632. },
  633. {
  634. month: '6月',
  635. thing: '中德智慧教育品牌入驻天猫、京东等主流电商平台。'
  636. },
  637. {
  638. month: '7月',
  639. thing: '第八届幼儿思维能力挑战赛全国总决赛在北京举行。'
  640. },
  641. {
  642. month: '9月',
  643. thing: '举办中国教育学会“十二五”科研重点规划课题。'
  644. },
  645. {
  646. month: '10月',
  647. thing: '建立全国商超系统“成长元素”专柜,覆盖全国80余个地区,专柜数量近100个。'
  648. },
  649. {
  650. month: '10月',
  651. thing: '首次承接北京市教委“幼儿科学教育教师”项目。'
  652. },
  653. {
  654. month: '10月',
  655. thing: '中德智慧教育培训突破百城,近200个地区。'
  656. }
  657. ]
  658. },
  659. {
  660. id: 2014,
  661. title: 2014,
  662. site: {
  663. x: 3,
  664. y: 1,
  665. },
  666. // yearImgurl:
  667. // "http://res.training.luojigou.vip/FqI9b5_4iP6WmoVE_z7o9RLm7RZe?imageView2/0/q/50|imageslim",
  668. // eventImgurl:
  669. // "http://res.training.luojigou.vip/FlyzOxQWuiW2nYmACRUPsiCLyuw7?imageView2/0/q/50|imageslim",
  670. yearImgurl: require('~/assets/images/about/year_2014.png'),
  671. yearImgurlSet: [require('~/assets/images/about/year_2014.png'), require('~/assets/images/about/year_2014@2x.png')],
  672. eventImgurl: require('~/assets/images/brand/event_year_2014@2x.png'),
  673. eventImgurlWidth: '269',
  674. eventImgurlHeight: '688',
  675. eventList: [
  676. {
  677. month: '3月',
  678. thing: '承接北京市教委园长教师素质提升计划的培训工作。'
  679. },
  680. {
  681. month: '3月',
  682. thing: '《与克鲁德一起听说读》系列正式出版。'
  683. },
  684. {
  685. month: '4月',
  686. thing: '中德智慧商学院启动,缔造中国早期教育界首家商学院。'
  687. },
  688. {
  689. month: '5月',
  690. thing: '首次举办“中德幼儿科学教育国际论坛”,邀请德国专家来京讲座。'
  691. },
  692. {
  693. month: '6月',
  694. thing: '《儿童思维升级训练系统》、《克鲁德儿童语言升级训练系统》、《春夏秋冬思维绘本》礼盒装、聪明笔四大产品系列正式发布。'
  695. },
  696. {
  697. month: '6月',
  698. thing: '第六届中国学前教育研究会“十三五”课题《思维游戏与幼儿学习品质形成的相关性研究》在京召开课题开题会。'
  699. },
  700. {
  701. month: '8月',
  702. thing: ' 第十二届幼儿思维能力挑战赛全国总决赛在北京举行。同期举行了“思维魔法营地·小蚂蚁夏令营”。'
  703. },
  704. {
  705. month: '9月',
  706. thing: '公司受邀参加北京市教委庆祝第33个教师节“师爱无尘” 活动。'
  707. }
  708. ]
  709. },
  710. {
  711. id: 2015,
  712. title: 2015,
  713. site: {
  714. x: 2,
  715. y: 1,
  716. },
  717. // yearImgurl:
  718. // "http://res.training.luojigou.vip/FoeSNwPl-fQXqwwow99j9Rsd9tjB?imageView2/0/q/50|imageslim",
  719. // eventImgurl:
  720. // "http://res.training.luojigou.vip/FmBATtftJW08bU-5KGBFuKsAQSN1?imageView2/0/q/50|imageslim",
  721. yearImgurl: require('~/assets/images/about/year_2015.png'),
  722. yearImgurlSet: [require('~/assets/images/about/year_2015.png'), require('~/assets/images/about/year_2015@2x.png')],
  723. eventImgurl: require('~/assets/images/brand/event_year_2015@2x.png'),
  724. eventImgurlWidth: '269',
  725. eventImgurlHeight: '324',
  726. eventList: [
  727. {
  728. month: '4月',
  729. thing: '第十届幼儿思维能力挑战赛启动。'
  730. },
  731. {
  732. month: '5月',
  733. thing: '中德智慧教育品牌应邀参加“2015北京长城森林儿童艺术节”。'
  734. },
  735. {
  736. month: '6月',
  737. thing: '开创中国首家体验式儿童思维培训中心“逻辑狗·探索小镇”。'
  738. },
  739. {
  740. month: '7月',
  741. thing: '第十届幼儿思维能力挑战赛全国总决赛在北京举行。'
  742. },
  743. {
  744. month: '9月',
  745. thing: '中德智慧教育官网www.zaojiao.net改版升级上线。'
  746. }
  747. ]
  748. },
  749. {
  750. id: 2016,
  751. title: 2016,
  752. site: {
  753. x: 1,
  754. y: 1,
  755. },
  756. // yearImgurl:
  757. // "http://res.training.luojigou.vip/Fl2SA1cd8DqIzQGIQqh5qrNUMmR6?imageView2/0/q/50|imageslim",
  758. // eventImgurl:
  759. // "http://res.training.luojigou.vip/FoaOya6X8s6j3Bzc2oBNDvX-JHW2?imageView2/0/q/50|imageslim",
  760. yearImgurl: require('~/assets/images/about/year_2016.png'),
  761. yearImgurlSet: [require('~/assets/images/about/year_2016.png'), require('~/assets/images/about/year_2016@2x.png')],
  762. eventImgurl: require('~/assets/images/brand/event_year_2016@2x.png'),
  763. eventImgurlWidth: '269',
  764. eventImgurlHeight: '584',
  765. eventList: [
  766. {
  767. month: '1月',
  768. thing: '品牌系列活动园长沙龙在北京·东澜剧场举行。'
  769. },
  770. {
  771. month: '5月',
  772. thing: '网络版“逻辑狗儿童思维升级游戏活动材料”正式全面上市。'
  773. },
  774. {
  775. month: '7月',
  776. thing: '公司受邀参加韩国首尔世界学前教育大会。'
  777. },
  778. {
  779. month: '8月',
  780. thing: '第十一届幼儿思维能力挑战赛全国总决赛在北京举行。'
  781. },
  782. {
  783. month: '9月',
  784. thing: '与德方合作成立“中德儿童学前教育交流文化中心”。'
  785. },
  786. {
  787. month: '12月',
  788. thing: '创始人·董事长张洁荣获“2016中国教育行业领军人物”并接受央广网个人专访。'
  789. },
  790. {
  791. month: '12月',
  792. thing: '与德国Westermann公司签署合作,获得LüK思维魔法游戏在中国大陆地区的独家授权。'
  793. }
  794. ]
  795. },
  796. {
  797. id: 2017,
  798. title: 2017,
  799. site: {
  800. x: 0,
  801. y: 1,
  802. },
  803. // yearImgurl:
  804. // "http://res.training.luojigou.vip/Fi_RKVrGct2V235xsKpwsIA51YX-?imageView2/0/q/50|imageslim",
  805. // eventImgurl:
  806. // "http://res.training.luojigou.vip/FsALqlvULFPhf-kxcPw1YtRiZjIG?imageView2/0/q/50|imageslim",
  807. yearImgurl: require('~/assets/images/about/year_2017.png'),
  808. yearImgurlSet: [require('~/assets/images/about/year_2017.png'), require('~/assets/images/about/year_2017@2x.png')],
  809. eventImgurl: require('~/assets/images/brand/event_year_2017@2x.png'),
  810. eventImgurlWidth: '269',
  811. eventImgurlHeight: '532',
  812. eventList: [
  813. {
  814. month: '4月',
  815. thing: '全新场景化幼儿园区角活动材料逻辑狗思维游戏盒子全面进入幼儿园。'
  816. },
  817. {
  818. month: '6月',
  819. thing: '德国Westermann公司LüK系列产品《思维魔法我的Pad》正式出版。'
  820. },
  821. {
  822. month: '6月',
  823. thing: '第六届中国学前教育研究会“十三五”课题《思维游戏与幼儿学习品质形成的相关性研究》在京召开课题开题会。'
  824. },
  825. {
  826. month: '8月',
  827. thing: '第十二届幼儿思维能力挑战赛全国总决赛在北京举行。同期举行了“思维魔法营地·小蚂蚁夏令营”。'
  828. },
  829. {
  830. month: '9月',
  831. thing: '公司受邀参加北京市教委庆祝第33个教师节“师爱无尘” 活动。'
  832. }
  833. ]
  834. },
  835. {
  836. id: 2018,
  837. title: 2018,
  838. site: {
  839. x: 0,
  840. y: 0,
  841. },
  842. // yearImgurl:
  843. // "http://res.training.luojigou.vip/FvN4BWxIckbJmo_qrN7mlILrtQKg?imageView2/0/q/50|imageslim",
  844. // eventImgurl:
  845. // "http://res.training.luojigou.vip/FvQZtrIRkaNzGJ8KbF1-Cl-k5hfJ?imageView2/0/q/50|imageslim",
  846. yearImgurl: require('~/assets/images/about/year_2018.png'),
  847. yearImgurlSet: [require('~/assets/images/about/year_2018.png'), require('~/assets/images/about/year_2018@2x.png')],
  848. eventImgurl: require('~/assets/images/brand/event_year_2018@2x.png'),
  849. eventImgurlWidth: '269',
  850. eventImgurlHeight: '662',
  851. eventList: [
  852. {
  853. month: '5月',
  854. thing: '携新产品“思维魔法系列”参加第八届北京国际幼教展。'
  855. },
  856. {
  857. month: '6月',
  858. thing: '创始人·董事长张洁女士创造性的提出“思维芯”理论,给孩子一颗强大起来的思维芯,构建学前儿童优质成长型思维模式。'
  859. },
  860. {
  861. month: '6月',
  862. thing: '首次举办中德智慧教育品牌系列活动园长欧洲行。'
  863. },
  864. {
  865. month: '7月',
  866. thing: '第十三届幼儿思维能力挑战赛开赛,全国500强小选手会师决赛。'
  867. },
  868. {
  869. month: '11月',
  870. thing: '品牌系列活动“成长故事”国际思维教育中国行系列活动启动。'
  871. },
  872. {
  873. month: '12月',
  874. thing: '“植根文化·专注教育”第十三届代理商年会在北京举行。'
  875. }
  876. ]
  877. },
  878. {
  879. id: 2019,
  880. title: '2019~中德智慧3.0时代',
  881. site: {
  882. x: 1,
  883. y: 0,
  884. },
  885. // yearImgurl:
  886. // "http://res.training.luojigou.vip/Fgr3xXoLsgpIP2wBglovLx0e89Mb?imageView2/0/q/50|imageslim",
  887. // eventImgurl:
  888. // "http://res.training.luojigou.vip/Flio74FIlTt_aYhyW-3scKmhSrHc?imageView2/0/q/50|imageslim",
  889. yearImgurl: require('~/assets/images/about/year_2019.png'),
  890. yearImgurlSet: [require('~/assets/images/about/year_2019.png'), require('~/assets/images/about/year_2019@2x.png')],
  891. eventImgurl: require('~/assets/images/brand/event_year_2019@2x.png'),
  892. eventImgurlWidth: '269',
  893. eventImgurlHeight: '766',
  894. eventList: [
  895. {
  896. month: '3月',
  897. thing: '中德智慧教育创始人张洁女士与德国芬肯教育机构达成战略合作,获得芬肯在中国大陆地区所有产品的独家研发权。'
  898. },
  899. {
  900. month: '4月',
  901. thing: '逻辑狗·探索小镇首次在校长邦加盟展中亮相。'
  902. },
  903. {
  904. month: '5月',
  905. thing: '与北京师范大学成立楚江亭教授工作室,展开院长领导力培训项目。'
  906. },
  907. {
  908. month: '5月',
  909. thing: '创始人·董事长张洁女士出席CHPEE精英俱乐部会议并出任俱乐部副主席'
  910. },
  911. {
  912. month: '6月',
  913. thing: '公司乔迁新址,全面升级,提升服务体系和数字化运营能力,在现代化充满文化和艺术气息的全新独栋办公别墅中,开启了中德智慧教育3.0时代。引领中国教育“思维芯”时代。'
  914. },
  915. {
  916. month: '7月',
  917. thing: '第十四届幼儿思维能力挑战赛全国总决赛在北京举行。'
  918. },
  919. {
  920. month: '8月',
  921. thing: '全新教材版系列《中华小熊猫·中国文化思维游戏系统》正式面世。'
  922. },
  923. {
  924. month: '10月',
  925. thing: '公司参加校长邦榜样的力量教育盛典,荣获校长邦“理事单位”,旗下逻辑狗产品获得“匠心独运”奖。'
  926. },
  927. {
  928. month: '11月',
  929. thing: '董事长&CEO张洁受邀参加腾讯“回响中国”教育盛典,荣获“2019教育行业影响力人物”;中德智慧教育荣获“2019教育行业影响力品牌”。'
  930. },
  931. {
  932. month: '12月',
  933. thing: '入选中国品牌领袖联盟。'
  934. }
  935. ]
  936. },
  937. {
  938. id: 2020,
  939. title: 2020,
  940. site: {
  941. x: 2,
  942. y: 0,
  943. },
  944. // yearImgurl:
  945. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  946. yearImgurl: require('~/assets/images/about/year_2020.png'),
  947. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  948. eventList: [
  949. {
  950. month: '2月',
  951. thing: '疫情期间,中德智慧教育及时开展2020年春季幼教人停课不停学「四大行动」。'
  952. },
  953. {
  954. month: '3月',
  955. thing: '全新新媒体矩阵搭建。'
  956. },
  957. {
  958. month: '4月',
  959. thing: '天猫店铺设计全新优化升级。'
  960. },
  961. {
  962. month: '5月',
  963. thing: '17年周年庆创始人作客湖南卫视著名主持人张丹丹直播间带货。'
  964. },
  965. {
  966. month: '8月',
  967. thing: '新品隆重上市:《二十四节气》《思考技巧》《聪明书》。'
  968. },
  969. {
  970. month: '8月',
  971. thing: '中德智慧杯·思维好儿童·线上云大赛。'
  972. },
  973. {
  974. month: '9月',
  975. thing: '参加北京第22届北京国际幼教展。'
  976. },
  977. {
  978. month: '9月',
  979. thing: '全新包装升级:逻辑狗 网络家庭教学三渠道产品。'
  980. },
  981. {
  982. month: '10月',
  983. thing: '参加第19届中国国际玩具展。'
  984. },
  985. {
  986. month: '10月',
  987. thing: '十三五课题「十三五」《思维游戏与幼儿学习品质形成的相关性研究》结题。'
  988. },
  989. {
  990. month: '10月',
  991. thing: '成功查封河北廊坊非法盗版“逻辑狗”工厂。'
  992. },
  993. {
  994. month: '10月',
  995. thing: '加入中国玩具和婴童用品协会-理事单位。'
  996. },
  997. {
  998. month: '11月',
  999. thing: '中德全新品牌视觉升级,逻辑狗形象升级。'
  1000. },
  1001. {
  1002. month: '11月',
  1003. thing: '“中德云聚未来·智慧重构生态——2020年度中德智慧教育合作伙伴嘉年华会”在三亚隆重举行。'
  1004. },
  1005. {
  1006. month: '12月',
  1007. thing: '逻辑狗思维体验Home/Plus加盟模式全新推出。'
  1008. },
  1009. ]
  1010. },
  1011. {
  1012. id: 2021,
  1013. title: 2021,
  1014. site: {
  1015. x: 3,
  1016. y: 0,
  1017. },
  1018. // yearImgurl:
  1019. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  1020. yearImgurl: require('~/assets/images/about/year_2020.png'),
  1021. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  1022. eventList: [
  1023. {
  1024. month: '',
  1025. thing: '敬请期待'
  1026. }
  1027. ]
  1028. },
  1029. ]);
  1030. const eventDurationData = Object.freeze([
  1031. {
  1032. year: 2021,
  1033. text: '现在'
  1034. },
  1035. {
  1036. year: 2017,
  1037. text: '2017'
  1038. },
  1039. {
  1040. year: 2012,
  1041. text: '2012'
  1042. },
  1043. {
  1044. year: 2007,
  1045. text: '2007'
  1046. },
  1047. {
  1048. year: 2003,
  1049. text: '2003'
  1050. },
  1051. ])
  1052. const fieldData = Object.freeze([
  1053. {
  1054. id: 1,
  1055. title: '逻辑思维',
  1056. label: '喜欢思考、爱上学习',
  1057. labelWidth: 154,
  1058. desc: '逻辑思维是理性认识的阶段,人运用概念、判断、推理等思维类型反映事物本质与规律的认识过程。中德智慧教育以完善的理念,独特的教学方法,运用思维启蒙、思考策略及思考技巧的阶梯式教育方式培养儿童优质思维能力。',
  1059. background: '#FC7E4D',
  1060. lightBackground: '#FEF4EB',
  1061. imgUrl: require('~/assets/images/brand/field_01.png'),
  1062. fieldImg: require('~/assets/images/brand/field_img_01.png'),
  1063. width: 100,
  1064. height: 19,
  1065. },
  1066. {
  1067. id: 2,
  1068. title: '科学探究',
  1069. label: '喜欢探索、热衷钻研',
  1070. labelWidth: 154,
  1071. desc: '科学是幼儿教育五大领域之一,科学的本质在于探究。中德智慧教育为学前儿童创设了国际优质的情境科学探究环境,激发幼儿探究兴趣,体验探究过程、发展初步的探究和解决问题的能力,并在探究中认识周围事物和现象,培养幼儿的科学精神和科学素养。',
  1072. background: '#FFC320',
  1073. lightBackground: '#FFF8EB',
  1074. imgUrl: require('~/assets/images/brand/field_02.png'),
  1075. fieldImg: require('~/assets/images/brand/field_img_02.png'),
  1076. width: 100,
  1077. height: 19
  1078. },
  1079. {
  1080. id: 3,
  1081. title: '语言表达',
  1082. label: '爱上表达、提升自信',
  1083. labelWidth: 154,
  1084. desc: '学前阶段是儿童口头语言发展的关键期,语言表达是幼儿教育五大领域的重要内容。中德智慧根据幼儿语言学习和思维发展的特点,将看、听、动、思、说五维结合,通过具象的趣味图片,让孩子对语言感兴趣。通过生活化的场景,让孩子动脑思考,动手操作,实现全景式、立体式、学习型的全新语言学习模式。',
  1085. background: '#11D60D',
  1086. lightBackground: '#F7FBF2',
  1087. imgUrl: require('~/assets/images/brand/field_03.png'),
  1088. fieldImg: require('~/assets/images/brand/field_img_03.png'),
  1089. width: 100,
  1090. height: 19
  1091. },
  1092. {
  1093. id: 4,
  1094. title: '社会与创造',
  1095. label: '热爱创造、追求卓越',
  1096. labelWidth: 154,
  1097. desc: '幼儿阶段是人社会性发展的重要时期。在这个时期,幼儿逐步认识周围的社会环境,内化社会行为规范;创造的一个最大的特点是有意识地对世界进行探索性劳动。中德智慧以孩子所熟悉的社会生活环境为教育内容,让教育自然的发生,关爱社会、关爱自然,发现身边的事物、现象,去适应社会生活、创新生活,促进社会性和创造力的发展。',
  1098. background: '#567FFF',
  1099. lightBackground: '#EFF4FF',
  1100. imgUrl: require('~/assets/images/brand/field_04.png'),
  1101. fieldImg: require('~/assets/images/brand/field_img_04.png'),
  1102. width: 125,
  1103. height: 19
  1104. },
  1105. {
  1106. id: 5,
  1107. title: '教育+互联+职能',
  1108. label: '喜欢探索、热衷钻研',
  1109. labelWidth: 154,
  1110. desc: '科学是幼儿教育五大领域之一,科学的本质在于探究。中德智慧教育为学前儿童创设了国际优质的情境科学探究环境,激发幼儿探究兴趣,体验探究过程、发展初步的探究和解决问题的能力,并在探究中认识周围事物和现象,培养幼儿的科学精神和科学素养。',
  1111. background: '#BC5ED1',
  1112. lightBackground: '#F9EFFB',
  1113. imgUrl: require('~/assets/images/brand/field_05.png'),
  1114. fieldImg: require('~/assets/images/brand/field_img_05.png'),
  1115. width: 185,
  1116. height: 19
  1117. }
  1118. ]);
  1119. const principlesData = Object.freeze([
  1120. {
  1121. id: 1,
  1122. imgUrl: require("~/assets/images/brand/principles_01.png"),
  1123. number: 1,
  1124. label: "理解儿童,儿童视角",
  1125. },
  1126. {
  1127. id: 2,
  1128. imgUrl: require("~/assets/images/brand/principles_02.png"),
  1129. number: 2,
  1130. label: "多元化教学路径",
  1131. },
  1132. {
  1133. id: 3,
  1134. imgUrl: require("~/assets/images/brand/principles_03.png"),
  1135. number: 3,
  1136. label: "系统深度学习",
  1137. }
  1138. ])
  1139. export default {
  1140. name: "BrandPage",
  1141. head() {
  1142. return {
  1143. title: "逻辑狗官网-中德智慧教育",
  1144. meta: [
  1145. {
  1146. name: "keywords",
  1147. hid: "keywords",
  1148. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  1149. },
  1150. {
  1151. name: "description",
  1152. hid: "description",
  1153. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  1154. },
  1155. ],
  1156. };
  1157. },
  1158. components: {
  1159. CommonBanner,
  1160. TitleContent
  1161. },
  1162. computed: {
  1163. eventDataReverse() {
  1164. let newArr = [];
  1165. eventData.forEach(ele => {
  1166. newArr.unshift(ele);
  1167. })
  1168. return newArr;
  1169. }
  1170. },
  1171. data() {
  1172. return {
  1173. isMoving: false,
  1174. companyImg: require('@/assets/images/brand/company.png'),
  1175. companyLeft: require('@/assets/images/brand/companyImg.png'),
  1176. companyRight: require('@/assets/images/brand/profileImg.png'),
  1177. bgLogo: require('@/assets/images/brand/bgLogo.png'),
  1178. eventImg: require('@/assets/images/brand/eventImg.png'),
  1179. bgImg: require('@/assets/images/brand/brandBg.png'),
  1180. bannerImg: require('~/assets/images/about/about_brand.png'),
  1181. kernelData,
  1182. currentMouserEnter: false,
  1183. currentMouserId: "",
  1184. cultrueData,
  1185. ideaData,
  1186. eventData: [],
  1187. eventDurationData,
  1188. offsetLeftList: [],
  1189. offsetLeftDurationList: [],
  1190. fieldData,
  1191. principlesData,
  1192. currentFieldIndex: 0,
  1193. currentEventImgId: 2003,
  1194. starX: 0,
  1195. drag: null,
  1196. dragLeft: 0,
  1197. disX: 0,
  1198. currentDurationIndex: 0,
  1199. animate: true,
  1200. eventHeight: 0
  1201. };
  1202. },
  1203. mounted() {
  1204. this.initEvent();
  1205. this.initDrag();
  1206. },
  1207. methods: {
  1208. initEvent() {
  1209. // 设置大事记数据
  1210. let Elements = this.$refs.drag.children;
  1211. let offsetLeftList = [];
  1212. for (let index = 0; index < Elements.length; index++) {
  1213. offsetLeftList.push(Elements[index].offsetLeft)
  1214. }
  1215. this.offsetLeftList = offsetLeftList;
  1216. // 设置大事记段数据
  1217. let offsetLeftDurationList = [];
  1218. this.eventDataReverse.map((item, i) => {
  1219. this.eventDurationData.map((ele, j) => {
  1220. if(item.id == ele.year) {
  1221. offsetLeftDurationList.push(offsetLeftList[i])
  1222. }
  1223. })
  1224. });
  1225. this.offsetLeftDurationList = offsetLeftDurationList;
  1226. },
  1227. initDrag() {
  1228. this.drag = this.$refs.drag;
  1229. this.eventHeight = this.$refs.drag.offsetHeight + 'px';
  1230. },
  1231. currentElement(item) {
  1232. this.currentMouserId = item.id;
  1233. this.currentMouserEnter = true;
  1234. },
  1235. currentEventImg(item) {
  1236. this.currentEventImgId = item.id;
  1237. },
  1238. handleFieldEnter(item, index) {
  1239. this.currentFieldIndex = index;
  1240. },
  1241. handleMouseDown(e) {
  1242. this.animate = false;
  1243. this.isMoving = true;
  1244. const starX = e.clientX;
  1245. this.starX = starX;
  1246. },
  1247. handleMouseMove(e) {
  1248. if(this.isMoving) {
  1249. let disX = this.starX - e.clientX;
  1250. this.disX = disX;
  1251. if(this.dragLeft <= 0 && Math.abs(this.dragLeft) <= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1252. let left = this.dragLeft - disX;
  1253. if(left > 0 ) {
  1254. left = 0;
  1255. }
  1256. if(Math.abs(left) >= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1257. left = -this.offsetLeftList[this.offsetLeftList.length - 1];
  1258. }
  1259. // 判断当前滑动到那个区间
  1260. this.currentDurationIndex = this.getArrayIndex(left);
  1261. this.drag.style.left = left + 'px';
  1262. }
  1263. }
  1264. },
  1265. handleMouseUp(e) {
  1266. this.isMoving = false;
  1267. this.dragLeft = this.dragLeft - this.disX;
  1268. if(this.dragLeft > 0) {
  1269. this.dragLeft = 0;
  1270. }
  1271. if(Math.abs(this.dragLeft) >= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1272. this.dragLeft = -this.offsetLeftList[this.offsetLeftList.length - 1];
  1273. }
  1274. },
  1275. getArrayIndex(num) {
  1276. let data = Math.abs(num);
  1277. let index = 0;
  1278. this.offsetLeftDurationList.forEach((ele, i) => {
  1279. if(data >= ele ) {
  1280. index = i;
  1281. }
  1282. });
  1283. return index;
  1284. },
  1285. chooseYear(item, tab) {
  1286. this.animate = true;
  1287. this.currentDurationIndex = tab;
  1288. const index = this.eventDataReverse.findIndex(ele => {
  1289. return ele.id == item.year;
  1290. });
  1291. if(index != -1) {
  1292. let left = this.offsetLeftList[index];
  1293. this.dragLeft = -left;
  1294. this.drag.style.left = -left + 'px';
  1295. }
  1296. }
  1297. },
  1298. };
  1299. </script>
  1300. <style scoped lang="scss">
  1301. @import '~static/common/style.sass';
  1302. .Brand-container {
  1303. .label {
  1304. .label-en {
  1305. height: 78px;
  1306. font-size: 56px;
  1307. font-family: PingFangSC-Semibold, sans-serif;
  1308. font-weight: 600;
  1309. color:rgba(35,106,250,0.16);
  1310. line-height: 78px;
  1311. }
  1312. .label-zn {
  1313. height: 65px;
  1314. font-size: 46px;
  1315. font-family: PingFangSC-Semibold, sans-serif;
  1316. font-weight: 600;
  1317. color: #262626;
  1318. line-height: 65px;
  1319. letter-spacing: 1px;
  1320. }
  1321. }
  1322. .banner-img {
  1323. position: relative;
  1324. img {
  1325. width: 100%;
  1326. height: 595px;
  1327. display: block;
  1328. }
  1329. .label {
  1330. color: #ffffff;
  1331. position: absolute;
  1332. top: 50%;
  1333. left: 50%;
  1334. transform: translate(-50%, -50%);
  1335. font-size: 66px;
  1336. font-family: PingFangSC-Medium, sans-serif;
  1337. font-weight: 500;
  1338. }
  1339. }
  1340. .company-intro {
  1341. display: flex;
  1342. margin: 0 auto;
  1343. max-width: 2560px;
  1344. .left {
  1345. flex: 1;
  1346. }
  1347. .right {
  1348. position: relative;
  1349. flex: 1;
  1350. .info {
  1351. margin: 73px 0 0 39px;
  1352. max-width: 520px;;
  1353. position: absolute;
  1354. top: 0;
  1355. .name-en {
  1356. font-size: 50px;
  1357. font-family: PingFangSC-Medium, PingFang SC;
  1358. font-weight: 500;
  1359. color: #FFFFFF;
  1360. letter-spacing: 1px;
  1361. opacity: 0.1;
  1362. }
  1363. .name {
  1364. position: relative;
  1365. font-size: 40px;
  1366. font-family: PingFangSC-Medium, PingFang SC;
  1367. font-weight: 500;
  1368. color: #FFFFFF;
  1369. letter-spacing: 1px;
  1370. transform: translateY(-44px);
  1371. &::after {
  1372. position: absolute;
  1373. content: '';
  1374. width: 47px;
  1375. height: 2px;
  1376. border-radius: 200px;
  1377. background: #FFFFFF;
  1378. left: 6px;
  1379. bottom: -17px;
  1380. opacity: 0.8;
  1381. }
  1382. }
  1383. p {
  1384. font-size: 14px;
  1385. font-family: PingFangSC-Regular, PingFang SC;
  1386. font-weight: 400;
  1387. color: #FFFFFF;
  1388. line-height: 36px;
  1389. margin-bottom: 50px;
  1390. }
  1391. }
  1392. .bgLogo {
  1393. position: absolute;
  1394. z-index: 10;
  1395. width: 103px;
  1396. height: 132px;
  1397. right: 187px;
  1398. bottom: 32px;
  1399. }
  1400. }
  1401. img {
  1402. width: 100%;
  1403. }
  1404. }
  1405. .education {
  1406. padding: 98px 0;
  1407. .e-content {
  1408. margin-top: 67px;
  1409. height: 760px;
  1410. background: url('~assets/images/brand/eduction_bg.png');
  1411. background-size: cover;
  1412. display: flex;
  1413. justify-content: center;
  1414. align-items: center;
  1415. img {
  1416. width: 629px;
  1417. height: 629px;
  1418. }
  1419. }
  1420. }
  1421. .field {
  1422. padding: 98px 0;
  1423. background: #F8FBFF;
  1424. .f-content {
  1425. position: relative;
  1426. margin-top: 90px;
  1427. .fields {
  1428. height: 88px;
  1429. display: flex;
  1430. justify-content: space-between;
  1431. }
  1432. .field-container {
  1433. width: 236px;
  1434. position: relative;
  1435. }
  1436. .field-item {
  1437. position: absolute;
  1438. left: 0;
  1439. bottom: 0;
  1440. width: 100%;
  1441. border-radius: 16px 16px 0 0;
  1442. padding-top: 25px;
  1443. text-align: center;
  1444. height: 62px;
  1445. transition: bottom .3s ease 0s,height .3s ease 0s;
  1446. cursor: pointer;
  1447. &.active {
  1448. height: 88px;
  1449. bottom: -3px;
  1450. }
  1451. }
  1452. .bar {
  1453. margin-top: 3px;
  1454. width: 100%;
  1455. height: 8px;
  1456. transition: background .3s ease 0s;
  1457. }
  1458. .content {
  1459. width: 100%;
  1460. height: 357px;
  1461. background: #FFFFFF;
  1462. box-shadow: 7px 10px 46px 0px rgba(207, 222, 254, 0.49);
  1463. border-radius: 0px 0px 16px 16px;
  1464. padding: 45px 0 0 41px;
  1465. .label {
  1466. padding: 0 14px;
  1467. height: 32px;
  1468. line-height: 32px;
  1469. border-radius: 3px;
  1470. font-size: 14px;
  1471. color: #FFFFFF;
  1472. font-family: PingFangSC-Regular, PingFang SC;
  1473. transition: width .3s ease 0s,background .3s ease 0s;
  1474. }
  1475. .title {
  1476. margin-top: 10px;
  1477. height: 40px;
  1478. line-height: 40px;
  1479. font-size: 28px;
  1480. font-family: PingFangSC-Medium, PingFang SC;
  1481. font-weight: 500;
  1482. transition: color .3s ease 0s;
  1483. }
  1484. .detail {
  1485. margin-top: 6px;
  1486. padding: 18px 30px 0 16px;
  1487. border-radius: 10px;
  1488. height: 184px;
  1489. width: 731px;
  1490. font-size: 16px;
  1491. font-family: PingFangSC-Medium, PingFang SC;
  1492. font-weight: 500;
  1493. color: #6A6978;
  1494. line-height: 22px;
  1495. transition: background .3s ease 0s;
  1496. }
  1497. }
  1498. .img-wrap {
  1499. position: absolute;
  1500. right: 140px;
  1501. bottom: 70px;
  1502. width: 190px;
  1503. height: 192px;
  1504. font-size: 0;
  1505. img {
  1506. width: 100%;
  1507. height: 100%;
  1508. object-fit: cover;
  1509. }
  1510. }
  1511. }
  1512. }
  1513. .ways {
  1514. margin: 100px 0 78px;
  1515. .w-content {
  1516. margin-top: 70px;
  1517. }
  1518. .img-wrap {
  1519. width: 1200px;
  1520. font-size: 0;
  1521. img {
  1522. width: 100%;
  1523. }
  1524. }
  1525. }
  1526. .principles {
  1527. position: relative;
  1528. overflow: hidden;
  1529. padding: 95px 0 183px;
  1530. background: url('~assets/images/brand/cultrueBg.png');
  1531. background-color: #0D5CFA;
  1532. background-size: cover;
  1533. .title-content {
  1534. .title {
  1535. color: #ffffff;
  1536. }
  1537. .title-sub {
  1538. color: #ffffff;
  1539. }
  1540. }
  1541. .principles-box {
  1542. margin-top: 96px;
  1543. display: flex;
  1544. padding: 0 50px;
  1545. justify-content: space-between;
  1546. }
  1547. .principles-box-item {
  1548. img {
  1549. width: 170px;
  1550. height: 159px;
  1551. }
  1552. .principles-box-item-num {
  1553. font-size: 45px;
  1554. font-family: Nunito-Black, Nunito;
  1555. font-weight: 600;
  1556. color: #FFFFFF;
  1557. height: 57px;
  1558. letter-spacing: 2px;
  1559. text-align: center;
  1560. margin: 14px 0 42px;
  1561. }
  1562. .principles-box-item-label {
  1563. font-size: 16px;
  1564. font-family: PingFangSC-Regular, sans-serif;
  1565. font-weight: 500;
  1566. color: #FFFFFF;
  1567. line-height: 22px;
  1568. text-align: center;
  1569. }
  1570. }
  1571. }
  1572. .development {
  1573. padding: 100px 0;
  1574. .d-event {
  1575. padding-top: 133px;
  1576. margin-top: 72px;
  1577. height: 364px;
  1578. background-size: cover;
  1579. background-image: url('~assets/images/brand/event_bg.png');
  1580. background-position: center;
  1581. color: #fff;
  1582. .title {
  1583. font-size: 0;
  1584. text-align: center;
  1585. img {
  1586. width: 77px;
  1587. height: 29px;
  1588. }
  1589. }
  1590. .progress-bar{
  1591. width: 530px;
  1592. margin: auto;
  1593. padding-top: 70px;
  1594. .node{
  1595. width:24px ;
  1596. height: 24px;
  1597. float: left;
  1598. position: relative;
  1599. border-radius: 50%;
  1600. background:rgba(255,255,255,0.5);
  1601. cursor: pointer;
  1602. &.active {
  1603. .core{
  1604. background: #fff;
  1605. }
  1606. }
  1607. }
  1608. .txt{
  1609. position: absolute;
  1610. font-size: 16px;
  1611. top: -30px;
  1612. width: 200px;
  1613. text-align: center;
  1614. left: 50%;
  1615. margin-left: -100px;
  1616. }
  1617. .core{
  1618. width:18px;
  1619. height: 18px;
  1620. position: absolute;
  1621. top:3px;
  1622. left:3px;
  1623. border-radius: 50%;
  1624. }
  1625. .line{
  1626. float: left;
  1627. height: 2px;
  1628. background:rgba(255,255,255,0.5);
  1629. width:100px;
  1630. margin-top: 11px;
  1631. }
  1632. }
  1633. }
  1634. .d-event-content {
  1635. height: 413px;
  1636. overflow: hidden;
  1637. .mod-con {
  1638. width: 1200px;
  1639. position: relative;
  1640. margin: 0 auto;
  1641. }
  1642. .event-main {
  1643. width: 10000px;
  1644. top: 0;
  1645. left: 0;
  1646. z-index: 1;
  1647. position: absolute;
  1648. &.animate {
  1649. transition: left .5s ease 0s;
  1650. }
  1651. // left: 0;
  1652. }
  1653. .event-main-box {
  1654. width: 362px;
  1655. float: left;
  1656. margin-right: 25px;
  1657. font-size: 13px;
  1658. font-family: PingFangSC-Regular, PingFang SC;
  1659. font-weight: 400;
  1660. color: #5F6464;
  1661. line-height: 24px;
  1662. .li {
  1663. line-height: 24px;
  1664. margin-bottom: 16px;
  1665. font-size: 13px;
  1666. font-family: PingFangSC-Regular, PingFang SC;
  1667. }
  1668. .event-title {
  1669. font-size: 24px;
  1670. padding-top: 48px;
  1671. line-height: 36px;
  1672. font-family: Nunito-Black, Nunito;
  1673. font-weight: 900;
  1674. color: #2A2E2E;
  1675. padding-bottom: 13px;
  1676. border-bottom: 1px solid #D8D9DC;
  1677. margin-bottom: 15px;
  1678. }
  1679. .left {
  1680. float: left;
  1681. width: 42px;
  1682. padding-right: 10px;
  1683. text-align: right;
  1684. }
  1685. .right {
  1686. width: 300px;
  1687. float: left;
  1688. }
  1689. }
  1690. }
  1691. }
  1692. .event {
  1693. position: relative;
  1694. margin-top: 100px;
  1695. .event-box {
  1696. position: relative;
  1697. margin-top: 70px;
  1698. // width: 1297px;
  1699. // height: 1296px;
  1700. // position: absolute;
  1701. // left: 50%;
  1702. // top: 259px;
  1703. // transform: translateX(-50%);
  1704. .event-bgimg {
  1705. width: 1200px;
  1706. height: 1185px;
  1707. // position: absolute;
  1708. // left: 0;
  1709. // top: 0;
  1710. // right: 0;
  1711. // bottom: 0;
  1712. // object-fit: cover;
  1713. }
  1714. .event-box-item {
  1715. position: absolute;
  1716. // .yearImgurl {
  1717. // width: 65px;
  1718. // height: 30px;
  1719. // object-fit: cover;
  1720. // }
  1721. .yearNumber {
  1722. text-align: center;
  1723. background-color: #0D5CFA;
  1724. width: 50px;
  1725. height: 22px;
  1726. line-height: 22px;
  1727. font-size: 15px;
  1728. font-family: Nunito-Black, Nunito;
  1729. font-weight: 900;
  1730. color: #FFFFFF;
  1731. border-radius: 200px;
  1732. }
  1733. .eventImgurl {
  1734. position: absolute;
  1735. z-index: 1;
  1736. transform: translate(-50%, -50%);
  1737. }
  1738. .eventInfo {
  1739. position: absolute;
  1740. z-index: 1;
  1741. transform: translate(-50%, -50%);
  1742. width: 269px;
  1743. background-color: #0D5CFA;
  1744. color: #FFFFFF;
  1745. padding: 10px 20px 20px;
  1746. border-radius: 20px;
  1747. }
  1748. .eventItem {
  1749. .month {
  1750. font-size: 18px;
  1751. font-family: PingFangSC-Semibold, sans-serif;
  1752. font-weight: 500;
  1753. line-height: 26px;
  1754. }
  1755. .thing {
  1756. font-size: 16px;
  1757. font-family: PingFangSC-Regular, sans-serif;
  1758. line-height: 26px;
  1759. }
  1760. }
  1761. }
  1762. }
  1763. }
  1764. .kernel {
  1765. margin: 100px auto;
  1766. // height: 2000px;
  1767. position: relative;
  1768. .label {
  1769. // position: absolute;
  1770. width: 100%;
  1771. text-align: center;
  1772. .label-en {
  1773. // font-size: 78px;
  1774. // font-family: PingFangSC-Semibold, sans-serif;
  1775. // font-weight: 600;
  1776. // color: rgba(35, 106, 250, 1);
  1777. // opacity: 0.16;
  1778. }
  1779. .label-zn {
  1780. // font-size: 58px;
  1781. // font-family: PingFangSC-Semibold, sans-serif;
  1782. // font-weight: 600;
  1783. // color: rgba(38, 38, 38, 1);
  1784. // position: absolute;
  1785. // top: 45px;
  1786. // left: 32px;
  1787. position: absolute;
  1788. top: 30px;
  1789. left: 50%;
  1790. transform: translateX(-50%);
  1791. // margin-top: -65px;
  1792. }
  1793. }
  1794. .kernel-box {
  1795. // position: absolute;
  1796. // top: 300px;
  1797. // left: 50%;
  1798. // transform: translateX(-50%);
  1799. height: 604px;
  1800. display: flex;
  1801. flex-wrap: wrap;
  1802. // justify-content: space-between;
  1803. align-items: center;
  1804. position: relative;
  1805. .kernel-box-item {
  1806. position: absolute;
  1807. bottom: 0;
  1808. display: flex;
  1809. align-self: flex-end;
  1810. // align-items: flex-end;
  1811. .info {
  1812. position: absolute;
  1813. display: flex;
  1814. .name {
  1815. margin: 0 auto;
  1816. writing-mode: vertical-lr;
  1817. writing-mode: tb-lr;
  1818. font-size: 16px;
  1819. font-family: PingFangSC-Medium, PingFang SC;
  1820. font-weight: bold;
  1821. color: #253149;
  1822. line-height: 18px;
  1823. letter-spacing: 1px;
  1824. margin-right: 7px;
  1825. }
  1826. .title {
  1827. margin: 18px auto 0;
  1828. writing-mode: vertical-lr;
  1829. writing-mode: tb-lr;
  1830. font-size: 16px;
  1831. font-family: PingFangSC-Regular, PingFang SC;
  1832. font-weight: 400;
  1833. color: #7D8196;
  1834. letter-spacing: 2px;
  1835. line-height: 19px;
  1836. }
  1837. }
  1838. &.item01 {
  1839. left: 50%;
  1840. transform: translateX(-50%);
  1841. width: 375px;
  1842. z-index: 10;
  1843. .info {
  1844. left: 40px;
  1845. top: -45px;
  1846. }
  1847. }
  1848. &.item02 {
  1849. left: 69%;
  1850. transform: translateX(-50%);
  1851. width: 253px;
  1852. z-index: 8;
  1853. .info {
  1854. right: 10px;
  1855. top: -18px;
  1856. }
  1857. }
  1858. &.item03 {
  1859. left: 30%;
  1860. transform: translateX(-50%);
  1861. width: 253px;
  1862. z-index: 8;
  1863. .info {
  1864. left: -10px;
  1865. top: -18px;
  1866. }
  1867. }
  1868. &.item04 {
  1869. left: 84%;
  1870. transform: translateX(-50%);
  1871. width: 200px;
  1872. z-index: 6;
  1873. .info {
  1874. right: -25px;
  1875. top: 5px;
  1876. }
  1877. }
  1878. &.item05 {
  1879. left: 14%;
  1880. transform: translateX(-50%);
  1881. width: 200px;
  1882. z-index: 6;
  1883. .info {
  1884. left: -25px;
  1885. top: 5px;
  1886. }
  1887. }
  1888. img {
  1889. width: 100%;
  1890. }
  1891. // .kernel-box-item {
  1892. // width: 100%;
  1893. // bottom: 0;
  1894. // position: absolute;
  1895. // }
  1896. .team03, .team05{
  1897. transform: rotateY(180deg); /* 水平镜像翻转 */
  1898. }
  1899. .top {
  1900. width: 373px;
  1901. height: 466px;
  1902. position: relative;
  1903. z-index: 66;
  1904. .people-img {
  1905. width: 373px;
  1906. height: 466px;
  1907. display: block;
  1908. }
  1909. .overlay-img {
  1910. width: 373px;
  1911. height: 466px;
  1912. position: absolute;
  1913. top: 0;
  1914. left: 0;
  1915. z-index: 1;
  1916. }
  1917. .people-intro {
  1918. position: absolute;
  1919. bottom: 12px;
  1920. left: 37px;
  1921. z-index: 66;
  1922. .name {
  1923. font-size: 45px;
  1924. font-family: PingFangSC-Semibold, sans-serif;
  1925. font-weight: 600;
  1926. color: rgba(255, 255, 255, 1);
  1927. letter-spacing: 1px;
  1928. }
  1929. .position {
  1930. font-size: 20px;
  1931. font-family: PingFangSC-Regular, sans-serif;
  1932. font-weight: 400;
  1933. color: rgba(255, 255, 255, 1);
  1934. letter-spacing: 0.5px;
  1935. }
  1936. }
  1937. .intro {
  1938. display: none;
  1939. position: absolute;
  1940. z-index: 66;
  1941. bottom: 160px;
  1942. left: 37px;
  1943. font-family: PingFangSC-Regular, sans-serif;
  1944. font-weight: 400;
  1945. color: rgba(255, 255, 255, 1);
  1946. .intro-label {
  1947. font-size: 16px;
  1948. margin-bottom: 12px;
  1949. }
  1950. .resume {
  1951. width: 280px;
  1952. font-size: 14px;
  1953. font-family: PingFangSC-Regular, sans-serif;
  1954. font-weight: 400;
  1955. color: #FFFFFF;
  1956. line-height: 28px;
  1957. }
  1958. }
  1959. }
  1960. .bottom {
  1961. width: 373px;
  1962. height: 8px;
  1963. background-color: #83abf9;
  1964. }
  1965. .mask {
  1966. display: none;
  1967. position: absolute;
  1968. border-radius: 10px;
  1969. top: 0;
  1970. bottom: 0;
  1971. left: 0;
  1972. right: 0;
  1973. transition: all .5s;
  1974. -webkit-transition: all .5s;
  1975. }
  1976. }
  1977. }
  1978. }
  1979. .cultrue {
  1980. position: relative;
  1981. overflow: hidden;
  1982. padding: 100px 0;
  1983. background: url('~assets/images/brand/cultrueBg.png');
  1984. background-color: #0D5CFA;
  1985. background-size: cover;
  1986. .title-content {
  1987. .title {
  1988. color: #ffffff;
  1989. }
  1990. .title-sub {
  1991. color: #ffffff;
  1992. }
  1993. }
  1994. .label {
  1995. position: absolute;
  1996. width: 100%;
  1997. // left: 778px;
  1998. .label-en {
  1999. // font-size: 78px;
  2000. // font-family: PingFangSC-Semibold, sans-serif;
  2001. // font-weight: 600;
  2002. // color: rgba(35, 106, 250, 1);
  2003. // opacity: 0.16;
  2004. position: absolute;
  2005. left: 50%;
  2006. transform: translateX(-50%);
  2007. }
  2008. .label-zn {
  2009. // font-size: 58px;
  2010. // font-family: PingFangSC-Semibold, sans-serif;
  2011. // font-weight: 600;
  2012. // color: rgba(38, 38, 38, 1);
  2013. position: absolute;
  2014. top: 30px;
  2015. left: 50%;
  2016. transform: translateX(-50%);
  2017. }
  2018. }
  2019. .cultrue-box {
  2020. margin-top: 96px;
  2021. display: flex;
  2022. padding: 0 50px;
  2023. justify-content: space-between;
  2024. // justify-content: center;
  2025. .cultrue-box-item {
  2026. // margin-right: 151px;
  2027. color: #ffffff;
  2028. img {
  2029. width: 170px;
  2030. height: 159px;
  2031. }
  2032. .cultrue-box-item-label {
  2033. font-size: 30px;
  2034. font-family: PingFangSC-Regular, sans-serif;
  2035. font-weight: 400;
  2036. text-align: center;
  2037. }
  2038. .cultrue-box-item-text {
  2039. // width: 178px;
  2040. text-align: center;
  2041. font-size: 15px;
  2042. font-family: PingFangSC-Regular, sans-serif;
  2043. font-weight: 400;
  2044. letter-spacing: 0.5px;
  2045. margin-top: 30px;
  2046. }
  2047. }
  2048. }
  2049. .cultrue-bgimg {
  2050. position: absolute;
  2051. z-index: -1;
  2052. right: 226px;
  2053. bottom: 155px;
  2054. img {
  2055. width: 627px;
  2056. height: 499px;
  2057. }
  2058. }
  2059. }
  2060. .idea {
  2061. position: relative;
  2062. margin: 100px 0;
  2063. .label {
  2064. position: absolute;
  2065. left: 50%;
  2066. transform: translateX(-50%);
  2067. width: 540px;
  2068. .label-en {
  2069. // font-size: 78px;
  2070. // font-family: PingFangSC-Semibold, sans-serif;
  2071. // font-weight: 600;
  2072. // color: rgba(35, 106, 250, 1);
  2073. // opacity: 0.16;
  2074. // position: absolute;
  2075. }
  2076. .label-zn {
  2077. // font-size: 58px;
  2078. // font-family: PingFangSC-Semibold, sans-serif;
  2079. // font-weight: 600;
  2080. // color: rgba(38, 38, 38, 1);
  2081. position: absolute;
  2082. top: 30px;
  2083. left: 100px;
  2084. // transform: translateX(-50%);
  2085. }
  2086. }
  2087. .idea-box {
  2088. display: flex;
  2089. justify-content: center;
  2090. .idea-box-item {
  2091. width: 385px;
  2092. height: 300px;
  2093. background: #FFFFFF;
  2094. box-shadow: 7px 10px 46px 0px rgba(207, 222, 254, 0.49);
  2095. border-radius: 30px;
  2096. margin-top: 67px;
  2097. margin-right: 40px;
  2098. padding: 22px 63px 51px 36px;
  2099. box-sizing: border-box;
  2100. .top {
  2101. img {
  2102. width: 64px;
  2103. height: 64px;
  2104. object-fit: cover;
  2105. }
  2106. }
  2107. .center {
  2108. margin-top: 20px;
  2109. display: flex;
  2110. align-items: center;
  2111. img {
  2112. width: 20px;
  2113. height: 19px;
  2114. margin-right: 18px;
  2115. object-fit: fill;
  2116. }
  2117. div {
  2118. font-size: 20px;
  2119. font-family: PingFangSC-Medium, sans-serif;
  2120. font-weight: 500;
  2121. color: rgba(0, 0, 0, 1);
  2122. }
  2123. }
  2124. .footer {
  2125. font-size: 15px;
  2126. font-family: PingFangSC-Regular, sans-serif;
  2127. font-weight: 400;
  2128. color: #333333;
  2129. line-height: 26px;
  2130. margin-top: 10px;
  2131. padding-left: 32px
  2132. }
  2133. }
  2134. }
  2135. }
  2136. }
  2137. .cp {
  2138. cursor: pointer;
  2139. }
  2140. </style>