brand.vue 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850
  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 style="text-indent: 2em; margin-top: 0px;">2003年,中德智慧教育创研和实践幼儿园及家庭思维游戏化教育体系,以德国优质思维教育内容为载体,推出深受全球儿童喜爱的“逻辑狗”思维游戏活动材料,并自主研发中华文化思维游戏系统,培养具有成长型思维模式、文化自信的中国宝贝,构建以儿童思维“芯”为宗旨的儿童游戏化教育理念,创立了线上线下(OMO)交互的教育内容服务模式,丰富了中国素质教育内容。</p>
  17. <p style="text-indent: 2em;">近20年,中德智慧教育组织国际、国内专家,以专家指导小组和研训团队结合的方式,不断探索学前思维教育的新理念、新方法,产生了一系列丰硕喜人的教研成果,并将它们落地转化,在教学实践之中加以运用。</p>
  18. <p style="text-indent: 2em;">未来,中德智慧将继续秉承着教育国际化的理念和方法,开拓视野、深入探究、科学教研,寻找中国学前思维教育发展的规律,利用我们在全球的品牌影响力,将中国的教育资源推送到全球,为中国孩子打造优质的学习平台,为中国学前教育事业做出贡献。</p>
  19. </div>
  20. <!-- <img class="bgLogo" :src="bgLogo" alt="" srcset=""> -->
  21. </div>
  22. </div>
  23. <!-- 企业文化 -->
  24. <div class="culture">
  25. <div class="culture_bgi"></div>
  26. <div class="leftContent">
  27. <div class="cultureName">
  28. <div class="name">企业文化</div>
  29. <div class="eName">COMPANY CULTURE</div>
  30. </div>
  31. <div class="cultureContent">
  32. <div class="cultureItem" v-for="item in cultureList" :key="item.id">
  33. <div class="cultureItemTitle">{{ item.title }}</div>
  34. <div class="cultureItemCont">{{ item.content }}</div>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="rightImg">
  39. <img src="~assets/images/brand/culture.png" alt="">
  40. </div>
  41. </div>
  42. <!-- 企业创始人 -->
  43. <div class="founder">
  44. <div class="founderLeft">
  45. <img src="~assets/images/brand/founderLeftImg.png" class="founderLeftImg">
  46. </div>
  47. <div class="founderRight">
  48. <div class="founderCompanyName">北京中德智慧教育文化有限公司</div>
  49. <div class="founderName">——中德智慧集团董事长/逻辑狗品牌创始人 张洁</div>
  50. <p v-for="item in founderList" :key="item.id" class="founderTitle">{{ item.title }}</p>
  51. </div>
  52. </div>
  53. <!-- 思维教育 -->
  54. <div class="education">
  55. <title-content :title="'“思维芯”教育体系'" :titleSub="'“THINKING CORE” EDUCATION SYSTEM'"></title-content>
  56. <div class="e-content w1200">
  57. <img class="educationImg" src="~/assets/images/brand/eduction_img.png" alt="" srcset="">
  58. </div>
  59. </div>
  60. <!-- 五大领域 -->
  61. <div class="field">
  62. <title-content :title="'中德智慧国际思维教育五大领域'" :titleSub="'FIVE FIELDS OF SINO-GERMAN INTELLIGENT INTERNATIONAL THINKING EDUCATION'"></title-content>
  63. <div class="f-content w1200">
  64. <!-- <div class="fields">
  65. <div class="field-container" @mouseenter="handleFieldEnter(item, index)" v-for="(item, index) in fieldData" :key="index">
  66. <div :class="['field-item', index == currentFieldIndex ? 'active' : '']" :style="{'background': item.background}">
  67. <img :src="item.imgUrl" alt="" :style="{ 'height': item.height + 'px', 'width': item.width + 'px'}" srcset="">
  68. </div>
  69. </div>
  70. </div>
  71. <div class="bar" :style="{'background': fieldData[currentFieldIndex].background}"></div>
  72. <div class="content">
  73. <div class="label" :style="{'background': fieldData[currentFieldIndex].background, 'width': fieldData[currentFieldIndex].labelWidth + 'px'}">{{fieldData[currentFieldIndex].label}}</div>
  74. <div class="title" :style="{'color': fieldData[currentFieldIndex].background}">{{fieldData[currentFieldIndex].title}}</div>
  75. <div class="detail" :style="{'background': fieldData[currentFieldIndex].lightBackground}">{{fieldData[currentFieldIndex].desc}}</div>
  76. </div>
  77. <div class="img-wrap">
  78. <img v-show="index == currentFieldIndex" :src="item.fieldImg" alt="" srcset="" v-for="(item, index) in fieldData" :key="index" >
  79. </div> -->
  80. <img src="~/assets/images/brand/fiveAreas.png" class="fiveAreas" alt="">
  81. </div>
  82. </div>
  83. <!-- 35种能力提升方式 -->
  84. <div class="ways">
  85. <title-content :title="'35种能力提升方式'" :titleSub="'35WAYS TO IMPROVE YOUR ABILITY'"></title-content>
  86. <div class="w-content w1200">
  87. <div class="img-wrap">
  88. <img src="~/assets/images/brand/ways_img.png" alt="" srcset="">
  89. </div>
  90. </div>
  91. </div>
  92. <!-- 中德国际思维教育三原则 -->
  93. <div class="principles">
  94. <div class="title-content">
  95. <div class="title">中德国际思维教育三原则</div>
  96. <div class="title-sub">THREE PRINCIPLES OF INTERNATIONAL THINKING EDUCATION BETWEEN CHINA AND GERMANY</div>
  97. </div>
  98. <div class="principles-box w1200">
  99. <!-- <div class="principles-box-item" v-for="(item, index) in principlesData" :key="index">
  100. <img :src="item.imgUrl" alt="">
  101. <div class="principles-box-item-num">{{ item.number }}</div>
  102. <div class="principles-box-item-label">{{ item.label }}</div>
  103. </div> -->
  104. <img class="principlesImg" src="~assets/images/brand/principles.png" alt="">
  105. </div>
  106. </div>
  107. <!-- 专家团队 -->
  108. <div class="team">
  109. <div class="teamTitle">
  110. <h2 class="teamName">专家团队</h2>
  111. <div class="teamEName">Expert team</div>
  112. </div>
  113. <div class="expert">
  114. <div class="e-content w1200">
  115. <div :class="['expert-item']" v-for="(item, index) in expertList" :key="index">
  116. <div class="item-info">
  117. <div class="item-img">
  118. <img :src="item.imgUrl" alt="">
  119. <div class="mask">
  120. {{ item.info }}
  121. </div>
  122. </div>
  123. <div class="user-info">
  124. <div class="name">{{item.name}}</div>
  125. <div class="info">{{item.info}}</div>
  126. </div>
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. <!-- 发展历程 -->
  133. <div class="development">
  134. <div class="d-event">
  135. <div class="w1200">
  136. <div class="title">
  137. <title-content :title="'发展历程'" :titleSub="'DEVELOPMENT PATH'"></title-content>
  138. </div>
  139. <div class="progress-bar">
  140. <template v-for="(item, index) in eventDurationData">
  141. <div :class="['node', currentDurationIndex == index ? 'active' : '' ]" :key="index" @click="chooseYear(item, index)">
  142. <div class="txt">{{item.text}}</div>
  143. <div class="core"></div>
  144. </div>
  145. <div class="line" :key="item.year" v-if="index != eventDurationData.length -1"></div>
  146. </template>
  147. <!-- <div class="node active" data-year="2016" index="1"><div class="txt">2017</div><div class="core"></div></div>
  148. <div class="line"></div>
  149. <div class="node" data-year="2012" index="2"><div class="txt">2012</div><div class="core"></div></div>
  150. <div class="line"></div>
  151. <div class="node" data-year="2007" index="3"><div class="txt">2007</div><div class="core"></div></div>
  152. <div class="line"></div>
  153. <div class="node" data-year="2003" index="4"><div class="txt">2003</div><div class="core"></div></div> -->
  154. </div>
  155. </div>
  156. </div>
  157. <div class="d-event-content" ref="event" :style="{height: eventHeight}">
  158. <div class="mod-con">
  159. <div :class="['event-main', animate ? 'animate' : '']" ref="drag" @mousedown="handleMouseDown" @mousemove="handleMouseMove" @mouseup="handleMouseUp">
  160. <div class="event-main-box" v-for="(item, index) in eventDataReverse" :key="index">
  161. <div class="event-title">{{ item.title }}</div>
  162. <div class="li clearfix" v-for="(ele, index) in item.eventList" :key="index">
  163. <div class="left">{{ ele.month }}</div>
  164. <div class="right">{{ ele.thing }}</div>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. </div>
  171. <!-- 大事记 -->
  172. <!-- <div class="event">
  173. <title-content :title="'大事记'" :titleSub="'MEMORABILIA'"></title-content>
  174. <div class="event-box w1200">
  175. <img class="event-bgimg" :src="eventImg" alt="" srcset="">
  176. <div
  177. :style="{top: 237 + 225 * item.site.y + 'px', left: 121 + 228 * item.site.x + 'px'}"
  178. :class="['event-box-item']"
  179. v-for="item in eventData"
  180. :key="item.id">
  181. <div class="yearNumber" @mouseenter="currentEventImg(item)">{{item.id}}</div>
  182. <img
  183. v-if="currentEventImgId === item.id"
  184. @mouseleave="currentEventImgId = ''"
  185. :class="['color' + item.id, 'eventImgurl']"
  186. :src="item.eventImgurl"
  187. :style="{width: item.eventImgurlWidth + 'px', height:item.eventImgurlHeight + 'px'}"
  188. alt="">
  189. </div>
  190. </div>
  191. </div> -->
  192. <!-- 核心团队 -->
  193. <!-- <div class="kernel">
  194. <title-content :title="'核心团队'" :titleSub="'THE CORE TEAM'"></title-content>
  195. <div class="kernel-box w1200">
  196. <div class="kernel-box-item item01">
  197. <img class="team01" :src="kernelData[0].imgUrl" alt="" srcset="">
  198. <div class="info">
  199. <div class="name">张洁</div>
  200. <div class="title">中德智慧董事长</div>
  201. </div>
  202. </div>
  203. <div class="kernel-box-item item02">
  204. <img class="team02" :src="kernelData[1].imgUrl" alt="" srcset="">
  205. <div class="info">
  206. <div class="name">钟建春</div>
  207. <div class="title">培训部总监</div>
  208. </div>
  209. </div>
  210. <div class="kernel-box-item item03">
  211. <img class="team03" :src="kernelData[1].imgUrl" alt="" srcset="">
  212. <div class="info">
  213. <div class="name">钟建春</div>
  214. <div class="title">培训部总监</div>
  215. </div>
  216. </div>
  217. <div class="kernel-box-item item04">
  218. <img class="team04" :src="kernelData[1].imgUrl" alt="" srcset="">
  219. <div class="info">
  220. <div class="name">钟建春</div>
  221. <div class="title">培训部总监</div>
  222. </div>
  223. </div>
  224. <div class="kernel-box-item item05">
  225. <img class="team05" :src="kernelData[1].imgUrl" alt="" srcset="">
  226. <div class="info">
  227. <div class="name">钟建春</div>
  228. <div class="title">培训部总监</div>
  229. </div>
  230. </div>
  231. </div>
  232. </div> -->
  233. <!-- 文化 -->
  234. <!-- <div class="cultrue">
  235. <div class="title-content">
  236. <div class="title">我们努力践行的文化 </div>
  237. <div class="title-sub">THE CULTURE THAT WE TRY TO LIVE UP TO</div>
  238. </div>
  239. <div class="cultrue-box w1200">
  240. <div class="cultrue-box-item" v-for="item in cultrueData" :key="item.id">
  241. <img :src="item.imgUrl" :class="['wow animate__animated']" alt="" />
  242. <div class="cultrue-box-item-label">{{ item.label }}</div>
  243. <div class="cultrue-box-item-text" v-html="item.text"></div>
  244. </div>
  245. </div>
  246. <div class="cultrue-bgimg">
  247. <img
  248. src="http://res.training.luojigou.vip/Fj4XvDNdIw6iDP8gWQuRHKijlFwM?imageView2/0/q/50|imageslim"
  249. alt="">
  250. </div>
  251. </div> -->
  252. <!-- 理念 -->
  253. <!-- <div class="idea">
  254. <title-content :title="'我们始终秉承的理念'" :titleSub="'WE ALWAYS UPHOID THE CONCEPT'"></title-content>
  255. <div class="idea-box">
  256. <div
  257. class="idea-box-item"
  258. v-for="item in ideaData"
  259. :key="item.id"
  260. >
  261. <div class="top">
  262. <img :src="item.imgUrl" alt="">
  263. </div>
  264. <div class="center">
  265. <img :src="item.numUrl" alt="">
  266. <div>{{item.label}}</div>
  267. </div>
  268. <div class="footer">
  269. <div>{{item.resume}}</div>
  270. </div>
  271. </div>
  272. </div>
  273. </div> -->
  274. </div>
  275. </template>
  276. <script>
  277. import CommonBanner from '@/components/common/banner';
  278. import TitleContent from '@/components/common/titleContent';
  279. const founderList = Object.freeze([
  280. {
  281. id: 0,
  282. title: '中国思维教育的发起人&领跑者'
  283. },
  284. {
  285. id: 1,
  286. title: '德国逻辑思维教育理念中国播种者'
  287. },
  288. {
  289. id: 2,
  290. title: '中国素质教育改革的践行者'
  291. },
  292. {
  293. id: 3,
  294. title: '央广网教育盛典 · 中国教育行业领军人物'
  295. },
  296. {
  297. id: 4,
  298. title: '腾讯“回响中国”教育盛典 · 中国教育行业影响力人物'
  299. },
  300. {
  301. id: 5,
  302. title: '国家级“十五”“十一五”“十二五““十三五”课题负责人'
  303. },
  304. {
  305. id: 6,
  306. title: '教育成果荣获世界教育领域6项顶级大奖'
  307. },
  308. {
  309. id: 7,
  310. title: '中国民主促进会 会员'
  311. },
  312. {
  313. id: 8,
  314. title: '中国玩具协会 理事会员'
  315. },
  316. {
  317. id: 9,
  318. title: '中国学前教育研究会 理事会员'
  319. },
  320. {
  321. id: 10,
  322. title: '母婴行业观察协会-樱桃会 核心会员'
  323. },
  324. {
  325. id: 11,
  326. title: '中国幼教装备协会会员'
  327. }
  328. ])
  329. const cultureList = Object.freeze([
  330. {
  331. id: 0,
  332. title: '中德使命:',
  333. content: '助力儿童成长 服务中国母亲!'
  334. },
  335. {
  336. id: 1,
  337. title: '中德愿景:',
  338. content: '专注儿童核心素养教育 让中国儿童幸福成长!'
  339. },
  340. {
  341. id: 2,
  342. title: '中德定位:',
  343. content: '全球优质教育内容输出平台 科技赋能 让儿童能力成长看得见'
  344. },
  345. {
  346. id: 3,
  347. title: '中德核心价值观:',
  348. content: '缔造愿景品质卓越 共生共荣创造价值'
  349. },
  350. {
  351. id: 4,
  352. title: '企业形象:',
  353. content: '有温度的儿童思维教育专家'
  354. },
  355. {
  356. id: 5,
  357. title: '中德人才标准:',
  358. content: '诚信感恩 激情快乐 团队协作 专业专注 勇于突破 业绩为王'
  359. },
  360. ]);
  361. const kernelData = Object.freeze([
  362. {
  363. id: 0,
  364. imgUrl: require("~/assets/images/brand/team_01.png"),
  365. position: "董事长",
  366. name: "张洁",
  367. resume:
  368. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  369. },
  370. {
  371. id: 1,
  372. imgUrl: require("~/assets/images/brand/team_02.png"),
  373. position: "培训部 总监",
  374. name: "钟建春",
  375. resume:
  376. "简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍",
  377. }
  378. ]);
  379. const cultrueData = Object.freeze([
  380. {
  381. id: 0,
  382. // imgUrl: "http://res.training.luojigou.vip/Fj0eXd5OYcJRX6z_yBEFbF0OW1Oy?imageView2/0/q/50|imageslim",
  383. imgUrl: require("~/assets/images/brand/cultrue_01@2x.png"),
  384. label: "宗旨",
  385. text: "关注儿童成长</br>服务中国母亲",
  386. },
  387. {
  388. id: 1,
  389. // imgUrl: "http://res.training.luojigou.vip/FrhQqD5x8r45P0_Dod_21toOFgle?imageView2/0/q/50|imageslim",
  390. imgUrl: require("~/assets/images/brand/cultrue_02@2x.png"),
  391. label: "文化",
  392. text: "缔造愿景,追求卓越</br>共生共荣,体现价值",
  393. },
  394. {
  395. id: 2,
  396. // imgUrl: "http://res.training.luojigou.vip/FuBgZGe-F3km2mVM4wByusZFFfAw?imageView2/0/q/50|imageslim",
  397. imgUrl: require("~/assets/images/brand/cultrue_03@2x.png"),
  398. label: "愿景",
  399. text: "让中国的孩子幸福成长",
  400. },
  401. {
  402. id: 3,
  403. // imgUrl: "http://res.training.luojigou.vip/FqOmEqUyO9YBjT65wqfSRr4gKFHD?imageView2/0/q/50|imageslim",
  404. imgUrl: require("~/assets/images/brand/cultrue_04@2x.png"),
  405. label: "价值观",
  406. text:
  407. "客户第一</br>团队合力第二</br>专业专注</br>诚信公正</br>拥抱变化</br>激情快乐 ",
  408. },
  409. ]);
  410. const ideaData = Object.freeze([
  411. {
  412. id: 0,
  413. // imgUrl: "http://res.training.luojigou.vip/FgJw7WqbyCVkQJCgCBd07qipb_PI?imageView2/0/q/50|imageslim",
  414. // numUrl: "http://res.training.luojigou.vip/FgX-hI1Y2fjoIvturT1uYaeVjnfB?imageView2/0/q/50|imageslim",
  415. imgUrl: require("~/assets/images/brand/idea_01@2x.png"),
  416. numUrl: require("~/assets/images/brand/num_01@2x.png"),
  417. label: "专业技术",
  418. resume:
  419. "我们拥有行业专业技术实力与自身 工程开发团队,为您的商业变现及 产品需求保驾护航。",
  420. },
  421. {
  422. id: 1,
  423. // imgUrl: "http://res.training.luojigou.vip/Fl4S2hBlBWsTvfwdvYHaE3RKpLyO?imageView2/0/q/50|imageslim",
  424. // numUrl: "http://res.training.luojigou.vip/Fk5hTknpr4deZWFtcfmRJSHNV3_K?imageView2/0/q/50|imageslim",
  425. imgUrl: require("~/assets/images/brand/idea_02@2x.png"),
  426. numUrl: require("~/assets/images/brand/num_02@2x.png"),
  427. label: "贴心服务",
  428. resume:
  429. "我们始终坚持优质的服务理念,无 论任何时候您遇到困难,我们都会 及时提供精准有效的解决方案。",
  430. },
  431. {
  432. id: 2,
  433. // imgUrl: "http://res.training.luojigou.vip/FkRWFwiFQu4XL1BPA96jHbmK1X1D?imageView2/0/q/50|imageslim",
  434. // numUrl: "http://res.training.luojigou.vip/FiBasqi9NpLdJ_U9jr-95yxgvL1C?imageView2/0/q/50|imageslim",
  435. imgUrl: require("~/assets/images/brand/idea_03@2x.png"),
  436. numUrl: require("~/assets/images/brand/num_03@2x.png"),
  437. label: "创业伙伴",
  438. resume:
  439. "我们把每一位客户都当作创业伙伴,期 盼在未来成长的道路上一路相伴,携手前行。",
  440. },
  441. ]);
  442. const eventData = Object.freeze([
  443. {
  444. id: 2003,
  445. title: 2003,
  446. site: {
  447. x: 4,
  448. y: 3,
  449. },
  450. // yearImgurl: "http://res.training.luojigou.vip/FsTtnNKFpIsYh69tIsWqEiocc0Jr?imageView2/0/q/50|imageslim",
  451. // eventImgurl: "http://res.training.luojigou.vip/FrFfg21nonbZyNSUSpAWCiREn7lk?imageView2/0/q/50|imageslim",
  452. yearImgurl: require('~/assets/images/about/year_2003.png'),
  453. yearImgurlSet: [require('~/assets/images/about/year_2003.png'), require('~/assets/images/about/year_2003@2x.png')],
  454. eventImgurl: require('~/assets/images/brand/event_year_2003@2x.png'),
  455. eventImgurlWidth: '269',
  456. eventImgurlHeight: '350',
  457. eventList: [
  458. {
  459. month: '2月',
  460. thing: '张洁女士与德国芬肯教育机构创始人Herrn Krick先生达成中德战略合作协议。'
  461. },
  462. {
  463. month: '4月',
  464. thing: '“逻辑狗儿童思维升级游戏系统”首次专家鉴定会在北京召开,多位知名教育专家参加会议。'
  465. },
  466. {
  467. month: '5月',
  468. thing: '北京中德智慧教育文化有限公司成立,张洁女士作为创始人任董事长&CEO。'
  469. },
  470. {
  471. month: '12月',
  472. thing: '“逻辑狗”儿童思维训练产品正式出版。'
  473. }
  474. ]
  475. },
  476. {
  477. id: 2004,
  478. title: 2004,
  479. site: {
  480. x: 3,
  481. y: 3,
  482. },
  483. // yearImgurl:
  484. // "http://res.training.luojigou.vip/Fhe4VjIQDeQtQzPnSVmsDc4yYYzE?imageView2/0/q/50|imageslim",
  485. // eventImgurl:
  486. // "http://res.training.luojigou.vip/FvnL2N118R-0Cp9OcKgK9Ru8nAyp?imageView2/0/q/50|imageslim",
  487. yearImgurl: require('~/assets/images/about/year_2004.png'),
  488. yearImgurlSet: [require('~/assets/images/about/year_2004.png'), require('~/assets/images/about/year_2004@2x.png')],
  489. eventImgurl: require('~/assets/images/brand/event_year_2004@2x.png'),
  490. eventImgurlWidth: '269',
  491. eventImgurlHeight: '246',
  492. eventList: [
  493. {
  494. month: '1月',
  495. thing: '启动“十五”国家课题《幼儿思维训练与学习能力发展的研究》开题会。'
  496. },
  497. {
  498. month: '8月',
  499. thing: '逻辑狗产品亮相全国市场,入驻北京王府井书店、中关村图书大厦等十余家商厦。'
  500. },
  501. {
  502. month: '12月',
  503. thing: '举办“十五”国家课题园际教研交流会。'
  504. }
  505. ]
  506. },
  507. {
  508. id: 2005,
  509. title: 2005,
  510. site: {
  511. x: 2,
  512. y: 3,
  513. },
  514. // yearImgurl:
  515. // "http://res.training.luojigou.vip/FodjYYc3-VyZyJHnfuKJQGapkJzt?imageView2/0/q/50|imageslim",
  516. // eventImgurl:
  517. // "http://res.training.luojigou.vip/FqNcz_3P81MubVeHzAnn_RrkMoCQ?imageView2/0/q/50|imageslim",
  518. eventImgurl: require('~/assets/images/brand/event_year_2005@2x.png'),
  519. yearImgurl: require('~/assets/images/about/year_2005.png'),
  520. yearImgurlSet: [require('~/assets/images/about/year_2005.png'), require('~/assets/images/about/year_2005@2x.png')],
  521. eventImgurlWidth: '269',
  522. eventImgurlHeight: '245',
  523. eventList: [
  524. {
  525. month: '1月',
  526. thing: '首届代理商年会在北京圆满召开。'
  527. },
  528. {
  529. month: '5月',
  530. thing: '与中央电视台少儿频道《智慧树》节目正式达成内容合作,每周三次播出。'
  531. },
  532. {
  533. month: '7月',
  534. thing: '举办首届中德智慧杯·思维好儿童全国幼儿思维能力挑战赛。'
  535. }
  536. ]
  537. },
  538. {
  539. id: 2006,
  540. title: 2006,
  541. site: {
  542. x: 1,
  543. y: 3,
  544. },
  545. // yearImgurl:
  546. // "http://res.training.luojigou.vip/Fj_2tRMk_1H9NSp9rE0XK0nEcv6g?imageView2/0/q/50|imageslim",
  547. // eventImgurl:
  548. // "http://res.training.luojigou.vip/FkvModMYKxFJcnqRrpGSULyd9Th7?imageView2/0/q/50|imageslim",
  549. yearImgurl: require('~/assets/images/about/year_2006.png'),
  550. yearImgurlSet: [require('~/assets/images/about/year_2006.png'), require('~/assets/images/about/year_2006@2x.png')],
  551. eventImgurl: require('~/assets/images/brand/event_year_2006@2x.png'),
  552. eventImgurlWidth: '269',
  553. eventImgurlHeight: '273',
  554. eventList: [
  555. {
  556. month: '5月',
  557. thing: '出版逻辑狗幼儿园教学版全线产品。'
  558. },
  559. {
  560. month: '6月',
  561. thing: '第二届“十一五”中国教育学会国家课题在全国重点幼儿园实施。'
  562. }
  563. ]
  564. },
  565. {
  566. id: 2007,
  567. title: 2007,
  568. site: {
  569. x: 0,
  570. y: 3,
  571. },
  572. // yearImgurl:
  573. // "http://res.training.luojigou.vip/Fm4DqB0VKXcLXaa4P2suM1i-2LMZ?imageView2/0/q/50|imageslim",
  574. // eventImgurl:
  575. // "http://res.training.luojigou.vip/Fkp-2UvHIyIqEW9pu5tZKNpvcCov?imageView2/0/q/50|imageslim",
  576. yearImgurl: require('~/assets/images/about/year_2007.png'),
  577. yearImgurlSet: [require('~/assets/images/about/year_2007.png'), require('~/assets/images/about/year_2007@2x.png')],
  578. eventImgurl: require('~/assets/images/brand/event_year_2007@2x.png'),
  579. eventImgurlWidth: '269',
  580. eventImgurlHeight: '403',
  581. eventList: [
  582. {
  583. month: '5月',
  584. thing: '第二届幼儿思维能力挑战赛全国总决赛在北京公安部幼儿园举行。并于人民大会堂举行颁奖典礼。'
  585. },
  586. {
  587. month: '10月',
  588. thing: '亮相第六届中国玩具展,“逻辑狗”荣获“教育类玩具金奖”。'
  589. }
  590. ]
  591. },
  592. {
  593. id: 2008,
  594. title: '2008~中德智慧2.0时代',
  595. site: {
  596. x: 0,
  597. y: 2,
  598. },
  599. // yearImgurl:
  600. // "http://res.training.luojigou.vip/FlEj53_PWeL59J8V6qqduokmrEif?imageView2/0/q/50|imageslim",
  601. // eventImgurl:
  602. // "http://res.training.luojigou.vip/FpIzAvfIOeIhBEtzVEZYp74y7Wh3?imageView2/0/q/50|imageslim",
  603. yearImgurl: require('~/assets/images/about/year_2008.png'),
  604. yearImgurlSet: [require('~/assets/images/about/year_2008.png'), require('~/assets/images/about/year_2008@2x.png')],
  605. eventImgurl: require('~/assets/images/brand/event_year_2008@2x.png'),
  606. eventImgurlWidth: '269',
  607. eventImgurlHeight: '245',
  608. eventList: [
  609. {
  610. month: '2月',
  611. thing: '首届品牌系列活动“智慧园长沙龙”在北京启动。'
  612. },
  613. {
  614. month: '7月',
  615. thing: '第三届幼儿思维能力挑战赛开赛。'
  616. }
  617. ]
  618. },
  619. {
  620. id: 2009,
  621. title: 2009,
  622. site: {
  623. x: 1,
  624. y: 2,
  625. },
  626. // yearImgurl:
  627. // "http://res.training.luojigou.vip/FtRU3rBk7D0SBEmbTujXX1o3THTU?imageView2/0/q/50|imageslim",
  628. // eventImgurl:
  629. // "http://res.training.luojigou.vip/Fnmlx106pwroL9I6UNo81BTpxGyO?imageView2/0/q/50|imageslim",
  630. yearImgurl: require('~/assets/images/about/year_2009.png'),
  631. yearImgurlSet: [require('~/assets/images/about/year_2009.png'), require('~/assets/images/about/year_2009@2x.png')],
  632. eventImgurl: require('~/assets/images/brand/event_year_2009@2x.png'),
  633. eventImgurlWidth: '269',
  634. eventImgurlHeight: '220',
  635. eventList: [
  636. {
  637. month: '1月',
  638. thing: '出版逻辑狗儿童思维升级游戏系统小学版全线产品。'
  639. },
  640. {
  641. month: '5月',
  642. thing: '举办首届全国师资培训会。'
  643. },
  644. {
  645. month: '6月',
  646. thing: '主办“送你一把金钥匙”思维课程交流会。'
  647. },
  648. {
  649. month: '7月',
  650. thing: '第四届中德智慧杯,思维好儿童幼儿思维能力挑战赛全国总决赛在北京成功举行。'
  651. }
  652. ]
  653. },
  654. {
  655. id: 2010,
  656. title: 2010,
  657. site: {
  658. x: 2,
  659. y: 2,
  660. },
  661. // yearImgurl:
  662. // "http://res.training.luojigou.vip/Fmx2IObHIKURUiGbrvX4cpZ-u5MB?imageView2/0/q/50|imageslim",
  663. // eventImgurl:
  664. // "http://res.training.luojigou.vip/Fg2GfiNmRknqRjTbzvCq09ewERIH?imageView2/0/q/50|imageslim",
  665. yearImgurl: require('~/assets/images/about/year_2010.png'),
  666. yearImgurlSet: [require('~/assets/images/about/year_2010.png'), require('~/assets/images/about/year_2010@2x.png')],
  667. eventImgurl: require('~/assets/images/brand/event_year_2010@2x.png'),
  668. eventImgurlWidth: '269',
  669. eventImgurlHeight: '403',
  670. eventList: [
  671. {
  672. month: '2月',
  673. thing: '中德智慧教育逻辑狗品牌淘宝官方旗舰店上线。'
  674. },
  675. {
  676. month: '7月',
  677. thing: '第五届幼儿思维能力挑战赛全国总决赛在北京举行。'
  678. },
  679. {
  680. month: '10月',
  681. thing: '全新推出荣获安徒生奖的童话书——《春夏秋冬思维绘本》。'
  682. }
  683. ]
  684. },
  685. {
  686. id: 2011,
  687. title: 2011,
  688. site: {
  689. x: 3,
  690. y: 2,
  691. },
  692. // yearImgurl:
  693. // "http://res.training.luojigou.vip/FutAwrnX_ypeS4bUqol5xKVVqrXU?imageView2/0/q/50|imageslim",
  694. // eventImgurl:
  695. // "http://res.training.luojigou.vip/FuPF8r4-f8-_SY_v0Tky2AnFPYeH?imageView2/0/q/50|imageslim",
  696. yearImgurl: require('~/assets/images/about/year_2011.png'),
  697. yearImgurlSet: [require('~/assets/images/about/year_2011.png'), require('~/assets/images/about/year_2011@2x.png')],
  698. eventImgurl: require('~/assets/images/brand/event_year_2011@2x.png'),
  699. eventImgurlWidth: '269',
  700. eventImgurlHeight: '480',
  701. eventList: [
  702. {
  703. month: '5月',
  704. thing: '承办第13届北京国际玩具及幼教用品展览会。'
  705. },
  706. {
  707. month: '6月',
  708. thing: '启动品牌系列活动“百城巡讲”,在全国连续举办200场思维教育宣讲活动。'
  709. },
  710. {
  711. month: '7月',
  712. thing: '第六届幼儿思维能力挑战赛全国总决赛在北京举行。'
  713. },
  714. {
  715. month: '10月',
  716. thing: '第三届中国教育学会“十一五”科研重点课题《优质教育模式对促进幼儿早期智力发展的实践研究》子课题《逻辑狗优质教育模式促进儿童思维能力发展的研究》举行结题论证会。'
  717. },
  718. {
  719. month: '11月',
  720. thing: '《蚂蚁沙丘.学前儿童情境科学》产品正式出版。'
  721. }
  722. ]
  723. },
  724. {
  725. id: 2012,
  726. title: 2012,
  727. site: {
  728. x: 4,
  729. y: 2,
  730. },
  731. // yearImgurl:
  732. // "http://res.training.luojigou.vip/Fg3Jph3aJcX-hQtbvOs5UJZCzmj7?imageView2/0/q/50|imageslim",
  733. // eventImgurl:
  734. // "http://res.training.luojigou.vip/Fp5DT3Tg3CBl2rvjT9sIsCBcUSWu?imageView2/0/q/50|imageslim",
  735. yearImgurl: require('~/assets/images/about/year_2012.png'),
  736. yearImgurlSet: [require('~/assets/images/about/year_2012.png'), require('~/assets/images/about/year_2012@2x.png')],
  737. eventImgurl: require('~/assets/images/brand/event_year_2012@2x.png'),
  738. eventImgurlWidth: '269',
  739. eventImgurlHeight: '325',
  740. eventList: [
  741. {
  742. month: '4月',
  743. thing: '德国芬肯一行对中德智慧教育进行友好交流访问,就双方理念、服务理念、产品研发情况等进行了深入交流。'
  744. },
  745. {
  746. month: '7月',
  747. thing: '第七届幼儿思维能力挑战赛全国总决赛在北京举行。'
  748. }
  749. ]
  750. },
  751. {
  752. id: 2013,
  753. title: 2013,
  754. site: {
  755. x: 4,
  756. y: 1,
  757. },
  758. // yearImgurl:
  759. // "http://res.training.luojigou.vip/FjWOsyUqGM6eIaPW3_lCzDzw3h1M?imageView2/0/q/50|imageslim",
  760. // eventImgurl:
  761. // "http://res.training.luojigou.vip/FirCgjTps0bLqGV5-TOpuX6q8SMl?imageView2/0/q/50|imageslim",
  762. yearImgurl: require('~/assets/images/about/year_2013.png'),
  763. yearImgurlSet: [require('~/assets/images/about/year_2013.png'), require('~/assets/images/about/year_2013@2x.png')],
  764. eventImgurl: require('~/assets/images/brand/event_year_2013@2x.png'),
  765. eventImgurlWidth: '269',
  766. eventImgurlHeight: '394',
  767. eventList: [
  768. {
  769. month: '3月',
  770. thing: '创立自媒体时代,开通品牌官方公众号。'
  771. },
  772. {
  773. month: '6月',
  774. thing: '中德智慧教育品牌入驻天猫、京东等主流电商平台。'
  775. },
  776. {
  777. month: '7月',
  778. thing: '第八届幼儿思维能力挑战赛全国总决赛在北京举行。'
  779. },
  780. {
  781. month: '9月',
  782. thing: '举办中国教育学会“十二五”科研重点规划课题。'
  783. },
  784. {
  785. month: '10月',
  786. thing: '建立全国商超系统“成长元素”专柜,覆盖全国80余个地区,专柜数量近100个。'
  787. },
  788. {
  789. month: '10月',
  790. thing: '首次承接北京市教委“幼儿科学教育教师”项目。'
  791. },
  792. {
  793. month: '10月',
  794. thing: '中德智慧教育培训突破百城,近200个地区。'
  795. }
  796. ]
  797. },
  798. {
  799. id: 2014,
  800. title: 2014,
  801. site: {
  802. x: 3,
  803. y: 1,
  804. },
  805. // yearImgurl:
  806. // "http://res.training.luojigou.vip/FqI9b5_4iP6WmoVE_z7o9RLm7RZe?imageView2/0/q/50|imageslim",
  807. // eventImgurl:
  808. // "http://res.training.luojigou.vip/FlyzOxQWuiW2nYmACRUPsiCLyuw7?imageView2/0/q/50|imageslim",
  809. yearImgurl: require('~/assets/images/about/year_2014.png'),
  810. yearImgurlSet: [require('~/assets/images/about/year_2014.png'), require('~/assets/images/about/year_2014@2x.png')],
  811. eventImgurl: require('~/assets/images/brand/event_year_2014@2x.png'),
  812. eventImgurlWidth: '269',
  813. eventImgurlHeight: '688',
  814. eventList: [
  815. {
  816. month: '3月',
  817. thing: '承接北京市教委园长教师素质提升计划的培训工作。'
  818. },
  819. {
  820. month: '3月',
  821. thing: '《与克鲁德一起听说读》系列正式出版。'
  822. },
  823. {
  824. month: '4月',
  825. thing: '中德智慧商学院启动,缔造中国早期教育界商学院。'
  826. },
  827. {
  828. month: '5月',
  829. thing: '首次举办“中德幼儿科学教育国际论坛”,邀请德国专家来京讲座。'
  830. },
  831. {
  832. month: '6月',
  833. thing: '《儿童思维升级训练系统》、《克鲁德儿童语言升级训练系统》、《春夏秋冬思维绘本》礼盒装、聪明笔四大产品系列正式发布。'
  834. },
  835. {
  836. month: '6月',
  837. thing: '第六届中国学前教育研究会“十三五”课题《思维游戏与幼儿学习品质形成的相关性研究》在京召开课题开题会。'
  838. },
  839. {
  840. month: '8月',
  841. thing: ' 第十二届幼儿思维能力挑战赛全国总决赛在北京举行。同期举行了“思维魔法营地·小蚂蚁夏令营”。'
  842. },
  843. {
  844. month: '9月',
  845. thing: '公司受邀参加北京市教委庆祝第33个教师节“师爱无尘” 活动。'
  846. }
  847. ]
  848. },
  849. {
  850. id: 2015,
  851. title: 2015,
  852. site: {
  853. x: 2,
  854. y: 1,
  855. },
  856. // yearImgurl:
  857. // "http://res.training.luojigou.vip/FoeSNwPl-fQXqwwow99j9Rsd9tjB?imageView2/0/q/50|imageslim",
  858. // eventImgurl:
  859. // "http://res.training.luojigou.vip/FmBATtftJW08bU-5KGBFuKsAQSN1?imageView2/0/q/50|imageslim",
  860. yearImgurl: require('~/assets/images/about/year_2015.png'),
  861. yearImgurlSet: [require('~/assets/images/about/year_2015.png'), require('~/assets/images/about/year_2015@2x.png')],
  862. eventImgurl: require('~/assets/images/brand/event_year_2015@2x.png'),
  863. eventImgurlWidth: '269',
  864. eventImgurlHeight: '324',
  865. eventList: [
  866. {
  867. month: '4月',
  868. thing: '第十届幼儿思维能力挑战赛启动。'
  869. },
  870. {
  871. month: '5月',
  872. thing: '中德智慧教育品牌应邀参加“2015北京长城森林儿童艺术节”。'
  873. },
  874. {
  875. month: '6月',
  876. thing: '开创中国体验式儿童思维培训中心“逻辑狗·探索小镇”。'
  877. },
  878. {
  879. month: '7月',
  880. thing: '第十届幼儿思维能力挑战赛全国总决赛在北京举行。'
  881. },
  882. {
  883. month: '9月',
  884. thing: '中德智慧教育官网www.zaojiao.net改版升级上线。'
  885. }
  886. ]
  887. },
  888. {
  889. id: 2016,
  890. title: 2016,
  891. site: {
  892. x: 1,
  893. y: 1,
  894. },
  895. // yearImgurl:
  896. // "http://res.training.luojigou.vip/Fl2SA1cd8DqIzQGIQqh5qrNUMmR6?imageView2/0/q/50|imageslim",
  897. // eventImgurl:
  898. // "http://res.training.luojigou.vip/FoaOya6X8s6j3Bzc2oBNDvX-JHW2?imageView2/0/q/50|imageslim",
  899. yearImgurl: require('~/assets/images/about/year_2016.png'),
  900. yearImgurlSet: [require('~/assets/images/about/year_2016.png'), require('~/assets/images/about/year_2016@2x.png')],
  901. eventImgurl: require('~/assets/images/brand/event_year_2016@2x.png'),
  902. eventImgurlWidth: '269',
  903. eventImgurlHeight: '584',
  904. eventList: [
  905. {
  906. month: '1月',
  907. thing: '品牌系列活动园长沙龙在北京·东澜剧场举行。'
  908. },
  909. {
  910. month: '5月',
  911. thing: '网络版“逻辑狗儿童思维升级游戏活动材料”正式全面上市。'
  912. },
  913. {
  914. month: '7月',
  915. thing: '公司受邀参加韩国首尔世界学前教育大会。'
  916. },
  917. {
  918. month: '8月',
  919. thing: '第十一届幼儿思维能力挑战赛全国总决赛在北京举行。'
  920. },
  921. {
  922. month: '9月',
  923. thing: '与德方合作成立“中德儿童学前教育交流文化中心”。'
  924. },
  925. {
  926. month: '12月',
  927. thing: '创始人·董事长张洁荣获“2016中国教育行业领军人物”并接受央广网个人专访。'
  928. },
  929. {
  930. month: '12月',
  931. thing: '与德国Westermann公司签署合作,获得LüK思维魔法游戏在中国大陆地区的独家授权。'
  932. }
  933. ]
  934. },
  935. {
  936. id: 2017,
  937. title: 2017,
  938. site: {
  939. x: 0,
  940. y: 1,
  941. },
  942. // yearImgurl:
  943. // "http://res.training.luojigou.vip/Fi_RKVrGct2V235xsKpwsIA51YX-?imageView2/0/q/50|imageslim",
  944. // eventImgurl:
  945. // "http://res.training.luojigou.vip/FsALqlvULFPhf-kxcPw1YtRiZjIG?imageView2/0/q/50|imageslim",
  946. yearImgurl: require('~/assets/images/about/year_2017.png'),
  947. yearImgurlSet: [require('~/assets/images/about/year_2017.png'), require('~/assets/images/about/year_2017@2x.png')],
  948. eventImgurl: require('~/assets/images/brand/event_year_2017@2x.png'),
  949. eventImgurlWidth: '269',
  950. eventImgurlHeight: '532',
  951. eventList: [
  952. {
  953. month: '4月',
  954. thing: '全新场景化幼儿园区角活动材料逻辑狗思维游戏盒子全面进入幼儿园。'
  955. },
  956. {
  957. month: '6月',
  958. thing: '德国Westermann公司LüK系列产品《思维魔法我的Pad》正式出版。'
  959. },
  960. {
  961. month: '6月',
  962. thing: '第六届中国学前教育研究会“十三五”课题《思维游戏与幼儿学习品质形成的相关性研究》在京召开课题开题会。'
  963. },
  964. {
  965. month: '8月',
  966. thing: '第十二届幼儿思维能力挑战赛全国总决赛在北京举行。同期举行了“思维魔法营地·小蚂蚁夏令营”。'
  967. },
  968. {
  969. month: '9月',
  970. thing: '公司受邀参加北京市教委庆祝第33个教师节“师爱无尘” 活动。'
  971. }
  972. ]
  973. },
  974. {
  975. id: 2018,
  976. title: 2018,
  977. site: {
  978. x: 0,
  979. y: 0,
  980. },
  981. // yearImgurl:
  982. // "http://res.training.luojigou.vip/FvN4BWxIckbJmo_qrN7mlILrtQKg?imageView2/0/q/50|imageslim",
  983. // eventImgurl:
  984. // "http://res.training.luojigou.vip/FvQZtrIRkaNzGJ8KbF1-Cl-k5hfJ?imageView2/0/q/50|imageslim",
  985. yearImgurl: require('~/assets/images/about/year_2018.png'),
  986. yearImgurlSet: [require('~/assets/images/about/year_2018.png'), require('~/assets/images/about/year_2018@2x.png')],
  987. eventImgurl: require('~/assets/images/brand/event_year_2018@2x.png'),
  988. eventImgurlWidth: '269',
  989. eventImgurlHeight: '662',
  990. eventList: [
  991. {
  992. month: '5月',
  993. thing: '携新产品“思维魔法系列”参加第八届北京国际幼教展。'
  994. },
  995. {
  996. month: '6月',
  997. thing: '创始人·董事长张洁女士创造性的提出“思维芯”理论,给孩子一颗强大起来的思维芯,构建学前儿童优质成长型思维模式。'
  998. },
  999. {
  1000. month: '6月',
  1001. thing: '首次举办中德智慧教育品牌系列活动园长欧洲行。'
  1002. },
  1003. {
  1004. month: '7月',
  1005. thing: '第十三届幼儿思维能力挑战赛开赛,全国500强小选手会师决赛。'
  1006. },
  1007. {
  1008. month: '11月',
  1009. thing: '品牌系列活动“成长故事”国际思维教育中国行系列活动启动。'
  1010. },
  1011. {
  1012. month: '12月',
  1013. thing: '“植根文化·专注教育”第十三届代理商年会在北京举行。'
  1014. }
  1015. ]
  1016. },
  1017. {
  1018. id: 2019,
  1019. title: '2019~中德智慧3.0时代',
  1020. site: {
  1021. x: 1,
  1022. y: 0,
  1023. },
  1024. // yearImgurl:
  1025. // "http://res.training.luojigou.vip/Fgr3xXoLsgpIP2wBglovLx0e89Mb?imageView2/0/q/50|imageslim",
  1026. // eventImgurl:
  1027. // "http://res.training.luojigou.vip/Flio74FIlTt_aYhyW-3scKmhSrHc?imageView2/0/q/50|imageslim",
  1028. yearImgurl: require('~/assets/images/about/year_2019.png'),
  1029. yearImgurlSet: [require('~/assets/images/about/year_2019.png'), require('~/assets/images/about/year_2019@2x.png')],
  1030. eventImgurl: require('~/assets/images/brand/event_year_2019@2x.png'),
  1031. eventImgurlWidth: '269',
  1032. eventImgurlHeight: '766',
  1033. eventList: [
  1034. {
  1035. month: '3月',
  1036. thing: '中德智慧教育创始人张洁女士与德国芬肯教育机构达成战略合作,获得芬肯在中国大陆地区所有产品的独家研发权。'
  1037. },
  1038. {
  1039. month: '4月',
  1040. thing: '逻辑狗·探索小镇首次在校长邦加盟展中亮相。'
  1041. },
  1042. {
  1043. month: '5月',
  1044. thing: '与北京师范大学成立楚江亭教授工作室,展开院长领导力培训项目。'
  1045. },
  1046. {
  1047. month: '5月',
  1048. thing: '创始人·董事长张洁女士出席CHPEE精英俱乐部会议并出任俱乐部副主席'
  1049. },
  1050. {
  1051. month: '6月',
  1052. thing: '公司乔迁新址,全面升级,提升服务体系和数字化运营能力,在现代化充满文化和艺术气息的全新独栋办公别墅中,开启了中德智慧教育3.0时代。引领中国教育“思维芯”时代。'
  1053. },
  1054. {
  1055. month: '7月',
  1056. thing: '第十四届幼儿思维能力挑战赛全国总决赛在北京举行。'
  1057. },
  1058. {
  1059. month: '8月',
  1060. thing: '全新教材版系列《中华小熊猫·中国文化思维游戏系统》正式面世。'
  1061. },
  1062. {
  1063. month: '10月',
  1064. thing: '公司参加校长邦榜样的力量教育盛典,荣获校长邦“理事单位”,旗下逻辑狗产品获得“匠心独运”奖。'
  1065. },
  1066. {
  1067. month: '11月',
  1068. thing: '董事长&CEO张洁受邀参加腾讯“回响中国”教育盛典,荣获“2019教育行业影响力人物”;中德智慧教育荣获“2019教育行业影响力品牌”。'
  1069. },
  1070. {
  1071. month: '12月',
  1072. thing: '入选中国品牌领袖联盟。'
  1073. }
  1074. ]
  1075. },
  1076. {
  1077. id: 2020,
  1078. title: 2020,
  1079. site: {
  1080. x: 2,
  1081. y: 0,
  1082. },
  1083. // yearImgurl:
  1084. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  1085. yearImgurl: require('~/assets/images/about/year_2020.png'),
  1086. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  1087. eventList: [
  1088. {
  1089. month: '2月',
  1090. thing: '疫情期间,中德智慧教育及时开展2020年春季幼教人停课不停学「四大行动」。'
  1091. },
  1092. {
  1093. month: '3月',
  1094. thing: '全新新媒体矩阵搭建。'
  1095. },
  1096. {
  1097. month: '4月',
  1098. thing: '天猫店铺设计全新优化升级。'
  1099. },
  1100. {
  1101. month: '5月',
  1102. thing: '17年周年庆创始人作客湖南卫视著名主持人张丹丹直播间带货。'
  1103. },
  1104. {
  1105. month: '8月',
  1106. thing: '新品隆重上市:《二十四节气》《思考技巧》《聪明书》。'
  1107. },
  1108. {
  1109. month: '8月',
  1110. thing: '中德智慧杯·思维好儿童·线上云大赛。'
  1111. },
  1112. {
  1113. month: '9月',
  1114. thing: '参加北京第22届北京国际幼教展。'
  1115. },
  1116. {
  1117. month: '9月',
  1118. thing: '全新包装升级:逻辑狗 网络家庭教学三渠道产品。'
  1119. },
  1120. {
  1121. month: '10月',
  1122. thing: '参加第19届中国国际玩具展。'
  1123. },
  1124. {
  1125. month: '10月',
  1126. thing: '十三五课题「十三五」《思维游戏与幼儿学习品质形成的相关性研究》结题。'
  1127. },
  1128. {
  1129. month: '10月',
  1130. thing: '成功查封河北廊坊非法盗版“逻辑狗”工厂。'
  1131. },
  1132. {
  1133. month: '10月',
  1134. thing: '加入中国玩具和婴童用品协会-理事单位。'
  1135. },
  1136. {
  1137. month: '11月',
  1138. thing: '中德全新品牌视觉升级,逻辑狗形象升级。'
  1139. },
  1140. {
  1141. month: '11月',
  1142. thing: '“中德云聚未来·智慧重构生态——2020年度中德智慧教育合作伙伴嘉年华会”在三亚隆重举行。'
  1143. },
  1144. {
  1145. month: '12月',
  1146. thing: '逻辑狗思维体验Home/Plus加盟模式全新推出。'
  1147. },
  1148. ]
  1149. },
  1150. {
  1151. id: 2020,
  1152. title: 2020,
  1153. site: {
  1154. x: 2,
  1155. y: 0,
  1156. },
  1157. // yearImgurl:
  1158. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  1159. yearImgurl: require('~/assets/images/about/year_2020.png'),
  1160. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  1161. eventList: [
  1162. {
  1163. month: '2月',
  1164. thing: '疫情期间,中德智慧教育及时开展2020年春季幼教人停课不停学「四大行动」。'
  1165. },
  1166. {
  1167. month: '3月',
  1168. thing: '全新新媒体矩阵搭建。'
  1169. },
  1170. {
  1171. month: '4月',
  1172. thing: '天猫店铺设计全新优化升级。'
  1173. },
  1174. {
  1175. month: '5月',
  1176. thing: '17年周年庆创始人作客湖南卫视著名主持人张丹丹直播间带货。'
  1177. },
  1178. {
  1179. month: '8月',
  1180. thing: '新品隆重上市:《二十四节气》《思考技巧》《聪明书》。'
  1181. },
  1182. {
  1183. month: '8月',
  1184. thing: '中德智慧杯·思维好儿童·线上云大赛。'
  1185. },
  1186. {
  1187. month: '9月',
  1188. thing: '参加北京第22届北京国际幼教展。'
  1189. },
  1190. {
  1191. month: '9月',
  1192. thing: '全新包装升级:逻辑狗 网络家庭教学三渠道产品。'
  1193. },
  1194. {
  1195. month: '10月',
  1196. thing: '参加第19届中国国际玩具展。'
  1197. },
  1198. {
  1199. month: '10月',
  1200. thing: '十三五课题「十三五」《思维游戏与幼儿学习品质形成的相关性研究》结题。'
  1201. },
  1202. {
  1203. month: '10月',
  1204. thing: '成功查封河北廊坊非法盗版“逻辑狗”工厂。'
  1205. },
  1206. {
  1207. month: '10月',
  1208. thing: '加入中国玩具和婴童用品协会-理事单位。'
  1209. },
  1210. {
  1211. month: '11月',
  1212. thing: '中德全新品牌视觉升级,逻辑狗形象升级。'
  1213. },
  1214. {
  1215. month: '11月',
  1216. thing: '“中德云聚未来·智慧重构生态——2020年度中德智慧教育合作伙伴嘉年华会”在三亚隆重举行。'
  1217. },
  1218. {
  1219. month: '12月',
  1220. thing: '逻辑狗思维体验Home/Plus加盟模式全新推出。'
  1221. },
  1222. ]
  1223. },
  1224. {
  1225. id: 2021,
  1226. title: 2021,
  1227. site: {
  1228. x: 3,
  1229. y: 0,
  1230. },
  1231. // yearImgurl:
  1232. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  1233. yearImgurl: require('~/assets/images/about/year_2020.png'),
  1234. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  1235. eventList: [
  1236. {
  1237. month: '6月',
  1238. thing: '《与弗雷德一起探索》科学项目入选山西省编'
  1239. },
  1240. {
  1241. month: '7月',
  1242. thing: '中德智慧杯·思维好儿童 第16届幼儿思维能力挑战赛成功举办,首次呈现“思维魔法世界”大赛分会场,首次以线上直播的形式向全国家长呈现赛事内容。'
  1243. },
  1244. {
  1245. month: '8月',
  1246. thing: ' 逻辑狗·探索小镇 加盟校投资人校区运营模式线上会议成功举行,疫情之下依旧鼓舞教育市场。'
  1247. },
  1248. {
  1249. month: '8月',
  1250. thing: '全国思维芯高阶思维游戏室落地,成为全国思维芯教室模范。'
  1251. },
  1252. {
  1253. month: '8月',
  1254. thing: '中德智慧首款动画游戏《逻辑狗思维成长小镇动画游戏》正式启动产品研发'
  1255. },
  1256. {
  1257. month: '9月',
  1258. thing: '升级逻辑狗网络版一到五阶段,更换全新风格包装,结合一物一码科技属性,有效防止盗版;'
  1259. },
  1260. {
  1261. month: '9月',
  1262. thing: '十四五课题“在思维游戏中促进儿童深度学习的实践研究”审批通过,双减政策下, 依旧保持素质教育的初心与教研。'
  1263. },
  1264. {
  1265. month: '全年',
  1266. thing: '全国推进开展各地的“中德智慧国际思维教育中国行-成长故事”(线下、线上品牌培训活动)。'
  1267. },
  1268. ]
  1269. },
  1270. {
  1271. id: 2022,
  1272. title: 2022,
  1273. site: {
  1274. x: 3,
  1275. y: 0,
  1276. },
  1277. // yearImgurl:
  1278. // "http://res.training.luojigou.vip/FhjVzCv4CjuHsuCjJvSWGGxruzxv?imageView2/0/q/50|imageslim",
  1279. yearImgurl: require('~/assets/images/about/year_2020.png'),
  1280. yearImgurlSet: [require('~/assets/images/about/year_2020.png'), require('~/assets/images/about/year_2020@2x.png')],
  1281. eventList: [
  1282. {
  1283. month: '',
  1284. thing: '敬请期待'
  1285. }
  1286. ]
  1287. },
  1288. ]);
  1289. const eventDurationData = Object.freeze([
  1290. {
  1291. year: 2022,
  1292. text: '现在'
  1293. },
  1294. {
  1295. year: 2017,
  1296. text: '2017'
  1297. },
  1298. {
  1299. year: 2012,
  1300. text: '2012'
  1301. },
  1302. {
  1303. year: 2007,
  1304. text: '2007'
  1305. },
  1306. {
  1307. year: 2003,
  1308. text: '2003'
  1309. },
  1310. ])
  1311. const fieldData = Object.freeze([
  1312. {
  1313. id: 1,
  1314. title: '逻辑思维',
  1315. label: '喜欢思考、爱上学习',
  1316. labelWidth: 154,
  1317. desc: '逻辑思维是理性认识的阶段,人运用概念、判断、推理等思维类型反映事物本质与规律的认识过程。中德智慧教育以完善的理念,独特的教学方法,运用思维启蒙、思考策略及思考技巧的阶梯式教育方式培养儿童优质思维能力。',
  1318. background: '#FC7E4D',
  1319. lightBackground: '#FEF4EB',
  1320. imgUrl: require('~/assets/images/brand/field_01.png'),
  1321. fieldImg: require('~/assets/images/brand/field_img_01.png'),
  1322. width: 100,
  1323. height: 19,
  1324. },
  1325. {
  1326. id: 2,
  1327. title: '科学探究',
  1328. label: '喜欢探索、热衷钻研',
  1329. labelWidth: 154,
  1330. desc: '科学是幼儿教育五大领域之一,科学的本质在于探究。中德智慧教育为学前儿童创设了国际优质的情境科学探究环境,激发幼儿探究兴趣,体验探究过程、发展初步的探究和解决问题的能力,并在探究中认识周围事物和现象,培养幼儿的科学精神和科学素养。',
  1331. background: '#FFC320',
  1332. lightBackground: '#FFF8EB',
  1333. imgUrl: require('~/assets/images/brand/field_02.png'),
  1334. fieldImg: require('~/assets/images/brand/field_img_02.png'),
  1335. width: 100,
  1336. height: 19
  1337. },
  1338. {
  1339. id: 3,
  1340. title: '语言表达',
  1341. label: '爱上表达、提升自信',
  1342. labelWidth: 154,
  1343. desc: '学前阶段是儿童口头语言发展的关键期,语言表达是幼儿教育五大领域的重要内容。中德智慧根据幼儿语言学习和思维发展的特点,将看、听、动、思、说五维结合,通过具象的趣味图片,让孩子对语言感兴趣。通过生活化的场景,让孩子动脑思考,动手操作,实现全景式、立体式、学习型的全新语言学习模式。',
  1344. background: '#11D60D',
  1345. lightBackground: '#F7FBF2',
  1346. imgUrl: require('~/assets/images/brand/field_03.png'),
  1347. fieldImg: require('~/assets/images/brand/field_img_03.png'),
  1348. width: 100,
  1349. height: 19
  1350. },
  1351. {
  1352. id: 4,
  1353. title: '社会与创造',
  1354. label: '热爱创造、追求卓越',
  1355. labelWidth: 154,
  1356. desc: '幼儿阶段是人社会性发展的重要时期。在这个时期,幼儿逐步认识周围的社会环境,内化社会行为规范;创造的一个特点是有意识地对世界进行探索性劳动。中德智慧以孩子所熟悉的社会生活环境为教育内容,让教育自然的发生,关爱社会、关爱自然,发现身边的事物、现象,去适应社会生活、创新生活,促进社会性和创造力的发展。',
  1357. background: '#567FFF',
  1358. lightBackground: '#EFF4FF',
  1359. imgUrl: require('~/assets/images/brand/field_04.png'),
  1360. fieldImg: require('~/assets/images/brand/field_img_04.png'),
  1361. width: 125,
  1362. height: 19
  1363. },
  1364. {
  1365. id: 5,
  1366. title: '教育+互联+智能',
  1367. label: '喜欢探索、热衷钻研',
  1368. labelWidth: 154,
  1369. desc: '科学是幼儿教育五大领域之一,科学的本质在于探究。中德智慧教育为学前儿童创设了国际优质的情境科学探究环境,激发幼儿探究兴趣,体验探究过程、发展初步的探究和解决问题的能力,并在探究中认识周围事物和现象,培养幼儿的科学精神和科学素养。',
  1370. background: '#BC5ED1',
  1371. lightBackground: '#F9EFFB',
  1372. imgUrl: require('~/assets/images/brand/field_05.png'),
  1373. fieldImg: require('~/assets/images/brand/field_img_05.png'),
  1374. width: 185,
  1375. height: 19
  1376. }
  1377. ]);
  1378. const principlesData = Object.freeze([
  1379. {
  1380. id: 1,
  1381. imgUrl: require("~/assets/images/brand/principles_01.png"),
  1382. number: 1,
  1383. label: "理解儿童,儿童视角",
  1384. },
  1385. {
  1386. id: 2,
  1387. imgUrl: require("~/assets/images/brand/principles_02.png"),
  1388. number: 2,
  1389. label: "多元化教学路径",
  1390. },
  1391. {
  1392. id: 3,
  1393. imgUrl: require("~/assets/images/brand/principles_03.png"),
  1394. number: 3,
  1395. label: "系统深度学习",
  1396. }
  1397. ])
  1398. const expertList = [
  1399. {
  1400. imgUrl: require("~/assets/images/team/expert_01@2x.png"),
  1401. content: ["德国现代著名早期教育专家", "哲学博士"],
  1402. name: "季泽拉•吕克",
  1403. // info: 'Prof Gisela Lueck'
  1404. info: "德国现代著名早期教育专家",
  1405. },
  1406. {
  1407. imgUrl: require("~/assets/images/team/expert_02@2x.png"),
  1408. content: ["芬肯出版社总经理", "芬肯d第三代人的企业继承人"],
  1409. name: "霍克•科瑞克",
  1410. // info: 'Holger Krick'
  1411. info: "芬肯出版社总经理",
  1412. },
  1413. {
  1414. imgUrl: require("~/assets/images/team/expert_03@2x.png"),
  1415. content: ["德国出版界知名编辑", "著名思维教育专家"],
  1416. name: "多丽丝•菲舍尔夫人",
  1417. // info: 'Ms Doris Fischer'
  1418. info: "德国著名思维教育专家",
  1419. },
  1420. {
  1421. imgUrl: require("~/assets/images/team/expert_04@2x.png"),
  1422. content: ["德国现代著名早期教育专家", "哲学博士"],
  1423. name: "苏珊娜·贝尔纳",
  1424. // info: '职称/学历/所在公司 '
  1425. info: "德国著名的绘本画家",
  1426. },
  1427. // {
  1428. // imgUrl: require("~/assets/images/team/expert_05@2x.png"),
  1429. // content: ["德国现代著名早期教育专家", "哲学博士"],
  1430. // name: "楚江亭",
  1431. // info: "北京教育科学研究院副研究员",
  1432. // },
  1433. {
  1434. imgUrl: require("~/assets/images/team/expert_06@2x.png"),
  1435. content: ["德国现代著名早期教育专家", "哲学博士"],
  1436. name: "廖丽英",
  1437. info: "北京教育科学研究院副研究员",
  1438. },
  1439. {
  1440. imgUrl: require("~/assets/images/team/expert_07@2x.png"),
  1441. content: ["德国现代著名早期教育专家", "哲学博士"],
  1442. name: "祝士媛",
  1443. info: "北京师范大学教育学院教授",
  1444. },
  1445. {
  1446. imgUrl: require("~/assets/images/team/expert_08@2x.png"),
  1447. content: ["德国现代著名早期教育专家", "哲学博士"],
  1448. name: "刘占兰",
  1449. info: "世界(OMEP)中国委员会秘书长",
  1450. },
  1451. {
  1452. imgUrl: require("~/assets/images/team/expert_09@2x.png"),
  1453. content: ["德国现代著名早期教育专家", "哲学博士"],
  1454. name: "杜继纲",
  1455. info: "北京师范大学教育学部副教授",
  1456. },
  1457. {
  1458. imgUrl: require("~/assets/images/team/expert_10@2x.png"),
  1459. content: ["德国现代著名早期教育专家", "哲学博士"],
  1460. name: "肖晶",
  1461. info: "首都师范大学心理学院教授",
  1462. },
  1463. {
  1464. imgUrl: require("~/assets/images/team/expert_11@2x.png"),
  1465. content: ["德国现代著名早期教育专家", "哲学博士"],
  1466. name: "苏靖",
  1467. info: "北京科学研究院早期教育所长",
  1468. },
  1469. {
  1470. imgUrl: require("~/assets/images/team/expert_12@2x.png"),
  1471. content: ["德国现代著名早期教育专家", "哲学博士"],
  1472. name: "刘秀丽",
  1473. info: "东北师范大学心理学教授",
  1474. },
  1475. {
  1476. imgUrl: require("~/assets/images/team/expert_13@2x.png"),
  1477. content: ["德国现代著名早期教育专家", "哲学博士"],
  1478. name: "许晓晖",
  1479. info: "教育专家",
  1480. },
  1481. {
  1482. imgUrl: require("~/assets/images/team/expert_14@2x.png"),
  1483. content: ["德国现代著名早期教育专家", "哲学博士"],
  1484. name: "庄薇",
  1485. info: "教育专家",
  1486. },
  1487. {
  1488. imgUrl: require("~/assets/images/team/expert_15@2x.png"),
  1489. content: ["德国现代著名早期教育专家", "哲学博士"],
  1490. name: "王瑜元",
  1491. info: "学前儿童教育管理学专家",
  1492. },
  1493. {
  1494. imgUrl: require("~/assets/images/team/expert_16@2x.png"),
  1495. content: ["德国现代著名早期教育专家", "哲学博士"],
  1496. name: "姜维静",
  1497. info: "北京市学前教育研究会副秘书长",
  1498. },
  1499. // {
  1500. // imgUrl: require("~/assets/images/team/expert_17@2x.png"),
  1501. // content: ["德国现代著名早期教育专家", "哲学博士"],
  1502. // name: "安颖",
  1503. // info: "教育专家",
  1504. // },
  1505. // {
  1506. // imgUrl: require("~/assets/images/team/expert_18@2x.png"),
  1507. // content: ["德国现代著名早期教育专家", "哲学博士"],
  1508. // name: "吴晓慧",
  1509. // info: "教育专家",
  1510. // },
  1511. ]
  1512. export default {
  1513. name: "BrandPage",
  1514. head() {
  1515. return {
  1516. title: "逻辑狗官网-中德智慧教育",
  1517. meta: [
  1518. {
  1519. name: "keywords",
  1520. hid: "keywords",
  1521. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  1522. },
  1523. {
  1524. name: "description",
  1525. hid: "description",
  1526. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  1527. },
  1528. ],
  1529. };
  1530. },
  1531. components: {
  1532. CommonBanner,
  1533. TitleContent
  1534. },
  1535. computed: {
  1536. eventDataReverse() {
  1537. let newArr = [];
  1538. eventData.forEach(ele => {
  1539. newArr.unshift(ele);
  1540. })
  1541. return newArr;
  1542. }
  1543. },
  1544. data() {
  1545. return {
  1546. founderList,
  1547. expertList,
  1548. cultureList,
  1549. isMoving: false,
  1550. companyImg: require('@/assets/images/brand/company.png'),
  1551. companyLeft: require('@/assets/images/brand/companyImg.png'),
  1552. companyRight: require('@/assets/images/brand/profileImg.png'),
  1553. bgLogo: require('@/assets/images/brand/bgLogo.png'),
  1554. eventImg: require('@/assets/images/brand/eventImg.png'),
  1555. bgImg: require('@/assets/images/brand/brandBg.png'),
  1556. bannerImg: require('~/assets/images/about/about_brand.png'),
  1557. kernelData,
  1558. currentMouserEnter: false,
  1559. currentMouserId: "",
  1560. cultrueData,
  1561. ideaData,
  1562. eventData: [],
  1563. eventDurationData,
  1564. offsetLeftList: [],
  1565. offsetLeftDurationList: [],
  1566. fieldData,
  1567. principlesData,
  1568. currentFieldIndex: 0,
  1569. currentEventImgId: 2003,
  1570. starX: 0,
  1571. drag: null,
  1572. dragLeft: 0,
  1573. disX: 0,
  1574. currentDurationIndex: 0,
  1575. animate: true,
  1576. eventHeight: 0
  1577. };
  1578. },
  1579. mounted() {
  1580. this.initEvent();
  1581. this.initDrag();
  1582. },
  1583. methods: {
  1584. initEvent() {
  1585. // 设置大事记数据
  1586. let Elements = this.$refs.drag.children;
  1587. let offsetLeftList = [];
  1588. for (let index = 0; index < Elements.length; index++) {
  1589. offsetLeftList.push(Elements[index].offsetLeft)
  1590. }
  1591. this.offsetLeftList = offsetLeftList;
  1592. // 设置大事记段数据
  1593. let offsetLeftDurationList = [];
  1594. this.eventDataReverse.map((item, i) => {
  1595. this.eventDurationData.map((ele, j) => {
  1596. if(item.id == ele.year) {
  1597. offsetLeftDurationList.push(offsetLeftList[i])
  1598. }
  1599. })
  1600. });
  1601. this.offsetLeftDurationList = offsetLeftDurationList;
  1602. },
  1603. initDrag() {
  1604. this.drag = this.$refs.drag;
  1605. this.eventHeight = this.$refs.drag.offsetHeight + 'px';
  1606. },
  1607. currentElement(item) {
  1608. this.currentMouserId = item.id;
  1609. this.currentMouserEnter = true;
  1610. },
  1611. currentEventImg(item) {
  1612. this.currentEventImgId = item.id;
  1613. },
  1614. handleFieldEnter(item, index) {
  1615. this.currentFieldIndex = index;
  1616. },
  1617. handleMouseDown(e) {
  1618. this.animate = false;
  1619. this.isMoving = true;
  1620. const starX = e.clientX;
  1621. this.starX = starX;
  1622. },
  1623. handleMouseMove(e) {
  1624. if(this.isMoving) {
  1625. let disX = this.starX - e.clientX;
  1626. this.disX = disX;
  1627. if(this.dragLeft <= 0 && Math.abs(this.dragLeft) <= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1628. let left = this.dragLeft - disX;
  1629. if(left > 0 ) {
  1630. left = 0;
  1631. }
  1632. if(Math.abs(left) >= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1633. left = -this.offsetLeftList[this.offsetLeftList.length - 1];
  1634. }
  1635. // 判断当前滑动到那个区间
  1636. this.currentDurationIndex = this.getArrayIndex(left);
  1637. this.drag.style.left = left + 'px';
  1638. }
  1639. }
  1640. },
  1641. handleMouseUp(e) {
  1642. this.isMoving = false;
  1643. this.dragLeft = this.dragLeft - this.disX;
  1644. if(this.dragLeft > 0) {
  1645. this.dragLeft = 0;
  1646. }
  1647. if(Math.abs(this.dragLeft) >= this.offsetLeftList[this.offsetLeftList.length - 1]) {
  1648. this.dragLeft = -this.offsetLeftList[this.offsetLeftList.length - 1];
  1649. }
  1650. },
  1651. getArrayIndex(num) {
  1652. let data = Math.abs(num);
  1653. let index = 0;
  1654. this.offsetLeftDurationList.forEach((ele, i) => {
  1655. if(data >= ele ) {
  1656. index = i;
  1657. }
  1658. });
  1659. return index;
  1660. },
  1661. chooseYear(item, tab) {
  1662. this.animate = true;
  1663. this.currentDurationIndex = tab;
  1664. const index = this.eventDataReverse.findIndex(ele => {
  1665. return ele.id == item.year;
  1666. });
  1667. if(index != -1) {
  1668. let left = this.offsetLeftList[index];
  1669. this.dragLeft = -left;
  1670. this.drag.style.left = -left + 'px';
  1671. }
  1672. }
  1673. },
  1674. };
  1675. </script>
  1676. <style scoped lang="scss">
  1677. @import '~static/common/style.sass';
  1678. .Brand-container {
  1679. .label {
  1680. .label-en {
  1681. height: 78px;
  1682. font-size: 56px;
  1683. font-family: PingFangSC-Semibold, sans-serif;
  1684. font-weight: 600;
  1685. color:rgba(35,106,250,0.16);
  1686. line-height: 78px;
  1687. }
  1688. .label-zn {
  1689. height: 65px;
  1690. font-size: 46px;
  1691. font-family: PingFangSC-Semibold, sans-serif;
  1692. font-weight: 600;
  1693. color: #262626;
  1694. line-height: 65px;
  1695. letter-spacing: 1px;
  1696. }
  1697. }
  1698. .banner-img {
  1699. position: relative;
  1700. img {
  1701. width: 100%;
  1702. height: 595px;
  1703. display: block;
  1704. }
  1705. .label {
  1706. color: #ffffff;
  1707. position: absolute;
  1708. top: 50%;
  1709. left: 50%;
  1710. transform: translate(-50%, -50%);
  1711. font-size: 66px;
  1712. font-family: PingFangSC-Medium, sans-serif;
  1713. font-weight: 500;
  1714. }
  1715. }
  1716. .company-intro {
  1717. display: flex;
  1718. margin: 0 auto;
  1719. max-width: 2560px;
  1720. .left {
  1721. flex: 1;
  1722. }
  1723. .right {
  1724. position: relative;
  1725. flex: 1;
  1726. .info {
  1727. margin: 73px 0 0 39px;
  1728. max-width: 561px;;
  1729. position: absolute;
  1730. top: 0;
  1731. .name-en {
  1732. font-size: 50px;
  1733. font-family: PingFangSC-Medium, PingFang SC;
  1734. font-weight: 500;
  1735. color: #FFFFFF;
  1736. letter-spacing: 1px;
  1737. opacity: 0.1;
  1738. }
  1739. .name {
  1740. position: relative;
  1741. font-size: 40px;
  1742. font-family: PingFangSC-Medium, PingFang SC;
  1743. font-weight: 500;
  1744. color: #FFFFFF;
  1745. letter-spacing: 1px;
  1746. transform: translateY(-44px);
  1747. &::after {
  1748. position: absolute;
  1749. content: '';
  1750. width: 47px;
  1751. height: 2px;
  1752. border-radius: 200px;
  1753. background: #FFFFFF;
  1754. left: 6px;
  1755. bottom: -17px;
  1756. opacity: 0.8;
  1757. }
  1758. }
  1759. p {
  1760. font-size: 14px;
  1761. font-family: PingFangSC-Regular, PingFang SC;
  1762. font-weight: 400;
  1763. color: #FFFFFF;
  1764. line-height: 32px;
  1765. margin-top: 8px;
  1766. text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  1767. }
  1768. }
  1769. }
  1770. img {
  1771. width: 100%;
  1772. }
  1773. }
  1774. .culture {
  1775. display: flex;
  1776. justify-content: center;
  1777. position: relative;
  1778. padding: 167px 0 226px 0;
  1779. width: 100%;
  1780. box-sizing: border-box;
  1781. .culture_bgi {
  1782. position: absolute;
  1783. left: 0;
  1784. top: 167px;
  1785. z-index: -1;
  1786. width: 226px;
  1787. height: 352px;
  1788. background-repeat: no-repeat;
  1789. background-size: cover;
  1790. background-image: url("~assets/images/brand/culture_bgi.png");
  1791. }
  1792. .leftContent {
  1793. .cultureName {
  1794. display: flex;
  1795. align-items: flex-end;
  1796. .name {
  1797. margin-right: 23px;
  1798. font-size: 34px;
  1799. font-weight: 500;
  1800. color: #333333;
  1801. }
  1802. .eName {
  1803. font-size: 16px;
  1804. color: #646A7E;
  1805. }
  1806. }
  1807. .cultureContent {
  1808. .cultureItem {
  1809. margin-top: 41px;
  1810. .cultureItemTitle {
  1811. height: 16px;
  1812. line-height: 16px;
  1813. font-weight: 500;
  1814. color: #333333;
  1815. font-size: 16px;
  1816. }
  1817. .cultureItemCont {
  1818. height: 14px;
  1819. line-height: 14px;
  1820. margin-top: 28px;
  1821. font-size: 14px;
  1822. color: #5F6464;
  1823. }
  1824. }
  1825. .cultureItem:first-child {
  1826. margin-top: 60px;
  1827. }
  1828. }
  1829. }
  1830. .rightImg {
  1831. margin-left: 138px;
  1832. margin-top: 53px;
  1833. width: 696.03px;
  1834. height: 617.01px;
  1835. img {
  1836. width: 100%;
  1837. height: 100%;
  1838. object-fit: cover;
  1839. }
  1840. }
  1841. }
  1842. .founder {
  1843. display: flex;
  1844. justify-content: center;
  1845. align-items: flex-end;
  1846. padding-top: 156px;
  1847. width: 100%;
  1848. background-image: url("~assets/images/brand/founderBackGroundImg.png");
  1849. background-size: cover;
  1850. background-repeat: no-repeat;
  1851. box-sizing: border-box;
  1852. .founderLeft {
  1853. margin-right: 72px;
  1854. .founderLeftImg {
  1855. width: 478px;
  1856. height: 608px;
  1857. object-fit: cover;
  1858. }
  1859. }
  1860. .founderRight {
  1861. margin-bottom: 60px;
  1862. .founderCompanyName {
  1863. height: 48px;
  1864. font-size: 34px;
  1865. font-family: PingFangSC-Medium, PingFang SC;
  1866. font-weight: 500;
  1867. color: #FFFFFF;
  1868. line-height: 48px;
  1869. }
  1870. .founderName {
  1871. margin-top: 15px;
  1872. margin-left: 213px;
  1873. height: 56px;
  1874. font-size: 20px;
  1875. font-family: PingFangSC-Medium, PingFang SC;
  1876. font-weight: 500;
  1877. color: #FFFFFF;
  1878. line-height: 28px;
  1879. }
  1880. .founderTitle {
  1881. height: 36px;
  1882. font-size: 16px;
  1883. font-family: PingFangSC-Regular, PingFang SC;
  1884. font-weight: 400;
  1885. color: #FFFFFF;
  1886. line-height: 36px;
  1887. }
  1888. }
  1889. }
  1890. .education {
  1891. padding: 98px 0;
  1892. .e-content {
  1893. margin-top: 67px;
  1894. height: 760px;
  1895. background: url('~assets/images/brand/eduction_bg.png');
  1896. background-size: cover;
  1897. display: flex;
  1898. justify-content: center;
  1899. align-items: center;
  1900. .educationImg {
  1901. width: 966px;
  1902. height: 634px;
  1903. }
  1904. }
  1905. }
  1906. .field {
  1907. padding: 98px 0 58px;
  1908. background: #F8FBFF;
  1909. .f-content {
  1910. position: relative;
  1911. margin-top: 60px;
  1912. text-align: center;
  1913. .fiveAreas {
  1914. width: 866px;
  1915. height: 521px;
  1916. object-fit: cover;
  1917. }
  1918. .fields {
  1919. height: 88px;
  1920. display: flex;
  1921. justify-content: space-between;
  1922. }
  1923. .field-container {
  1924. width: 236px;
  1925. position: relative;
  1926. }
  1927. .field-item {
  1928. position: absolute;
  1929. left: 0;
  1930. bottom: 0;
  1931. width: 100%;
  1932. border-radius: 16px 16px 0 0;
  1933. padding-top: 25px;
  1934. text-align: center;
  1935. height: 62px;
  1936. transition: bottom .3s ease 0s,height .3s ease 0s;
  1937. cursor: pointer;
  1938. &.active {
  1939. height: 88px;
  1940. bottom: -3px;
  1941. }
  1942. }
  1943. .bar {
  1944. margin-top: 3px;
  1945. width: 100%;
  1946. height: 8px;
  1947. transition: background .3s ease 0s;
  1948. }
  1949. .content {
  1950. width: 100%;
  1951. height: 357px;
  1952. background: #FFFFFF;
  1953. box-shadow: 7px 10px 46px 0px rgba(207, 222, 254, 0.49);
  1954. border-radius: 0px 0px 16px 16px;
  1955. padding: 45px 0 0 41px;
  1956. .label {
  1957. padding: 0 14px;
  1958. height: 32px;
  1959. line-height: 32px;
  1960. border-radius: 3px;
  1961. font-size: 14px;
  1962. color: #FFFFFF;
  1963. font-family: PingFangSC-Regular, PingFang SC;
  1964. transition: width .3s ease 0s,background .3s ease 0s;
  1965. }
  1966. .title {
  1967. margin-top: 10px;
  1968. height: 40px;
  1969. line-height: 40px;
  1970. font-size: 28px;
  1971. font-family: PingFangSC-Medium, PingFang SC;
  1972. font-weight: 500;
  1973. transition: color .3s ease 0s;
  1974. }
  1975. .detail {
  1976. margin-top: 6px;
  1977. padding: 18px 30px 0 16px;
  1978. border-radius: 10px;
  1979. height: 184px;
  1980. width: 731px;
  1981. font-size: 16px;
  1982. font-family: PingFangSC-Medium, PingFang SC;
  1983. font-weight: 500;
  1984. color: #6A6978;
  1985. line-height: 22px;
  1986. transition: background .3s ease 0s;
  1987. }
  1988. }
  1989. .img-wrap {
  1990. position: absolute;
  1991. right: 140px;
  1992. bottom: 70px;
  1993. width: 190px;
  1994. height: 192px;
  1995. font-size: 0;
  1996. img {
  1997. width: 100%;
  1998. height: 100%;
  1999. object-fit: cover;
  2000. }
  2001. }
  2002. }
  2003. }
  2004. .ways {
  2005. margin: 100px 0 78px;
  2006. .w-content {
  2007. margin-top: 70px;
  2008. }
  2009. .img-wrap {
  2010. width: 1200px;
  2011. font-size: 0;
  2012. img {
  2013. width: 100%;
  2014. }
  2015. }
  2016. }
  2017. .principles {
  2018. position: relative;
  2019. overflow: hidden;
  2020. padding: 95px 0 56px;
  2021. background: url('~assets/images/brand/cultrueBg.png');
  2022. background-color: #0D5CFA;
  2023. background-size: cover;
  2024. .title-content {
  2025. .title {
  2026. color: #ffffff;
  2027. }
  2028. .title-sub {
  2029. color: #ffffff;
  2030. }
  2031. }
  2032. .principles-box {
  2033. margin-top: 96px;
  2034. display: flex;
  2035. padding: 0 50px;
  2036. justify-content: center;
  2037. .principlesImg {
  2038. width: 901px;
  2039. height: 666px;
  2040. object-fit: cover;
  2041. }
  2042. }
  2043. .principles-box-item {
  2044. img {
  2045. width: 170px;
  2046. height: 159px;
  2047. }
  2048. .principles-box-item-num {
  2049. font-size: 45px;
  2050. font-family: Nunito-Black, Nunito;
  2051. font-weight: 600;
  2052. color: #FFFFFF;
  2053. height: 57px;
  2054. letter-spacing: 2px;
  2055. text-align: center;
  2056. margin: 14px 0 42px;
  2057. }
  2058. .principles-box-item-label {
  2059. font-size: 16px;
  2060. font-family: PingFangSC-Regular, sans-serif;
  2061. font-weight: 500;
  2062. color: #FFFFFF;
  2063. line-height: 22px;
  2064. text-align: center;
  2065. }
  2066. }
  2067. }
  2068. .team {
  2069. .teamTitle {
  2070. margin: 90px auto 70px;
  2071. height: 70px;
  2072. text-align: center;
  2073. .teamName {
  2074. margin-bottom: 19px;
  2075. height: 35px;
  2076. font-size: 34px;
  2077. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  2078. // font-weight: 500;
  2079. color: #333333;
  2080. line-height: 32px;
  2081. letter-spacing: 1px;
  2082. }
  2083. .teamEName {
  2084. height: 16px;
  2085. font-size: 16px;
  2086. font-family: SourceHanSansCN-Regular, SourceHanSansCN;
  2087. font-weight: 400;
  2088. color: #646A7E;
  2089. line-height: 16px;
  2090. }
  2091. }
  2092. .expert {
  2093. background: url('~assets/images/team/expertBg.png') no-repeat bottom 0 right 161px;
  2094. background-size: contain;
  2095. .title-en {
  2096. position: absolute;
  2097. top: -30px;
  2098. left: 50%;
  2099. transform: translateX(-50%);
  2100. }
  2101. .e-content {
  2102. display: flex;
  2103. flex-wrap: wrap;
  2104. // justify-content: space-between;
  2105. align-items: center;
  2106. }
  2107. .e-title {
  2108. text-align: center;
  2109. }
  2110. .expert-item {
  2111. position: relative;
  2112. margin: 0 30px 42px 0;
  2113. &:hover {
  2114. .mask {
  2115. display: block;
  2116. background: rgba(41, 110, 251, 0.8);
  2117. transition: all 0.5s;
  2118. -webkit-transition: all 0.5s;
  2119. }
  2120. .content {
  2121. display: block;
  2122. }
  2123. }
  2124. &:nth-child(5n) {
  2125. margin-right: 0;
  2126. }
  2127. .mask {
  2128. display: none;
  2129. position: absolute;
  2130. left: 50%;
  2131. transform: translateX(-50%);
  2132. border-radius: 15px;
  2133. top: 0;
  2134. z-index: 1;
  2135. width: 190px;
  2136. height: 199px;
  2137. transition: all 0.5s;
  2138. -webkit-transition: all 0.5s;
  2139. color: #FFFFFF;
  2140. padding: 43px 15px 0 35px;
  2141. text-align: left;
  2142. }
  2143. .item-info {
  2144. width: 215px;
  2145. height: 313px;
  2146. text-align: center;
  2147. padding-top: 24px;
  2148. background-color: #fff;
  2149. box-shadow: 20px 20px 25px 0px rgba(211, 229, 255, 0.33);
  2150. border-radius: 15px;
  2151. .item-img {
  2152. position: relative;
  2153. img {
  2154. width: 189px;
  2155. height: 199px;
  2156. border-radius: 15px;
  2157. }
  2158. // .mask {
  2159. // display: none;
  2160. // position: absolute;
  2161. // border-radius: 10px;
  2162. // top: 0;
  2163. // bottom: 0;
  2164. // left: 0;
  2165. // right: 0;
  2166. // transition: all 0.5s;
  2167. // -webkit-transition: all 0.5s;
  2168. // }
  2169. }
  2170. }
  2171. img {
  2172. width: 373px;
  2173. height: 542px;
  2174. object-fit: cover;
  2175. border-radius: 12px 12px 0px 0px;
  2176. }
  2177. .user-info {
  2178. // position: absolute;
  2179. // bottom: 20px;
  2180. margin-top: 17px;
  2181. text-align: left;
  2182. z-index: 66;
  2183. color: #333333;
  2184. margin-left: 13px;
  2185. .name {
  2186. z-index: 66;
  2187. font-size: 18px;
  2188. font-family: PingFangSC-Medium, PingFang SC;
  2189. font-weight: 500;
  2190. line-height: 25px;
  2191. }
  2192. .info {
  2193. margin-top: 10px;
  2194. z-index: 3;
  2195. font-size: 13px;
  2196. font-family: PingFangSC-Regular, PingFang SC;
  2197. font-weight: 400;
  2198. color: #333333;
  2199. line-height: 18px;
  2200. }
  2201. }
  2202. .content {
  2203. position: absolute;
  2204. top: 166px;
  2205. display: none;
  2206. font-size: 14px;
  2207. font-family: PingFangSC-Regular, sans-serif;
  2208. font-weight: 400;
  2209. padding: 0 46px;
  2210. line-height: 28px;
  2211. min-height: 180px;
  2212. color: #ffffff;
  2213. z-index: 66;
  2214. .intro {
  2215. font-size: 16px;
  2216. font-family: PingFangSC-Regular, sans-serif;
  2217. font-weight: 500;
  2218. color: #ffffff;
  2219. line-height: 22px;
  2220. margin-bottom: 5px;
  2221. }
  2222. .desc {
  2223. font-size: 14px;
  2224. font-family: PingFangSC-Regular, sans-serif;
  2225. font-weight: 400;
  2226. color: #ffffff;
  2227. line-height: 28px;
  2228. }
  2229. }
  2230. .line {
  2231. width: 100%;
  2232. position: absolute;
  2233. bottom: 0;
  2234. height: 8px;
  2235. background: rgba(131, 171, 249, 1);
  2236. z-index: 66;
  2237. }
  2238. }
  2239. }
  2240. }
  2241. .development {
  2242. padding-bottom: 100px;
  2243. /deep/ .title-content {
  2244. .title {
  2245. font-size: 34px;
  2246. font-weight: 500;
  2247. color: #FFFFFF;
  2248. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  2249. letter-spacing: 1px;
  2250. }
  2251. .title-sub {
  2252. font-size: 16px;
  2253. color: #FFFFFF;
  2254. }
  2255. }
  2256. .d-event {
  2257. padding-top: 90px;
  2258. margin-top: 72px;
  2259. height: 412px;
  2260. background-size: cover;
  2261. background-image: url('~assets/images/brand/event_bg.png');
  2262. background-repeat: no-repeat;
  2263. // background-position: center;
  2264. color: #fff;
  2265. .title {
  2266. font-size: 0;
  2267. text-align: center;
  2268. img {
  2269. width: 77px;
  2270. height: 29px;
  2271. }
  2272. }
  2273. .progress-bar{
  2274. width: 530px;
  2275. margin: auto;
  2276. padding-top: 110px;
  2277. .node{
  2278. width:24px ;
  2279. height: 24px;
  2280. float: left;
  2281. position: relative;
  2282. border-radius: 50%;
  2283. background:rgba(255,255,255,0.5);
  2284. cursor: pointer;
  2285. &.active {
  2286. .core{
  2287. background: #fff;
  2288. }
  2289. }
  2290. }
  2291. .txt{
  2292. position: absolute;
  2293. font-size: 16px;
  2294. top: -30px;
  2295. width: 200px;
  2296. text-align: center;
  2297. left: 50%;
  2298. margin-left: -100px;
  2299. }
  2300. .core{
  2301. width:18px;
  2302. height: 18px;
  2303. position: absolute;
  2304. top:3px;
  2305. left:3px;
  2306. border-radius: 50%;
  2307. }
  2308. .line{
  2309. float: left;
  2310. height: 2px;
  2311. background:rgba(255,255,255,0.5);
  2312. width:100px;
  2313. margin-top: 11px;
  2314. }
  2315. }
  2316. }
  2317. .d-event-content {
  2318. height: 413px;
  2319. overflow: hidden;
  2320. .mod-con {
  2321. width: 1200px;
  2322. position: relative;
  2323. margin: 0 auto;
  2324. }
  2325. .event-main {
  2326. width: 10000px;
  2327. top: 0;
  2328. left: 0;
  2329. z-index: 1;
  2330. position: absolute;
  2331. &.animate {
  2332. transition: left .5s ease 0s;
  2333. }
  2334. // left: 0;
  2335. }
  2336. .event-main-box {
  2337. width: 362px;
  2338. float: left;
  2339. margin-right: 25px;
  2340. font-size: 13px;
  2341. font-family: PingFangSC-Regular, PingFang SC;
  2342. font-weight: 400;
  2343. color: #5F6464;
  2344. line-height: 24px;
  2345. .li {
  2346. line-height: 24px;
  2347. margin-bottom: 16px;
  2348. font-size: 13px;
  2349. font-family: PingFangSC-Regular, PingFang SC;
  2350. }
  2351. .event-title {
  2352. font-size: 24px;
  2353. padding-top: 48px;
  2354. line-height: 36px;
  2355. font-family: Nunito-Black, Nunito;
  2356. font-weight: 900;
  2357. color: #2A2E2E;
  2358. padding-bottom: 13px;
  2359. border-bottom: 1px solid #D8D9DC;
  2360. margin-bottom: 15px;
  2361. }
  2362. .left {
  2363. float: left;
  2364. width: 42px;
  2365. padding-right: 10px;
  2366. text-align: right;
  2367. }
  2368. .right {
  2369. width: 300px;
  2370. float: left;
  2371. }
  2372. }
  2373. }
  2374. }
  2375. .event {
  2376. position: relative;
  2377. margin-top: 100px;
  2378. .event-box {
  2379. position: relative;
  2380. margin-top: 70px;
  2381. // width: 1297px;
  2382. // height: 1296px;
  2383. // position: absolute;
  2384. // left: 50%;
  2385. // top: 259px;
  2386. // transform: translateX(-50%);
  2387. .event-bgimg {
  2388. width: 1200px;
  2389. height: 1185px;
  2390. // position: absolute;
  2391. // left: 0;
  2392. // top: 0;
  2393. // right: 0;
  2394. // bottom: 0;
  2395. // object-fit: cover;
  2396. }
  2397. .event-box-item {
  2398. position: absolute;
  2399. // .yearImgurl {
  2400. // width: 65px;
  2401. // height: 30px;
  2402. // object-fit: cover;
  2403. // }
  2404. .yearNumber {
  2405. text-align: center;
  2406. background-color: #0D5CFA;
  2407. width: 50px;
  2408. height: 22px;
  2409. line-height: 22px;
  2410. font-size: 15px;
  2411. font-family: Nunito-Black, Nunito;
  2412. font-weight: 900;
  2413. color: #FFFFFF;
  2414. border-radius: 200px;
  2415. }
  2416. .eventImgurl {
  2417. position: absolute;
  2418. z-index: 1;
  2419. transform: translate(-50%, -50%);
  2420. }
  2421. .eventInfo {
  2422. position: absolute;
  2423. z-index: 1;
  2424. transform: translate(-50%, -50%);
  2425. width: 269px;
  2426. background-color: #0D5CFA;
  2427. color: #FFFFFF;
  2428. padding: 10px 20px 20px;
  2429. border-radius: 20px;
  2430. }
  2431. .eventItem {
  2432. .month {
  2433. font-size: 18px;
  2434. font-family: PingFangSC-Semibold, sans-serif;
  2435. font-weight: 500;
  2436. line-height: 26px;
  2437. }
  2438. .thing {
  2439. font-size: 16px;
  2440. font-family: PingFangSC-Regular, sans-serif;
  2441. line-height: 26px;
  2442. }
  2443. }
  2444. }
  2445. }
  2446. }
  2447. .kernel {
  2448. margin: 100px auto;
  2449. // height: 2000px;
  2450. position: relative;
  2451. .label {
  2452. // position: absolute;
  2453. width: 100%;
  2454. text-align: center;
  2455. .label-en {
  2456. // font-size: 78px;
  2457. // font-family: PingFangSC-Semibold, sans-serif;
  2458. // font-weight: 600;
  2459. // color: rgba(35, 106, 250, 1);
  2460. // opacity: 0.16;
  2461. }
  2462. .label-zn {
  2463. // font-size: 58px;
  2464. // font-family: PingFangSC-Semibold, sans-serif;
  2465. // font-weight: 600;
  2466. // color: rgba(38, 38, 38, 1);
  2467. // position: absolute;
  2468. // top: 45px;
  2469. // left: 32px;
  2470. position: absolute;
  2471. top: 30px;
  2472. left: 50%;
  2473. transform: translateX(-50%);
  2474. // margin-top: -65px;
  2475. }
  2476. }
  2477. .kernel-box {
  2478. // position: absolute;
  2479. // top: 300px;
  2480. // left: 50%;
  2481. // transform: translateX(-50%);
  2482. height: 604px;
  2483. display: flex;
  2484. flex-wrap: wrap;
  2485. // justify-content: space-between;
  2486. align-items: center;
  2487. position: relative;
  2488. .kernel-box-item {
  2489. position: absolute;
  2490. bottom: 0;
  2491. display: flex;
  2492. align-self: flex-end;
  2493. // align-items: flex-end;
  2494. .info {
  2495. position: absolute;
  2496. display: flex;
  2497. .name {
  2498. margin: 0 auto;
  2499. writing-mode: vertical-lr;
  2500. writing-mode: tb-lr;
  2501. font-size: 16px;
  2502. font-family: PingFangSC-Medium, PingFang SC;
  2503. font-weight: bold;
  2504. color: #253149;
  2505. line-height: 18px;
  2506. letter-spacing: 1px;
  2507. margin-right: 7px;
  2508. }
  2509. .title {
  2510. margin: 18px auto 0;
  2511. writing-mode: vertical-lr;
  2512. writing-mode: tb-lr;
  2513. font-size: 16px;
  2514. font-family: PingFangSC-Regular, PingFang SC;
  2515. font-weight: 400;
  2516. color: #7D8196;
  2517. letter-spacing: 2px;
  2518. line-height: 19px;
  2519. }
  2520. }
  2521. &.item01 {
  2522. left: 50%;
  2523. transform: translateX(-50%);
  2524. width: 375px;
  2525. z-index: 10;
  2526. .info {
  2527. left: 40px;
  2528. top: -45px;
  2529. }
  2530. }
  2531. &.item02 {
  2532. left: 69%;
  2533. transform: translateX(-50%);
  2534. width: 253px;
  2535. z-index: 8;
  2536. .info {
  2537. right: 10px;
  2538. top: -18px;
  2539. }
  2540. }
  2541. &.item03 {
  2542. left: 30%;
  2543. transform: translateX(-50%);
  2544. width: 253px;
  2545. z-index: 8;
  2546. .info {
  2547. left: -10px;
  2548. top: -18px;
  2549. }
  2550. }
  2551. &.item04 {
  2552. left: 84%;
  2553. transform: translateX(-50%);
  2554. width: 200px;
  2555. z-index: 6;
  2556. .info {
  2557. right: -25px;
  2558. top: 5px;
  2559. }
  2560. }
  2561. &.item05 {
  2562. left: 14%;
  2563. transform: translateX(-50%);
  2564. width: 200px;
  2565. z-index: 6;
  2566. .info {
  2567. left: -25px;
  2568. top: 5px;
  2569. }
  2570. }
  2571. img {
  2572. width: 100%;
  2573. }
  2574. // .kernel-box-item {
  2575. // width: 100%;
  2576. // bottom: 0;
  2577. // position: absolute;
  2578. // }
  2579. .team03, .team05{
  2580. transform: rotateY(180deg); /* 水平镜像翻转 */
  2581. }
  2582. .top {
  2583. width: 373px;
  2584. height: 466px;
  2585. position: relative;
  2586. z-index: 66;
  2587. .people-img {
  2588. width: 373px;
  2589. height: 466px;
  2590. display: block;
  2591. }
  2592. .overlay-img {
  2593. width: 373px;
  2594. height: 466px;
  2595. position: absolute;
  2596. top: 0;
  2597. left: 0;
  2598. z-index: 1;
  2599. }
  2600. .people-intro {
  2601. position: absolute;
  2602. bottom: 12px;
  2603. left: 37px;
  2604. z-index: 66;
  2605. .name {
  2606. font-size: 45px;
  2607. font-family: PingFangSC-Semibold, sans-serif;
  2608. font-weight: 600;
  2609. color: rgba(255, 255, 255, 1);
  2610. letter-spacing: 1px;
  2611. }
  2612. .position {
  2613. font-size: 20px;
  2614. font-family: PingFangSC-Regular, sans-serif;
  2615. font-weight: 400;
  2616. color: rgba(255, 255, 255, 1);
  2617. letter-spacing: 0.5px;
  2618. }
  2619. }
  2620. .intro {
  2621. display: none;
  2622. position: absolute;
  2623. z-index: 66;
  2624. bottom: 160px;
  2625. left: 37px;
  2626. font-family: PingFangSC-Regular, sans-serif;
  2627. font-weight: 400;
  2628. color: rgba(255, 255, 255, 1);
  2629. .intro-label {
  2630. font-size: 16px;
  2631. margin-bottom: 12px;
  2632. }
  2633. .resume {
  2634. width: 280px;
  2635. font-size: 14px;
  2636. font-family: PingFangSC-Regular, sans-serif;
  2637. font-weight: 400;
  2638. color: #FFFFFF;
  2639. line-height: 28px;
  2640. }
  2641. }
  2642. }
  2643. .bottom {
  2644. width: 373px;
  2645. height: 8px;
  2646. background-color: #83abf9;
  2647. }
  2648. .mask {
  2649. display: none;
  2650. position: absolute;
  2651. border-radius: 10px;
  2652. top: 0;
  2653. bottom: 0;
  2654. left: 0;
  2655. right: 0;
  2656. transition: all .5s;
  2657. -webkit-transition: all .5s;
  2658. }
  2659. }
  2660. }
  2661. }
  2662. .cultrue {
  2663. position: relative;
  2664. overflow: hidden;
  2665. padding: 100px 0;
  2666. background: url('~assets/images/brand/cultrueBg.png');
  2667. background-color: #0D5CFA;
  2668. background-size: cover;
  2669. .title-content {
  2670. .title {
  2671. color: #ffffff;
  2672. }
  2673. .title-sub {
  2674. color: #ffffff;
  2675. }
  2676. }
  2677. .label {
  2678. position: absolute;
  2679. width: 100%;
  2680. // left: 778px;
  2681. .label-en {
  2682. // font-size: 78px;
  2683. // font-family: PingFangSC-Semibold, sans-serif;
  2684. // font-weight: 600;
  2685. // color: rgba(35, 106, 250, 1);
  2686. // opacity: 0.16;
  2687. position: absolute;
  2688. left: 50%;
  2689. transform: translateX(-50%);
  2690. }
  2691. .label-zn {
  2692. // font-size: 58px;
  2693. // font-family: PingFangSC-Semibold, sans-serif;
  2694. // font-weight: 600;
  2695. // color: rgba(38, 38, 38, 1);
  2696. position: absolute;
  2697. top: 30px;
  2698. left: 50%;
  2699. transform: translateX(-50%);
  2700. }
  2701. }
  2702. .cultrue-box {
  2703. margin-top: 96px;
  2704. display: flex;
  2705. padding: 0 50px;
  2706. justify-content: space-between;
  2707. // justify-content: center;
  2708. .cultrue-box-item {
  2709. // margin-right: 151px;
  2710. color: #ffffff;
  2711. img {
  2712. width: 170px;
  2713. height: 159px;
  2714. }
  2715. .cultrue-box-item-label {
  2716. font-size: 30px;
  2717. font-family: PingFangSC-Regular, sans-serif;
  2718. font-weight: 400;
  2719. text-align: center;
  2720. }
  2721. .cultrue-box-item-text {
  2722. // width: 178px;
  2723. text-align: center;
  2724. font-size: 15px;
  2725. font-family: PingFangSC-Regular, sans-serif;
  2726. font-weight: 400;
  2727. letter-spacing: 0.5px;
  2728. margin-top: 30px;
  2729. }
  2730. }
  2731. }
  2732. .cultrue-bgimg {
  2733. position: absolute;
  2734. z-index: -1;
  2735. right: 226px;
  2736. bottom: 155px;
  2737. img {
  2738. width: 627px;
  2739. height: 499px;
  2740. }
  2741. }
  2742. }
  2743. .idea {
  2744. position: relative;
  2745. margin: 100px 0;
  2746. .label {
  2747. position: absolute;
  2748. left: 50%;
  2749. transform: translateX(-50%);
  2750. width: 540px;
  2751. .label-en {
  2752. // font-size: 78px;
  2753. // font-family: PingFangSC-Semibold, sans-serif;
  2754. // font-weight: 600;
  2755. // color: rgba(35, 106, 250, 1);
  2756. // opacity: 0.16;
  2757. // position: absolute;
  2758. }
  2759. .label-zn {
  2760. // font-size: 58px;
  2761. // font-family: PingFangSC-Semibold, sans-serif;
  2762. // font-weight: 600;
  2763. // color: rgba(38, 38, 38, 1);
  2764. position: absolute;
  2765. top: 30px;
  2766. left: 100px;
  2767. // transform: translateX(-50%);
  2768. }
  2769. }
  2770. .idea-box {
  2771. display: flex;
  2772. justify-content: center;
  2773. .idea-box-item {
  2774. width: 385px;
  2775. height: 300px;
  2776. background: #FFFFFF;
  2777. box-shadow: 7px 10px 46px 0px rgba(207, 222, 254, 0.49);
  2778. border-radius: 30px;
  2779. margin-top: 67px;
  2780. margin-right: 40px;
  2781. padding: 22px 63px 51px 36px;
  2782. box-sizing: border-box;
  2783. .top {
  2784. img {
  2785. width: 64px;
  2786. height: 64px;
  2787. object-fit: cover;
  2788. }
  2789. }
  2790. .center {
  2791. margin-top: 20px;
  2792. display: flex;
  2793. align-items: center;
  2794. img {
  2795. width: 20px;
  2796. height: 19px;
  2797. margin-right: 18px;
  2798. object-fit: fill;
  2799. }
  2800. div {
  2801. font-size: 20px;
  2802. font-family: PingFangSC-Medium, sans-serif;
  2803. font-weight: 500;
  2804. color: rgba(0, 0, 0, 1);
  2805. }
  2806. }
  2807. .footer {
  2808. font-size: 15px;
  2809. font-family: PingFangSC-Regular, sans-serif;
  2810. font-weight: 400;
  2811. color: #333333;
  2812. line-height: 26px;
  2813. margin-top: 10px;
  2814. padding-left: 32px
  2815. }
  2816. }
  2817. }
  2818. }
  2819. }
  2820. .cp {
  2821. cursor: pointer;
  2822. }
  2823. </style>