index.vue 104 KB

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