index.vue 87 KB

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