index.vue 91 KB

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