index.vue 108 KB

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