index.vue 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. <template>
  2. <div class="container">
  3. <!-- banner -->
  4. <VBanner :bannerData="bannerData"></VBanner>
  5. <!-- 创始人 -->
  6. <div class="index-founder">
  7. <div class="founder-content-box">
  8. <div class="founder_img">
  9. <img src="~/assets/images/index/img_boss.png" alt="">
  10. </div>
  11. <div class="founder_content">
  12. <div class="name founder-item">
  13. <span class="dot"></span>
  14. <p>中德智慧创始人</p>
  15. </div>
  16. <p class="title founder-item">培养优质思维模式,建构思维“芯”</p>
  17. <p class="desc founder-item">全球优质儿童逻辑思维教育专家以国际教育理念为指导,推动中国学前教育事业发展成为中国学前儿童思维教育领域奠基者和创领者之- -率先领导和实践幼儿园思维游戏化教学,用全球同频使用的优质思维教育内容,为0-12岁儿童培养优质思维模式,建构思维“芯”。是国际化科技教育内容的创始者,以“让中国孩子幸福成长”为使命,始终以‘走出去、请进来”、“洋为中用”的全球化视野,融合中西文化,全力打造具有成长型思维模式的未来人才</p>
  18. <div class="btn founder-item">
  19. <nuxt-link to="/">了解中德智慧</nuxt-link>
  20. </div>
  21. </div>
  22. </div>
  23. <!-- <div class="found-left">
  24. <img src="~/assets/images/index/found_left.png" alt="" srcset="">
  25. </div> -->
  26. <div class="found-right">
  27. <img src="~/assets/images/index/found_right.png" alt="" srcset="">
  28. </div>
  29. </div>
  30. <!-- 思维“芯”产品 -->
  31. <div class="index-thinking">
  32. <div class="i-t-content">
  33. <div class="t-top title-content">
  34. <!-- <div class="title-en">PRODUCT</div> -->
  35. <div class="title-zh">思维“芯”产品</div>
  36. </div>
  37. <div class="content-box thinking-content-box">
  38. <div class="cate-box thinking-cate-box">
  39. <ul class="cate-nav thinking-cate-nav">
  40. <li
  41. class="thinking-products-kind"
  42. v-for="(item, index) in productCate"
  43. :class="{active:index == clickProdIndex}"
  44. :key="index"
  45. @click="getProdList(index)"
  46. >
  47. <nuxt-link to="/">{{ item.title }}</nuxt-link>
  48. <div class="line"></div>
  49. </li>
  50. </ul>
  51. <div class="cate-list thinking-cate-list">
  52. <div
  53. class="thinking-product-item"
  54. v-for="(item, index) in productCate"
  55. :key="index"
  56. @click="clickProduct(item)"
  57. >
  58. <div class="thinking-product-item-img">
  59. <nuxt-link to="/">
  60. <img src="~/assets/images/index/product.png" alt="" srcset="">
  61. </nuxt-link>
  62. <div class="product-tag">基础版
  63. <!-- <img src="~/assets/images/index/product_tag.png" alt="" srcset=""> -->
  64. </div>
  65. </div>
  66. <div class="thinking-product-info">
  67. <div class="thinking-product-title">
  68. <nuxt-link to="/">幼小衔接课程……</nuxt-link>
  69. </div>
  70. <div class="thinking-product-content">
  71. <div class="thinking-product-price">¥
  72. <span class="price-num">888</span>
  73. </div>
  74. <div class="thinking-product-btn">
  75. <nuxt-link to="/">查看产品</nuxt-link>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <div class="more-btn">更多产品</div>
  84. </div>
  85. </div>
  86. <!-- 产品轮播 -->
  87. <div class="index-product">
  88. <div class="product-content-box">
  89. <div class="swiper swiperBox" v-swiper:swiper="swiperOption" ref="swiperBox" @mouseenter="stopSwiper" @mouseleave="startSwiper">
  90. <div class="swiper-wrapper">
  91. <div v-for="(item, index) in productImage" :key="index" class="swiper-slide">
  92. <img :src="item.imgUrl" />
  93. <p class="name">{{ item.title }}</p>
  94. </div>
  95. </div>
  96. </div>
  97. <!-- <div class="expert-swiper-pagination" slot="pagination"></div> -->
  98. <div class="swiper-button-prev" slot="button-prev" @click="prev"></div>
  99. <div class="swiper-button-next" slot="button-next" @click="next"></div>
  100. </div>
  101. </div>
  102. <!-- 网校课程 -->
  103. <div class="index-course">
  104. <div class="i-c-content">
  105. <div class="c-top title-content">
  106. <!-- <div class="title-en">PRODUCT</div> -->
  107. <div class="title-zh">网校课程</div>
  108. </div>
  109. <div class="content-box course-content-box">
  110. <div class="cate-box course-cate-box">
  111. <ul class="cate-nav course-cate-nav">
  112. <li
  113. class="products-kind thinking-products-kind"
  114. v-for="(item, index) in courseCate"
  115. :class="{active:index == clickProdIndex}"
  116. :key="index"
  117. @click="getProdList(index)"
  118. >
  119. <nuxt-link to="/">{{ item.title }}</nuxt-link>
  120. <div class="line"></div>
  121. </li>
  122. </ul>
  123. <div class="cate-list course-cate-list">
  124. <div
  125. class="product-item course-product-item"
  126. v-for="(item, index) in courseCate"
  127. :key="index"
  128. >
  129. <div class="product-item-img course-product-item-img">
  130. <nuxt-link target="_blank" to="/">
  131. <img src="~/assets/images/index/product_course@3x.png" alt="" srcset="">
  132. </nuxt-link>
  133. <div class="course-product-item-play">
  134. <nuxt-link target="_blank" to="/">
  135. <img src="~/assets/images/index/player.png" alt="" srcset="">
  136. </nuxt-link>
  137. </div>
  138. </div>
  139. <div class="course-product-info">
  140. <div class="course-product-title">幼小衔接课程……</div>
  141. <div class="course-product-content">
  142. <div class="course-product-price">¥
  143. <span class="price-num">888</span>
  144. </div>
  145. <div class="course-product-user">
  146. <img src="~/assets/images/index/product_person.png" alt="" srcset="">
  147. <div class="views">158</div>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. <div class="more-btn">更多产品</div>
  156. </div>
  157. </div>
  158. <!-- 多渠道教学场景 -->
  159. <div class="index-scenes">
  160. <div class="i-s-content">
  161. <div class="title-content">
  162. <div class="title-zh">多渠道教学场景</div>
  163. </div>
  164. </div>
  165. <div class="scenes-content-box">
  166. <ul class="panorama-education-list">
  167. <li class="mobile-education mobile-education-1" @mouseenter="mobileEnter">
  168. <div class="small-education-div">
  169. <div class="mobile-small-img">
  170. <i class="iconfont T3 EC2 iconicon_pc1"></i>
  171. </div>
  172. <p class="mobile-education-title">PC独立网校</p>
  173. <p class="mobile-education-sub">沉浸式学习体验</p>
  174. <p class="mobile-education-sub">建立机构专属品牌官网</p>
  175. <div class="mobile-education-img">
  176. <img src="~/assets/images/index/img_PC.png">
  177. </div>
  178. </div>
  179. <div class="big-mobile-education">
  180. <div class="pc-education-top">
  181. <div class="pc-small-img">
  182. <i class="iconfont iconicon_pc1"></i>
  183. </div>
  184. <div class="education-title-box">
  185. <p class="education-title">PC独立网校</p>
  186. <p class="education-sub-title">沉浸式学习体验,建立机构专属品牌官网</p>
  187. </div>
  188. </div>
  189. <div class="education-img">
  190. <img src="~/assets/images/index/img_PC.png">
  191. </div>
  192. </div>
  193. </li>
  194. <li class="mobile-education mobile-education-2" @mouseenter="mobileEnter">
  195. <div class="small-education-div">
  196. <div class="mobile-small-img">
  197. <i class="iconfont T3 EC2 iconicon_h"></i>
  198. </div>
  199. <p class="mobile-education-title">移动H5网校</p>
  200. <p class="mobile-education-sub">轻量级移动教学体验</p>
  201. <p class="mobile-education-sub">让你的网校与众不同</p>
  202. <div class="mobile-education-img">
  203. <img src="~/assets/images/index/img_H5.png">
  204. </div>
  205. </div>
  206. <div class="big-mobile-education">
  207. <div class="pc-education-top">
  208. <div class="pc-small-img">
  209. <i class="iconfont iconicon_h"></i>
  210. </div>
  211. <div class="education-title-box">
  212. <p class="education-title">移动H5网校</p>
  213. <p class="education-sub-title">轻量级移动教学体验,让你的网校与众不同</p>
  214. </div>
  215. </div>
  216. <div class="education-img">
  217. <img src="~/assets/images/index/img_H5.png">
  218. </div>
  219. </div>
  220. </li>
  221. <li class="mobile-education mobile-education-3" @mouseenter="mobileEnter">
  222. <div class="small-education-div">
  223. <div class="mobile-small-img">
  224. <i class="iconfont T3 EC2 iconicon_minprogram"></i>
  225. </div>
  226. <p class="mobile-education-title">微信小程序网校</p>
  227. <p class="mobile-education-sub">结合微信生态</p>
  228. <p class="mobile-education-sub">即开即用易传播</p>
  229. <div class="mobile-education-img">
  230. <img src="~/assets/images/index/img_minprogram.png">
  231. </div>
  232. </div>
  233. <div class="big-mobile-education">
  234. <div class="pc-education-top">
  235. <div class="pc-small-img">
  236. <i class="iconfont iconicon_minprogram"></i>
  237. </div>
  238. <div class="education-title-box">
  239. <p class="education-title">微信小程序网校</p>
  240. <p class="education-sub-title">结合微信生态,即开即用易传播</p>
  241. </div>
  242. </div>
  243. <div class="education-img">
  244. <img src="~/assets/images/index/img_minprogram.png">
  245. </div>
  246. </div>
  247. </li>
  248. <li class="mobile-education mobile-education-4" @mouseenter="mobileEnter">
  249. <div class="small-education-div">
  250. <div class="mobile-small-img">
  251. <i class="iconfont T3 EC2 iconicon_App"></i>
  252. </div>
  253. <p class="mobile-education-title">专属网校APP</p>
  254. <p class="mobile-education-sub">IOS、安卓双系统支持</p>
  255. <p class="mobile-education-sub">把学校装进口袋</p>
  256. <div class="mobile-education-img">
  257. <img src="~/assets/images/index/img_App.png">
  258. </div>
  259. </div>
  260. <div class="big-mobile-education">
  261. <div class="pc-education-top">
  262. <div class="pc-small-img">
  263. <i class="iconfont iconicon_App"></i>
  264. </div>
  265. <div class="education-title-box">
  266. <p class="education-title">专属网校APP</p>
  267. <p class="education-sub-title">IOS、安卓双系统支持,把学校装进口袋</p>
  268. </div>
  269. </div>
  270. <div class="education-img">
  271. <img src="~/assets/images/index/img_App.png">
  272. </div>
  273. </div>
  274. </li>
  275. <li class="mobile-education mobile-education-5" @mouseenter="mobileEnter">
  276. <div class="small-education-div">
  277. <div class="mobile-small-img">
  278. <i class="iconfont T3 EC2 iconicon_Api"></i>
  279. </div>
  280. <p class="mobile-education-title">API开放平台</p>
  281. <p class="mobile-education-sub">联接多个渠道</p>
  282. <p class="mobile-education-sub">实现数据互联互通</p>
  283. <div class="mobile-education-img">
  284. <img src="~/assets/images/index/img_API.png">
  285. </div>
  286. </div>
  287. <div class="big-mobile-education">
  288. <div class="pc-education-top">
  289. <div class="pc-small-img">
  290. <i class="iconfont iconicon_Api"></i>
  291. </div>
  292. <div class="education-title-box">
  293. <p class="education-title">API开放平台</p>
  294. <p class="education-sub-title">联接多个渠道,实现数据互联互通</p>
  295. </div>
  296. </div>
  297. <div class="education-img">
  298. <img src="~/assets/images/index/img_API.png">
  299. </div>
  300. </div>
  301. </li>
  302. <li class="mobile-education mobile-education-6" @mouseenter="mobileEnter">
  303. <div class="small-education-div">
  304. <div class="mobile-small-img">
  305. <i class="iconfont T3 EC2 iconicon_Component"></i>
  306. </div>
  307. <p class="mobile-education-title">APP内嵌SDK</p>
  308. <p class="mobile-education-sub">打破终端流量转化壁垒</p>
  309. <p class="mobile-education-sub">在自有APP搭建店铺</p>
  310. <div class="mobile-education-img">
  311. <img src="~/assets/images/index/img_SDK.png">
  312. </div>
  313. </div>
  314. <div class="big-mobile-education">
  315. <div class="pc-education-top">
  316. <div class="pc-small-img">
  317. <i class="iconfont iconicon_Component"></i>
  318. </div>
  319. <div class="education-title-box">
  320. <p class="education-title">APP内嵌SDK</p>
  321. <p class="education-sub-title">打破终端流量转化壁垒在自有APP搭建店铺</p>
  322. </div>
  323. </div>
  324. <div class="education-img">
  325. <img src="~/assets/images/index/img_SDK.png">
  326. </div>
  327. </div>
  328. </li>
  329. </ul>
  330. </div>
  331. </div>
  332. <!-- 逻辑狗探索小镇 -->
  333. <div class="index-town">
  334. <div class="i-town-content w1200">
  335. <div class="t-top title-content">
  336. <!-- <div class="title-en">PRODUCT</div> -->
  337. <div class="title-zh">逻辑狗探索小镇</div>
  338. <p class="title-sub">专注3.4-12岁儿童优质思维能力养成的场景式,游戏化体验中心</p>
  339. </div>
  340. <div class="town-content-box">
  341. <div class="town-btn-group">
  342. <div class="town-btn-about">了解我们</div>
  343. <div class="town-btn-join">加入我们</div>
  344. </div>
  345. <div class="town-content-skill">
  346. <div class="town-content-img">
  347. <img src="~/assets/images/index/town_img.png" alt="" srcset="">
  348. <div class="skill-item skill-item-01">
  349. <img src="~/assets/images/index/icon_town_01.png" alt="" srcset="">
  350. <p>知识迁移</p>
  351. </div>
  352. <div class="skill-item skill-item-02">
  353. <img src="~/assets/images/index/icon_town_02.png" alt="" srcset="">
  354. <p class="big-font">观察能力</p>
  355. </div>
  356. <div class="skill-item skill-item-03">
  357. <img src="~/assets/images/index/icon_town_03.png" alt="" srcset="">
  358. <p >手眼协调</p>
  359. </div>
  360. <div class="skill-item skill-item-04">
  361. <img src="~/assets/images/index/icon_town_04.png" alt="" srcset="">
  362. <p class="big-font">语言能力</p>
  363. </div>
  364. <div class="skill-item skill-item-05">
  365. <img src="~/assets/images/index/icon_town_05.png" alt="" srcset="">
  366. <p class="big-font">想象能力</p>
  367. </div>
  368. <div class="skill-item skill-item-06" >
  369. <img src="~/assets/images/index/icon_town_06.png" alt="" srcset="">
  370. <p>分类能力</p>
  371. </div>
  372. <div class="skill-item skill-item-07" >
  373. <img src="~/assets/images/index/icon_town_07.png" alt="" srcset="">
  374. <p>推理能力</p>
  375. </div>
  376. <div class="skill-item skill-item-08" >
  377. <img src="~/assets/images/index/icon_town_08.png" alt="" srcset="">
  378. <p class="big-font">空间能力</p>
  379. </div>
  380. <div class="skill-item skill-item-09" >
  381. <img src="~/assets/images/index/icon_town_09.png" alt="" srcset="">
  382. <p class="big-font">专注能力</p>
  383. </div>
  384. <div class="skill-item skill-item-10" >
  385. <img src="~/assets/images/index/icon_town_10.png" alt="" srcset="">
  386. <p>数学能力</p>
  387. </div>
  388. </div>
  389. </div>
  390. </div>
  391. </div>
  392. <div class="town_bottom_bg">
  393. <img src="~/assets/images/index/town_bottom.png" alt="" srcset="">
  394. </div>
  395. </div>
  396. <!-- 专家名师 -->
  397. <div class="index-expert">
  398. <div class="i-expert-content w1200">
  399. <div class="e-top title-content">
  400. <div class="title-zh">专家名师</div>
  401. </div>
  402. <div class="e-content-box">
  403. <div class="w-innner">
  404. <div id="certify" class="w1200">
  405. <div class="swiper-container" v-swiper:expertSwiper="expertSwiperOption" ref="swiperExpertBox" @mouseenter="stopExpertSwiper" @mouseleave="startExpertSwiper">
  406. <div class="swiper-wrapper">
  407. <div class="swiper-slide"><img src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa2@2x.v202007141810.png"></div>
  408. <div class="swiper-slide"><img src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa3@2x.v202007141810.png"></div>
  409. <div class="swiper-slide"><img src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa1@2x.v202007141810.png"></div>
  410. </div>
  411. <!-- <div class="swiper-button-prev" slot="button-prev" @click="prev"></div> -->
  412. <!-- <div class="swiper-button-next" slot="button-next" @click="next"></div> -->
  413. </div>
  414. </div>
  415. </div>
  416. </div>
  417. </div>
  418. </div>
  419. <!-- 新闻资讯 -->
  420. <div class="index-article">
  421. <div class="i-article-content w1200">
  422. <div class="a-top title-content">
  423. <div class="title-zh">新闻资讯</div>
  424. </div>
  425. <div class="article-content-box">
  426. <div class="article-content-top">
  427. <div class="article-content-top-left">
  428. <div class="article-type-header">
  429. <div class="article-type-title">{{ articleList.articleNews.typeTitle }}</div>
  430. <div>
  431. <i class="el-icon-arrow-right"></i>
  432. </div>
  433. </div>
  434. <div class="article-content-info">
  435. <img :src="articleList.articleNews.content[0].imgUrl" alt="" srcset="">
  436. <p class="info-title">{{ articleList.articleNews.content[0].title }}</p>
  437. </div>
  438. </div>
  439. <div class="article-content-top-right">
  440. <div class="article-type-header">
  441. <div class="article-type-title">{{ articleList.storeNews.typeTitle }}</div>
  442. <div>
  443. <i class="el-icon-arrow-right"></i>
  444. </div>
  445. </div>
  446. <div class="article-content-info">
  447. <template v-for="(item, index) in articleList.storeNews.content" >
  448. <div v-if="index < 4" class="article-item-right" :key="index">
  449. <img :src="item.imgUrl" alt="">
  450. <p>{{ item.title }}</p>
  451. </div>
  452. </template>
  453. </div>
  454. </div>
  455. </div>
  456. <div class="article-content-bottom">
  457. <div class="article-type-header">
  458. <div class="article-type-title">{{ articleList.industryNews.typeTitle }}</div>
  459. <div>
  460. <i class="el-icon-arrow-right"></i>
  461. </div>
  462. </div>
  463. <div class="article-content-bottom-info">
  464. <div class="article-content-bottom-left">
  465. <img :src="articleList.industryNews.content[0].imgUrl" alt="">
  466. </div>
  467. <div class="article-content-bottom-right">
  468. <p class="title">{{ articleList.industryNews.content[0].title }}</p>
  469. <p class="desc">{{ articleList.industryNews.content[0].desc }}</p>
  470. <p class="time">2020-6-18</p>
  471. </div>
  472. </div>
  473. </div>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- 企业荣誉 -->
  478. <div class="index-honor">
  479. <div class="i-honor-content w1200">
  480. <div class="h-top title-content">
  481. <div class="h-top title-zh">企业荣誉</div>
  482. </div>
  483. <div class="honer-content-box">
  484. <div class="swiper swiperBox" v-swiper:honorSwiper="honorSwiperOption" ref="swiperHonorBox" @mouseenter="stopSwiper" @mouseleave="startSwiper">
  485. <div class="swiper-wrapper">
  486. <div v-for="(item, index) in honorList" :key="index" class="swiper-slide">
  487. <img :src="item.imgUrl" />
  488. </div>
  489. </div>
  490. </div>
  491. </div>
  492. </div>
  493. </div>
  494. </div>
  495. </template>
  496. <script>
  497. import axios from "axios";
  498. import VBanner from "~/components/home/banner";
  499. // import indexVideo from '~/components/home/indexVideo';
  500. // import prodListShow from '~/components/common/prodListShow';
  501. // import indexNewsListShow from '~/components/common/indexNewsListShow'
  502. export default {
  503. data() {
  504. return {
  505. bannerData: [
  506. {
  507. bannerId: '1',
  508. href: 'http://zaojiao.net',
  509. bannerSrc: 'http://img.visney.cn/img/banner_img/201810091635055072893adb062fc430a8a08728a954f6952.jpg',
  510. bannerAlt: '中德智慧',
  511. },
  512. {
  513. bannerId: '2',
  514. href: 'http://zaojiao.net',
  515. bannerSrc: 'http://img.visney.cn/img/banner_img/20181009155424179449e9d3aa5fa47548ab021e418af1189.jpg',
  516. bannerAlt: '中德智慧',
  517. }
  518. ],
  519. experiencePlace: ["包头", "成都", "南京", "东莞"],
  520. num: 0,
  521. clickProdIndex: 0,
  522. clickNewsIndex: 0,
  523. productCate: [
  524. {
  525. title: "全部",
  526. type: 0,
  527. },
  528. {
  529. title: "0-3岁思维启蒙",
  530. type: 1,
  531. },
  532. {
  533. title: "3-7岁能力训练",
  534. type: 2,
  535. },
  536. {
  537. title: "5-7岁入学思考",
  538. type: 3,
  539. },
  540. {
  541. title: "7-12岁技巧学习",
  542. type: 4,
  543. },
  544. ],
  545. courseCate: [
  546. {
  547. title: "全部",
  548. type: 0,
  549. },
  550. {
  551. title: "直播课",
  552. type: 1,
  553. },
  554. {
  555. title: "录播课",
  556. type: 2,
  557. },
  558. {
  559. title: "公开课",
  560. type: 3,
  561. },
  562. ],
  563. productImage: [
  564. {
  565. imgUrl: require("../assets/images/index/product_01.png"),
  566. title: '逻辑狗',
  567. },
  568. {
  569. imgUrl: require("../assets/images/index/product_01.png"),
  570. title: '克鲁德',
  571. },
  572. {
  573. imgUrl: require("../assets/images/index/product_01.png"),
  574. title: '科学探索',
  575. },
  576. {
  577. imgUrl: require("../assets/images/index/product_01.png"),
  578. title: '春夏秋冬',
  579. },
  580. {
  581. imgUrl: require("../assets/images/index/product_01.png"),
  582. title: '小熊猫',
  583. }
  584. ],
  585. honorList: [
  586. {
  587. imgUrl: require("../assets/images/index/honer.png"),
  588. title: '逻辑狗',
  589. },
  590. {
  591. imgUrl: require("../assets/images/index/honer.png"),
  592. title: '逻辑狗',
  593. },
  594. {
  595. imgUrl: require("../assets/images/index/honer.png"),
  596. title: '逻辑狗',
  597. },
  598. {
  599. imgUrl: require("../assets/images/index/honer.png"),
  600. title: '逻辑狗',
  601. },
  602. {
  603. imgUrl: require("../assets/images/index/honer.png"),
  604. title: '逻辑狗',
  605. },
  606. ],
  607. articleList: {
  608. articleNews: {
  609. typeTitle: '中德智慧咨讯',
  610. content: [
  611. {
  612. id: '1',
  613. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  614. imgUrl: 'http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg',
  615. },
  616. {
  617. id: '2',
  618. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  619. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  620. },
  621. {
  622. id: '3',
  623. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  624. imgUrl: '',
  625. },
  626. {
  627. id: '4',
  628. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  629. imgUrl: '',
  630. },
  631. {
  632. id: '5',
  633. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  634. imgUrl: '',
  635. },
  636. {
  637. id: '6',
  638. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  639. imgUrl: '',
  640. }
  641. ]
  642. },
  643. storeNews: {
  644. typeTitle: '门店动态',
  645. content: [
  646. {
  647. id: '1',
  648. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  649. imgUrl: 'http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg',
  650. },
  651. {
  652. id: '2',
  653. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  654. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  655. },
  656. {
  657. id: '3',
  658. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  659. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  660. },
  661. {
  662. id: '4',
  663. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  664. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  665. },
  666. {
  667. id: '5',
  668. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  669. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  670. },
  671. {
  672. id: '6',
  673. title: '中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗',
  674. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg'
  675. }
  676. ],
  677. },
  678. industryNews: {
  679. typeTitle: '行业动态',
  680. content: [
  681. {
  682. id: '1',
  683. title: '最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十',
  684. imgUrl: 'http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg',
  685. desc: '中德智慧已经成为全球知名教育品牌'
  686. },
  687. {
  688. id: '2',
  689. title: '最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十',
  690. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  691. desc: '中德智慧已经成为全球知名教育品牌'
  692. },
  693. {
  694. id: '3',
  695. title: '最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十',
  696. imgUrl: 'http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg',
  697. desc: '中德智慧已经成为全球知名教育品牌'
  698. },
  699. ]
  700. }
  701. },
  702. swiperOption: { // 配置说明直接看官网
  703. slidesPerView: 'auto',
  704. paginationClickable: true,
  705. // slidesOffsetBefore: 100,
  706. // slidesOffsetAfter: 100,
  707. autoplay: {
  708. delay: 3500,
  709. disableOnInteraction: false,
  710. },
  711. speed: 1000,
  712. loop: true,
  713. observer: true,
  714. observeParents: true,
  715. autoplayDisableOnInteraction: false,
  716. notNextTick: true,
  717. // centeredSlides: true,
  718. pagination: {
  719. el: '.expert-swiper-pagination',
  720. clickable: true
  721. },
  722. navigation: {
  723. nextEl: '.swiper-button-next',
  724. prevEl: '.swiper-button-prev'
  725. }
  726. },
  727. honorSwiperOption: { // 配置说明直接看官网
  728. slidesPerView: 'auto',
  729. paginationClickable: true,
  730. spaceBetween: 30, //轮播图左右之间的间距,配合css样式中的width实现效果
  731. // slidesOffsetBefore: 100,
  732. // slidesOffsetAfter: 100,
  733. autoplay: {
  734. delay: 3000,
  735. stopOnLastSlide: false,
  736. disableOnInteraction: false,
  737. },
  738. speed: 1000,
  739. loop: true,
  740. observer: true,
  741. observeParents: true,
  742. autoplayDisableOnInteraction: false,
  743. notNextTick: true,
  744. centeredSlides: true,
  745. },
  746. expertSwiperOption: {
  747. autoplay: 2000,//自动滑动
  748. speed: 500,//自动滑动开始到结束的时间(单位ms)
  749. loop: true,//开启循环
  750. loopedSlides: 3,//在loop模式下使用slidesPerview:'auto',还需使用该参数设置所要用到的loop个数。
  751. slidesPerView:'auto',//设置slider容器能够同时显示的slides数量(carousel模式)。另外,支持'auto'值,会根据容器container的宽度调整slides数目。
  752. effect: 'coverflow',//可以实现3D效果的轮播,
  753. pagination: {
  754. el: 'swiper-pagination',
  755. type: 'bullets',
  756. clickable: true
  757. }, //分页器
  758. centeredSlides:true,//设定为true时,active slide会居中,而不是默认状态下的居左。
  759. coverflow:{
  760. rotate: 0,//slide做3d旋转时Y轴的旋转角度。默认50。
  761. stretch: 100,//每个slide之间的拉伸值,越大slide靠得越紧。 默认0。
  762. depth: 150,//slide的位置深度。值越大z轴距离越远,看起来越小。 默认100。
  763. modifier: 1,//depth和rotate和stretch的倍率,相当于depth*modifier、rotate*modifier、stretch*modifier,值越大这三个参数的效果越明显。默认1。
  764. slideShadows: false,//开启slide阴影。默认 true。
  765. },
  766. }
  767. };
  768. },
  769. components: {
  770. VBanner,
  771. // indexVideo,
  772. // prodListShow,
  773. // indexNewsListShow
  774. },
  775. // 逻辑狗官网 - 中德智慧教育
  776. // 关键词:逻辑狗官网、逻辑狗教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童
  777. // 描述:逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台
  778. head() {
  779. return {
  780. title: "逻辑狗官网-中德智慧教育",
  781. meta: [
  782. {
  783. name: "keywords",
  784. hid: "keywords",
  785. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  786. },
  787. {
  788. name: "description",
  789. hid: "description",
  790. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  791. },
  792. ],
  793. };
  794. },
  795. async asyncData({ params, store }) {
  796. return {
  797. };
  798. },
  799. created() {
  800. },
  801. mounted() {
  802. },
  803. swiper() {
  804. // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
  805. return this.$refs.swiperBox.swiper;
  806. },
  807. honorSwiper() {
  808. return this.$refs.swiperHonorBox.swiper;
  809. },
  810. expertSwiper() {
  811. console.log(this.$refs.swiperExpertBox.swiper)
  812. return this.$refs.swiperExpertBox.swiper;
  813. },
  814. methods: {
  815. tab(index) {
  816. this.num = index;
  817. },
  818. getProdList(index) {
  819. this.clickProdIndex = index;
  820. },
  821. getNewsList(index) {
  822. this.clickNewsIndex = index;
  823. },
  824. clickProduct(item) {
  825. console.log(item);
  826. // this.$router.push({ path: '/product/course'});
  827. },
  828. mobileEnter(e) {
  829. "400px" != $(event.target).css("width") &&(
  830. $(".panorama-education-list .mobile-education").css(
  831. "width",
  832. "200px"
  833. ),
  834. $(event.target).css("width", "400px"),
  835. $(".panorama-education-list .mobile-education")
  836. .find(".big-mobile-education")
  837. .css("display", "none"),
  838. $(event.target).css("width", "400px"),
  839. $(event.target).find(".big-mobile-education").fadeIn("fast")
  840. )
  841. },
  842. stopSwiper() { // 鼠标移入停止播放
  843. // console.log(this.swiper);
  844. // this.swiper.autoplay.stop();
  845. },
  846. startSwiper() { // 移出继续播放
  847. // this.swiper.autoplay.start();
  848. },
  849. stopExpertSwiper() {
  850. console.log(this.expertSwiper);
  851. console.log(111);
  852. },
  853. startExpertSwiper() {
  854. // console.log(this.expertSwiper);
  855. },
  856. prev() {
  857. this.swiper.slidePrev();
  858. },
  859. next() {
  860. this.swiper.slideNext()
  861. }
  862. },
  863. };
  864. </script>
  865. <style lang="scss" scoped>
  866. @import "~static/common/style.sass";
  867. .container {
  868. width: 100%;
  869. background: #f0f2f5;
  870. height: auto;
  871. }
  872. .title-content {
  873. // margin-top: 164px;
  874. }
  875. .title-en {
  876. height: 110px;
  877. line-height: 110px;
  878. font-size: 78px;
  879. font-family: PingFangSC-Semibold, PingFang SC;
  880. font-weight: 600;
  881. color: #353956;
  882. }
  883. .title-zh {
  884. height: 81px;
  885. line-height: 81px;
  886. font-size: 58px;
  887. font-family: PingFangSC-Semibold, PingFang SC;
  888. font-weight: 600;
  889. color: #000000;
  890. letter-spacing: 1px;
  891. text-align: center;
  892. }
  893. .more-btn {
  894. margin: 50px auto 162px;
  895. width: 138px;
  896. height: 45px;
  897. line-height: 45px;
  898. text-align: center;
  899. padding: 0 25px;
  900. background: $theme_color_fu;
  901. box-shadow: 0px 3px 9px 0px rgba(109, 140, 239, 0.82);
  902. border-radius: 23px;
  903. font-size: 22px;
  904. font-family: PingFangSC-Medium, PingFang SC;
  905. font-weight: 500;
  906. color: #ffffff;
  907. }
  908. ul.cate-nav {
  909. margin: 124px 0 116px;
  910. li.products-kind {
  911. display: inline-block;
  912. margin: 0 30px;
  913. cursor: pointer;
  914. &:first-child {
  915. margin-left: 0;
  916. }
  917. &.active,
  918. &:hover {
  919. a {
  920. color: $theme_color;
  921. }
  922. }
  923. .line {
  924. visibility: hidden;
  925. margin: 22px auto 0;
  926. width: 60px;
  927. border-radius: 50px;
  928. height: 15px;
  929. background: $theme_color_fu;
  930. box-shadow: 0px 2px 8px 0px rgba(45, 112, 245, 0.64);
  931. // -webkit-transition: all 0.5s ease;
  932. // -o-transition: all 0.5s ease;
  933. // transition: all 0.5s ease;
  934. }
  935. a {
  936. font-size: 32px;
  937. color: #747885;
  938. }
  939. }
  940. li.products-kind:hover,
  941. li.products-kind.active {
  942. .line {
  943. display: block;
  944. visibility: visible;
  945. transition: all 0.5s ease;
  946. }
  947. }
  948. }
  949. .cate-list {
  950. display: flex;
  951. align-items: center;
  952. flex-wrap: wrap;
  953. .product-item {
  954. position: relative;
  955. box-sizing: border-box;
  956. width: 372px;
  957. margin-bottom: 42px;
  958. margin-right: 36px;
  959. &:nth-child(3n) {
  960. margin-right: 0px;
  961. }
  962. }
  963. .product-tag {
  964. padding: 0 6px 0 10px;
  965. background: $theme_color_fu;
  966. position: absolute;
  967. top: 0;
  968. left: 0;
  969. font-size: 12px;
  970. color: #ffffff;
  971. height: 24px;
  972. line-height: 24px;
  973. font-family: PingFangSC-Semibold, PingFang SC;
  974. font-weight: 600;
  975. border-radius: 18px 0px 7px 0px;
  976. // img {
  977. // width:52px;
  978. // height:24px;
  979. // object-fit: cover;
  980. // }
  981. }
  982. }
  983. // index-founder
  984. .index-founder {
  985. position: relative;
  986. padding: 176px 0 118px;
  987. background-image: url('~assets/images/index/found_left.png'),
  988. url('~assets/images/index/found_left2.png');
  989. background-repeat: no-repeat, no-repeat;
  990. background-position: 0px 158px, 260px 550px;
  991. background-color: #F7FBFF;
  992. .founder-content-box {
  993. margin-left: 320px;
  994. max-width: 1200px;
  995. z-index: 10;
  996. display: flex;
  997. .founder_content {
  998. margin-left: 30px;
  999. padding-top: 32px;
  1000. .founder-item {
  1001. margin-bottom: 14px;
  1002. }
  1003. .name {
  1004. display: flex;
  1005. align-items: center;
  1006. font-size: 24px;
  1007. font-family: PingFangSC-Medium,PingFang SC;
  1008. font-weight: 500;
  1009. color: $theme_color_fu;
  1010. span {
  1011. display: inline-block;
  1012. width:12px;
  1013. height:12px;
  1014. border-radius: 50%;
  1015. background:linear-gradient(180deg,rgba(250,117,62,1) 0%,rgba(246,85,19,1) 100%);
  1016. box-shadow:0px 2px 7px 0px rgba(249,107,50,0.8);
  1017. margin-right: 6px;
  1018. }
  1019. }
  1020. .title {
  1021. line-height: 58px;
  1022. font-size: 42px;
  1023. font-family: PingFangSC-Semibold,PingFang SC;
  1024. font-weight: 600;
  1025. color:#262626;
  1026. }
  1027. .desc {
  1028. color: #6E6F75;
  1029. font-size: 18px;
  1030. line-height:32px;
  1031. margin-bottom: 30px;
  1032. }
  1033. .btn {
  1034. width: 182px;
  1035. height: 46px;
  1036. line-height: 46px;
  1037. background: $theme_color_fu;
  1038. box-shadow: 0px 4px 11px 0px rgba(115,161,253,0.95);
  1039. border-radius: 24px;
  1040. text-align: center;
  1041. font-size:22px;
  1042. a {
  1043. color: #ffffff;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. .found-left {
  1049. z-index: 0;
  1050. font-size: 0;
  1051. // position: absolute;
  1052. left: 0;
  1053. top: 158px;
  1054. }
  1055. .found-right {
  1056. font-size: 0;
  1057. z-index: 0;
  1058. position: absolute;
  1059. right: 0;
  1060. bottom: -406px;
  1061. }
  1062. }
  1063. /* index-thinking */
  1064. .index-thinking {
  1065. max-width: 1200px;
  1066. margin: 0 auto;
  1067. padding-top: 164px;
  1068. // text-align: center;
  1069. .i-t-content {
  1070. position: relative;
  1071. .title-zh {
  1072. z-index: 666;
  1073. }
  1074. .title-en {
  1075. position: absolute;
  1076. top: 0;
  1077. left: 50%;
  1078. transform: translateX(-50%);
  1079. z-index: 1;
  1080. }
  1081. }
  1082. ul.thinking-cate-nav {
  1083. margin: 124px 0 116px;
  1084. }
  1085. li.thinking-products-kind {
  1086. display: inline-block;
  1087. margin: 0 30px;
  1088. cursor: pointer;
  1089. -webkit-transition: all 0.5s ease;
  1090. -o-transition: all 0.5s ease;
  1091. transition: all 0.5s ease;
  1092. .line {
  1093. visibility: hidden;
  1094. margin: 22px auto 0;
  1095. width: 60px;
  1096. border-radius: 50px;
  1097. height: 15px;
  1098. width: 59px;
  1099. height: 15px;
  1100. background: $theme_color_fu;
  1101. box-shadow: 0px 2px 8px 0px rgba(94, 161, 241, 0.87);
  1102. }
  1103. a {
  1104. font-size: 32px;
  1105. color: #747885;
  1106. }
  1107. }
  1108. li.thinking-products-kind:hover,
  1109. li.thinking-products-kind.active {
  1110. .line {
  1111. display: block;
  1112. visibility: visible;
  1113. }
  1114. }
  1115. li.thinking-products-kind:first-child {
  1116. margin-left: 0;
  1117. }
  1118. li.thinking-products-kind.active a,
  1119. .thinking-products-kind:hover a {
  1120. // font-size: 42px;
  1121. color: $theme_color;
  1122. // border-bottom: 6px solid $theme_color;
  1123. // box-shadow:0px 2px 8px 0px rgba(240,53,94,0.61);
  1124. }
  1125. .thinking-cate-list {
  1126. display: flex;
  1127. align-items: center;
  1128. flex-wrap: wrap;
  1129. .thinking-product-item {
  1130. position: relative;
  1131. box-sizing: border-box;
  1132. width: 374px;
  1133. margin-bottom: 42px;
  1134. margin-right: 36px;
  1135. &:nth-child(3n) {
  1136. margin-right: 0px;
  1137. }
  1138. .thinking-product-item-img {
  1139. width: 374px;
  1140. font-size: 0;
  1141. img {
  1142. border-radius: 18px 18px 0px 0px;
  1143. width: 100%;
  1144. }
  1145. }
  1146. }
  1147. }
  1148. .thinking-product-info {
  1149. box-sizing: border-box;
  1150. background: #ffffff;
  1151. height: 90px;
  1152. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  1153. border-radius: 0px 0px 18px 18px;
  1154. padding: 26px 22px;
  1155. .thinking-product-title {
  1156. width: 160px;
  1157. height: 28px;
  1158. font-size: 20px;
  1159. font-family: PingFangSC-Medium, PingFang SC;
  1160. font-weight: 500;
  1161. line-height: 28px;
  1162. a {
  1163. color: #343e30;
  1164. }
  1165. }
  1166. .thinking-product-content {
  1167. display: flex;
  1168. align-items: center;
  1169. justify-content: space-between;
  1170. }
  1171. .thinking-product-price {
  1172. color: #ea0b4a;
  1173. .price-num {
  1174. font-size: 22px;
  1175. font-weight: bold;
  1176. }
  1177. }
  1178. .thinking-product-btn {
  1179. height: 18px;
  1180. line-height: 18px;
  1181. font-size: 13px;
  1182. font-family: PingFangSC-Regular, PingFang SC;
  1183. font-weight: 400;
  1184. border: 1px solid rgba(60, 142, 255, 1);
  1185. height: 27px;
  1186. line-height: 27px;
  1187. border-radius: 14px;
  1188. padding: 0 15px;
  1189. a {
  1190. color: #3e8eff;
  1191. }
  1192. }
  1193. // .thinking-product-user {
  1194. // display: flex;
  1195. // img {
  1196. // width: 18px;
  1197. // height: 22px;
  1198. // }
  1199. // }
  1200. }
  1201. }
  1202. // index-product
  1203. .index-product {
  1204. // display: flex;
  1205. // align-items: center;
  1206. height: 526px;
  1207. background: url('~assets/images/index/product_bg.png') no-repeat;
  1208. .product-content-box {
  1209. position: relative;
  1210. // width: 1200px;
  1211. padding: 112px 250px 86px 250px;
  1212. .swiperBox {
  1213. }
  1214. }
  1215. .swiper-button-prev, .swiper-button-next {
  1216. color: #DEE9FE;
  1217. }
  1218. .swiper-button-prev {
  1219. left: 84px;
  1220. }
  1221. .swiper-button-next {
  1222. right: 104px;
  1223. }
  1224. .swiper-wrapper {
  1225. // max-width: 1200px;
  1226. p.name {
  1227. font-size: 28px;
  1228. font-family: PingFangSC-Semibold,PingFang SC;
  1229. font-weight: 600;
  1230. color: #ffffff;
  1231. text-align: center;
  1232. }
  1233. }
  1234. .swiper-slide {
  1235. width: 274px;
  1236. font-size: 0;
  1237. }
  1238. }
  1239. /* index-thinking */
  1240. .index-course {
  1241. padding-top: 164px;
  1242. max-width: 1200px;
  1243. margin: 0 auto;
  1244. .course-content-box {
  1245. .course-cate-nav {
  1246. display: flex;
  1247. justify-content: space-between;
  1248. }
  1249. }
  1250. .course-cate-list {
  1251. .course-product-item {
  1252. width: 365px;
  1253. .course-product-item-img {
  1254. position: relative;
  1255. font-size: 0;
  1256. img {
  1257. width: 100%;
  1258. }
  1259. .course-product-item-play {
  1260. position: absolute;
  1261. left: 50%;
  1262. top: 50%;
  1263. transform: translate(-50%, -50%);
  1264. width: 62px;
  1265. font-size: 0;
  1266. }
  1267. }
  1268. }
  1269. }
  1270. .course-product-info {
  1271. box-sizing: border-box;
  1272. background: #ffffff;
  1273. height: 90px;
  1274. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  1275. border-radius: 0px 0px 18px 18px;
  1276. padding: 26px 22px;
  1277. .course-product-title {
  1278. width: 160px;
  1279. height: 28px;
  1280. font-size: 20px;
  1281. font-family: PingFangSC-Medium, PingFang SC;
  1282. font-weight: 500;
  1283. color: rgba(52, 62, 48, 1);
  1284. line-height: 28px;
  1285. }
  1286. .course-product-content {
  1287. display: flex;
  1288. align-items: center;
  1289. justify-content: space-between;
  1290. }
  1291. .course-product-price {
  1292. color: #ea0b4a;
  1293. .price-num {
  1294. font-size: 22px;
  1295. font-weight: bold;
  1296. }
  1297. }
  1298. .course-product-user {
  1299. display: flex;
  1300. align-items: flex-end;
  1301. img {
  1302. width: 18px;
  1303. height: 22px;
  1304. margin-right: 10px;
  1305. }
  1306. .views {
  1307. color: #418eff;
  1308. }
  1309. }
  1310. }
  1311. }
  1312. // index-scenes
  1313. .index-scenes {
  1314. background: #f7fbff;
  1315. padding: 217px 0 228px;
  1316. .i-s-contant {
  1317. }
  1318. .scenes-content-box {
  1319. margin: 102px auto 0;
  1320. max-width: 1200px;
  1321. .panorama-education-list {
  1322. margin: 0 auto;
  1323. height: 460px;
  1324. display: -webkit-box;
  1325. display: -ms-flexbox;
  1326. display: flex;
  1327. -webkit-box-pack: center;
  1328. -ms-flex-pack: center;
  1329. justify-content: center;
  1330. .pc-education {
  1331. width: 400px;
  1332. height: 460px;
  1333. background-color: #fff;
  1334. border: 1px solid #eee;
  1335. }
  1336. .mobile-education {
  1337. width: 160px;
  1338. height: 460px;
  1339. border: 1px solid #EEE;
  1340. border-left: none;
  1341. background-color: #fff;
  1342. text-align: center;
  1343. position: relative;
  1344. cursor: pointer;
  1345. &:nth-child(1) {
  1346. border-left: 1px solid #eee;
  1347. }
  1348. .mobile-small-img {
  1349. width: 32px;
  1350. height: 32px;
  1351. margin: 68px auto 26px;
  1352. img {
  1353. width: 32px;
  1354. height: 32px;
  1355. }
  1356. }
  1357. .mobile-education-title {
  1358. height: 22px;
  1359. font-size: 16px;
  1360. font-weight: 500;
  1361. color: #333;
  1362. line-height: 22px;
  1363. margin-bottom: 8px;
  1364. }
  1365. .mobile-education-sub {
  1366. font-size: 12px;
  1367. font-weight: 400;
  1368. color: #333;
  1369. line-height: 18px;
  1370. }
  1371. .mobile-education-img {
  1372. width: 160px;
  1373. height: 128px;
  1374. margin: 76px auto 0;
  1375. img {
  1376. width: 160px;
  1377. height: 128px;
  1378. }
  1379. }
  1380. }
  1381. .big-mobile-education {
  1382. display: none;
  1383. background: #fff;
  1384. width: 346px;
  1385. height: 460px;
  1386. position: absolute;
  1387. z-index: 3;
  1388. opacity: 1;
  1389. left: -1px;
  1390. top: -1px;
  1391. border: 1px solid #105cfb;
  1392. .pc-education-top {
  1393. display: -webkit-box;
  1394. display: -ms-flexbox;
  1395. display: flex;
  1396. margin-left: 36px;
  1397. .pc-small-img {
  1398. width: 32px;
  1399. height: 32px;
  1400. margin-top: 40px;
  1401. img {
  1402. width: 32px;
  1403. height: 32px;
  1404. }
  1405. }
  1406. .education-title-box {
  1407. margin-top: 32px;
  1408. margin-left: 20px;
  1409. .education-title {
  1410. height: 22px;
  1411. font-size: 16px;
  1412. font-weight: 500;
  1413. color: #333;
  1414. line-height: 22px;
  1415. text-align: left;
  1416. }
  1417. .education-sub-title {
  1418. margin-top: 4px;
  1419. height: 18px;
  1420. font-size: 12px;
  1421. color: #333;
  1422. line-height: 18px;
  1423. }
  1424. }
  1425. }
  1426. .education-img {
  1427. width: 306px;
  1428. height: auto;
  1429. margin: 56px auto 0;
  1430. img {
  1431. width: 306px;
  1432. height: auto;
  1433. }
  1434. }
  1435. .mobile-small-img {
  1436. width: 48px;
  1437. height: 48px;
  1438. margin: 68px auto 26px;
  1439. img {
  1440. width: 48px;
  1441. height: 48px;
  1442. }
  1443. }
  1444. .mobile-education-title {
  1445. height: 33px;
  1446. font-size: 24px;
  1447. font-weight: 500;
  1448. color: #333;
  1449. line-height: 33px;
  1450. margin-bottom: 8px;
  1451. }
  1452. .mobile-education-sub {
  1453. font-size: 18px;
  1454. font-weight: 400;
  1455. color: #333;
  1456. line-height: 27px;
  1457. }
  1458. .mobile-education-img {
  1459. width: 240px;
  1460. height: 192px;
  1461. margin: 76px auto 0;
  1462. img {
  1463. width: 240px;
  1464. height: 192px;
  1465. }
  1466. }
  1467. }
  1468. .mobile-education-1 {
  1469. width: 342px;
  1470. }
  1471. }
  1472. }
  1473. }
  1474. // index-town
  1475. .index-town {
  1476. position: relative;
  1477. height: 1370px;
  1478. box-sizing: border-box;
  1479. padding-top: 180px;
  1480. .i-town-content {
  1481. .title-sub {
  1482. margin-top: 28px;
  1483. text-align: center;
  1484. font-size:28px;
  1485. font-family:PingFangSC-Regular,PingFang SC;
  1486. font-weight:400;
  1487. color:#38393A;
  1488. line-height:40px;
  1489. }
  1490. .town-content-box {
  1491. .town-btn-group {
  1492. margin-top: 52px;
  1493. display: flex;
  1494. font-size: 29px;
  1495. font-family: PingFangSC-Medium,PingFang SC;
  1496. font-weight: 500;
  1497. color:#ffffff;
  1498. line-height: 40px;
  1499. text-align: center;
  1500. .town-btn-about { //428 120
  1501. width: 180px;
  1502. height: 60px;
  1503. line-height: 60px;
  1504. border-radius: 30px;
  1505. border: 1px solid $theme_color_fu;
  1506. color: $theme_color_fu;
  1507. margin: 0 290px 0 308px;
  1508. }
  1509. .town-btn-join {
  1510. width: 180px;
  1511. height: 60px;
  1512. line-height: 60px;
  1513. background: $theme_color_fu;
  1514. box-shadow: 0px 4px 9px 0px rgba(91,141,240,0.83);
  1515. border-radius: 30px;
  1516. }
  1517. }
  1518. }
  1519. }
  1520. .town-content-skill {
  1521. // position: relative;
  1522. .town-content-img {
  1523. position: absolute;
  1524. bottom: 0;
  1525. left: 50%;
  1526. transform: translateX(-50%);
  1527. // text-align: center;
  1528. font-size: 0;
  1529. z-index: 10;
  1530. .skill-item {
  1531. position: absolute;
  1532. text-align: center;
  1533. p {
  1534. position: absolute;
  1535. width: 100px;
  1536. bottom: -5px;
  1537. left: 50%;
  1538. transform: translateX(-50%);
  1539. font-size: 20px;
  1540. font-family: PingFangSC-Medium,PingFang SC;
  1541. font-weight: 500;
  1542. color: #38393A;
  1543. text-align: center;
  1544. &.big-font {
  1545. font-size: 24px;
  1546. }
  1547. }
  1548. }
  1549. .skill-item-01 {
  1550. left: -160px;
  1551. top: -158px;
  1552. }
  1553. .skill-item-02 {
  1554. left: 70px;
  1555. top: -130px;
  1556. }
  1557. .skill-item-03 {
  1558. left: 450px;
  1559. top: -248px;
  1560. }
  1561. .skill-item-04 {
  1562. right: -80px;
  1563. top: -240px;
  1564. }
  1565. .skill-item-05 {
  1566. left: -232px;
  1567. top: 96px;
  1568. }
  1569. .skill-item-06 {
  1570. left: -12px;
  1571. top: 130px;
  1572. }
  1573. .skill-item-07 {
  1574. right: -50px;
  1575. top: -18px;
  1576. }
  1577. .skill-item-08 {
  1578. right: -196px;
  1579. top: 120px;
  1580. }
  1581. .skill-item-09 {
  1582. left: -184px;
  1583. top: 304px;
  1584. }
  1585. .skill-item-10 {
  1586. right: -146px;
  1587. top: 340px;
  1588. }
  1589. }
  1590. }
  1591. .town_bottom_bg {
  1592. position: absolute;
  1593. bottom: 0;
  1594. font-size: 0;
  1595. width: 100%;
  1596. img {
  1597. width: 100%;
  1598. }
  1599. }
  1600. }
  1601. // index-honor
  1602. .index-honor {
  1603. background-image: url('~assets/images/index/honor_bg.png');
  1604. background-repeat: no-repeat;
  1605. background-position: top 20px right 115px;
  1606. background-color: #f7fbff;
  1607. padding: 188px 0 162px;
  1608. .i-honor-content {
  1609. max-width: 1200px;
  1610. margin: 0 auto;
  1611. .honer-content-box {
  1612. padding: 0 20px;
  1613. }
  1614. }
  1615. .swiper-slide {
  1616. width: 240px;
  1617. font-size: 0;
  1618. }
  1619. .honer-content-box {
  1620. margin-top: 102px;
  1621. }
  1622. }
  1623. // index-article
  1624. .index-article {
  1625. padding: 180px 0 176px;
  1626. .article-content-box {
  1627. margin-top: 85px;
  1628. .article-type-title {
  1629. width: 180px;
  1630. height: 42px;
  1631. line-height: 42px;
  1632. font-size: 30px;
  1633. font-family: PingFangSC-Semibold,PingFang SC;
  1634. font-weight: 600;
  1635. color:#3A4239;
  1636. margin-bottom: 12px;
  1637. }
  1638. .article-type-header {
  1639. display: flex;
  1640. justify-content: space-between;
  1641. align-items: center;
  1642. i {
  1643. margin-right: 15px;
  1644. color: #999999;
  1645. font-size: 20px;
  1646. }
  1647. }
  1648. .article-content-top {
  1649. display: flex;
  1650. .article-content-top-left {
  1651. width: 844px;
  1652. margin-right: 10px;
  1653. }
  1654. .article-content-info {
  1655. height: 352px;
  1656. position: relative;
  1657. img {
  1658. height: 100%;
  1659. width: 100%;
  1660. border-radius: 8px;
  1661. object-fit: cover;
  1662. }
  1663. .info-title {
  1664. width: 100%;
  1665. padding: 8px 50px;
  1666. font-size: 16px;
  1667. font-family: PingFangSC-Medium,PingFang SC;
  1668. font-weight: 500;
  1669. color:#ffffff;
  1670. line-height: 22px;
  1671. position: absolute;
  1672. overflow: hidden; //超出的文本隐藏
  1673. text-overflow: ellipsis; //溢出用省略号显示
  1674. white-space: nowrap; //溢出不换行,只能显示一行
  1675. bottom: 0;
  1676. background:rgba(92,94,93,0.31);
  1677. border-radius: 0px 0px 7px 7px;
  1678. }
  1679. }
  1680. .article-content-top-right {
  1681. width: 346px ;
  1682. font-size: 0;
  1683. .article-content-info {
  1684. height: 352px;
  1685. display: flex;
  1686. flex-wrap: wrap;
  1687. flex-direction: column;
  1688. justify-content: space-between;
  1689. align-content: space-between;
  1690. .article-item-right {
  1691. position: relative;
  1692. width: 170px;
  1693. height: 170px;
  1694. // margin-right: 6px;
  1695. &:nth-child(2n) {
  1696. margin-right: 0;
  1697. }
  1698. img {
  1699. height: 100%;
  1700. width: 100%;
  1701. border-radius: 8px;
  1702. object-fit: cover;
  1703. }
  1704. p {
  1705. padding: 0 30px 0 17px;
  1706. position: absolute;
  1707. bottom: 12px;
  1708. line-height: 22px;
  1709. font-size: 16px;
  1710. font-family: PingFangSC-Medium,PingFang SC;
  1711. font-weight: 500;
  1712. color:#ffffff;
  1713. overflow:hidden;
  1714. text-overflow:ellipsis;
  1715. display:-webkit-box;
  1716. -webkit-box-orient:vertical;
  1717. -webkit-line-clamp:2;
  1718. }
  1719. }
  1720. }
  1721. }
  1722. }
  1723. .article-content-bottom {
  1724. margin-top: 38px;
  1725. .article-content-bottom-info {
  1726. display: flex;
  1727. .article-content-bottom-left {
  1728. width: 400px;
  1729. height: 270px;
  1730. border-radius: 8px;
  1731. margin-right: 55px;
  1732. img {
  1733. height: 100%;
  1734. width: 100%;
  1735. border-radius: 8px;
  1736. object-fit: cover;
  1737. }
  1738. }
  1739. .article-content-bottom-right {
  1740. flex: 1;
  1741. .title {
  1742. color: #3A4239;
  1743. font-size: 26px;
  1744. margin-top: 12px;
  1745. font-family: PingFangSC-Medium,PingFang SC;
  1746. font-weight: 500;
  1747. overflow:hidden;
  1748. text-overflow:ellipsis;
  1749. display:-webkit-box;
  1750. -webkit-box-orient:vertical;
  1751. -webkit-line-clamp:2;
  1752. }
  1753. .desc {
  1754. font-size: 24px;
  1755. margin-top: 30px;
  1756. color: #7D7D7E;
  1757. font-family:PingFangSC-Regular,PingFang SC;
  1758. font-weight:400;
  1759. line-height: 33px;
  1760. overflow: hidden;
  1761. text-overflow: ellipsis;
  1762. display:-webkit-box;
  1763. -webkit-box-orient:vertical;
  1764. -webkit-line-clamp:2;
  1765. }
  1766. .time {
  1767. font-size: 24px;
  1768. color: #9BA09A;
  1769. margin-top: 86px;
  1770. }
  1771. }
  1772. }
  1773. }
  1774. }
  1775. }
  1776. // index-expert
  1777. .index-expert {
  1778. // width: 100%;
  1779. // height: 1072px;
  1780. padding: 180px 0 164px;
  1781. background: url('~assets/images/index/expert_bg.png') no-repeat;
  1782. #certify {
  1783. position: relative;
  1784. width: 1200px;
  1785. margin: 0 auto;
  1786. }
  1787. .e-content-box {
  1788. margin-top: 46px;
  1789. }
  1790. .swiper-container {
  1791. .swiper-wrapper {
  1792. width: 100%;
  1793. text-align: center;
  1794. .swiper-slide {
  1795. width: 630px !important;
  1796. height: 396px;
  1797. background: none;
  1798. transition: 300ms;
  1799. &.swiper-slide-prev {
  1800. transform: translateX(315px) scale(0.833333);
  1801. z-index: 989;
  1802. }
  1803. &.swiper-slide-next {
  1804. transform: translateX(-315px) scale(0.833333);
  1805. z-index: 989;
  1806. }
  1807. &.swiper-slide-active,.swiper-slide-duplicate-active{
  1808. transform: scale(1);
  1809. z-index: 999;
  1810. }
  1811. img {
  1812. width: 630px;
  1813. height: 396px;
  1814. }
  1815. }
  1816. }
  1817. }
  1818. }
  1819. </style>