index.vue 108 KB

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