index.vue 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654
  1. <template>
  2. <div class="container">
  3. <!-- banner -->
  4. <VBanner :bannerData="bannerData"></VBanner>
  5. <!-- 数据展示 -->
  6. <!-- <div class="index-show">
  7. <div class="i-show-content w1200">
  8. <ul class="list">
  9. <li class="con-item one">
  10. <div class="con-box">
  11. <div class="con">
  12. <div class="num">
  13. <countTo :startVal='0' :endVal='420' :duration='4000'></countTo>
  14. <span class="unit">个</span>
  15. </div>
  16. <p class="desc-01">学员覆盖城市地区</p>
  17. <p class="desc-02">让中国的孩子幸福成长</p>
  18. </div>
  19. </div>
  20. </li>
  21. <li class="con-item two">
  22. <div class="con-box">
  23. <div class="con">
  24. <div class="num">
  25. <countTo :startVal='795000' :endVal='800000' :duration='4000'></countTo>
  26. <span class="unit">+</span>
  27. </div>
  28. <p class="desc-01">累计服务学员</p>
  29. <p class="desc-02">服务中国母亲,关爱儿童成长</p>
  30. </div>
  31. </div>
  32. </li>
  33. <li class="con-item three">
  34. <div class="con-box">
  35. <div class="con">
  36. <div class="num">
  37. <countTo :startVal='0' :endVal='98.6' :decimals='1' :duration='4000'></countTo>
  38. <span class="unit">%</span>
  39. </div>
  40. <p class="desc-01">评价好评率</p>
  41. <p class="desc-02">全球儿童思维教育专家</p>
  42. </div>
  43. </div>
  44. </li>
  45. </ul>
  46. </div>
  47. </div> -->
  48. <!-- 创始人 -->
  49. <div class="index-founder">
  50. <div class="index-founder-content w1200">
  51. <div class="found-left">
  52. <p class="title founder-item">给孩子一颗强大起来的“思维芯” </p>
  53. <!-- <p class="sub-title"> ——创始人&CEO 张洁 </p> -->
  54. <!-- <p class="desc founder-item">中德智慧教育结合国际化视角和现代教育理念,以“培养成长型思维模式、具有全球胜任力的未来人才”为育人目标,创研全球同频、深受世界幼儿喜爱的<strong>“逻辑狗” </strong>幼儿思维游戏化教育体系,构建以<strong> 思维“芯” </strong>为宗旨的0-12岁儿童游戏化思维教育内容,通过国际思维教育<strong>「五大领域」</strong>,全面提升<strong>「十大核心能力」</strong>。</p> -->
  55. <div class="btn founder-item">
  56. <nuxt-link to="/about/brand">了解中德智慧</nuxt-link>
  57. </div>
  58. </div>
  59. <div class="found-right">
  60. <img :src="bossImg" alt="" srcset="">
  61. </div>
  62. </div>
  63. </div>
  64. <!-- 专家名师 -->
  65. <div class="index-expert">
  66. <div class="i-expert-content">
  67. <title-content :title="'全球教育专家'" :titleSub="'Global Education Expert'"></title-content>
  68. <div class="e-content-box">
  69. <div class="w-innner">
  70. <div id="certify">
  71. <div
  72. class="swiper-container"
  73. v-swiper:expertSwiper="expertSwiperOption"
  74. ref="swiperExpertBox">
  75. <div class="swiper-wrapper">
  76. <div class="swiper-slide" v-for="(item, index) in expertList" :key="index">
  77. <img :src="item.imgUrl"/>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="swiper-pagination" slot="pagination"></div>
  82. </div>
  83. </div>
  84. </div>
  85. <div class="more-btn">
  86. <nuxt-link to="/about/team">更多名师</nuxt-link>
  87. </div>
  88. </div>
  89. </div>
  90. <!-- 思维教育 -->
  91. <div class="index-education bgF8">
  92. <div class="i-e-content">
  93. <title-content :title="'“思维芯”教育体系'" :titleSub="'“THINKING CORE” EDUCATION SYSTEM'"></title-content>
  94. <div class="content-box education-content-box">
  95. <img :src="eduImg" alt="" srcset="">
  96. </div>
  97. </div>
  98. </div>
  99. <!-- 思维“芯”产品 -->
  100. <div class="index-thinking">
  101. <div class="i-t-content">
  102. <title-content :title="'“思维芯”产品'" :titleSub="'“THINKING CORE” PRODUCT'"></title-content>
  103. <div class="content-box thinking-content-box">
  104. <div class="t-conent-tabs">
  105. <ul class="tab-list">
  106. <li
  107. :class="[`tab-item cp tab-item-${index + 1}`, currentTabId == item.id ? 'tab-active' : '']"
  108. @mouseenter="tabEnter(item)"
  109. @mouseleave="tabLeave(item)"
  110. v-for="(item, index) in productCate" :key="index">
  111. {{ item.label }}
  112. </li>
  113. </ul>
  114. </div>
  115. <div class="t-conent-box">
  116. <div
  117. v-for="(item, index) in productCate"
  118. @click="navPage(item.path)"
  119. :style="{ backgroundImage: `url('${item.imgUrl}')` }"
  120. :key="index"
  121. :class="['t-conent-bg', currentTabId == item.id ? 'active' : '']">
  122. </div>
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. <!-- 学习场景 -->
  128. <div class="index-channel">
  129. <div class="i-c-content">
  130. <h2 class="title">学习场景 陪伴成长</h2>
  131. <div class="title-sub">LEARNING SCENE TO ACCOMPANY GROWTH</div>
  132. </div>
  133. <div class="channel-content-box w1200">
  134. <div class="channel-tabs">
  135. <div :class="['tab-item', currentChannel == index ? 'active' : '']" v-for="(item, index) in channelList"
  136. :key="index" @click="handleChannel(item, index)">{{ item.title }}
  137. </div>
  138. </div>
  139. <template v-for="(item, index) in channelList">
  140. <div class="channel-content" v-if="currentChannel == index" :key="index">
  141. <div class="left cp" @click="navPage('/merchants')">
  142. <img :src="item.itemList[currentTabImg].imgUrl" alt="" srcset="">
  143. </div>
  144. <div class="right">
  145. <div :class="['right-img', currentTabImg == index ? 'active' : '']" @mouseenter="channelEnter(ele,index)"
  146. @mouseleave="channelLeave(ele,index)" v-for="(ele, index) in item.itemList" :key="index">
  147. <img :src="ele.imgUrl" alt="" srcset="">
  148. <div class="title">{{ ele.title }}</div>
  149. </div>
  150. </div>
  151. </div>
  152. </template>
  153. </div>
  154. <!-- <div class="product-content-box">
  155. <div
  156. class="swiper swiperBox"
  157. v-swiper:swiper="swiperOption"
  158. ref="swiperBox"
  159. :cleanup-styles-on-destroy="false"
  160. @ready="onSwiperRedied"
  161. @mouseenter="stopSwiper"
  162. @mouseleave="startSwiper">
  163. <div class="swiper-wrapper">
  164. <div v-for="(item, index) in productImage" :key="index" class="swiper-slide">
  165. <img :src="item.imgUrl">
  166. <p class="name">{{ item.title }}</p>
  167. </div>
  168. </div>
  169. </div>
  170. <div class="swiper-button-prev" slot="button-prev" @click="prev"></div>
  171. <div class="swiper-button-next" slot="button-next" @click="next"></div>
  172. </div> -->
  173. </div>
  174. <!-- 思维探索OMO -->
  175. <div class="index-omo">
  176. <div class="i-o-content">
  177. <title-content :title="'思维探索OMO'" :titleSub="'Thinking exploration OMO'"></title-content>
  178. <div class="content-box omo-content-box w1200">
  179. <div class="omo-tab">
  180. <div :class="['omo-item', currentOMOTabIndex == index ? 'active' : '']" @mouseenter="omoEnter(index)"
  181. v-for="(item, index) in omoList" :key="index">
  182. <div class="title">
  183. <img :src="item.iconImg" alt="" srcset="">
  184. {{ item.title }}
  185. </div>
  186. <div class="desc">
  187. {{ item.desc }}
  188. </div>
  189. </div>
  190. </div>
  191. <div class="omo-content">
  192. <div
  193. :class="['omo-con', 'omo-con' + item.id]"
  194. v-for="(item, index) in omoList"
  195. @click="navPage('/product/course')"
  196. :style="{display: currentOMOTabIndex == index ? 'block' : 'none', backgroundImage: `url('${item.imgUrl}')` }"
  197. :key="index">
  198. </div>
  199. </div>
  200. </div>
  201. </div>
  202. </div>
  203. <!-- 逻辑狗优秀学员 Excellent student of Logic Dog -->
  204. <div class="index-student">
  205. <div class="i-t-content">
  206. <title-content :title="'逻辑狗宝贝成长故事'" :titleSub="'Excellent student of Logic Dog'"></title-content>
  207. </div>
  208. <div class="student-content-box w1200">
  209. <div
  210. class="swiper swiperBox"
  211. v-swiper:swiper="studentOption"
  212. ref="swiperBox"
  213. :cleanup-styles-on-destroy="false"
  214. @ready="onSwiperRedied"
  215. @mouseenter="stopSwiper"
  216. @mouseleave="startSwiper">
  217. <div class="swiper-wrapper">
  218. <div v-for="(item, index) in studentList" :key="index" class="swiper-slide">
  219. <div class="avatar"><img :src="item.avatarUrl" alt="" srcset=""></div>
  220. <div class="title">{{ item.title }}</div>
  221. <div class="info">
  222. <span class="name info-item">{{ item.name }}</span>
  223. <div class="line"></div>
  224. <span class="activename info-item">{{ item.activeName }}</span>
  225. </div>
  226. <div class="desc">{{ item.desc }}</div>
  227. </div>
  228. </div>
  229. </div>
  230. <!-- <div class="student-pagination" slot="pagination"></div> -->
  231. </div>
  232. </div>
  233. <!-- 网校课程 -->
  234. <!-- <div class="index-course">
  235. <div class="i-c-content">
  236. <div class="c-top title-content wow animate__animated animate__fadeInDown">
  237. <div class="title-zh">
  238. <div class="title-en">MCOURSE</div>
  239. 网校课程
  240. </div>
  241. </div>
  242. <div class="content-box course-content-box">
  243. <div class="cate-box tabs course-cate-box">
  244. <ul class="cate-nav tab-box course-cate-nav">
  245. <li
  246. class="products-kind thinking-products-kind"
  247. v-for="(item, index) in courseCate"
  248. :class="{active:index == currentCourseType}"
  249. :key="index"
  250. @click="handleCourse(item)"
  251. >
  252. <nuxt-link to="/">{{ item.title }}</nuxt-link>
  253. </li>
  254. </ul>
  255. <div class="bottom-line">
  256. <div class="bottom-line-img">
  257. <div :style="lineCourseStyle" class="line-img-box"></div>
  258. </div>
  259. </div>
  260. <div class="cate-list course-cate-list">
  261. <div
  262. class="product-item course-product-item"
  263. v-for="(item, index) in courseList"
  264. :key="index"
  265. >
  266. <div class="product-item-img course-product-item-img">
  267. <a :href="item.linkUrl" target="_blank" rel="noopener noreferrer">
  268. <img :src="item.imgUrl" alt="" srcset="">
  269. </a>
  270. <div class="course-product-item-play">
  271. <a :href="item.linkUrl" target="_blank" rel="noopener noreferrer">
  272. <img src="~/assets/images/index/player.png" alt="" srcset="">
  273. </a>
  274. </div>
  275. </div>
  276. <div class="course-product-info">
  277. <div class="course-product-title">
  278. <a :href="item.linkUrl" target="_blank" rel="noopener noreferrer">
  279. {{ item.title }}
  280. </a>
  281. </div>
  282. <div class="course-product-content">
  283. <div class="course-product-price" v-if="item.price">
  284. <span class="price-num">{{ item.price }}</span>
  285. </div>
  286. <div class="course-product-price course-product-price-text" v-else>
  287. 免费
  288. </div>
  289. <div class="course-product-user">
  290. <img src="~/assets/images/index/product_person.png" alt="" srcset="">
  291. <div class="views">{{item.view}}</div>
  292. </div>
  293. </div>
  294. </div>
  295. </div>
  296. </div>
  297. </div>
  298. </div>
  299. <div class="more-btn wow animate__animated animate__zoomIn" @click="courseMore">更多课程</div>
  300. </div>
  301. </div> -->
  302. <!-- 多渠道教学场景 -->
  303. <!-- <div class="index-scenes">
  304. <div class="i-s-content">
  305. <div class="title-content wow animate__animated animate__fadeInDown">
  306. <div class="title-zh">
  307. <div class="title-en">TRENCH</div>
  308. 多渠道教学场景
  309. </div>
  310. </div>
  311. </div>
  312. <div class="scenes-content-box">
  313. <ul class="panorama-education-list">
  314. <li class="mobile-education mobile-education-1" @mouseenter="mobileEnter">
  315. <div class="small-education-div">
  316. <div class="mobile-small-img">
  317. <img src="~/assets/images/index/teach_01_icon_nor.png" alt="" srcset="">
  318. </div>
  319. <p class="mobile-education-title">逻辑狗APP</p>
  320. <p class="mobile-education-sub">逻辑狗,与千万</p>
  321. <p class="mobile-education-sub">逻辑狗宝贝一起成长</p>
  322. <div class="mobile-education-img">
  323. <img src="~/assets/images/index/teach_01.png">
  324. </div>
  325. </div>
  326. <div class="big-mobile-education">
  327. <div class="pc-education-top">
  328. <div class="pc-education-top-content">
  329. <div class="pc-small-img">
  330. <img src="~/assets/images/index/teach_01_icon_active.png" alt="" srcset="">
  331. </div>
  332. <div class="education-title-box">
  333. <p class="education-title">逻辑狗APP</p>
  334. <p class="education-sub-title">逻辑狗,与千万逻辑狗宝贝一起成长</p>
  335. </div>
  336. </div>
  337. <div class="education-gzh">
  338. <img src="~/assets/images/index/teach_account_01.png" alt="">
  339. </div>
  340. </div>
  341. <div class="education-img">
  342. <img src="~/assets/images/index/teach_01.png">
  343. </div>
  344. </div>
  345. </li>
  346. <li class="mobile-education mobile-education-2" @mouseenter="mobileEnter">
  347. <div class="small-education-div">
  348. <div class="mobile-small-img">
  349. <img src="~/assets/images/index/teach_02_icon_nor.png" alt="" srcset="">
  350. </div>
  351. <p class="mobile-education-title">逻辑狗家长端APP</p>
  352. <p class="mobile-education-sub">随时了解宝宝</p>
  353. <p class="mobile-education-sub">的状态</p>
  354. <div class="mobile-education-img">
  355. <img src="~/assets/images/index/teach_02.png">
  356. </div>
  357. </div>
  358. <div class="big-mobile-education">
  359. <div class="pc-education-top">
  360. <div class="pc-education-top-content">
  361. <div class="pc-small-img">
  362. <img src="~/assets/images/index/teach_02_icon_active.png" alt="" srcset="">
  363. </div>
  364. <div class="education-title-box">
  365. <p class="education-title">逻辑狗家长端APP</p>
  366. <p class="education-sub-title">随时了解宝宝的状态</p>
  367. </div>
  368. </div>
  369. <div class="education-gzh">
  370. <img src="~/assets/images/index/teach_account_02.png" alt="">
  371. </div>
  372. </div>
  373. <div class="education-img">
  374. <img src="~/assets/images/index/teach_02.png">
  375. </div>
  376. </div>
  377. </li>
  378. <li class="mobile-education mobile-education-3" @mouseenter="mobileEnter">
  379. <div class="small-education-div">
  380. <div class="mobile-small-img">
  381. <img src="~/assets/images/index/teach_03_icon_nor.png" alt="" srcset="">
  382. </div>
  383. <p class="mobile-education-title">逻辑狗园所端APP</p>
  384. <p class="mobile-education-sub">实现园所互通</p>
  385. <p class="mobile-education-sub"></p>
  386. <div class="mobile-education-img">
  387. <img src="~/assets/images/index/teach_03.png">
  388. </div>
  389. </div>
  390. <div class="big-mobile-education">
  391. <div class="pc-education-top">
  392. <div class="pc-education-top-content">
  393. <div class="pc-small-img">
  394. <img src="~/assets/images/index/teach_03_icon_active.png" alt="" srcset="">
  395. </div>
  396. <div class="education-title-box">
  397. <p class="education-title">逻辑狗园所端APP</p>
  398. <p class="education-sub-title">实现园所互通</p>
  399. </div>
  400. </div>
  401. <div class="education-gzh">
  402. <img src="~/assets/images/index/teach_account_03.png" alt="">
  403. </div>
  404. </div>
  405. <div class="education-img">
  406. <img src="~/assets/images/index/teach_03.png">
  407. </div>
  408. </div>
  409. </li>
  410. <li class="mobile-education mobile-education-4" @mouseenter="mobileEnter">
  411. <div class="small-education-div">
  412. <div class="mobile-small-img">
  413. <img src="~/assets/images/index/teach_04_icon_nor.png" alt="" srcset="">
  414. </div>
  415. <p class="mobile-education-title">微信H5</p>
  416. <p class="mobile-education-title">逻辑狗官方商城</p>
  417. <p class="mobile-education-title">逻辑狗家长训练营</p>
  418. <div class="mobile-education-img">
  419. <img src="~/assets/images/index/teach_04.png">
  420. </div>
  421. </div>
  422. <div class="big-mobile-education">
  423. <div class="pc-education-top">
  424. <div class="pc-education-top-content">
  425. <div class="pc-small-img">
  426. <img src="~/assets/images/index/teach_04_icon_active.png" alt="" srcset="">
  427. </div>
  428. <div class="education-title-box">
  429. <p class="education-title">微信H5</p>
  430. <p class="education-sub-title">逻辑狗官方商城</p>
  431. <p class="education-sub-title">逻辑狗家长训练营</p>
  432. </div>
  433. </div>
  434. <div class="education-gzh">
  435. <img src="~/assets/images/index/teach_account_04.png" alt="">
  436. </div>
  437. </div>
  438. <div class="education-img">
  439. <img src="~/assets/images/index/teach_04.png">
  440. </div>
  441. </div>
  442. </li>
  443. <li class="mobile-education mobile-education-5" @mouseenter="mobileEnter">
  444. <div class="small-education-div">
  445. <div class="mobile-small-img">
  446. <img src="~/assets/images/index/teach_05_icon_nor.png" alt="" srcset="">
  447. </div>
  448. <p class="mobile-education-title">微信小程序</p>
  449. <p class="mobile-education-title">中德智慧网校</p>
  450. <p class="mobile-education-sub"></p>
  451. <div class="mobile-education-img">
  452. <img src="~/assets/images/index/teach_05.png">
  453. </div>
  454. </div>
  455. <div class="big-mobile-education">
  456. <div class="pc-education-top">
  457. <div class="pc-education-top-content">
  458. <div class="pc-small-img">
  459. <img src="~/assets/images/index/teach_05_icon_active.png" alt="" srcset="">
  460. </div>
  461. <div class="education-title-box">
  462. <p class="education-title">微信小程序</p>
  463. <p class="education-sub-title">中德智慧网校</p>
  464. </div>
  465. </div>
  466. <div class="education-gzh">
  467. <img src="~/assets/images/index/teach_account_05.png" alt="">
  468. </div>
  469. </div>
  470. <div class="education-img">
  471. <img src="~/assets/images/index/teach_05.png">
  472. </div>
  473. </div>
  474. </li>
  475. </ul>
  476. </div>
  477. </div> -->
  478. <!-- 逻辑狗探索小镇 -->
  479. <!-- <div class="index-town">
  480. <div class="i-town-content w1200">
  481. <div class="t-top title-content">
  482. <div class="title-zh wow animate__animated animate__fadeInDown">
  483. <div class="title-en">SMALL TOWN</div>
  484. 逻辑狗探索小镇
  485. </div>
  486. <p class="title-sub">专注3.4-12岁儿童优质思维能力养成的场景式,游戏化体验中心</p>
  487. </div>
  488. <div class="town-content-box">
  489. <div class="town-btn-group">
  490. <div class="town-btn-about">
  491. <nuxt-link to="/about/brand">
  492. 了解我们
  493. </nuxt-link>
  494. </div>
  495. <div class="town-btn-join">
  496. <nuxt-link to="/cooperate">
  497. 加入我们
  498. </nuxt-link>
  499. </div>
  500. </div>
  501. <div class="town-content-skill">
  502. <div class="town-content-img">
  503. <img src="~/assets/images/index/town_img.png" alt="" srcset="~/assets/images/index/town_img.png 1x, ~/assets/images/index/town_img@2x.png 2x">
  504. <div class="skill-item skill-item-01">
  505. <img src="~/assets/images/index/icon_town_01.png" alt="" srcset="~/assets/images/index/icon_town_01.png 1x, ~/assets/images/index/icon_town_01@2x.png 2x">
  506. <p>知识迁移</p>
  507. </div>
  508. <div class="skill-item skill-item-02">
  509. <img src="~/assets/images/index/icon_town_02.png" alt="" srcset="~/assets/images/index/icon_town_02.png 1x, ~/assets/images/index/icon_town_02@2x.png 2x">
  510. <p class="big-font">观察能力</p>
  511. </div>
  512. <div class="skill-item skill-item-03">
  513. <img src="~/assets/images/index/icon_town_03.png" alt="" srcset="~/assets/images/index/icon_town_03.png 1x, ~/assets/images/index/icon_town_03@2x.png 2x">
  514. <p>手眼协调</p>
  515. </div>
  516. <div class="skill-item skill-item-04">
  517. <img src="~/assets/images/index/icon_town_04.png" alt="" srcset="~/assets/images/index/icon_town_04.png 1x, ~/assets/images/index/icon_town_04@2x.png 2x">
  518. <p class="big-font">语言能力</p>
  519. </div>
  520. <div class="skill-item skill-item-05">
  521. <img src="~/assets/images/index/icon_town_05.png" alt="" srcset="~/assets/images/index/icon_town_05.png 1x, ~/assets/images/index/icon_town_05@2x.png 2x">
  522. <p class="big-font">想象能力</p>
  523. </div>
  524. <div class="skill-item skill-item-06">
  525. <img src="~/assets/images/index/icon_town_06.png" alt="" srcset="~/assets/images/index/icon_town_06.png 1x, ~/assets/images/index/icon_town_06@2x.png 2x">
  526. <p>分类能力</p>
  527. </div>
  528. <div class="skill-item skill-item-07">
  529. <img src="~/assets/images/index/icon_town_07.png" alt="" srcset="~/assets/images/index/icon_town_07.png 1x, ~/assets/images/index/icon_town_07@2x.png 2x">
  530. <p>推理能力</p>
  531. </div>
  532. <div class="skill-item skill-item-08">
  533. <img src="~/assets/images/index/icon_town_08.png" alt="" srcset="~/assets/images/index/icon_town_08.png 1x, ~/assets/images/index/icon_town_08@2x.png 2x">
  534. <p class="big-font">空间能力</p>
  535. </div>
  536. <div class="skill-item skill-item-09">
  537. <img src="~/assets/images/index/icon_town_09.png" alt="" srcset="~/assets/images/index/icon_town_09.png 1x, ~/assets/images/index/icon_town_09@2x.png 2x">
  538. <p class="big-font">专注能力</p>
  539. </div>
  540. <div class="skill-item skill-item-10">
  541. <img src="~/assets/images/index/icon_town_10.png" alt="" srcset="~/assets/images/index/icon_town_10.png 1x, ~/assets/images/index/icon_town_10@2x.png 2x">
  542. <p>数学能力</p>
  543. </div>
  544. </div>
  545. </div>
  546. </div>
  547. </div>
  548. <div class="town_bottom_bg">
  549. <img src="~/assets/images/index/town_bottom.png" alt="" srcset="">
  550. </div>
  551. </div> -->
  552. <!-- 新闻资讯 -->
  553. <!-- <div class="index-article">
  554. <div class="i-article-content w1200">
  555. <div class="a-top title-content wow animate__animated animate__fadeInDown">
  556. <div class="title-zh">
  557. <div class="title-en">NEWS</div>
  558. 新闻资讯
  559. </div>
  560. </div>
  561. <div class="article-content-box">
  562. <div class="article-content-top">
  563. <div class="article-content-top-left">
  564. <div class="article-type-header">
  565. <div class="article-type-title">{{ $store.state.newsNav[0].type }}</div>
  566. <div>
  567. <nuxt-link :to="{name: 'news', query: {cateId: $store.state.newsNav[0].id}}">
  568. <i class="el-icon-arrow-right"></i>
  569. </nuxt-link>
  570. </div>
  571. </div>
  572. <div class="article-content-info" v-if="articleList1 && articleList1.length > 0">
  573. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: articleList1[0].id }, query: { cateId: articleList1[0].typeId } }">
  574. <img :src="articleList1[0].articleImg" alt="" srcset="">
  575. </nuxt-link>
  576. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: articleList1[0].id }, query: { cateId: articleList1[0].typeId } }">
  577. <p class="info-title">{{ articleList1[0].articleTitle }}</p>
  578. </nuxt-link>
  579. </div>
  580. <div class="article-content-info" v-else>
  581. <a href="javascript:void(0)">
  582. <p>暂无数据</p>
  583. </a>
  584. </div>
  585. </div>
  586. <div class="article-content-top-right">
  587. <div class="article-type-header">
  588. <div class="article-type-title">{{ $store.state.newsNav[1].type }}</div>
  589. <div>
  590. <nuxt-link :to="{name: 'news', query: {cateId: $store.state.newsNav[1].id}}">
  591. <i class="el-icon-arrow-right"></i>
  592. </nuxt-link>
  593. </div>
  594. </div>
  595. <div class="article-content-info" v-if="articleList2 && articleList2.length > 0">
  596. <template v-for="(item, index) in articleList2">
  597. <div v-if="index < 4" class="article-item-right" :key="index">
  598. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: item.id }, query: { cateId: item.typeId } }">
  599. <img :src="item.articleImg" alt="">
  600. </nuxt-link>
  601. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: item.id }, query: { cateId: item.typeId } }">
  602. <p>{{ item.articleTitle }}</p>
  603. </nuxt-link>
  604. </div>
  605. </template>
  606. </div>
  607. <div class="article-content-info" v-else>
  608. <a href="javascript:void(0)">
  609. <p>暂无数据</p>
  610. </a>
  611. </div>
  612. </div>
  613. </div>
  614. <div class="article-content-bottom">
  615. <div class="article-type-header">
  616. <div class="article-type-title">{{ $store.state.newsNav[2].type }}</div>
  617. <div>
  618. <nuxt-link :to="{name: 'news', query: {cateId: $store.state.newsNav[2].id}}">
  619. <i class="el-icon-arrow-right"></i>
  620. </nuxt-link>
  621. </div>
  622. </div>
  623. <div class="article-content-bottom-info" v-if="articleList3 && articleList3.length > 0">
  624. <div class="article-content-bottom-left">
  625. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: articleList3[0].id }, query: { cateId: articleList3[0].typeId } }">
  626. <img :src="articleList3[0].articleImg" alt="">
  627. </nuxt-link>
  628. </div>
  629. <div class="article-content-bottom-right">
  630. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: articleList3[0].id }, query: { cateId: articleList3[0].typeId } }">
  631. <p class="title">{{ articleList3[0].articleTitle }}</p>
  632. </nuxt-link>
  633. <nuxt-link :to="{ name: 'news-newsView-id', params: { id: articleList3[0].id }, query: { cateId: articleList3[0].typeId } }">
  634. <p class="desc">{{ articleList3[0].articleIntroduction }}</p>
  635. </nuxt-link>
  636. <p class="time">{{ articleList3[0].createTime }}</p>
  637. </div>
  638. </div>
  639. <div class="article-content-bottom-info">
  640. <p class="desc">暂无数据</p>
  641. </div>
  642. </div>
  643. </div>
  644. </div>
  645. </div> -->
  646. <!-- 企业荣誉 -->
  647. <div class="index-honor">
  648. <div class="i-honor-content w1200">
  649. <title-content :title="'企业荣誉'" :titleSub="'ENTERPRISE HONOR'"></title-content>
  650. <div class="honer-content-box">
  651. <div
  652. class="swiper swiperBox"
  653. v-swiper:honorSwiper="honorSwiperOption"
  654. ref="swiperHonorBox"
  655. @mouseenter="stopSwiper"
  656. @mouseleave="startSwiper">
  657. <div class="swiper-wrapper">
  658. <div v-for="(item, index) in honorList" :key="index" class="swiper-slide">
  659. <div class="img-wrap"><img class="honer-img" :src="item.imgUrl"></div>
  660. <div class="info">{{ item.title }}</div>
  661. </div>
  662. </div>
  663. </div>
  664. <div class="honer-swiper-button honer-swiper-button-prev" slot="button-prev" @click="prevHoner">
  665. <div class="el-icon-arrow-left"></div>
  666. </div>
  667. <div class="honer-swiper-button honer-swiper-button-next" slot="button-next" @click="nextHoner">
  668. <div class="el-icon-arrow-right"></div>
  669. </div>
  670. </div>
  671. </div>
  672. </div>
  673. </div>
  674. </template>
  675. <script>
  676. // import countTo from 'vue-count-to';
  677. import axios from "axios";
  678. import VBanner from "~/components/home/banner";
  679. import ProdList from "~/components/products/prodList";
  680. import TitleContent from '@/components/common/titleContent';
  681. // import indexVideo from '~/components/home/indexVideo';
  682. // import prodListShow from '~/components/common/prodListShow';
  683. // import indexNewsListShow from '~/components/common/indexNewsListShow'
  684. export default {
  685. data() {
  686. return {
  687. bannerData: [
  688. // {
  689. // bannerId: "1",
  690. // href: "http://zaojiao.net",
  691. // // bannerSrc: "https://app-resources-luojigou.luojigou.vip/img1.acbb14a.jpg?imageView2/0/q/40|imageslim",
  692. // bannerSrc: "https://app-resources-luojigou.luojigou.vip/FmzrfkdGNl2nBACpLYpZkK8_-0dJ?imageView2/0/q/40|imageslim",
  693. // // bannerSrc: require('~/assets/images/index/img1.jpg'),
  694. // bannerAlt: "中德智慧",
  695. // },
  696. {
  697. bannerId: "2",
  698. href: "http://zaojiao.net",
  699. // bannerSrc: "https://app-resources-luojigou.luojigou.vip/FvEcNZv8Xs_Js8OltKnADxLKVfCS?imageView2/0/q/40|imageslim",
  700. bannerSrc: "http://res-teacher.luojigou.vip/1512332236274425858banner备份 2.png",
  701. bannerAlt: "中德智慧",
  702. },
  703. ],
  704. num: 0,
  705. clickProdIndex: 0,
  706. clickNewsIndex: 0,
  707. currentTabId: 0,
  708. currentChannel: 0,
  709. currentTabImg: 0,
  710. currentOMOTabIndex: 0,
  711. currentCourseType: 0,
  712. bossImg: "https://luojigou-app-commit-pic.luojigou.vip/FmWrknlY5cdWx6XEz5VE9bOkZSNX?imageView2/0/q/50|imageslim",
  713. // bossImg: '~/assets/images/home/boss_img.png',
  714. eduImg: "https://luojigou-app-commit-pic.luojigou.vip/FrKVMB5LmgU1Q_I_HGjoz7B8Kkdb?imageView2/0/q/50|imageslim",
  715. // 返回顶部
  716. backTopImgList: [{
  717. hoverImg: require('~/assets/images/home/boss_img.png'),
  718. noHoverImg: require('~/assets/images/home/boss_img.png'),
  719. }],
  720. productCate: [
  721. {
  722. id: 0,
  723. label: '逻辑狗3-7岁',
  724. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FkVDyYeXFpVE_oXElmB2M0akQ6Ws?imageView2/0/q/50|imageslim",
  725. path: '/product/detail?id=1'
  726. },
  727. {
  728. id: 1,
  729. label: '逻辑狗3-12岁',
  730. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FtmWmKUwxnaaTXdGhjItNaL7QRVK?imageView2/0/q/50|imageslim",
  731. path: '/product/detail?id=2'
  732. },
  733. {
  734. id: 2,
  735. label: '逻辑狗7-12岁',
  736. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FgESCQBFk9yzUiIEGyyjSONxHQS6?imageView2/0/q/50|imageslim",
  737. path: '/product/detail?id=3'
  738. },
  739. {
  740. id: 3,
  741. label: '中华小熊猫',
  742. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FtPHU3AHImhHmIrSYX8UUBsUL9aT?imageView2/0/q/50|imageslim",
  743. path: '/product/detail?id=7'
  744. },
  745. {
  746. id: 4,
  747. label: '蚂蚁沙丘',
  748. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FoHs5y28p39lWJV-oPExpPUXjYKc?imageView2/0/q/50|imageslim",
  749. path: '/product/detail?id=6'
  750. },
  751. {
  752. id: 5,
  753. label: '春夏秋冬',
  754. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/Fqb3iB6lyq3tW9DgeKJ4-mE4Lfbz?imageView2/0/q/50|imageslim",
  755. path: '/product/detail?id=5'
  756. },
  757. {
  758. id: 6,
  759. label: '克鲁德',
  760. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FqQe0lknJLn92sEUSAwdJI28guuE?imageView2/0/q/50|imageslim",
  761. path: '/product/detail?id=4'
  762. },
  763. {
  764. id: 7,
  765. label: '思维魔法',
  766. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FvtZIR6yunZ4FqZ0h57pPHyTpANR?imageView2/0/q/50|imageslim",
  767. path: '/product/detail?id=8'
  768. },
  769. {
  770. id: 8,
  771. label: '聪明书',
  772. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FiD29Rki5VcLeyBYSHlPi5NwaBFP?imageView2/0/q/50|imageslim",
  773. path: '/product/detail?id=9'
  774. }
  775. ],
  776. productList: [
  777. {
  778. title: '逻辑狗 小学提升版一阶段7岁以上儿童思维训练早教玩具益智启蒙',
  779. price: '198.00',
  780. imgUrl: require('~/assets/images/goods/product_ts_01.jpg'),
  781. linkUrl: 'https://detail.tmall.com/item.htm?id=557258829143',
  782. tag: '提升版',
  783. },
  784. {
  785. title: '逻辑狗 小学提升版二阶段8岁以上儿童早教玩具益智启蒙卡',
  786. price: '238.00',
  787. imgUrl: require('~/assets/images/goods/product_ts_02.jpg'),
  788. linkUrl: 'https://detail.tmall.com/item.htm?id=557170896436',
  789. tag: '提升版',
  790. },
  791. {
  792. title: '逻辑狗小学提升版三阶段9岁以上幼儿童思维学习早教玩具套装益智',
  793. price: '198.00',
  794. imgUrl: require('~/assets/images/goods/product_ts_03.jpg'),
  795. linkUrl: 'https://detail.tmall.com/item.htm?id=557361647798',
  796. tag: '提升版',
  797. },
  798. {
  799. title: '逻辑狗 小学提升版四阶段10岁以上数学幼儿启蒙早教玩具 中德直营',
  800. price: '198.00',
  801. imgUrl: require('~/assets/images/goods/product_ts_04.jpg'),
  802. linkUrl: 'https://detail.tmall.com/item.htm?id=557303754261',
  803. tag: '提升版',
  804. },
  805. {
  806. title: '逻辑狗 中德智慧小学提升版 五阶段11岁儿童启蒙 学习玩具套装',
  807. price: '198.00',
  808. imgUrl: require('~/assets/images/goods/product_ts_05.jpg'),
  809. linkUrl: 'https://detail.tmall.com/item.htm?id=557171748143',
  810. tag: '提升版',
  811. },
  812. {
  813. title: '中德智慧逻辑狗 小学基础版五阶段11岁儿童启蒙学习玩具早教玩具',
  814. price: '198.00',
  815. imgUrl: require('~/assets/images/goods/product_jc_01.jpg'),
  816. linkUrl: 'https://detail.tmall.com/item.htm?id=557253273047',
  817. tag: '基础版',
  818. },
  819. {
  820. title: '中德智慧 逻辑狗 幼小小学基础版四阶段10岁以上儿童玩具启蒙',
  821. price: '102.60',
  822. imgUrl: require('~/assets/images/goods/product_jc_02.jpg'),
  823. linkUrl: 'https://detail.tmall.com/item.htm?id=557164956835',
  824. tag: '基础版',
  825. },
  826. {
  827. title: '中德智慧逻辑狗 智力开发小学基础版三阶段幼儿童学习早教玩具',
  828. price: '140.60',
  829. imgUrl: require('~/assets/images/goods/product_jc_03.jpg'),
  830. linkUrl: 'https://detail.tmall.com/item.htm?id=557356687077',
  831. tag: '基础版',
  832. },
  833. {
  834. title: '中德智慧 逻辑狗 幼小小学基础版四阶段10岁以上儿童玩具启蒙',
  835. price: '102.60',
  836. imgUrl: require('~/assets/images/goods/product_jc_04.jpg'),
  837. linkUrl: 'https://detail.tmall.com/item.htm?id=557165744732',
  838. tag: '基础版',
  839. },
  840. {
  841. title: '中德智慧逻辑狗 小学基础版五阶段11岁儿童启蒙学习玩具早教玩具',
  842. price: '102.60',
  843. imgUrl: require('~/assets/images/goods/product_jc_05.jpg'),
  844. linkUrl: 'https://detail.tmall.com/item.htm?id=557298602723',
  845. tag: '基础版',
  846. }
  847. ],
  848. netList: [
  849. {
  850. title: '逻辑狗2岁3-4岁幼儿园教材版家庭思维训练第一阶段益智玩具板全套',
  851. price: '150.10',
  852. imgUrl: require('~/assets/images/goods/product_net_01.jpg'),
  853. linkUrl: 'https://detail.tmall.com/item.htm?id=557288434799',
  854. tag: '网络版',
  855. },
  856. {
  857. title: '逻辑狗4-5岁二阶段幼儿教材家庭网络版思维训练早教益智玩具正版',
  858. price: '150.10',
  859. imgUrl: require('~/assets/images/goods/product_net_02.jpg'),
  860. linkUrl: 'https://detail.tmall.com/item.htm?id=557250281576',
  861. tag: '网络版',
  862. },
  863. {
  864. title: '逻辑狗5-6岁三阶段幼儿园教材家庭网络版思维训练早教益智玩具板',
  865. price: '150.10',
  866. imgUrl: require('~/assets/images/goods/product_net_03.jpg'),
  867. linkUrl: 'https://detail.tmall.com/item.htm?id=557162976102',
  868. tag: '网络版',
  869. },
  870. {
  871. title: '德国逻辑狗6-7岁四阶段幼儿园教材网络版思维训练早教益智玩具童',
  872. price: '150.10',
  873. imgUrl: require('~/assets/images/goods/product_net_04.jpg'),
  874. linkUrl: 'https://detail.tmall.com/item.htm?id=557163156598',
  875. tag: '网络版',
  876. },
  877. {
  878. title: '逻辑狗6岁以上五阶段 幼儿园教材家庭思维训练网络版早教益智玩具',
  879. price: '188.10',
  880. imgUrl: require('~/assets/images/goods/product_net_05.jpg'),
  881. linkUrl: 'https://detail.tmall.com/item.htm?id=557251913436',
  882. tag: '网络版',
  883. },
  884. {
  885. title: '逻辑狗3-7岁幼儿网络版大礼包思维益智启蒙早教玩具',
  886. price: '836.00',
  887. imgUrl: require('~/assets/images/goods/product_net_06.jpg'),
  888. linkUrl: 'https://detail.tmall.com/item.htm?id=557163904721',
  889. tag: '网络版',
  890. },
  891. ],
  892. tsList: [
  893. {
  894. title: '逻辑狗 小学提升版一阶段7岁以上儿童思维训练早教玩具益智启蒙',
  895. price: '198.00',
  896. imgUrl: require('~/assets/images/goods/product_ts_01.jpg'),
  897. linkUrl: 'https://detail.tmall.com/item.htm?id=557258829143',
  898. tag: '提升版',
  899. },
  900. {
  901. title: '逻辑狗 小学提升版二阶段8岁以上儿童早教玩具益智启蒙卡',
  902. price: '238.00',
  903. imgUrl: require('~/assets/images/goods/product_ts_02.jpg'),
  904. linkUrl: 'https://detail.tmall.com/item.htm?id=557170896436',
  905. tag: '提升版',
  906. },
  907. {
  908. title: '逻辑狗小学提升版三阶段9岁以上幼儿童思维学习早教玩具套装益智',
  909. price: '198.00',
  910. imgUrl: require('~/assets/images/goods/product_ts_03.jpg'),
  911. linkUrl: 'https://detail.tmall.com/item.htm?id=557361647798',
  912. tag: '提升版',
  913. },
  914. {
  915. title: '逻辑狗 小学提升版四阶段10岁以上数学幼儿启蒙早教玩具 中德直营',
  916. price: '198.00',
  917. imgUrl: require('~/assets/images/goods/product_ts_04.jpg'),
  918. linkUrl: 'https://detail.tmall.com/item.htm?id=557303754261',
  919. tag: '提升版',
  920. },
  921. {
  922. title: '逻辑狗 中德智慧小学提升版 五阶段11岁儿童启蒙 学习玩具套装',
  923. price: '198.00',
  924. imgUrl: require('~/assets/images/goods/product_ts_05.jpg'),
  925. linkUrl: 'https://detail.tmall.com/item.htm?id=557171748143',
  926. tag: '提升版',
  927. }
  928. ],
  929. jcList: [
  930. {
  931. title: '逻辑狗 中德智慧小学基础版一阶段7岁幼儿玩具早教 启蒙卡片玩具',
  932. price: '97.20',
  933. imgUrl: require('~/assets/images/goods/product_jc_01.jpg'),
  934. linkUrl: 'https://detail.tmall.com/item.htm?id=557253273047',
  935. tag: '基础版',
  936. },
  937. {
  938. title: 'logico逻辑狗7-8/9/10/11岁小学基础版二阶段益智早教学习玩具',
  939. price: '97.20',
  940. imgUrl: require('~/assets/images/goods/product_jc_02.jpg'),
  941. linkUrl: 'https://detail.tmall.com/item.htm?id=557164956835',
  942. tag: '基础版',
  943. },
  944. {
  945. title: '中德智慧逻辑狗 智力开发小学基础版三阶段幼儿童学习早教玩具',
  946. price: '140.60',
  947. imgUrl: require('~/assets/images/goods/product_jc_03.jpg'),
  948. linkUrl: 'https://detail.tmall.com/item.htm?id=557356687077',
  949. tag: '基础版',
  950. },
  951. {
  952. title: '中德智慧 逻辑狗 幼小小学基础版四阶段10岁以上儿童玩具启蒙',
  953. price: '102.60',
  954. imgUrl: require('~/assets/images/goods/product_jc_04.jpg'),
  955. linkUrl: 'https://detail.tmall.com/item.htm?id=557165744732',
  956. tag: '基础版',
  957. },
  958. {
  959. title: '中德智慧逻辑狗 小学基础版五阶段11岁儿童启蒙学习玩具早教玩具',
  960. price: '102.60',
  961. imgUrl: require('~/assets/images/goods/product_jc_05.jpg'),
  962. linkUrl: 'https://detail.tmall.com/item.htm?id=557298602723',
  963. tag: '基础版',
  964. }
  965. ],
  966. yxList: [
  967. {
  968. title: '逻辑狗数学起跑线5-7岁幼儿园教材 家庭逻辑思维训练益智早教玩具',
  969. price: '150.10',
  970. imgUrl: require('~/assets/images/goods/product_yx_01.jpg'),
  971. linkUrl: 'https://detail.tmall.com/item.htm?id=557305378054',
  972. tag: '幼小衔接',
  973. },
  974. {
  975. title: '逻辑狗5-7岁思维语言/数学幼儿园早教益智玩具板训练全套幼小衔接',
  976. price: '159.60',
  977. imgUrl: require('~/assets/images/goods/product_yx_02.jpg'),
  978. linkUrl: 'https://detail.tmall.com/item.htm?id=603397367168',
  979. tag: '幼小衔接',
  980. },
  981. ],
  982. kldList: [
  983. {
  984. title: '逻辑狗 克鲁德幼儿二阶段5-6岁启蒙读物儿童益智 早教故事点读',
  985. price: '264.10',
  986. imgUrl: require('~/assets/images/goods/product_kld_01.jpg'),
  987. linkUrl: 'https://detail.tmall.com/item.htm?id=569135310952',
  988. tag: '克鲁德',
  989. },
  990. {
  991. title: '逻辑狗 克鲁德幼儿三阶段6岁以上启蒙读物儿童早教故事 点读语言',
  992. price: '292.60',
  993. imgUrl: require('~/assets/images/goods/product_kld_02.jpg'),
  994. linkUrl: 'https://detail.tmall.com/item.htm?id=569135982554',
  995. tag: '克鲁德',
  996. },
  997. {
  998. title: '逻辑狗新品克鲁德一起听 幼儿一阶段4-5岁启蒙读物儿童早教益智',
  999. price: '245.00',
  1000. imgUrl: require('~/assets/images/goods/product_kld_03.jpg'),
  1001. linkUrl: 'https://detail.tmall.com/item.htm?id=610967139958',
  1002. tag: '克鲁德',
  1003. },
  1004. {
  1005. title: '逻辑狗克鲁德聪明笔幼儿早教机学习点读机0-3-6益智故事机双英语',
  1006. price: '568.10',
  1007. imgUrl: require('~/assets/images/goods/product_kld_04.jpg'),
  1008. linkUrl: 'https://detail.tmall.com/item.htm?id=575248706980',
  1009. tag: '克鲁德',
  1010. },
  1011. {
  1012. title: '逻辑狗新品 克鲁德聪明点读笔 幼儿早教益智机学习机0-3-6双英语',
  1013. price: '598.00',
  1014. imgUrl: require('~/assets/images/goods/product_kld_04.jpg'),
  1015. linkUrl: 'https://detail.tmall.com/item.htm?id=624651060206',
  1016. tag: '克鲁德',
  1017. }
  1018. ],
  1019. courseCate: [
  1020. {
  1021. title: "全部",
  1022. type: 0,
  1023. },
  1024. {
  1025. title: "直播课",
  1026. type: 1,
  1027. },
  1028. {
  1029. title: "录播课",
  1030. type: 2,
  1031. },
  1032. {
  1033. title: "公开课",
  1034. type: 3,
  1035. },
  1036. ],
  1037. courseList: [
  1038. {
  1039. linkUrl: 'https://course.zaojiao.net/detail/p_5d89ac0689610_X7JQOygx/6',
  1040. imgUrl: "https://wechatapppro-1252524126.file.myqcloud.com/appeUTy6Ddw5323/image/compress/640480851kdo7as2u0jcnzs1y3mj.jpg",
  1041. title: '逻辑狗教学体系课',
  1042. desc: '从【思维教育理论】到【实操方法】,由浅入深,系统讲解逻辑狗的授课方法,一站解决你关于逻辑狗教学的问题。',
  1043. price: '',
  1044. view: '521'
  1045. },
  1046. {
  1047. linkUrl: 'https://course.zaojiao.net/detail/p_5d89d11b9cbdd_MzWlooA7/6',
  1048. imgUrl: "https://wechatapppro-1252524126.file.myqcloud.com/appeUTy6Ddw5323/image/compress/larger_cmVzb3VyY2UtY291cnNlUGFja2FnZS04MzkyNjg0Mg.png",
  1049. title: '【办赛指南】中德智慧杯 · 思维好儿童 · 幼儿思维能力挑战大赛',
  1050. desc: '幼儿思维领域的“奥林匹克”',
  1051. price: '',
  1052. view: '342'
  1053. },
  1054. {
  1055. linkUrl: 'https://course.zaojiao.net/detail/p_5d89d7c797817_xUEv1j0i/6',
  1056. imgUrl: "https://wechatapppro-1252524126.file.myqcloud.com/appeUTy6Ddw5323/image/compress/640480951kdh5cd3b0ye8salmlmap.jpg",
  1057. title: '活动方案集锦',
  1058. desc: '为园所提供“六一节” “端午节” “中秋节" “父亲节” “母亲节”等节日方案',
  1059. price: '',
  1060. view: '178'
  1061. },
  1062. {
  1063. linkUrl: 'https://course.zaojiao.net/detail/l_5d8ade6172474_YSQrR4On/4',
  1064. imgUrl: "https://wechatapppro-1252524126.file.myqcloud.com/appeUTy6Ddw5323/image/compress/larger_cmVzb3VyY2UtY291cnNlQWxpdmUtNzAzODcwMjg.png",
  1065. title: '如何有效引导孩子,用「逻辑狗」培养思维能力?',
  1066. desc: '专业「逻辑狗」培训师,为妈妈一次性解决所有关于「逻辑狗」的困惑。',
  1067. price: '99.00',
  1068. view: '941'
  1069. },
  1070. ],
  1071. productImage: [
  1072. {
  1073. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FqBHhodlooNuD6yZwnNU_F0yGJLW?imageView2/0/q/50|imageslim",
  1074. title: "逻辑狗思维体验PLUS",
  1075. },
  1076. {
  1077. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/Flem6dtoFCQRkQ7ZjOynrLxBjGom?imageView2/0/q/50|imageslim",
  1078. title: "逻辑狗思维体验",
  1079. },
  1080. {
  1081. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FkEk1noY_aJxZVn76azkOQcMKH3O?imageView2/0/q/50|imageslim",
  1082. title: "逻辑狗思维体验HOME",
  1083. },
  1084. {
  1085. imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FtvSFswuxiHvcNtrS46HDqvN8ugS?imageView2/0/q/50|imageslim",
  1086. title: "探索小镇",
  1087. }
  1088. ],
  1089. channelList: [
  1090. {
  1091. id: 1,
  1092. title: '逻辑狗创意馆',
  1093. itemList: [
  1094. {
  1095. imgUrl: require("../assets/images/home/channel_img_01.png"),
  1096. title: '逻辑狗思维体验Plus'
  1097. },
  1098. {
  1099. imgUrl: require("../assets/images/home/channel_img_02.png"),
  1100. title: '逻辑狗创意馆'
  1101. }
  1102. ]
  1103. },
  1104. {
  1105. id: 2,
  1106. title: '探索小镇',
  1107. itemList: [
  1108. {
  1109. imgUrl: require("../assets/images/home/channel_img_03.png"),
  1110. title: '探索小镇'
  1111. },
  1112. {
  1113. imgUrl: require("../assets/images/home/channel_img_04.png"),
  1114. title: '探索小镇'
  1115. }
  1116. ]
  1117. },
  1118. {
  1119. id: 3,
  1120. title: '门店专柜',
  1121. itemList: [
  1122. {
  1123. imgUrl: require("../assets/images/home/channel_img_05.png"),
  1124. title: '宁波三味书店'
  1125. },
  1126. {
  1127. imgUrl: require("../assets/images/home/channel_img_06.png"),
  1128. title: '长沙书店'
  1129. }
  1130. ]
  1131. },
  1132. ],
  1133. honorList: [
  1134. {
  1135. imgUrl: require("../assets/images/honor/honer01.png"),
  1136. title: "2018中国(行业)最具发展企业",
  1137. },
  1138. {
  1139. imgUrl: require("../assets/images/honor/honer02.png"),
  1140. title: "2019中国创业教育产品匠心独运将",
  1141. },
  1142. {
  1143. imgUrl: require("../assets/images/honor/honer03.png"),
  1144. title: "理事单位(2019-2020年)",
  1145. },
  1146. {
  1147. imgUrl: require("../assets/images/honor/honer04.png"),
  1148. title: "教育类玩具金奖",
  1149. },
  1150. {
  1151. imgUrl: require("../assets/images/honor/honer05.png"),
  1152. title: "教育+互联网行业合作伙伴",
  1153. },
  1154. {
  1155. imgUrl: require("../assets/images/honor/honer06.png"),
  1156. title: "新浪亲子中心推荐",
  1157. },
  1158. {
  1159. imgUrl: require("../assets/images/honor/honer07.png"),
  1160. title: "2019年度影响力教育品牌",
  1161. },
  1162. {
  1163. imgUrl: require("../assets/images/honor/honer08.png"),
  1164. title: "中国品牌领袖联盟",
  1165. },
  1166. {
  1167. imgUrl: require("../assets/images/honor/honer09.png"),
  1168. title: "2006教师选择奖",
  1169. },
  1170. {
  1171. imgUrl: require("../assets/images/honor/honer10.png"),
  1172. title: "2018回响中国影响力国际教育品牌",
  1173. },
  1174. {
  1175. imgUrl: require("../assets/images/honor/honer11.png"),
  1176. title: "2012十佳品牌",
  1177. },
  1178. {
  1179. imgUrl: require("../assets/images/honor/honer12.png"),
  1180. title: "中德芬肯独家合作权",
  1181. },
  1182. {
  1183. imgUrl: require("../assets/images/honor/honer13.png"),
  1184. title: "中国教育装备行业协会会员",
  1185. },
  1186. {
  1187. imgUrl: require("../assets/images/honor/honer14.png"),
  1188. title: "2019逐梦年代特约嘉宾张洁",
  1189. },
  1190. {
  1191. imgUrl: require("../assets/images/honor/honer15.png"),
  1192. title: "央广教育盛典中国教育行业领军人物",
  1193. },
  1194. {
  1195. imgUrl: require("../assets/images/honor/honer16.png"),
  1196. title: "2019年度教育行业影响力人物",
  1197. },
  1198. {
  1199. imgUrl: require("../assets/images/honor/honer17.png"),
  1200. title: "2019天猫母婴玩具行业最佳突破奖",
  1201. },
  1202. {
  1203. imgUrl: require("../assets/images/honor/honer18.png"),
  1204. title: "2019追梦人徽章",
  1205. },
  1206. {
  1207. imgUrl: require("../assets/images/honor/honer19.png"),
  1208. title: "京东超市宝贝趴最佳成长品牌奖",
  1209. },
  1210. ],
  1211. articleList: {
  1212. articleNews: {
  1213. typeTitle: "中德智慧咨讯",
  1214. content: [
  1215. {
  1216. id: "1",
  1217. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1218. imgUrl:
  1219. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  1220. },
  1221. {
  1222. id: "2",
  1223. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1224. imgUrl:
  1225. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1226. },
  1227. {
  1228. id: "3",
  1229. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1230. imgUrl: "",
  1231. },
  1232. {
  1233. id: "4",
  1234. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1235. imgUrl: "",
  1236. },
  1237. {
  1238. id: "5",
  1239. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1240. imgUrl: "",
  1241. },
  1242. {
  1243. id: "6",
  1244. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1245. imgUrl: "",
  1246. },
  1247. ],
  1248. },
  1249. storeNews: {
  1250. typeTitle: "门店动态",
  1251. content: [
  1252. {
  1253. id: "1",
  1254. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1255. imgUrl:
  1256. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  1257. },
  1258. {
  1259. id: "2",
  1260. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1261. imgUrl:
  1262. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1263. },
  1264. {
  1265. id: "3",
  1266. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1267. imgUrl:
  1268. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1269. },
  1270. {
  1271. id: "4",
  1272. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1273. imgUrl:
  1274. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1275. },
  1276. {
  1277. id: "5",
  1278. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1279. imgUrl:
  1280. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1281. },
  1282. {
  1283. id: "6",
  1284. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  1285. imgUrl:
  1286. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1287. },
  1288. ],
  1289. },
  1290. industryNews: {
  1291. typeTitle: "行业动态",
  1292. content: [
  1293. {
  1294. id: "1",
  1295. title:
  1296. "前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  1297. imgUrl:
  1298. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  1299. desc: "中德智慧已经成为全球知名教育品牌",
  1300. },
  1301. {
  1302. id: "2",
  1303. title:
  1304. "前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  1305. imgUrl:
  1306. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1307. desc: "中德智慧已经成为全球知名教育品牌",
  1308. },
  1309. {
  1310. id: "3",
  1311. title:
  1312. "前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  1313. imgUrl:
  1314. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  1315. desc: "中德智慧已经成为全球知名教育品牌",
  1316. },
  1317. ],
  1318. },
  1319. },
  1320. expertList: [
  1321. {
  1322. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FoUZhFcNKd_wIiSrlxqwburhtfS3?imageView2/0/q/50|imageslim",
  1323. imgUrl: require('~/assets/images/index/expert_card_01.png'),
  1324. title: '中德智慧',
  1325. },
  1326. {
  1327. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FlldWgAl0pwHaY_iCy33_eAY0rzl?imageView2/0/q/50|imageslim",
  1328. imgUrl: require('~/assets/images/index/expert_card_02.png'),
  1329. title: '中德智慧',
  1330. },
  1331. {
  1332. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/Fhbm-_5ygbz94W21cbZFtCIcMQ3N?imageView2/0/q/50|imageslim",
  1333. imgUrl: require('~/assets/images/index/expert_card_03.png'),
  1334. title: '中德智慧',
  1335. },
  1336. {
  1337. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FmB_Or65oKf1DVojBo11fnILXF9u?imageView2/0/q/50|imageslim",
  1338. imgUrl: require('~/assets/images/index/expert_card_04.png'),
  1339. title: '中德智慧',
  1340. },
  1341. {
  1342. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FrA3Fj-MSy4PGTbJXy67QnxUmWmp?imageView2/0/q/50|imageslim",
  1343. imgUrl: require('~/assets/images/index/expert_card_05.png'),
  1344. title: '中德智慧',
  1345. },
  1346. {
  1347. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FqOcAPrfqCqBdoH-wTY6unc6j0X8?imageView2/0/q/50|imageslim",
  1348. imgUrl: require('~/assets/images/index/expert_card_06.png'),
  1349. title: '中德智慧',
  1350. },
  1351. {
  1352. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FsbwlMduzk0OCvaUikF0GwAcv1hJ?imageView2/0/q/50|imageslim",
  1353. imgUrl: require('~/assets/images/index/expert_card_07.png'),
  1354. title: '中德智慧',
  1355. },
  1356. {
  1357. // imgUrl: "https://luojigou-app-commit-pic.luojigou.vip/FlIXb9Mx1QUL2pDVOOZnDxDIYngU?imageView2/0/q/50|imageslim",
  1358. imgUrl: require('~/assets/images/index/expert_card_08.png'),
  1359. title: '中德智慧',
  1360. }
  1361. ],
  1362. omoList: [
  1363. {
  1364. id: 1,
  1365. iconImg: require('~/assets/images/home/omo_img_01.png'),
  1366. imgUrl: require('~/assets/images/home/omo_content_01.png'),
  1367. title: '海量教育资源',
  1368. desc: '逻辑狗·家园共育APP'
  1369. },
  1370. {
  1371. id: 2,
  1372. iconImg: require('~/assets/images/home/omo_img_02.png'),
  1373. imgUrl: require('~/assets/images/home/omo_content_02.png'),
  1374. title: '高质量的优质陪伴',
  1375. desc: '逻辑狗一起成长APP'
  1376. },
  1377. {
  1378. id: 3,
  1379. iconImg: require('~/assets/images/home/omo_img_03.png'),
  1380. imgUrl: require('~/assets/images/home/omo_content_03.png'),
  1381. title: '全球教育精英陪伴成长',
  1382. desc: '微信H5 思维芯网校'
  1383. },
  1384. {
  1385. id: 4,
  1386. iconImg: require('~/assets/images/home/omo_img_04.png'),
  1387. imgUrl: require('~/assets/images/home/omo_content_04.png'),
  1388. title: '新媒体矩阵',
  1389. desc: '公众号 视频号 抖音 微博 小红书'
  1390. }
  1391. ],
  1392. sceneList: [
  1393. {
  1394. title: '逻辑狗思维体验馆'
  1395. },
  1396. {
  1397. title: '探索小镇'
  1398. },
  1399. {
  1400. title: '门店专柜'
  1401. }
  1402. ],
  1403. studentList: [
  1404. // {
  1405. // avatarUrl: require("../assets/images/home/student_01.png"),
  1406. // title: '助力幼小衔接 学习更轻松',
  1407. // name: '陈小贝',
  1408. // activeName: '山东菏泽',
  1409. // desc: '陈小贝小朋友从小就喜欢玩儿逻辑狗,如今已经7岁上小学一年级了,上了小学之后每次数学成绩都非常优异。'
  1410. // },
  1411. // {
  1412. // avatarUrl: require("../assets/images/home/student_02.png"),
  1413. // title: '大鹏北京参赛记',
  1414. // name: '大鹏',
  1415. // activeName: '参与逻辑狗大赛',
  1416. // desc: '现在大鹏已经上一年级了,仍然念念不忘快乐充实的北京之行,忘不了逻辑狗比赛,忘不了天安门、鸟巢,忘不了他幼小心中的北大和清华。'
  1417. // },
  1418. // {
  1419. // avatarUrl: require("../assets/images/home/student_03.png"),
  1420. // title: '13届全国幼儿思维挑战赛中班冠军',
  1421. // name: '陈怡睿',
  1422. // activeName: '徐州开发区',
  1423. // desc: '使用逻辑狗的园所都可以参加全国思维能力挑战大赛,该大赛受到当地媒体的广泛关注,同时银座幼儿园作为礼哦机构使用10年的老园所也在当地声名远播。'
  1424. // },
  1425. // {
  1426. // avatarUrl: require("../assets/images/home/student_04.png"),
  1427. // title: '德语班的小帅哥',
  1428. // name: '小帅哥',
  1429. // activeName: '玉溪实验中学德语班',
  1430. // desc: '他从四岁就开始跟着我学习思维课程,整整六年多的坚持,学完全套思维课程,让他的思维变得超强,不断在人群中脱颖而出。'
  1431. // },
  1432. // {
  1433. // avatarUrl: require("../assets/images/home/student_05.png"),
  1434. // title: '我和逻辑狗',
  1435. // name: '张济瀚',
  1436. // activeName: '公安部幼儿园',
  1437. // desc: '逻辑狗是济瀚的数学启蒙,通过学习,济瀚掌握了学习方法,树立了学习自信心,收货了学习的乐趣,尤其是通过比赛,开拓了眼界,增长了见识。'
  1438. // },
  1439. // {
  1440. // avatarUrl: require("../assets/images/home/student_06.png"),
  1441. // title: '我和逻辑狗',
  1442. // name: '林乐典',
  1443. // activeName: '北京十七中',
  1444. // desc: ' 5岁开始得益于母亲工作,在家里接触中德智慧的逻辑狗思维游戏、小蚂蚁科学、春夏秋冬绘本。多项比赛获得北京市和朝阳区第一第二名。(足球、科技比赛、演讲比赛等等),初中三年被评为朝阳区和北京市三好学生。'
  1445. // },
  1446. {
  1447. avatarUrl: require("../assets/images/home/student_07.png"),
  1448. title: '我和逻辑狗',
  1449. name: '杨子夏',
  1450. activeName: '北京大学 光华管理学院',
  1451. desc: '父母很注重子夏思维的培养,坚特在幼儿园和小学学习“逻辑狗”,培养了子夏优秀的思维能力和学习品质,激发了她探索世界的兴趣。'
  1452. },
  1453. {
  1454. avatarUrl: require("../assets/images/home/student_08.png"),
  1455. title: '我和逻辑狗',
  1456. name: '张济瀚',
  1457. activeName: '北京八中少年班',
  1458. desc: '逻辑狗是济瀚的数学启蒙,通过学习,济瀚掌握了学习方法,树立了学习自信心,收获了学习的乐趣,尤其是通过比赛,开拓了眼界,增长了见识。'
  1459. },
  1460. {
  1461. avatarUrl: require("../assets/images/home/student_09.png"),
  1462. title: '我和逻辑狗',
  1463. name: '张乐天',
  1464. activeName: '英国伦敦金史密斯学院',
  1465. desc: '张乐天从中班开始接触逻辑狗,经过8年逻辑狗的学习,思维能力突出,有着自己独特的视角,在幼儿园升小学的时候就表现出了丰富的想象力、审美能力和创造能力,明显优于同年龄阶段的孩子。'
  1466. }
  1467. ],
  1468. swiperOption: {
  1469. // 配置说明直接看官网
  1470. slidesPerView: "auto",
  1471. spaceBetween: 22,
  1472. paginationClickable: true,
  1473. centeredSlides: true,
  1474. autoplay: {
  1475. delay: 3500,
  1476. disableOnInteraction: false,
  1477. },
  1478. speed: 1000,
  1479. loop: true,
  1480. observer: true,
  1481. observeParents: true,
  1482. autoplayDisableOnInteraction: false,
  1483. notNextTick: true,
  1484. // centeredSlides: true,
  1485. navigation: {
  1486. nextEl: ".swiper-button-next",
  1487. prevEl: ".swiper-button-prev",
  1488. },
  1489. },
  1490. studentOption: {
  1491. slidesPerView: "4",
  1492. spaceBetween: 22,
  1493. // loop: true,
  1494. pagination: {
  1495. el: ".student-pagination",
  1496. clickable: true,
  1497. },
  1498. },
  1499. honorSwiperOption: {
  1500. // 配置说明直接看官网
  1501. slidesPerView: "auto",
  1502. spaceBetween: 22, //轮播图左右之间的间距,配合css样式中的width实现效果
  1503. autoplay: {
  1504. delay: 1500,
  1505. stopOnLastSlide: false,
  1506. disableOnInteraction: false,
  1507. },
  1508. // autoplay: false,
  1509. // speed: 1000,
  1510. loop: true,
  1511. observer: true,
  1512. observeParents: true,
  1513. autoplayDisableOnInteraction: false,
  1514. notNextTick: true,
  1515. // centeredSlides: true,
  1516. navigation: {
  1517. nextEl: ".honer-swiper-button-next",
  1518. prevEl: ".honer-swiper-button-prev",
  1519. },
  1520. },
  1521. expertSwiperOption: {
  1522. autoplay: {
  1523. delay: 2000,
  1524. disableOnInteraction: false,
  1525. },
  1526. watchSlidesProgress: true,
  1527. slidesPerView: 'auto',
  1528. centeredSlides: true,
  1529. loop: true, //开启循环
  1530. initialSlide: 0,
  1531. loopedSlides: 2,
  1532. preventLinksPropagation: true,
  1533. slideToClickedSlide: true,
  1534. pagination: {
  1535. el: ".swiper-pagination",
  1536. clickable: true,
  1537. },
  1538. on: {
  1539. progress() {
  1540. for (let i = 0; i < this.slides.length; i++) {
  1541. const slide = this.slides.eq(i) // 指定匹配元素集缩减值
  1542. const slideProgress = this.slides[i].progress // 当前元素集的progress值
  1543. let modify = 1 // 偏移权重
  1544. Math.abs(slideProgress) > 1 && (modify = Math.abs(slideProgress) - 1 + 1);
  1545. // if (parseInt(Math.abs(slideProgress)) > 0) {
  1546. // modify = Math.abs(slideProgress) * 0.2 // 不一定要0.2,可自行调整
  1547. // }
  1548. const translate = slideProgress * modify * 300 + 'px' // 500是swiper-slide的宽度
  1549. const scale = 1 - Math.abs(slideProgress) / 6 // 缩放权重值,随着progress由中向两边依次递减,可自行调整
  1550. const zIndex = 999 - Math.abs(Math.round(10 * slideProgress))
  1551. slide.transform(`translateX(${translate}) scale(${scale})`)
  1552. slide.css('zIndex', zIndex)
  1553. slide.css('opacity', 1) // 是否可见
  1554. Math.abs(slideProgress) > 3 && slide.css("opacity", 0);
  1555. // if (parseInt(Math.abs(slideProgress)) > 1) { // 设置了只有选中的元素以及他两遍的显示,其他隐藏
  1556. // slide.css('opacity', 0)
  1557. // }
  1558. }
  1559. },
  1560. setTransition: function (e) {
  1561. for (var t = 0; t < this.slides.length; t++)
  1562. this.slides.eq(t).transition(e);
  1563. },
  1564. }
  1565. },
  1566. };
  1567. },
  1568. computed: {
  1569. // 思维芯产品
  1570. lineStyle() {
  1571. let site = 190 * this.currentTabId + 42 * ((this.currentTabId === 0 ? 1 : this.currentTabId) - 1)
  1572. if (site === 0) {
  1573. site = -0
  1574. }
  1575. return `transform: translateX(${site + 'px'})`
  1576. },
  1577. // 网校课程
  1578. lineCourseStyle() {
  1579. let site;
  1580. if (this.currentCourseType === 0) {
  1581. site = -0
  1582. } else if (this.currentCourseType === 3) { // -72 + 46 26 13
  1583. site = 400 * this.currentCourseType - 60;
  1584. } else {
  1585. site = 400 * this.currentCourseType - this.currentCourseType * 23;
  1586. }
  1587. return `transform: translateX(${site + 'px'})`
  1588. }
  1589. },
  1590. components: {
  1591. VBanner,
  1592. // countTo,
  1593. // ProdList,
  1594. TitleContent
  1595. // indexVideo,
  1596. // prodListShow,
  1597. // indexNewsListShow
  1598. },
  1599. head() {
  1600. return {
  1601. title: "逻辑狗官网-中德智慧教育",
  1602. meta: [
  1603. {
  1604. name: "keywords",
  1605. hid: "keywords",
  1606. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  1607. },
  1608. {
  1609. name: "description",
  1610. hid: "description",
  1611. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  1612. },
  1613. ],
  1614. };
  1615. },
  1616. async asyncData({params, store}) {
  1617. // console.log(store.state.newsNav);
  1618. const newsNav = store.state.newsNav;
  1619. const {data: {data: res1}} = await axios(`${store.state.wordpressAPI}/official-api/article`, {
  1620. params: {
  1621. typeId: newsNav[0].id,
  1622. page: 1
  1623. }
  1624. });
  1625. const {data: {data: res2}} = await axios(`${store.state.wordpressAPI}/official-api/article`, {
  1626. params: {
  1627. typeId: newsNav[1].id,
  1628. page: 1
  1629. }
  1630. });
  1631. const {data: {data: res3}} = await axios(`${store.state.wordpressAPI}/official-api/article`, {
  1632. params: {
  1633. typeId: newsNav[2].id,
  1634. page: 1
  1635. }
  1636. });
  1637. const articleList1 = res1.entityList;
  1638. const articleList2 = res2.entityList;
  1639. const articleList3 = res3.entityList;
  1640. // console.log(articleList1);
  1641. // console.log(articleList2);
  1642. // console.log(articleList3);
  1643. return {
  1644. articleList1,
  1645. articleList2,
  1646. articleList3,
  1647. };
  1648. },
  1649. created() {
  1650. },
  1651. swiper() {
  1652. // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
  1653. return this.$refs.swiperBox.swiper;
  1654. },
  1655. honorSwiper() {
  1656. return this.$refs.swiperHonorBox.swiper;
  1657. },
  1658. expertSwiper() {
  1659. return this.$refs.swiperExpertBox.swiper;
  1660. },
  1661. methods: {
  1662. tab(index) {
  1663. this.num = index;
  1664. },
  1665. getProdList(index) {
  1666. this.clickProdIndex = index;
  1667. },
  1668. getNewsList(index) {
  1669. this.clickNewsIndex = index;
  1670. },
  1671. clickProduct(item) {
  1672. // console.log(item);
  1673. // this.$router.push({ path: '/product/course'});
  1674. },
  1675. mobileEnter(e) {
  1676. "412px" != $(event.target).css("width") &&
  1677. ($(".panorama-education-list .mobile-education").css("width", "200px"),
  1678. $(event.target).css("width", "412px"),
  1679. $(".panorama-education-list .mobile-education")
  1680. .find(".big-mobile-education")
  1681. .css("display", "none"),
  1682. $(event.target).css("width", "412px"),
  1683. $(event.target)
  1684. .find(".big-mobile-education")
  1685. .fadeIn("fast"));
  1686. },
  1687. onSwiperRedied(swiper) {
  1688. // console.log('Swiper redied!', swiper)
  1689. },
  1690. stopSwiper() {
  1691. // 鼠标移入停止播放
  1692. // console.log(this.swiper);
  1693. // this.swiper.autoplay.stop();
  1694. },
  1695. startSwiper() {
  1696. // 移出继续播放
  1697. // this.swiper.autoplay.start();
  1698. },
  1699. channelEnter(item, index) {
  1700. this.currentTabImg = index;
  1701. },
  1702. channelLeave() {
  1703. // this.currentChannel = index;
  1704. },
  1705. tabEnter(item) {
  1706. this.currentTabId = item.id;
  1707. },
  1708. tabLeave(item) {
  1709. console.log(item);
  1710. },
  1711. handleChannel(item, index) {
  1712. this.currentChannel = index;
  1713. },
  1714. omoEnter(index) {
  1715. this.currentOMOTabIndex = index;
  1716. },
  1717. prev() {
  1718. this.swiper.slidePrev();
  1719. },
  1720. next() {
  1721. this.swiper.slideNext();
  1722. },
  1723. prevHoner() {
  1724. this.honorSwiper.slidePrev();
  1725. },
  1726. nextHoner() {
  1727. this.honorSwiper.slideNext();
  1728. },
  1729. handleTag(tab) {
  1730. this.currentTabId = tab.id
  1731. },
  1732. handleCourse(item) {
  1733. this.currentCourseType = item.type;
  1734. },
  1735. handleMore() {
  1736. let uri;
  1737. if (this.currentTabId == 1) {
  1738. uri = "https://zhongdezhihui.tmall.com/category-1336730794.htm"; // 幼儿网络版
  1739. } else if (this.currentTabId == 2) {
  1740. uri = "https://zhongdezhihui.tmall.com/category-1336730795.htm"; // 小学基础版
  1741. } else if (this.currentTabId == 3) {
  1742. uri = "https://zhongdezhihui.tmall.com/category-1336730796.htm"; // 小学提升版
  1743. } else if (this.currentTabId == 4) {
  1744. uri = "https://zhongdezhihui.tmall.com/category-1412283873.htm"; // 克鲁德
  1745. } else {
  1746. uri = "https://zhongdezhihui.tmall.com/search.htm"; // 全部
  1747. }
  1748. let id = "new_a";
  1749. this.createSuperLabel(uri, id);
  1750. },
  1751. courseMore() {
  1752. let uri = 'https://course.zaojiao.net/all/594191';
  1753. let id = "new_a";
  1754. this.createSuperLabel(uri, id);
  1755. },
  1756. createSuperLabel(url, id) {
  1757. let a = document.createElement("a");
  1758. a.setAttribute("href", url);
  1759. a.setAttribute("target", "_blank");
  1760. a.setAttribute("id", id);
  1761. // 防止反复添加
  1762. if (!document.getElementById(id)) {
  1763. document.body.appendChild(a);
  1764. }
  1765. a.click();
  1766. },
  1767. navPage(path) {
  1768. this.$router.push({path: path});
  1769. }
  1770. },
  1771. };
  1772. </script>
  1773. <style lang="scss">
  1774. @import "~static/common/style.sass";
  1775. .container {
  1776. width: 100%;
  1777. // background: #f0f2f5;
  1778. background: #fff;
  1779. height: auto;
  1780. }
  1781. .backtop {
  1782. font-size: 28px;
  1783. position: fixed;
  1784. right: 20px;
  1785. bottom: 20px;
  1786. background-color: red;
  1787. }
  1788. .title-content {
  1789. position: relative;
  1790. text-align: center;
  1791. }
  1792. .title-en {
  1793. position: absolute;
  1794. font-size: 56px;
  1795. font-family: PingFangSC-Semibold, sans-serif;
  1796. font-weight: 600;
  1797. color: rgba(35, 106, 250, 1);
  1798. opacity: 0.16;
  1799. line-height: 78px;
  1800. }
  1801. .title-zh {
  1802. position: relative;
  1803. display: inline-block;
  1804. font-size: 46px;
  1805. font-family: PingFangSC-Semibold, sans-serif;
  1806. font-weight: 600;
  1807. color: #333333;
  1808. text-align: center;
  1809. }
  1810. .more-btn {
  1811. margin: 90px auto 0px;
  1812. width: 138px;
  1813. height: 45px;
  1814. line-height: 45px;
  1815. text-align: center;
  1816. padding: 0 25px;
  1817. background: $theme_color_fu;
  1818. box-shadow: 0px 3px 9px 0px rgba(109, 140, 239, 0.82);
  1819. border-radius: 23px;
  1820. font-size: 20px;
  1821. font-family: PingFangSC-Medium, sans-serif;
  1822. font-weight: 500;
  1823. color: #ffffff;
  1824. cursor: pointer;
  1825. a {
  1826. color: #ffffff;
  1827. }
  1828. }
  1829. ul.cate-nav {
  1830. // margin: 124px 0 116px;
  1831. li.products-kind {
  1832. display: inline-block;
  1833. // margin: 0 30px;
  1834. cursor: pointer;
  1835. &:first-child {
  1836. margin-left: 0;
  1837. }
  1838. &.active {
  1839. a {
  1840. color: $theme_color;
  1841. font-size: 28px;
  1842. font-family: PingFangSC-Semibold, sans-serif;
  1843. font-weight: 600;
  1844. line-height: 40px;
  1845. transition: 0.5;
  1846. }
  1847. }
  1848. .line {
  1849. visibility: hidden;
  1850. margin: 22px auto 0;
  1851. width: 60px;
  1852. border-radius: 50px;
  1853. height: 15px;
  1854. background: $theme_color_fu;
  1855. box-shadow: 0px 2px 8px 0px rgba(45, 112, 245, 0.64);
  1856. // -webkit-transition: all 0.5s ease;
  1857. // -o-transition: all 0.5s ease;
  1858. // transition: all 0.5s ease;
  1859. }
  1860. a {
  1861. font-size: 24px;
  1862. line-height: 33px;
  1863. color: #747885;
  1864. }
  1865. }
  1866. li.products-kind:hover,
  1867. li.products-kind.active {
  1868. .line {
  1869. // display: block;
  1870. // visibility: visible;
  1871. // transition: all 0.5s ease;
  1872. }
  1873. }
  1874. }
  1875. .tabs {
  1876. .tab-box {
  1877. display: flex;
  1878. justify-content: space-between;
  1879. align-items: center;
  1880. margin: 0 auto;
  1881. .tabs-item {
  1882. a {
  1883. font-size: 24px;
  1884. font-family: PingFangSC-Regular, sans-serif;
  1885. font-weight: 400;
  1886. color: #747885;
  1887. line-height: 33px;
  1888. }
  1889. }
  1890. }
  1891. .bottom-line {
  1892. display: flex;
  1893. justify-content: center;
  1894. margin-top: 16px;
  1895. .bottom-line-img {
  1896. width: 100%;
  1897. .line-img-box {
  1898. width: 46px;
  1899. height: 4px;
  1900. background-color: $theme_color_fu;
  1901. box-shadow: 0px 2px 8px 0px rgba(111, 159, 254, 0.8);
  1902. border-radius: 100px;
  1903. transition: transform 1s;
  1904. }
  1905. // img {
  1906. // width: 75px;
  1907. // height: 30px;
  1908. // transition: transform 1s;
  1909. // }
  1910. }
  1911. }
  1912. }
  1913. .cate-list {
  1914. display: flex;
  1915. align-items: center;
  1916. flex-wrap: wrap;
  1917. .product-item {
  1918. position: relative;
  1919. box-sizing: border-box;
  1920. width: 372px;
  1921. margin-bottom: 42px;
  1922. // margin-right: 36px;
  1923. &:nth-child(3n) {
  1924. margin-right: 0px;
  1925. }
  1926. }
  1927. }
  1928. .index-show {
  1929. height: 470px;
  1930. .i-show-content {
  1931. .con-box {
  1932. .con {
  1933. text-align: center;
  1934. .num {
  1935. font-size: 40px;
  1936. font-family: Archivo-Bold, Archivo;
  1937. font-weight: bold;
  1938. color: #333333;
  1939. line-height: 45px;
  1940. .unit {
  1941. height: 28px;
  1942. font-size: 20px;
  1943. font-family: PingFangSC-Semibold, PingFang SC;
  1944. font-weight: 600;
  1945. color: #333333;
  1946. line-height: 28px;
  1947. }
  1948. }
  1949. .desc-01 {
  1950. margin-top: 15px;
  1951. font-size: 18px;
  1952. font-family: PingFangSC-Medium, PingFang SC;
  1953. font-weight: 500;
  1954. color: #333333;
  1955. line-height: 25px;
  1956. }
  1957. .desc-02 {
  1958. visibility: hidden;
  1959. margin-top: 7px;
  1960. font-size: 12px;
  1961. font-family: PingFangSC-Regular, PingFang SC;
  1962. font-weight: 400;
  1963. color: #83879B;
  1964. line-height: 17px;
  1965. }
  1966. }
  1967. }
  1968. ul {
  1969. display: flex;
  1970. justify-content: space-between;
  1971. padding: 115px 0 138px;
  1972. li {
  1973. padding: 44px 0 64px;
  1974. width: 318px;
  1975. &:hover {
  1976. height: 216px;
  1977. background: #FFFFFF;
  1978. box-shadow: 0px 2px 17px 0px rgba(230, 231, 242, 0.74);
  1979. border-radius: 30px;
  1980. .con-box {
  1981. .con {
  1982. .num {
  1983. color: #0D5CFA;
  1984. .unit {
  1985. color: #0D5CFA;
  1986. }
  1987. }
  1988. .desc-02 {
  1989. visibility: visible;
  1990. transition: 5s ease-in-out;
  1991. }
  1992. }
  1993. }
  1994. }
  1995. }
  1996. }
  1997. }
  1998. }
  1999. // index-thought
  2000. .index-thought {
  2001. padding: 150px 0 0;
  2002. .i-thought-content {
  2003. position: relative;
  2004. .t-top {
  2005. .title-en {
  2006. left: -147px;
  2007. top: -20px;
  2008. }
  2009. }
  2010. }
  2011. .thought-content-box {
  2012. text-align: center;
  2013. margin: 52px auto 0;
  2014. position: relative;
  2015. max-width: 1200px;
  2016. }
  2017. .map-content {
  2018. width: 100%;
  2019. position: absolute;
  2020. top: 118px;
  2021. .con-box {
  2022. .con {
  2023. text-align: center;
  2024. .num {
  2025. color: $theme_color_fu;
  2026. text-shadow: 0px 1px 3px #BED3FE;
  2027. font-size: 72px;
  2028. font-family: PingFangSC-Medium, sans-serif;
  2029. font-weight: 500;
  2030. color: #0D5CFA;
  2031. line-height: 100px;
  2032. .unit {
  2033. font-size: 30px;
  2034. font-family: PingFangSC-Regular, sans-serif;
  2035. font-weight: 400;
  2036. line-height: 42px;
  2037. color: $theme_color_fu;
  2038. }
  2039. }
  2040. .color-gray {
  2041. margin-top: 35px;
  2042. font-size: 20px;
  2043. font-family: PingFangSC-Medium, sans-serif;
  2044. font-weight: 500;
  2045. color: #515564;
  2046. line-height: 28px;
  2047. text-align: center;
  2048. }
  2049. }
  2050. }
  2051. ul {
  2052. display: flex;
  2053. justify-content: space-between;
  2054. li {
  2055. padding: 55px 0;
  2056. .hover-box {
  2057. visibility: hidden;
  2058. img {
  2059. width: 146px;
  2060. height: 146px;
  2061. }
  2062. }
  2063. &:hover {
  2064. .hover-box {
  2065. visibility: visible;
  2066. margin-top: 70px;
  2067. }
  2068. .con-box {
  2069. .color-gray {
  2070. margin-top: 28px;
  2071. }
  2072. }
  2073. }
  2074. &.one {
  2075. padding: 55px 70px;
  2076. &:hover {
  2077. background: rgba(237, 245, 253, 0.7);
  2078. transition: 0.5 ease-in;
  2079. // padding: 55px 70px;
  2080. }
  2081. }
  2082. &.two {
  2083. padding: 55px 20px;
  2084. &:hover {
  2085. transition: 0.5 ease-in;
  2086. background: rgba(240, 247, 235, 0.7);
  2087. }
  2088. }
  2089. &.three {
  2090. padding: 55px 68px;
  2091. &:hover {
  2092. transition: 0.5 ease-in;
  2093. background: rgba(255, 252, 238, 0.7);
  2094. }
  2095. }
  2096. }
  2097. }
  2098. }
  2099. }
  2100. // index-founder
  2101. .index-founder {
  2102. margin-top: 100px;
  2103. background: url('~assets/images/home/funder_bg.png');
  2104. background-size: cover;
  2105. height: 626px;
  2106. position: relative;
  2107. .index-founder-content {
  2108. display: flex;
  2109. align-items: flex-end;
  2110. height: 100%;
  2111. .found-left {
  2112. width: 663px;
  2113. max-width: 663px;
  2114. margin-right: 35px;
  2115. .title {
  2116. font-size: 34px;
  2117. font-family: PingFangSC-Medium, PingFang SC;
  2118. font-weight: 500;
  2119. color: #333333;
  2120. line-height: 48px;
  2121. margin-bottom: 190px;
  2122. }
  2123. .sub-title {
  2124. text-align: right;
  2125. margin-top: 15px;
  2126. height: 56px;
  2127. font-size: 20px;
  2128. font-family: PingFangSC-Medium, PingFang SC;
  2129. font-weight: 500;
  2130. color: #333333;
  2131. line-height: 28px;
  2132. }
  2133. .desc {
  2134. height: 154px;
  2135. font-size: 16px;
  2136. font-family: PingFangSC-Regular, PingFang SC;
  2137. font-weight: 400;
  2138. color: #646A7E;
  2139. line-height: 30px;
  2140. }
  2141. .btn {
  2142. margin: 40px 0 100px;
  2143. width: 203px;
  2144. height: 60px;
  2145. line-height: 60px;
  2146. text-align: center;
  2147. background: #0D5CFA;
  2148. border-radius: 30px;
  2149. a {
  2150. font-size: 20px;
  2151. font-family: PingFangSC-Medium, PingFang SC;
  2152. font-weight: 500;
  2153. color: #FFFFFF;
  2154. }
  2155. }
  2156. strong {
  2157. color: $theme_color_fu;
  2158. }
  2159. }
  2160. .found-right {
  2161. font-size: 0;
  2162. img {
  2163. width: 415px;
  2164. height: 588px;
  2165. }
  2166. }
  2167. }
  2168. }
  2169. /* index-education */
  2170. .index-education {
  2171. // max-width: 1200px;
  2172. height: 831px;
  2173. margin: 0 auto;
  2174. padding: 100px 0 70px;
  2175. .education-content-box {
  2176. text-align: center;
  2177. margin-top: 85px;
  2178. img {
  2179. width: 751px;
  2180. height: 492px;
  2181. }
  2182. }
  2183. }
  2184. /* index-thinking */
  2185. .index-thinking {
  2186. max-width: 1200px;
  2187. margin: 0 auto;
  2188. padding-top: 100px;
  2189. .i-t-content {
  2190. .content-box {
  2191. position: relative;
  2192. display: flex;
  2193. width: 997px;
  2194. margin: 85px auto 80px;
  2195. }
  2196. .t-conent-tabs {
  2197. position: absolute;
  2198. left: 0;
  2199. bottom: 25px;
  2200. width: 104px;
  2201. .tab-list {
  2202. display: flex;
  2203. flex-direction: column;
  2204. .tab-item {
  2205. display: inline-block;
  2206. width: 104px;
  2207. height: 38px;
  2208. line-height: 38px;
  2209. border-radius: 0px 100px 100px 0px;
  2210. border-top: 1px solid #FFFFFF;
  2211. border-right: 1px solid #FFFFFF;
  2212. border-bottom: 1px solid #FFFFFF;
  2213. font-size: 14px;
  2214. font-family: PingFangSC-Medium, PingFang SC;
  2215. font-weight: 500;
  2216. color: #FFFFFF;
  2217. margin-bottom: 8px;
  2218. padding-left: 8px;
  2219. &.tab-active {
  2220. background: #0D5CFA;
  2221. border-top: 1px solid #0D5CFA;
  2222. border-right: 1px solid #0D5CFA;
  2223. border-bottom: 1px solid #0D5CFA;
  2224. border: none;
  2225. }
  2226. }
  2227. }
  2228. }
  2229. .t-conent-box {
  2230. }
  2231. .t-conent-bg {
  2232. margin: 0 auto;
  2233. width: 997px;
  2234. height: 561px;
  2235. background-repeat: no-repeat;
  2236. background-size: cover;
  2237. display: none;
  2238. &.active {
  2239. display: block;
  2240. // animation: inOut 0.5s linear; /*动画名称*/
  2241. // -webkit-animation: inOut 0.5s linear;/*针对webkit内核*/
  2242. // opacity: 1;
  2243. // transition: opacity 1s linear;
  2244. }
  2245. }
  2246. }
  2247. }
  2248. /* index-channel */
  2249. .index-channel {
  2250. padding: 100px 0 150px;
  2251. background: #557FFF;
  2252. .i-c-content {
  2253. .title {
  2254. height: 48px;
  2255. font-size: 34px;
  2256. font-family: PingFangSC-Medium, PingFang SC;
  2257. font-weight: 500;
  2258. color: #FFFFFF;
  2259. line-height: 48px;
  2260. text-align: center;
  2261. }
  2262. .title-sub {
  2263. text-align: center;
  2264. margin: 10px auto 0;
  2265. height: 22px;
  2266. font-size: 16px;
  2267. font-family: PingFangSC-Regular, PingFang SC;
  2268. font-weight: 400;
  2269. color: #FFFFFF;
  2270. line-height: 24px;
  2271. }
  2272. }
  2273. .channel-content-box {
  2274. .channel-tabs {
  2275. display: flex;
  2276. justify-content: center;
  2277. margin-top: 36px;
  2278. .tab-item {
  2279. margin-right: 24px;
  2280. width: 152px;
  2281. height: 35px;
  2282. text-align: center;
  2283. line-height: 35px;
  2284. background: rgba(255, 255, 255, 0.2);
  2285. border-radius: 18px;
  2286. border: 1px solid rgba(255, 255, 255, 0.4);
  2287. font-size: 14px;
  2288. font-family: PingFangSC-Medium, PingFang SC;
  2289. font-weight: 500;
  2290. color: #FFFFFF;
  2291. cursor: pointer;
  2292. &.active {
  2293. background: #FFFFFF;
  2294. color: #557FFF;
  2295. }
  2296. }
  2297. }
  2298. .channel-content {
  2299. display: flex;
  2300. justify-content: space-between;
  2301. align-items: center;
  2302. margin-top: 65px;
  2303. .left {
  2304. font-size: 0;
  2305. img {
  2306. width: 894px;
  2307. height: 484px;
  2308. object-fit: cover;
  2309. border-radius: 20px;
  2310. }
  2311. }
  2312. .right {
  2313. .right-img {
  2314. position: relative;
  2315. font-size: 0;
  2316. margin-top: 12px;
  2317. border-radius: 20px;
  2318. &.active {
  2319. img {
  2320. border: 3px solid #FFFFFF;
  2321. }
  2322. .title {
  2323. width: 277px;
  2324. left: 3px;
  2325. bottom: 3px;
  2326. }
  2327. }
  2328. }
  2329. img {
  2330. width: 283px;
  2331. height: 154px;
  2332. border-radius: 20px;
  2333. object-fit: cover;
  2334. }
  2335. .title {
  2336. position: absolute;
  2337. width: 100%;
  2338. left: 0px;
  2339. bottom: 0px;
  2340. height: 71px;
  2341. background: linear-gradient(180deg, rgba(32, 32, 32, 0) 0%, rgba(46, 46, 46, 0.5) 100%);
  2342. font-size: 16px;
  2343. font-family: PingFangSC-Medium, PingFang SC;
  2344. font-weight: 500;
  2345. color: #FFFFFF;
  2346. border-radius: 0 0 20px 20px;
  2347. padding: 35px 0 14px 14px;
  2348. }
  2349. }
  2350. }
  2351. }
  2352. }
  2353. /* index-student */
  2354. .index-student {
  2355. padding: 100px 0 52px;
  2356. background: url("~assets/images/home/student_bg.png");
  2357. background-size: cover;
  2358. .swiper-wrapper {
  2359. justify-content: center;
  2360. }
  2361. .student-content-box {
  2362. position: relative;
  2363. margin-top: 70px;
  2364. .swiperBox {
  2365. width: 100%;
  2366. height: 100%;
  2367. }
  2368. .swiper-slide {
  2369. width: 283px;
  2370. height: 389px;
  2371. padding: 30px 34px;
  2372. background: #FFFFFF;
  2373. box-shadow: 0px 2px 17px 0px rgba(230, 231, 242, 0.74);
  2374. border-radius: 10px;
  2375. text-align: center;
  2376. .avatar {
  2377. font-size: 0;
  2378. img {
  2379. width: 164px;
  2380. height: 164px;
  2381. object-fit: cover;
  2382. }
  2383. }
  2384. .title {
  2385. margin-top: 18px;
  2386. font-size: 14px;
  2387. font-family: PingFangSC-Medium, PingFang SC;
  2388. font-weight: 500;
  2389. color: #333333;
  2390. line-height: 20px;
  2391. }
  2392. .info {
  2393. display: flex;
  2394. align-items: center;
  2395. justify-content: center;
  2396. margin-top: 18px;
  2397. font-size: 10px;
  2398. font-family: PingFangSC-Medium, PingFang SC;
  2399. font-weight: 500;
  2400. color: #333333;
  2401. span {
  2402. color: #333333;
  2403. font-size: 10px;
  2404. line-height: 14px;
  2405. padding: 0 4px;
  2406. }
  2407. .line {
  2408. width: 1px;
  2409. height: 8px;
  2410. background: #333333;
  2411. }
  2412. }
  2413. .desc {
  2414. margin-top: 13px;
  2415. text-align: left;
  2416. font-size: 10px;
  2417. font-family: PingFangSC-Regular, PingFang SC;
  2418. font-weight: 400;
  2419. color: #646A7E;
  2420. line-height: 14px;
  2421. }
  2422. }
  2423. }
  2424. .student-pagination {
  2425. display: flex;
  2426. align-items: center;
  2427. justify-content: center;
  2428. width: 116px;
  2429. margin: 40px auto 0;
  2430. height: 8px;
  2431. background: #FFFFFF;
  2432. border-radius: 6px;
  2433. .swiper-pagination-bullet {
  2434. width: 43px;
  2435. height: 8px;
  2436. background: #ffffff;
  2437. border-radius: 50%;
  2438. &:focus {
  2439. outline: none;
  2440. }
  2441. &.swiper-pagination-bullet-active {
  2442. width: 82px;
  2443. height: 8px;
  2444. background: #0D5CFA;
  2445. border-radius: 6px;
  2446. }
  2447. }
  2448. }
  2449. }
  2450. // index-product
  2451. .index-product {
  2452. // display: flex;
  2453. // align-items: center;
  2454. height: 526px;
  2455. .product-content-box {
  2456. position: relative;
  2457. // width: 1200px;
  2458. // padding: 112px 250px 86px 250px;
  2459. .swiperBox {
  2460. margin-top: 85px;
  2461. }
  2462. }
  2463. .swiper-button-prev,
  2464. .swiper-button-next {
  2465. color: #dee9fe;
  2466. &:focus {
  2467. outline: none;
  2468. }
  2469. }
  2470. .swiper-button-prev {
  2471. left: 84px;
  2472. }
  2473. .swiper-button-next {
  2474. right: 104px;
  2475. }
  2476. .swiper-wrapper {
  2477. // max-width: 1200px;
  2478. p.name {
  2479. font-size: 28px;
  2480. font-family: PingFangSC-Semibold, sans-serif;
  2481. font-weight: 600;
  2482. color: #ffffff;
  2483. text-align: center;
  2484. }
  2485. }
  2486. .swiper-slide {
  2487. width: 589px;
  2488. font-size: 0;
  2489. img {
  2490. width: 100%;
  2491. }
  2492. }
  2493. }
  2494. /* index-course */
  2495. .index-course {
  2496. padding-top: 164px;
  2497. max-width: 1200px;
  2498. margin: 0 auto;
  2499. .title-en {
  2500. left: -158px;
  2501. top: -19px;
  2502. }
  2503. .bottom-line {
  2504. margin-top: 16px;
  2505. .bottom-line-img {
  2506. width: 100%;
  2507. font-size: 0;
  2508. img {
  2509. width: 75px;
  2510. height: 30px;
  2511. transition: transform 1s;
  2512. }
  2513. }
  2514. }
  2515. .course-content-box {
  2516. margin-top: 125px;
  2517. .course-cate-nav {
  2518. display: flex;
  2519. justify-content: space-between;
  2520. }
  2521. }
  2522. .course-cate-list {
  2523. margin-top: 82px;
  2524. .course-product-item {
  2525. width: 365px;
  2526. margin-right: 52px;
  2527. transition: transform .3s ease-in-out;
  2528. &:nth-child(3n) {
  2529. margin-right: 0px;
  2530. }
  2531. &:hover {
  2532. transform: translate3d(0, -8px, 0);
  2533. }
  2534. .course-product-item-img {
  2535. position: relative;
  2536. font-size: 0;
  2537. width: 365px;
  2538. height: 350px;
  2539. img {
  2540. width: 100%;
  2541. height: 100%;
  2542. object-fit: cover;
  2543. border-radius: 18px 18px 0px 0px;
  2544. }
  2545. .course-product-item-play {
  2546. position: absolute;
  2547. left: 50%;
  2548. top: 50%;
  2549. transform: translate(-50%, -50%);
  2550. width: 62px;
  2551. font-size: 0;
  2552. }
  2553. }
  2554. }
  2555. }
  2556. .course-product-info {
  2557. box-sizing: border-box;
  2558. background: #ffffff;
  2559. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  2560. border-radius: 0px 0px 18px 18px;
  2561. padding: 26px 22px;
  2562. .course-product-title {
  2563. height: 28px;
  2564. font-size: 20px;
  2565. font-weight: 400;
  2566. color: rgba(52, 62, 48, 1);
  2567. line-height: 28px;
  2568. overflow: hidden; //超出一行文字自动隐藏
  2569. text-overflow: ellipsis; //文字隐藏后添加省略号
  2570. white-space: nowrap; //强制不换行
  2571. }
  2572. .course-product-content {
  2573. margin-top: 16px;
  2574. display: flex;
  2575. align-items: center;
  2576. justify-content: space-between;
  2577. }
  2578. .course-product-price {
  2579. color: #ea0b4a;
  2580. font-size: 20px;
  2581. // margin-top: 13px;
  2582. .price-num {
  2583. font-size: 30px;
  2584. font-weight: 600;
  2585. line-height: 26px;;
  2586. }
  2587. }
  2588. .course-product-price-text {
  2589. font-size: 30px;
  2590. font-weight: 600;
  2591. line-height: 30px;
  2592. }
  2593. .course-product-user {
  2594. display: flex;
  2595. align-items: flex-end;
  2596. img {
  2597. width: 16px;
  2598. height: 19px;
  2599. margin-right: 10px;
  2600. }
  2601. .views {
  2602. font-size: 15px;
  2603. font-family: PingFangSC-Regular, sans-serif;
  2604. font-weight: 400;
  2605. color: #418EFF;
  2606. line-height: 21px;
  2607. }
  2608. }
  2609. }
  2610. }
  2611. .index-omo {
  2612. padding: 100px 0 150px;
  2613. .omo-content-box {
  2614. display: flex;
  2615. justify-content: space-between;
  2616. padding: 0 16px;
  2617. margin-top: 85px;
  2618. }
  2619. .omo-tab {
  2620. padding: 15px 0;
  2621. .omo-item {
  2622. position: relative;
  2623. width: 430px;
  2624. padding: 48px 34px;
  2625. &.active {
  2626. // background: #FFFFFF;
  2627. box-shadow: 0px 2px 17px 0px rgba(230, 231, 242, 0.74);
  2628. border-radius: 20px;
  2629. &::after {
  2630. position: absolute;
  2631. display: block;
  2632. width: 0;
  2633. height: 0;
  2634. border-style: solid;
  2635. border-width: 18px;
  2636. border-color: #FFFFFF #FFFFFF transparent transparent;
  2637. top: calc(50% - 18px);
  2638. transform: rotate(45deg);
  2639. pointer-events: none;
  2640. content: "";
  2641. left: calc(100% - 20px);
  2642. box-shadow: 2px -2px 5px rgba(243, 243, 245, 0.74);
  2643. }
  2644. .title {
  2645. color: #0D5CFA;
  2646. }
  2647. .desc {
  2648. color: #38393A;
  2649. }
  2650. }
  2651. .title {
  2652. font-size: 18px;
  2653. font-family: PingFangSC-Medium, PingFang SC;
  2654. font-weight: 500;
  2655. color: #666666;
  2656. line-height: 25px;
  2657. img {
  2658. width: 30px;
  2659. height: 30px;
  2660. vertical-align: middle;
  2661. margin-right: 16px;
  2662. }
  2663. }
  2664. .desc {
  2665. margin-top: 9px;
  2666. height: 20px;
  2667. font-size: 14px;
  2668. font-family: PingFangSC-Regular, PingFang SC;
  2669. font-weight: 400;
  2670. color: #646A7E;
  2671. line-height: 20px;
  2672. }
  2673. }
  2674. }
  2675. .omo-con {
  2676. width: 724px;
  2677. height: 649px;
  2678. background-size: cover;
  2679. animation: inOut 1s linear; /*动画名称*/
  2680. -webkit-animation: inOut 1s linear; /*针对webkit内核*/
  2681. background-size: cover;
  2682. }
  2683. // .omo-con1 {
  2684. // background: url('~assets/images/home/omo_content_01.png') no-repeat center center;
  2685. // background-size: cover;
  2686. // }
  2687. // .omo-con2 {
  2688. // background: url('~assets/images/home/omo_content_02.png');
  2689. // background-size: cover;
  2690. // }
  2691. // .omo-con3 {
  2692. // background: url('~assets/images/home/omo_content_03.png');
  2693. // background-size: cover;
  2694. // }
  2695. // .omo-con4 {
  2696. // background: url('~assets/images/home/omo_content_04.png');
  2697. // background-size: cover;
  2698. // }
  2699. }
  2700. // index-scenes
  2701. .index-scenes {
  2702. background: #f7fbff;
  2703. padding: 217px 0 228px;
  2704. .i-s-content {
  2705. .title-en {
  2706. left: -140px;
  2707. top: -30px;
  2708. }
  2709. }
  2710. .scenes-content-box {
  2711. margin: 102px auto 0;
  2712. max-width: 1200px;
  2713. .panorama-education-list {
  2714. margin: 0 auto;
  2715. height: 468px;
  2716. display: -webkit-box;
  2717. display: -ms-flexbox;
  2718. display: flex;
  2719. -webkit-box-pack: center;
  2720. -ms-flex-pack: center;
  2721. justify-content: center;
  2722. .mobile-education {
  2723. width: 160px;
  2724. height: 468px;
  2725. border: 1px solid #eee;
  2726. border-left: none;
  2727. background-color: #fff;
  2728. text-align: center;
  2729. position: relative;
  2730. cursor: pointer;
  2731. &:nth-child(1) {
  2732. border-left: 1px solid #eee;
  2733. }
  2734. .mobile-small-img {
  2735. width: 50px;
  2736. height: 47px;
  2737. margin: 72px auto 32px;
  2738. img {
  2739. width: 50px;
  2740. height: 47px;
  2741. }
  2742. }
  2743. .mobile-education-title {
  2744. font-size: 14px;
  2745. font-family: PingFangSC-Medium, sans-serif;
  2746. font-weight: 500;
  2747. color: #333436;
  2748. line-height: 20px;
  2749. }
  2750. .mobile-education-sub {
  2751. font-size: 12px;
  2752. font-family: PingFangSC-Regular, sans-serif;
  2753. font-weight: 400;
  2754. color: #38393A;
  2755. line-height: 17px;
  2756. height: 17px;
  2757. }
  2758. .mobile-education-img {
  2759. width: 160px;
  2760. height: 128px;
  2761. margin: 76px auto 0;
  2762. img {
  2763. width: 160px;
  2764. height: 128px;
  2765. }
  2766. }
  2767. }
  2768. .mobile-education-1 {
  2769. width: 412px;
  2770. .big-mobile-education {
  2771. display: block;
  2772. }
  2773. }
  2774. .big-mobile-education {
  2775. display: none;
  2776. background: #fff;
  2777. // width: 346px;
  2778. // height: 460px;
  2779. width: 412px;
  2780. height: 468px;
  2781. position: absolute;
  2782. z-index: 3;
  2783. opacity: 1;
  2784. left: -1px;
  2785. top: -1px;
  2786. border: 1px solid #105cfb;
  2787. .pc-education-top {
  2788. display: -webkit-box;
  2789. display: -ms-flexbox;
  2790. display: flex;
  2791. justify-content: space-between;
  2792. margin-left: 36px;
  2793. .pc-education-top-content {
  2794. display: flex;
  2795. }
  2796. .education-gzh {
  2797. font-size: 0;
  2798. margin-top: 32px;
  2799. img {
  2800. width: 101px;
  2801. height: 99px;
  2802. vertical-align: middle;
  2803. }
  2804. }
  2805. .pc-small-img {
  2806. width: 42px;
  2807. height: 34px;
  2808. margin-top: 56px;
  2809. img {
  2810. width: 42px;
  2811. height: 34px;
  2812. }
  2813. }
  2814. .education-title-box {
  2815. margin-top: 42px;
  2816. margin-left: 20px;
  2817. .education-title {
  2818. height: 24px;
  2819. font-size: 17px;
  2820. font-family: PingFangSC-Medium, sans-serif;
  2821. font-weight: 500;
  2822. color: #333436;
  2823. line-height: 24px;
  2824. text-align: left;
  2825. }
  2826. .education-sub-title {
  2827. margin-top: 4px;
  2828. height: 18px;
  2829. line-height: 18px;
  2830. font-size: 13px;
  2831. font-family: PingFangSC-Regular, sans-serif;
  2832. font-weight: 400;
  2833. color: #38393A;
  2834. text-align: left;
  2835. }
  2836. }
  2837. }
  2838. .education-img {
  2839. // width: 306px;
  2840. width: 378px;
  2841. height: auto;
  2842. // margin: 48px auto 0;
  2843. img {
  2844. width: 378px;
  2845. height: auto;
  2846. }
  2847. }
  2848. .mobile-small-img {
  2849. width: 48px;
  2850. height: 48px;
  2851. margin: 68px auto 26px;
  2852. img {
  2853. width: 48px;
  2854. height: 48px;
  2855. }
  2856. }
  2857. .mobile-education-title {
  2858. height: 24px;
  2859. font-size: 17px;
  2860. font-family: PingFangSC-Medium, sans-serif;
  2861. font-weight: 500;
  2862. color: #333436;
  2863. line-height: 24px;
  2864. margin-bottom: 8px;
  2865. }
  2866. .mobile-education-sub {
  2867. font-size: 13px;
  2868. font-family: PingFangSC-Regular, sans-serif;
  2869. font-weight: 400;
  2870. color: #38393A;
  2871. line-height: 18px;
  2872. }
  2873. .mobile-education-img {
  2874. width: 240px;
  2875. height: 192px;
  2876. margin: 76px auto 0;
  2877. img {
  2878. width: 240px;
  2879. height: 192px;
  2880. }
  2881. }
  2882. }
  2883. }
  2884. }
  2885. }
  2886. // index-town
  2887. .index-town {
  2888. position: relative;
  2889. height: 1370px;
  2890. box-sizing: border-box;
  2891. padding-top: 180px;
  2892. .i-town-content {
  2893. .title-en {
  2894. left: 50%;
  2895. text-align: left;
  2896. // transform: translate(-50%);
  2897. width: 800px;
  2898. left: -150px;
  2899. top: -30px;
  2900. }
  2901. .title-sub {
  2902. margin-top: 28px;
  2903. text-align: center;
  2904. font-size: 24px;
  2905. font-family: PingFangSC-Regular, sans-serif;
  2906. font-weight: 400;
  2907. color: #999999;
  2908. line-height: 33px;
  2909. }
  2910. .town-content-box {
  2911. .town-btn-group {
  2912. margin-top: 52px;
  2913. display: flex;
  2914. font-size: 29px;
  2915. font-family: PingFangSC-Medium, sans-serif;
  2916. font-weight: 500;
  2917. color: #ffffff;
  2918. line-height: 40px;
  2919. text-align: center;
  2920. .town-btn-about {
  2921. //428 120
  2922. width: 180px;
  2923. height: 60px;
  2924. line-height: 60px;
  2925. border-radius: 30px;
  2926. border: 1px solid $theme_color_fu;
  2927. margin: 0 290px 0 308px;
  2928. cursor: pointer;
  2929. a {
  2930. color: $theme_color_fu;
  2931. }
  2932. &:hover {
  2933. background: $theme_color_fu;
  2934. a {
  2935. color: #fff;
  2936. }
  2937. }
  2938. }
  2939. .town-btn-join {
  2940. width: 180px;
  2941. height: 60px;
  2942. line-height: 60px;
  2943. background: $theme_color_fu;
  2944. box-shadow: 0px 4px 9px 0px rgba(91, 141, 240, 0.83);
  2945. border-radius: 30px;
  2946. cursor: pointer;
  2947. a {
  2948. color: #fff;
  2949. }
  2950. }
  2951. }
  2952. }
  2953. }
  2954. .town-content-skill {
  2955. // position: relative;
  2956. .town-content-img {
  2957. position: absolute;
  2958. bottom: 0;
  2959. left: 50%;
  2960. transform: translateX(-50%);
  2961. // text-align: center;
  2962. font-size: 0;
  2963. z-index: 10;
  2964. .skill-item {
  2965. position: absolute;
  2966. text-align: center;
  2967. p {
  2968. position: absolute;
  2969. width: 100px;
  2970. bottom: -5px;
  2971. left: 50%;
  2972. transform: translateX(-50%);
  2973. font-size: 20px;
  2974. font-family: PingFangSC-Medium, sans-serif;
  2975. font-weight: 500;
  2976. color: #38393a;
  2977. text-align: center;
  2978. &.big-font {
  2979. font-size: 24px;
  2980. }
  2981. }
  2982. }
  2983. .skill-item-01 {
  2984. left: -160px;
  2985. top: -158px;
  2986. }
  2987. .skill-item-02 {
  2988. left: 70px;
  2989. top: -130px;
  2990. }
  2991. .skill-item-03 {
  2992. left: 450px;
  2993. top: -248px;
  2994. }
  2995. .skill-item-04 {
  2996. right: -80px;
  2997. top: -240px;
  2998. }
  2999. .skill-item-05 {
  3000. left: -232px;
  3001. top: 96px;
  3002. }
  3003. .skill-item-06 {
  3004. left: -12px;
  3005. top: 130px;
  3006. }
  3007. .skill-item-07 {
  3008. right: -50px;
  3009. top: -18px;
  3010. }
  3011. .skill-item-08 {
  3012. right: -196px;
  3013. top: 120px;
  3014. }
  3015. .skill-item-09 {
  3016. left: -184px;
  3017. top: 304px;
  3018. }
  3019. .skill-item-10 {
  3020. right: -146px;
  3021. top: 340px;
  3022. }
  3023. }
  3024. }
  3025. .town_bottom_bg {
  3026. position: absolute;
  3027. bottom: 0;
  3028. font-size: 0;
  3029. width: 100%;
  3030. img {
  3031. width: 100%;
  3032. }
  3033. }
  3034. }
  3035. // index-honor
  3036. .index-honor {
  3037. // background-image: url("~assets/images/index/honor_bg.png");
  3038. // background-repeat: no-repeat;
  3039. // background-position: top 20px right 115px;
  3040. // background-color: #f7fbff;
  3041. padding: 100px 0 150px;
  3042. .title-en {
  3043. left: -140px;
  3044. top: -30px;
  3045. }
  3046. .i-honor-content {
  3047. max-width: 1200px;
  3048. margin: 0 auto;
  3049. .honer-content-box {
  3050. position: relative;
  3051. padding: 0 100px;
  3052. margin-top: 37px;
  3053. .img-wrap {
  3054. height: 157px;
  3055. width: 182px;
  3056. background: #EBEBEE;
  3057. font-size: 0;
  3058. text-align: center;
  3059. padding-top: 34px;
  3060. border-radius: 10px 10px 0px 0px;
  3061. .honer-img {
  3062. width: 132px;
  3063. height: 89px;
  3064. object-fit: cover;
  3065. }
  3066. }
  3067. .info {
  3068. width: 182px;
  3069. height: 54px;
  3070. padding: 8px 38px;
  3071. text-align: center;
  3072. background: #FFFFFF;
  3073. border: 1px solid rgba(153, 153, 153, 0.1);
  3074. font-size: 12px;
  3075. font-family: PingFangSC-Medium, PingFang SC;
  3076. font-weight: 500;
  3077. color: #333333;
  3078. line-height: 17px;
  3079. text-overflow: -o-ellipsis-lastline;
  3080. overflow: hidden;
  3081. text-overflow: ellipsis;
  3082. display: -webkit-box;
  3083. -webkit-line-clamp: 2;
  3084. line-clamp: 2;
  3085. -webkit-box-orient: vertical;
  3086. }
  3087. }
  3088. .honer-swiper-button {
  3089. position: absolute;
  3090. width: 8px;
  3091. height: 13px;
  3092. top: 50%;
  3093. transform: translateY(-50%);
  3094. z-index: 2;
  3095. outline: 0;
  3096. cursor: pointer;
  3097. text-align: center;
  3098. color: #999999;
  3099. }
  3100. .honer-swiper-button-prev,
  3101. .honer-swiper-button-next {
  3102. color: #999999;
  3103. [class^=el-icon-] {
  3104. font-weight: 600
  3105. }
  3106. &:focus {
  3107. outline: none;
  3108. }
  3109. }
  3110. .honer-swiper-button-prev {
  3111. left: 70px;
  3112. }
  3113. .honer-swiper-button-next {
  3114. right: 70px;
  3115. }
  3116. }
  3117. .swiper-slide {
  3118. width: 182px;
  3119. }
  3120. }
  3121. // index-article
  3122. .index-article {
  3123. padding: 180px 0 176px;
  3124. .title-en {
  3125. top: -22px;
  3126. left: -128px;
  3127. }
  3128. .article-content-box {
  3129. margin-top: 85px;
  3130. .article-type-title {
  3131. width: 180px;
  3132. height: 42px;
  3133. line-height: 42px;
  3134. font-size: 30px;
  3135. font-family: PingFangSC-Semibold, sans-serif;
  3136. font-weight: 600;
  3137. color: #3a4239;
  3138. margin-bottom: 12px;
  3139. }
  3140. .article-type-header {
  3141. display: flex;
  3142. justify-content: space-between;
  3143. align-items: center;
  3144. i {
  3145. margin-right: 15px;
  3146. color: #999999;
  3147. font-size: 20px;
  3148. }
  3149. }
  3150. .article-content-top {
  3151. display: flex;
  3152. .article-content-top-left {
  3153. width: 844px;
  3154. margin-right: 10px;
  3155. .article-content-info {
  3156. height: 352px;
  3157. position: relative;
  3158. overflow: hidden;
  3159. &:hover {
  3160. img {
  3161. transform: scale(1.2);
  3162. transition: transform 1s;
  3163. }
  3164. }
  3165. img {
  3166. height: 100%;
  3167. width: 100%;
  3168. border-radius: 8px;
  3169. object-fit: cover;
  3170. }
  3171. .info-title {
  3172. width: 100%;
  3173. padding: 8px 50px;
  3174. font-size: 16px;
  3175. font-family: PingFangSC-Medium, sans-serif;
  3176. font-weight: 500;
  3177. color: #ffffff;
  3178. line-height: 22px;
  3179. position: absolute;
  3180. overflow: hidden; //超出的文本隐藏
  3181. text-overflow: ellipsis; //溢出用省略号显示
  3182. white-space: nowrap; //溢出不换行,只能显示一行
  3183. bottom: 0;
  3184. background: rgba(92, 94, 93, 0.31);
  3185. border-radius: 0px 0px 7px 7px;
  3186. }
  3187. }
  3188. }
  3189. .article-content-top-right {
  3190. width: 346px;
  3191. font-size: 0;
  3192. .article-content-info {
  3193. height: 352px;
  3194. display: flex;
  3195. flex-wrap: wrap;
  3196. flex-direction: column;
  3197. justify-content: space-between;
  3198. align-content: space-between;
  3199. .article-item-right {
  3200. position: relative;
  3201. width: 170px;
  3202. height: 170px;
  3203. overflow: hidden;
  3204. // margin-right: 6px;
  3205. &:nth-child(2n) {
  3206. margin-right: 0;
  3207. }
  3208. &:hover {
  3209. img {
  3210. transform: scale(1.2);
  3211. transition: transform 1s;
  3212. }
  3213. }
  3214. img {
  3215. height: 100%;
  3216. width: 100%;
  3217. border-radius: 8px;
  3218. object-fit: cover;
  3219. }
  3220. p {
  3221. padding: 0 30px 0 17px;
  3222. position: absolute;
  3223. bottom: 12px;
  3224. line-height: 22px;
  3225. font-size: 16px;
  3226. font-weight: 500;
  3227. color: #ffffff;
  3228. overflow: hidden;
  3229. text-overflow: ellipsis;
  3230. display: -webkit-box;
  3231. -webkit-box-orient: vertical;
  3232. -webkit-line-clamp: 2;
  3233. }
  3234. }
  3235. }
  3236. }
  3237. }
  3238. .article-content-bottom {
  3239. margin-top: 38px;
  3240. .article-content-bottom-info {
  3241. display: flex;
  3242. .article-content-bottom-left {
  3243. width: 400px;
  3244. height: 270px;
  3245. border-radius: 8px;
  3246. margin-right: 55px;
  3247. overflow: hidden;
  3248. &:hover {
  3249. img {
  3250. transform: scale(1.2);
  3251. transition: transform 1s;
  3252. }
  3253. }
  3254. img {
  3255. height: 100%;
  3256. width: 100%;
  3257. border-radius: 8px;
  3258. object-fit: cover;
  3259. }
  3260. }
  3261. .article-content-bottom-right {
  3262. flex: 1;
  3263. .title {
  3264. color: #3a4239;
  3265. font-size: 22px;
  3266. margin-top: 12px;
  3267. font-family: PingFangSC-Medium, sans-serif;
  3268. font-weight: 500;
  3269. overflow: hidden;
  3270. text-overflow: ellipsis;
  3271. display: -webkit-box;
  3272. -webkit-box-orient: vertical;
  3273. -webkit-line-clamp: 2;
  3274. }
  3275. .desc {
  3276. font-size: 20px;
  3277. margin-top: 30px;
  3278. color: #7d7d7e;
  3279. font-family: PingFangSC-Regular, sans-serif;
  3280. font-weight: 400;
  3281. line-height: 33px;
  3282. overflow: hidden;
  3283. text-overflow: ellipsis;
  3284. display: -webkit-box;
  3285. -webkit-box-orient: vertical;
  3286. -webkit-line-clamp: 2;
  3287. }
  3288. .time {
  3289. font-size: 18px;
  3290. color: #9ba09a;
  3291. margin-top: 86px;
  3292. }
  3293. }
  3294. }
  3295. }
  3296. }
  3297. }
  3298. // index-expert
  3299. .index-expert {
  3300. height: 883px;
  3301. padding: 100px 0 150px;
  3302. // background: url("~assets/images/index/expert_bg.png") no-repeat;
  3303. .title-en {
  3304. left: -133px;
  3305. top: -30px;
  3306. }
  3307. #certify {
  3308. position: relative;
  3309. width: 1200px;
  3310. margin: 0 auto;
  3311. }
  3312. .e-content-box {
  3313. margin-top: 46px;
  3314. }
  3315. .swiper-container {
  3316. width: 100%;
  3317. height: 100%;
  3318. text-align: center;
  3319. .swiper-wrapper {
  3320. width: 100%;
  3321. text-align: center;
  3322. .swiper-slide {
  3323. width: 623px !important;
  3324. height: 371px;
  3325. background: none;
  3326. img {
  3327. width: 623px;
  3328. height: 371px;
  3329. }
  3330. }
  3331. }
  3332. }
  3333. .swiper-pagination {
  3334. display: flex;
  3335. align-items: center;
  3336. justify-content: center;
  3337. width: 100%;
  3338. margin-top: 47px;
  3339. .swiper-pagination-bullet {
  3340. width: 11px;
  3341. height: 11px;
  3342. background: #CBCDD1;
  3343. border-radius: 50%;
  3344. margin: 0 11px;
  3345. &:focus {
  3346. outline: none;
  3347. }
  3348. &.swiper-pagination-bullet-active {
  3349. width: 47px;
  3350. height: 12px;
  3351. background: #0D5CFA;
  3352. box-shadow: 0px 2px 6px 0px rgba(84, 135, 237, 0.89);
  3353. border-radius: 20px;
  3354. }
  3355. }
  3356. }
  3357. }
  3358. @keyframes inOut {
  3359. 0% {
  3360. opacity: 0.5;
  3361. }
  3362. 100% {
  3363. opacity: 1;
  3364. }
  3365. }
  3366. </style>