index.vue 64 KB

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