index.vue 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117
  1. <template>
  2. <div class="container">
  3. <!-- banner -->
  4. <VBanner :bannerData="bannerData"></VBanner>
  5. <!-- 思维“芯”产品 -->
  6. <div class="index-thinking">
  7. <div class="i-t-content">
  8. <div class="t-top title-content">
  9. <!-- <div class="title-en">PRODUCT</div> -->
  10. <div class="title-zh">思维“芯”产品</div>
  11. </div>
  12. <div class="content-box thinking-content-box">
  13. <div class="cate-box thinking-cate-box">
  14. <ul class="cate-nav thinking-cate-nav">
  15. <li
  16. class="thinking-products-kind"
  17. v-for="(item, index) in productCate"
  18. :class="{active:index == clickProdIndex}"
  19. :key="index"
  20. @click="getProdList(index)"
  21. >
  22. <nuxt-link to="/">{{ item.title }}</nuxt-link>
  23. <div class="line"></div>
  24. </li>
  25. </ul>
  26. <div class="cate-list thinking-cate-list">
  27. <div
  28. class="thinking-product-item"
  29. v-for="(item, index) in productCate"
  30. :key="index"
  31. @click="clickProduct(item)"
  32. >
  33. <div class="thinking-product-item-img">
  34. <nuxt-link to="/">
  35. <img src="~/assets/images/index/product.png" alt="" srcset="">
  36. </nuxt-link>
  37. <div class="product-tag">基础版
  38. <!-- <img src="~/assets/images/index/product_tag.png" alt="" srcset=""> -->
  39. </div>
  40. </div>
  41. <div class="thinking-product-info">
  42. <div class="thinking-product-title">
  43. <nuxt-link to="/">幼小衔接课程……</nuxt-link>
  44. </div>
  45. <div class="thinking-product-content">
  46. <div class="thinking-product-price">¥
  47. <span class="price-num">888</span>
  48. </div>
  49. <div class="thinking-product-btn">
  50. <nuxt-link to="/">查看产品</nuxt-link>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. <div class="more-btn">更多产品</div>
  59. </div>
  60. </div>
  61. <!-- 网校课程 -->
  62. <div class="index-course">
  63. <div class="i-c-content">
  64. <div class="c-top title-content">
  65. <!-- <div class="title-en">PRODUCT</div> -->
  66. <div class="title-zh">网校课程</div>
  67. </div>
  68. <div class="content-box course-content-box">
  69. <div class="cate-box course-cate-box">
  70. <ul class="cate-nav course-cate-nav">
  71. <li
  72. class="products-kind thinking-products-kind"
  73. v-for="(item, index) in courseCate"
  74. :class="{active:index == clickProdIndex}"
  75. :key="index"
  76. @click="getProdList(index)"
  77. >
  78. <nuxt-link to="/">{{ item.title }}</nuxt-link>
  79. <div class="line"></div>
  80. </li>
  81. </ul>
  82. <div class="cate-list course-cate-list">
  83. <div
  84. class="product-item course-product-item"
  85. v-for="(item, index) in courseCate"
  86. :key="index"
  87. >
  88. <div class="product-item-img course-product-item-img">
  89. <nuxt-link target="_blank" to="/">
  90. <img src="~/assets/images/index/product_course@3x.png" alt="" srcset="">
  91. </nuxt-link>
  92. <div class="course-product-item-play">
  93. <nuxt-link target="_blank" to="/">
  94. <img src="~/assets/images/index/player.png" alt="" srcset="">
  95. </nuxt-link>
  96. </div>
  97. </div>
  98. <div class="course-product-info">
  99. <div class="course-product-title">幼小衔接课程……</div>
  100. <div class="course-product-content">
  101. <div class="course-product-price">¥
  102. <span class="price-num">888</span>
  103. </div>
  104. <div class="course-product-user">
  105. <img src="~/assets/images/index/product_person.png" alt="" srcset="">
  106. <div class="views">158</div>
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. <div class="more-btn">更多产品</div>
  115. </div>
  116. </div>
  117. <!-- 多渠道教学场景 -->
  118. <div class="index-scenes">
  119. <div class="i-s-content">
  120. <div class="title-content">
  121. <div class="title-zh">多渠道教学场景</div>
  122. </div>
  123. </div>
  124. <div class="scenes-content-box">
  125. <ul class="panorama-education-list">
  126. <li class="mobile-education mobile-education-1" @mouseenter="mobileEnter">
  127. <div class="small-education-div">
  128. <div class="mobile-small-img">
  129. <i class="iconfont T3 EC2 iconicon_pc1"></i>
  130. </div>
  131. <p class="mobile-education-title">PC独立网校</p>
  132. <p class="mobile-education-sub">沉浸式学习体验</p>
  133. <p class="mobile-education-sub">建立机构专属品牌官网</p>
  134. <div class="mobile-education-img">
  135. <img src="~/assets/images/index/img_PC.png">
  136. </div>
  137. </div>
  138. <div class="big-mobile-education">
  139. <div class="pc-education-top">
  140. <div class="pc-small-img">
  141. <i class="iconfont iconicon_pc1"></i>
  142. </div>
  143. <div class="education-title-box">
  144. <p class="education-title">PC独立网校</p>
  145. <p class="education-sub-title">沉浸式学习体验,建立机构专属品牌官网</p>
  146. </div>
  147. </div>
  148. <div class="education-img">
  149. <img src="~/assets/images/index/img_PC.png">
  150. </div>
  151. </div>
  152. </li>
  153. <li class="mobile-education mobile-education-2" @mouseenter="mobileEnter">
  154. <div class="small-education-div">
  155. <div class="mobile-small-img">
  156. <i class="iconfont T3 EC2 iconicon_h"></i>
  157. </div>
  158. <p class="mobile-education-title">移动H5网校</p>
  159. <p class="mobile-education-sub">轻量级移动教学体验</p>
  160. <p class="mobile-education-sub">让你的网校与众不同</p>
  161. <div class="mobile-education-img">
  162. <img src="~/assets/images/index/img_H5.png">
  163. </div>
  164. </div>
  165. <div class="big-mobile-education">
  166. <div class="pc-education-top">
  167. <div class="pc-small-img">
  168. <i class="iconfont iconicon_h"></i>
  169. </div>
  170. <div class="education-title-box">
  171. <p class="education-title">移动H5网校</p>
  172. <p class="education-sub-title">轻量级移动教学体验,让你的网校与众不同</p>
  173. </div>
  174. </div>
  175. <div class="education-img">
  176. <img src="~/assets/images/index/img_H5.png">
  177. </div>
  178. </div>
  179. </li>
  180. <li class="mobile-education mobile-education-3" @mouseenter="mobileEnter">
  181. <div class="small-education-div">
  182. <div class="mobile-small-img">
  183. <i class="iconfont T3 EC2 iconicon_minprogram"></i>
  184. </div>
  185. <p class="mobile-education-title">微信小程序网校</p>
  186. <p class="mobile-education-sub">结合微信生态</p>
  187. <p class="mobile-education-sub">即开即用易传播</p>
  188. <div class="mobile-education-img">
  189. <img src="~/assets/images/index/img_minprogram.png">
  190. </div>
  191. </div>
  192. <div class="big-mobile-education">
  193. <div class="pc-education-top">
  194. <div class="pc-small-img">
  195. <i class="iconfont iconicon_minprogram"></i>
  196. </div>
  197. <div class="education-title-box">
  198. <p class="education-title">微信小程序网校</p>
  199. <p class="education-sub-title">结合微信生态,即开即用易传播</p>
  200. </div>
  201. </div>
  202. <div class="education-img">
  203. <img src="~/assets/images/index/img_minprogram.png">
  204. </div>
  205. </div>
  206. </li>
  207. <li class="mobile-education mobile-education-4" @mouseenter="mobileEnter">
  208. <div class="small-education-div">
  209. <div class="mobile-small-img">
  210. <i class="iconfont T3 EC2 iconicon_App"></i>
  211. </div>
  212. <p class="mobile-education-title">专属网校APP</p>
  213. <p class="mobile-education-sub">IOS、安卓双系统支持</p>
  214. <p class="mobile-education-sub">把学校装进口袋</p>
  215. <div class="mobile-education-img">
  216. <img src="~/assets/images/index/img_App.png">
  217. </div>
  218. </div>
  219. <div class="big-mobile-education">
  220. <div class="pc-education-top">
  221. <div class="pc-small-img">
  222. <i class="iconfont iconicon_App"></i>
  223. </div>
  224. <div class="education-title-box">
  225. <p class="education-title">专属网校APP</p>
  226. <p class="education-sub-title">IOS、安卓双系统支持,把学校装进口袋</p>
  227. </div>
  228. </div>
  229. <div class="education-img">
  230. <img src="~/assets/images/index/img_App.png">
  231. </div>
  232. </div>
  233. </li>
  234. <li class="mobile-education mobile-education-5" @mouseenter="mobileEnter">
  235. <div class="small-education-div">
  236. <div class="mobile-small-img">
  237. <i class="iconfont T3 EC2 iconicon_Api"></i>
  238. </div>
  239. <p class="mobile-education-title">API开放平台</p>
  240. <p class="mobile-education-sub">联接多个渠道</p>
  241. <p class="mobile-education-sub">实现数据互联互通</p>
  242. <div class="mobile-education-img">
  243. <img src="~/assets/images/index/img_API.png">
  244. </div>
  245. </div>
  246. <div class="big-mobile-education">
  247. <div class="pc-education-top">
  248. <div class="pc-small-img">
  249. <i class="iconfont iconicon_Api"></i>
  250. </div>
  251. <div class="education-title-box">
  252. <p class="education-title">API开放平台</p>
  253. <p class="education-sub-title">联接多个渠道,实现数据互联互通</p>
  254. </div>
  255. </div>
  256. <div class="education-img">
  257. <img src="~/assets/images/index/img_API.png">
  258. </div>
  259. </div>
  260. </li>
  261. <li class="mobile-education mobile-education-6" @mouseenter="mobileEnter">
  262. <div class="small-education-div">
  263. <div class="mobile-small-img">
  264. <i class="iconfont T3 EC2 iconicon_Component"></i>
  265. </div>
  266. <p class="mobile-education-title">APP内嵌SDK</p>
  267. <p class="mobile-education-sub">打破终端流量转化壁垒</p>
  268. <p class="mobile-education-sub">在自有APP搭建店铺</p>
  269. <div class="mobile-education-img">
  270. <img src="~/assets/images/index/img_SDK.png">
  271. </div>
  272. </div>
  273. <div class="big-mobile-education">
  274. <div class="pc-education-top">
  275. <div class="pc-small-img">
  276. <i class="iconfont iconicon_Component"></i>
  277. </div>
  278. <div class="education-title-box">
  279. <p class="education-title">APP内嵌SDK</p>
  280. <p class="education-sub-title">打破终端流量转化壁垒在自有APP搭建店铺</p>
  281. </div>
  282. </div>
  283. <div class="education-img">
  284. <img src="~/assets/images/index/img_SDK.png">
  285. </div>
  286. </div>
  287. </li>
  288. </ul>
  289. </div>
  290. </div>
  291. <!-- 逻辑狗探索小镇 -->
  292. <div class="index-town">
  293. <div class="i-town-content w1200">
  294. <div class="c-top title-content">
  295. <!-- <div class="title-en">PRODUCT</div> -->
  296. <div class="title-zh">逻辑狗探索小镇</div>
  297. <p class="title-sub">专注3.4-12岁儿童优质思维能力养成的场景式,游戏化体验中心</p>
  298. </div>
  299. <div class="town-content-box">
  300. <div class="town-btn-group">
  301. <div class="town-btn-about">了解我们</div>
  302. <div class="town-btn-join">加入我们</div>
  303. </div>
  304. <div class="town-content-skill">
  305. <div class="town-content-img">
  306. <img src="~/assets/images/index/town_img.png" alt="" srcset="">
  307. <div class="skill-item skill-item-01">
  308. <img src="~/assets/images/index/icon_town_01.png" alt="" srcset="">
  309. <p>知识迁移</p>
  310. </div>
  311. <div class="skill-item skill-item-02">
  312. <img src="~/assets/images/index/icon_town_02.png" alt="" srcset="">
  313. <p>观察能力</p>
  314. </div>
  315. <div class="skill-item skill-item-03">
  316. <img src="~/assets/images/index/icon_town_03.png" alt="" srcset="">
  317. <p>手眼协调</p>
  318. </div>
  319. <div class="skill-item skill-item-04">
  320. <img src="~/assets/images/index/icon_town_04.png" alt="" srcset="">
  321. <p>语言能力</p>
  322. </div>
  323. <div class="skill-item skill-item-05">
  324. <img src="~/assets/images/index/icon_town_05.png" alt="" srcset="">
  325. <p>想象能力</p>
  326. </div>
  327. <div class="skill-item skill-item-06" >
  328. <img src="~/assets/images/index/icon_town_06.png" alt="" srcset="">
  329. <p>分类能力</p>
  330. </div>
  331. <div class="skill-item skill-item-07" >
  332. <img src="~/assets/images/index/icon_town_07.png" alt="" srcset="">
  333. <p>推理能力</p>
  334. </div>
  335. <div class="skill-item skill-item-08" >
  336. <img src="~/assets/images/index/icon_town_08.png" alt="" srcset="">
  337. <p>空间能力</p>
  338. </div>
  339. <div class="skill-item skill-item-09" >
  340. <img src="~/assets/images/index/icon_town_09.png" alt="" srcset="">
  341. <p>专注能力</p>
  342. </div>
  343. <div class="skill-item skill-item-10" >
  344. <img src="~/assets/images/index/icon_town_10.png" alt="" srcset="">
  345. <p>数学能力</p>
  346. </div>
  347. </div>
  348. </div>
  349. </div>
  350. </div>
  351. <div class="town_bottom_bg">
  352. <img src="~/assets/images/index/town_bottom.png" alt="" srcset="">
  353. </div>
  354. </div>
  355. </div>
  356. </template>
  357. <script>
  358. import axios from "axios";
  359. import VBanner from "~/components/home/banner";
  360. // import indexVideo from '~/components/home/indexVideo';
  361. // import prodListShow from '~/components/common/prodListShow';
  362. // import indexNewsListShow from '~/components/common/indexNewsListShow'
  363. export default {
  364. data() {
  365. return {
  366. experiencePlace: ["包头", "成都", "南京", "东莞"],
  367. num: 0,
  368. clickProdIndex: 0,
  369. clickNewsIndex: 0,
  370. productCate: [
  371. {
  372. title: "全部",
  373. type: 0,
  374. },
  375. {
  376. title: "0-3岁思维启蒙",
  377. type: 1,
  378. },
  379. {
  380. title: "3-7岁能力训练",
  381. type: 2,
  382. },
  383. {
  384. title: "5-7岁入学思考",
  385. type: 3,
  386. },
  387. {
  388. title: "7-12岁技巧学习",
  389. type: 4,
  390. },
  391. ],
  392. courseCate: [
  393. {
  394. title: "全部",
  395. type: 0,
  396. },
  397. {
  398. title: "直播课",
  399. type: 1,
  400. },
  401. {
  402. title: "录播课",
  403. type: 2,
  404. },
  405. {
  406. title: "公开课",
  407. type: 3,
  408. },
  409. ],
  410. };
  411. },
  412. components: {
  413. VBanner,
  414. // indexVideo,
  415. // prodListShow,
  416. // indexNewsListShow
  417. },
  418. // 逻辑狗官网 - 中德智慧教育
  419. // 关键词:逻辑狗官网、逻辑狗教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童
  420. // 描述:逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台
  421. head() {
  422. return {
  423. title: "逻辑狗官网-中德智慧教育",
  424. meta: [
  425. {
  426. name: "keywords",
  427. hid: "keywords",
  428. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  429. },
  430. {
  431. name: "description",
  432. hid: "description",
  433. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  434. },
  435. ],
  436. };
  437. },
  438. async asyncData({ params, store }) {
  439. //首页head信息
  440. let metaData = await axios(
  441. `${store.state.wordpressAPI}/NavigationMeta/get/1`
  442. );
  443. //banner数据动态获取
  444. let banner = await axios(
  445. `${store.state.wordpressAPI}/banner/selectAllByTpye/1`
  446. );
  447. //首页新闻信息
  448. // let indexFirstNewsList1 = await axios(`${store.state.wordpressAPI}/article/getRecommend/1`);
  449. // let indexFirstNewsList2 = await axios(`${store.state.wordpressAPI}/article/getRecommend/2`);
  450. // let indexFirstNewsList3 = await axios(`${store.state.wordpressAPI}/article/getRecommend/3`);
  451. // let indexFirstNewsList4 = await axios(`${store.state.wordpressAPI}/article/getRecommend/4`);
  452. // let indexFirstNewsList5 = await axios(`${store.state.wordpressAPI}/article/getRecommend/5`);
  453. // let indexNewsList1 = await axios(`${store.state.wordpressAPI}/article/getRecommendsByCategoryId/1/9`);
  454. // let indexNewsList2 = await axios(`${store.state.wordpressAPI}/article/getRecommendsByCategoryId/2/9`);
  455. // let indexNewsList3 = await axios(`${store.state.wordpressAPI}/article/getRecommendsByCategoryId/3/9`);
  456. // let indexNewsList4 = await axios(`${store.state.wordpressAPI}/article/getRecommendsByCategoryId/4/9`);
  457. // let indexNewsList5 = await axios(`${store.state.wordpressAPI}/article/getRecommendsByCategoryId/5/9`);
  458. //首页产品展示信息
  459. // let indexProdNav = await axios(`${store.state.wordpressAPI}/proCategory/showFirst`);
  460. // let indexProdList1 = await axios(`${store.state.wordpressAPI}/product/selectByPosition/1`);
  461. // let indexProdList2 = await axios(`${store.state.wordpressAPI}/product/selectByPosition/2`);
  462. // let indexProdList3 = await axios(`${store.state.wordpressAPI}/product/selectByPosition/3`);
  463. // let indexProdList4 = await axios(`${store.state.wordpressAPI}/product/selectByPosition/4`);
  464. // let indexProdList6 = await axios(`${store.state.wordpressAPI}/product/selectByPosition/97`);
  465. return {
  466. metaData: metaData.data,
  467. bannerData: banner.data,
  468. //首页新闻信息
  469. // indexFirstNewsList1: indexFirstNewsList1.data,
  470. // indexFirstNewsList2: indexFirstNewsList2.data,
  471. // indexFirstNewsList3: indexFirstNewsList3.data,
  472. // indexFirstNewsList4: indexFirstNewsList4.data,
  473. // indexFirstNewsList5: indexFirstNewsList5.data,
  474. // indexNewsList1: indexNewsList1.data,
  475. // indexNewsList2: indexNewsList2.data,
  476. // indexNewsList3: indexNewsList3.data,
  477. // indexNewsList4: indexNewsList4.data,
  478. // indexNewsList5: indexNewsList5.data,
  479. //首页产品信息
  480. // indexProdNav: indexProdNav.data,
  481. // indexProdList1: indexProdList1.data,
  482. // indexProdList2: indexProdList2.data,
  483. // indexProdList3: indexProdList3.data,
  484. // indexProdList4: indexProdList4.data,
  485. // indexProdList6: indexProdList6.data,
  486. };
  487. },
  488. created() {
  489. },
  490. mounted() {
  491. },
  492. methods: {
  493. tab(index) {
  494. this.num = index;
  495. },
  496. getProdList(index) {
  497. this.clickProdIndex = index;
  498. },
  499. getNewsList(index) {
  500. this.clickNewsIndex = index;
  501. },
  502. clickProduct(item) {
  503. console.log(item);
  504. // this.$router.push({ path: '/product/course'});
  505. },
  506. mobileEnter(e) {
  507. "400px" != $(event.target).css("width") &&(
  508. $(".panorama-education-list .mobile-education").css(
  509. "width",
  510. "200px"
  511. ),
  512. $(event.target).css("width", "400px"),
  513. $(".panorama-education-list .mobile-education")
  514. .find(".big-mobile-education")
  515. .css("display", "none"),
  516. $(event.target).css("width", "400px"),
  517. $(event.target).find(".big-mobile-education").fadeIn("fast")
  518. )
  519. }
  520. },
  521. };
  522. </script>
  523. <style lang="scss" scoped>
  524. @import "~static/common/style.sass";
  525. .container {
  526. width: 100%;
  527. background: #f0f2f5;
  528. height: auto;
  529. }
  530. .title-content {
  531. // margin-top: 164px;
  532. }
  533. .title-en {
  534. height: 110px;
  535. line-height: 110px;
  536. font-size: 78px;
  537. font-family: PingFangSC-Semibold, PingFang SC;
  538. font-weight: 600;
  539. color: #353956;
  540. }
  541. .title-zh {
  542. height: 81px;
  543. line-height: 81px;
  544. font-size: 58px;
  545. font-family: PingFangSC-Semibold, PingFang SC;
  546. font-weight: 600;
  547. color: #000000;
  548. letter-spacing: 1px;
  549. text-align: center;
  550. }
  551. .more-btn {
  552. margin: 50px auto 162px;
  553. width: 138px;
  554. height: 45px;
  555. line-height: 45px;
  556. text-align: center;
  557. padding: 0 25px;
  558. background: $theme_color_fu;
  559. box-shadow: 0px 3px 9px 0px rgba(109, 140, 239, 0.82);
  560. border-radius: 23px;
  561. font-size: 22px;
  562. font-family: PingFangSC-Medium, PingFang SC;
  563. font-weight: 500;
  564. color: #ffffff;
  565. }
  566. ul.cate-nav {
  567. margin: 124px 0 116px;
  568. li.products-kind {
  569. display: inline-block;
  570. margin: 0 30px;
  571. cursor: pointer;
  572. &:first-child {
  573. margin-left: 0;
  574. }
  575. &.active,
  576. &:hover {
  577. a {
  578. color: $theme_color;
  579. }
  580. }
  581. .line {
  582. visibility: hidden;
  583. margin: 22px auto 0;
  584. width: 60px;
  585. border-radius: 50px;
  586. height: 15px;
  587. background: $theme_color_fu;
  588. box-shadow: 0px 2px 8px 0px rgba(45, 112, 245, 0.64);
  589. // -webkit-transition: all 0.5s ease;
  590. // -o-transition: all 0.5s ease;
  591. // transition: all 0.5s ease;
  592. }
  593. a {
  594. font-size: 32px;
  595. color: #747885;
  596. }
  597. }
  598. li.products-kind:hover,
  599. li.products-kind.active {
  600. .line {
  601. display: block;
  602. visibility: visible;
  603. transition: all 0.5s ease;
  604. }
  605. }
  606. }
  607. .cate-list {
  608. display: flex;
  609. align-items: center;
  610. flex-wrap: wrap;
  611. .product-item {
  612. position: relative;
  613. box-sizing: border-box;
  614. width: 372px;
  615. margin-bottom: 42px;
  616. margin-right: 36px;
  617. &:nth-child(3n) {
  618. margin-right: 0px;
  619. }
  620. }
  621. .product-tag {
  622. padding: 0 6px 0 10px;
  623. background: $theme_color_fu;
  624. position: absolute;
  625. top: 0;
  626. left: 0;
  627. font-size: 12px;
  628. color: #ffffff;
  629. height: 24px;
  630. line-height: 24px;
  631. font-family: PingFangSC-Semibold, PingFang SC;
  632. font-weight: 600;
  633. border-radius: 18px 0px 7px 0px;
  634. // img {
  635. // width:52px;
  636. // height:24px;
  637. // object-fit: cover;
  638. // }
  639. }
  640. }
  641. /* index-thinking */
  642. .index-thinking {
  643. width: 1200px;
  644. margin: 0 auto;
  645. // text-align: center;
  646. .i-t-content {
  647. position: relative;
  648. .title-zh {
  649. z-index: 666;
  650. }
  651. .title-en {
  652. position: absolute;
  653. top: 0;
  654. left: 50%;
  655. transform: translateX(-50%);
  656. z-index: 1;
  657. }
  658. }
  659. ul.thinking-cate-nav {
  660. margin: 124px 0 116px;
  661. }
  662. li.thinking-products-kind {
  663. display: inline-block;
  664. margin: 0 30px;
  665. cursor: pointer;
  666. -webkit-transition: all 0.5s ease;
  667. -o-transition: all 0.5s ease;
  668. transition: all 0.5s ease;
  669. .line {
  670. visibility: hidden;
  671. margin: 22px auto 0;
  672. width: 60px;
  673. border-radius: 50px;
  674. height: 15px;
  675. width: 59px;
  676. height: 15px;
  677. background: $theme_color_fu;
  678. box-shadow: 0px 2px 8px 0px rgba(94, 161, 241, 0.87);
  679. }
  680. a {
  681. font-size: 32px;
  682. color: #747885;
  683. }
  684. }
  685. li.thinking-products-kind:hover,
  686. li.thinking-products-kind.active {
  687. .line {
  688. display: block;
  689. visibility: visible;
  690. }
  691. }
  692. li.thinking-products-kind:first-child {
  693. margin-left: 0;
  694. }
  695. li.thinking-products-kind.active a,
  696. .thinking-products-kind:hover a {
  697. // font-size: 42px;
  698. color: $theme_color;
  699. // border-bottom: 6px solid $theme_color;
  700. // box-shadow:0px 2px 8px 0px rgba(240,53,94,0.61);
  701. }
  702. .thinking-cate-list {
  703. display: flex;
  704. align-items: center;
  705. flex-wrap: wrap;
  706. .thinking-product-item {
  707. position: relative;
  708. box-sizing: border-box;
  709. width: 374px;
  710. margin-bottom: 42px;
  711. margin-right: 36px;
  712. &:nth-child(3n) {
  713. margin-right: 0px;
  714. }
  715. .thinking-product-item-img {
  716. width: 374px;
  717. font-size: 0;
  718. img {
  719. border-radius: 18px 18px 0px 0px;
  720. width: 100%;
  721. }
  722. }
  723. }
  724. }
  725. .thinking-product-info {
  726. box-sizing: border-box;
  727. background: #ffffff;
  728. height: 90px;
  729. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  730. border-radius: 0px 0px 18px 18px;
  731. padding: 26px 22px;
  732. .thinking-product-title {
  733. width: 160px;
  734. height: 28px;
  735. font-size: 20px;
  736. font-family: PingFangSC-Medium, PingFang SC;
  737. font-weight: 500;
  738. line-height: 28px;
  739. a {
  740. color: #343e30;
  741. }
  742. }
  743. .thinking-product-content {
  744. display: flex;
  745. align-items: center;
  746. justify-content: space-between;
  747. }
  748. .thinking-product-price {
  749. color: #ea0b4a;
  750. .price-num {
  751. font-size: 22px;
  752. font-weight: bold;
  753. }
  754. }
  755. .thinking-product-btn {
  756. height: 18px;
  757. line-height: 18px;
  758. font-size: 13px;
  759. font-family: PingFangSC-Regular, PingFang SC;
  760. font-weight: 400;
  761. border: 1px solid rgba(60, 142, 255, 1);
  762. height: 27px;
  763. line-height: 27px;
  764. border-radius: 14px;
  765. padding: 0 15px;
  766. a {
  767. color: #3e8eff;
  768. }
  769. }
  770. // .thinking-product-user {
  771. // display: flex;
  772. // img {
  773. // width: 18px;
  774. // height: 22px;
  775. // }
  776. // }
  777. }
  778. }
  779. /* index-thinking */
  780. .index-course {
  781. width: 1200px;
  782. margin: 0 auto;
  783. .course-content-box {
  784. .course-cate-nav {
  785. display: flex;
  786. justify-content: space-between;
  787. }
  788. }
  789. .course-cate-list {
  790. .course-product-item {
  791. width: 365px;
  792. .course-product-item-img {
  793. position: relative;
  794. font-size: 0;
  795. img {
  796. width: 100%;
  797. }
  798. .course-product-item-play {
  799. position: absolute;
  800. left: 50%;
  801. top: 50%;
  802. transform: translate(-50%, -50%);
  803. width: 62px;
  804. font-size: 0;
  805. }
  806. }
  807. }
  808. }
  809. .course-product-info {
  810. box-sizing: border-box;
  811. background: #ffffff;
  812. height: 90px;
  813. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  814. border-radius: 0px 0px 18px 18px;
  815. padding: 26px 22px;
  816. .course-product-title {
  817. width: 160px;
  818. height: 28px;
  819. font-size: 20px;
  820. font-family: PingFangSC-Medium, PingFang SC;
  821. font-weight: 500;
  822. color: rgba(52, 62, 48, 1);
  823. line-height: 28px;
  824. }
  825. .course-product-content {
  826. display: flex;
  827. align-items: center;
  828. justify-content: space-between;
  829. }
  830. .course-product-price {
  831. color: #ea0b4a;
  832. .price-num {
  833. font-size: 22px;
  834. font-weight: bold;
  835. }
  836. }
  837. .course-product-user {
  838. display: flex;
  839. align-items: flex-end;
  840. img {
  841. width: 18px;
  842. height: 22px;
  843. margin-right: 10px;
  844. }
  845. .views {
  846. color: #418eff;
  847. }
  848. }
  849. }
  850. }
  851. // index-scenes
  852. .index-scenes {
  853. background: #f7fbff;
  854. padding: 217px 0 228px;
  855. .i-s-contant {
  856. }
  857. .scenes-content-box {
  858. margin: 102px auto 0;
  859. width: 1200px;
  860. .panorama-education-list {
  861. margin: 0 auto;
  862. height: 460px;
  863. display: -webkit-box;
  864. display: -ms-flexbox;
  865. display: flex;
  866. -webkit-box-pack: center;
  867. -ms-flex-pack: center;
  868. justify-content: center;
  869. .pc-education {
  870. width: 400px;
  871. height: 460px;
  872. background-color: #fff;
  873. border: 1px solid #eee;
  874. }
  875. .mobile-education {
  876. width: 160px;
  877. height: 460px;
  878. border: 1px solid #EEE;
  879. border-left: none;
  880. background-color: #fff;
  881. text-align: center;
  882. position: relative;
  883. cursor: pointer;
  884. &:nth-child(1) {
  885. border-left: 1px solid #eee;
  886. }
  887. .mobile-small-img {
  888. width: 32px;
  889. height: 32px;
  890. margin: 68px auto 26px;
  891. img {
  892. width: 32px;
  893. height: 32px;
  894. }
  895. }
  896. .mobile-education-title {
  897. height: 22px;
  898. font-size: 16px;
  899. font-weight: 500;
  900. color: #333;
  901. line-height: 22px;
  902. margin-bottom: 8px;
  903. }
  904. .mobile-education-sub {
  905. font-size: 12px;
  906. font-weight: 400;
  907. color: #333;
  908. line-height: 18px;
  909. }
  910. .mobile-education-img {
  911. width: 160px;
  912. height: 128px;
  913. margin: 76px auto 0;
  914. img {
  915. width: 160px;
  916. height: 128px;
  917. }
  918. }
  919. }
  920. .big-mobile-education {
  921. display: none;
  922. background: #fff;
  923. width: 346px;
  924. height: 460px;
  925. position: absolute;
  926. z-index: 3;
  927. opacity: 1;
  928. left: -1px;
  929. top: -1px;
  930. border: 1px solid #105cfb;
  931. .pc-education-top {
  932. display: -webkit-box;
  933. display: -ms-flexbox;
  934. display: flex;
  935. margin-left: 36px;
  936. .pc-small-img {
  937. width: 32px;
  938. height: 32px;
  939. margin-top: 40px;
  940. img {
  941. width: 32px;
  942. height: 32px;
  943. }
  944. }
  945. .education-title-box {
  946. margin-top: 32px;
  947. margin-left: 20px;
  948. .education-title {
  949. height: 22px;
  950. font-size: 16px;
  951. font-weight: 500;
  952. color: #333;
  953. line-height: 22px;
  954. text-align: left;
  955. }
  956. .education-sub-title {
  957. margin-top: 4px;
  958. height: 18px;
  959. font-size: 12px;
  960. color: #333;
  961. line-height: 18px;
  962. }
  963. }
  964. }
  965. .education-img {
  966. width: 306px;
  967. height: auto;
  968. margin: 56px auto 0;
  969. img {
  970. width: 306px;
  971. height: auto;
  972. }
  973. }
  974. .mobile-small-img {
  975. width: 48px;
  976. height: 48px;
  977. margin: 68px auto 26px;
  978. img {
  979. width: 48px;
  980. height: 48px;
  981. }
  982. }
  983. .mobile-education-title {
  984. height: 33px;
  985. font-size: 24px;
  986. font-weight: 500;
  987. color: #333;
  988. line-height: 33px;
  989. margin-bottom: 8px;
  990. }
  991. .mobile-education-sub {
  992. font-size: 18px;
  993. font-weight: 400;
  994. color: #333;
  995. line-height: 27px;
  996. }
  997. .mobile-education-img {
  998. width: 240px;
  999. height: 192px;
  1000. margin: 76px auto 0;
  1001. img {
  1002. width: 240px;
  1003. height: 192px;
  1004. }
  1005. }
  1006. }
  1007. .mobile-education-1 {
  1008. width: 342px;
  1009. }
  1010. }
  1011. }
  1012. }
  1013. // index-town
  1014. .index-town {
  1015. position: relative;
  1016. height: 1370px;
  1017. .i-town-content {
  1018. .title-sub {
  1019. margin-top: 28px;
  1020. text-align: center;
  1021. font-size:28px;
  1022. font-family:PingFangSC-Regular,PingFang SC;
  1023. font-weight:400;
  1024. color:#38393A;
  1025. line-height:40px;
  1026. }
  1027. .town-content-box {
  1028. .town-btn-group {
  1029. margin-top: 52px;
  1030. display: flex;
  1031. font-size: 29px;
  1032. font-family: PingFangSC-Medium,PingFang SC;
  1033. font-weight: 500;
  1034. color:#ffffff;
  1035. line-height: 40px;
  1036. text-align: center;
  1037. .town-btn-about { //428 120
  1038. width: 180px;
  1039. height: 60px;
  1040. line-height: 60px;
  1041. border-radius: 30px;
  1042. border: 1px solid $theme_color_fu;
  1043. color: $theme_color_fu;
  1044. margin: 0 290px 0 308px;
  1045. }
  1046. .town-btn-join {
  1047. width: 180px;
  1048. height: 60px;
  1049. line-height: 60px;
  1050. background: $theme_color_fu;
  1051. box-shadow: 0px 4px 9px 0px rgba(91,141,240,0.83);
  1052. border-radius: 30px;
  1053. }
  1054. }
  1055. }
  1056. }
  1057. .town-content-skill {
  1058. // position: relative;
  1059. .town-content-img {
  1060. position: absolute;
  1061. bottom: 0;
  1062. left: 50%;
  1063. transform: translateX(-50%);
  1064. text-align: center;
  1065. font-size: 0;
  1066. z-index: 10;
  1067. border: 1px solid red;
  1068. .skill-item {
  1069. position: absolute;
  1070. text-align: center;
  1071. p {
  1072. position: absolute;
  1073. bottom: -20px;
  1074. transform: translateX(-50%);
  1075. font-size:24px;
  1076. font-family:PingFangSC-Medium,PingFang SC;
  1077. font-weight:500;
  1078. color: #38393A;
  1079. text-align: center;
  1080. }
  1081. }
  1082. .skill-item-01 {
  1083. left: -160px;
  1084. top: -158px;
  1085. }
  1086. .skill-item-02 {
  1087. left: 70px;
  1088. top: -130px;
  1089. }
  1090. }
  1091. }
  1092. .town_bottom_bg {
  1093. position: absolute;
  1094. bottom: 0;
  1095. font-size: 0;
  1096. }
  1097. }
  1098. </style>