index.vue 83 KB

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