index.vue 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. <template>
  2. <div class="container">
  3. <!-- banner -->
  4. <VBanner :bannerData="bannerData"></VBanner>
  5. <!-- 培养优质思维模式,建构思维“芯” -->
  6. <div class="index-thought">
  7. <div class="i-thought-content">
  8. <div class="t-top title-content wow animate__animated animate__fadeInDown">
  9. <div class="title-zh">
  10. <div class="title-en">THOUGHT</div>
  11. 培养优质思维模式,建构思维“芯”
  12. </div>
  13. </div>
  14. <div class="thought-content-box">
  15. <img src="~/assets/images/index/map.png" alt="">
  16. <div class="map-content">
  17. <ul class="list">
  18. <li class="con-item one">
  19. <div class="con-box">
  20. <div class="con">
  21. <div class="num">
  22. <countTo :startVal='0' :endVal='420' :duration='3000'></countTo>
  23. <span class="unit">个</span>
  24. </div>
  25. <p class="color-gray wow animate__animated animate__fadeInLeft">学员覆盖城市地区</p>
  26. </div>
  27. <div class="hover-box">
  28. <div class="icon">
  29. <img
  30. src="~assets/images/index/icon_map_01.png"
  31. alt="学员覆盖城市地区">
  32. </div>
  33. </div>
  34. </div>
  35. </li>
  36. <li class="con-item two">
  37. <div class="con-box">
  38. <div class="con">
  39. <div class="num">
  40. <countTo :startVal='79000' :endVal='800000' :duration='3000'></countTo>
  41. <span class="unit">+</span>
  42. </div>
  43. <p class="color-gray wow animate__animated animate__fadeInDown">累计服务学员</p>
  44. </div>
  45. <div class="hover-box">
  46. <div class="icon">
  47. <img
  48. src="~assets/images/index/icon_map_02.png"
  49. alt="累计服务学员">
  50. </div>
  51. </div>
  52. </div>
  53. </li>
  54. <li class="con-item three">
  55. <div class="con-box">
  56. <div class="con">
  57. <div class="font52 num">
  58. <countTo :startVal='0' :endVal='98.6' :decimals='1' :duration='3000'></countTo>
  59. <span class="unit">%</span>
  60. </div>
  61. <p class="color-gray wow animate__animated animate__fadeInRight">评价好评率</p>
  62. </div>
  63. <div class="hover-box">
  64. <div class="icon">
  65. <img
  66. src="~assets/images/index/icon_map_03.png"
  67. alt="评价好评率">
  68. </div>
  69. </div>
  70. </div>
  71. </li>
  72. </ul>
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77. <!-- 创始人 -->
  78. <div class="index-founder">
  79. <div class="founder-content-box">
  80. <div class="founder_img wow animate__animated animate__fadeInLeft">
  81. <img src="~/assets/images/index/img_boss.png" alt="">
  82. </div>
  83. <div class="founder_content">
  84. <div class="name founder-item">
  85. <span class="dot"></span>
  86. <p>中德智慧创始人</p>
  87. </div>
  88. <p class="title founder-item wow animate__animated animate__fadeInLeft">培养优质思维模式,建构思维“芯”</p>
  89. <p
  90. class="desc founder-item wow animate__animated animate__fadeInDown"
  91. >全球优质儿童逻辑思维教育专家以国际教育理念为指导,推动中国学前教育事业发展成为中国学前儿童思维教育领域奠基者和创领者之- -率先领导和实践幼儿园思维游戏化教学,用全球同频使用的优质思维教育内容,为0-12岁儿童培养优质思维模式,建构思维“芯”。是国际化科技教育内容的创始者,以“让中国孩子幸福成长”为使命,始终以‘走出去、请进来”、“洋为中用”的全球化视野,融合中西文化,全力打造具有成长型思维模式的未来人才</p>
  92. <div class="btn founder-item wow animate__animated animate__fadeInDown">
  93. <nuxt-link to="/">了解中德智慧</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. :cleanup-styles-on-destroy="false"
  170. @ready="onSwiperRedied"
  171. @mouseenter="stopSwiper"
  172. @mouseleave="startSwiper">
  173. <div class="swiper-wrapper">
  174. <div v-for="(item, index) in productImage" :key="index" class="swiper-slide">
  175. <img :src="item.imgUrl">
  176. <p class="name">{{ item.title }}</p>
  177. </div>
  178. </div>
  179. </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 class="education-gzh">
  276. <img src="~/assets/images/index/teach_gzh.png" alt="">
  277. </div>
  278. </div>
  279. <div class="education-img">
  280. <img src="~/assets/images/index/teach_01.png">
  281. </div>
  282. </div>
  283. </li>
  284. <li class="mobile-education mobile-education-2 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
  285. <div class="small-education-div">
  286. <div class="mobile-small-img">
  287. <img src="~/assets/images/index/teach_02_icon_nor.png" alt="" srcset="">
  288. </div>
  289. <p class="mobile-education-title">逻辑狗家长端APP</p>
  290. <p class="mobile-education-sub">随时了解宝宝</p>
  291. <p class="mobile-education-sub">的状态</p>
  292. <div class="mobile-education-img">
  293. <img src="~/assets/images/index/teach_02.png">
  294. </div>
  295. </div>
  296. <div class="big-mobile-education">
  297. <div class="pc-education-top">
  298. <div class="pc-small-img">
  299. <img src="~/assets/images/index/teach_02_icon_active.png" alt="" srcset="">
  300. </div>
  301. <div class="education-title-box">
  302. <p class="education-title">逻辑狗家长端APP</p>
  303. <p class="education-sub-title">随时了解宝宝的状态</p>
  304. </div>
  305. <div class="education-gzh">
  306. <img src="~/assets/images/index/teach_gzh.png" alt="">
  307. </div>
  308. </div>
  309. <div class="education-img">
  310. <img src="~/assets/images/index/teach_02.png">
  311. </div>
  312. </div>
  313. </li>
  314. <li class="mobile-education mobile-education-3 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
  315. <div class="small-education-div">
  316. <div class="mobile-small-img">
  317. <img src="~/assets/images/index/teach_03_icon_nor.png" alt="" srcset="">
  318. </div>
  319. <p class="mobile-education-title">逻辑狗教师端APP</p>
  320. <p class="mobile-education-sub">实现园所互通</p>
  321. <p class="mobile-education-sub"></p>
  322. <div class="mobile-education-img">
  323. <img src="~/assets/images/index/teach_03.png">
  324. </div>
  325. </div>
  326. <div class="big-mobile-education">
  327. <div class="pc-education-top">
  328. <div class="pc-small-img">
  329. <img src="~/assets/images/index/teach_03_icon_active.png" alt="" srcset="">
  330. </div>
  331. <div class="education-title-box">
  332. <p class="education-title">逻辑狗教师端APP</p>
  333. <p class="education-sub-title">实现园所互通</p>
  334. </div>
  335. <div class="education-gzh">
  336. <img src="~/assets/images/index/teach_gzh.png" alt="">
  337. </div>
  338. </div>
  339. <div class="education-img">
  340. <img src="~/assets/images/index/teach_03.png">
  341. </div>
  342. </div>
  343. </li>
  344. <li class="mobile-education mobile-education-4 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
  345. <div class="small-education-div">
  346. <div class="mobile-small-img">
  347. <img src="~/assets/images/index/teach_04_icon_nor.png" alt="" srcset="">
  348. </div>
  349. <p class="mobile-education-title">微信H5</p>
  350. <p class="mobile-education-title">逻辑狗官方商城</p>
  351. <p class="mobile-education-title">逻辑狗家长训练营</p>
  352. <div class="mobile-education-img">
  353. <img src="~/assets/images/index/teach_04.png">
  354. </div>
  355. </div>
  356. <div class="big-mobile-education">
  357. <div class="pc-education-top">
  358. <div class="pc-small-img">
  359. <img src="~/assets/images/index/teach_04_icon_active.png" alt="" srcset="">
  360. </div>
  361. <div class="education-title-box">
  362. <p class="education-title">微信H5</p>
  363. <p class="education-sub-title">逻辑狗官方商城</p>
  364. <p class="education-sub-title">逻辑狗家长训练营</p>
  365. </div>
  366. <div class="education-gzh">
  367. <img src="~/assets/images/index/teach_gzh.png" alt="">
  368. </div>
  369. </div>
  370. <div class="education-img">
  371. <img src="~/assets/images/index/teach_04.png">
  372. </div>
  373. </div>
  374. </li>
  375. <li class="mobile-education mobile-education-5 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
  376. <div class="small-education-div">
  377. <div class="mobile-small-img">
  378. <img src="~/assets/images/index/teach_05_icon_nor.png" alt="" srcset="">
  379. </div>
  380. <p class="mobile-education-title">微信小程序</p>
  381. <p class="mobile-education-title">中德智慧网校</p>
  382. <p class="mobile-education-sub"></p>
  383. <div class="mobile-education-img">
  384. <img src="~/assets/images/index/teach_05.png">
  385. </div>
  386. </div>
  387. <div class="big-mobile-education">
  388. <div class="pc-education-top">
  389. <div class="pc-small-img">
  390. <img src="~/assets/images/index/teach_05_icon_active.png" alt="" srcset="">
  391. </div>
  392. <div class="education-title-box">
  393. <p class="education-title">微信小程序</p>
  394. <p class="education-sub-title">中德智慧网校</p>
  395. </div>
  396. <div class="education-gzh">
  397. <img src="~/assets/images/index/teach_gzh.png" alt="">
  398. </div>
  399. </div>
  400. <div class="education-img">
  401. <img src="~/assets/images/index/teach_05.png">
  402. </div>
  403. </div>
  404. </li>
  405. </ul>
  406. </div>
  407. </div>
  408. <!-- 逻辑狗探索小镇 -->
  409. <div class="index-town">
  410. <div class="i-town-content w1200">
  411. <div class="t-top title-content">
  412. <div class="title-zh wow animate__animated animate__fadeInDown">
  413. <div class="title-en">SMALL TOWN</div>
  414. 逻辑狗探索小镇
  415. </div>
  416. <p class="title-sub animate__animated wow animate__fadeInLeft">专注3.4-12岁儿童优质思维能力养成的场景式,游戏化体验中心</p>
  417. </div>
  418. <div class="town-content-box">
  419. <div class="town-btn-group">
  420. <div class="town-btn-about animate__animated wow animate__fadeInLeft">了解我们</div>
  421. <div class="town-btn-join animate__animated wow animate__fadeInRight">加入我们</div>
  422. </div>
  423. <div class="town-content-skill">
  424. <div class="town-content-img">
  425. <img src="~/assets/images/index/town_img.png" alt="" srcset="">
  426. <div class="skill-item skill-item-01 wow animate__animated animate__lightSpeedInLeft">
  427. <img src="~/assets/images/index/icon_town_01.png" alt="" srcset="">
  428. <p>知识迁移</p>
  429. </div>
  430. <div class="skill-item skill-item-02 wow animate__animated animate__lightSpeedInRight">
  431. <img src="~/assets/images/index/icon_town_02.png" alt="" srcset="">
  432. <p class="big-font">观察能力</p>
  433. </div>
  434. <div class="skill-item skill-item-03 wow animate__animated animate__lightSpeedInLeft">
  435. <img src="~/assets/images/index/icon_town_03.png" alt="" srcset="">
  436. <p>手眼协调</p>
  437. </div>
  438. <div class="skill-item skill-item-04 wow animate__animated animate__lightSpeedInRight">
  439. <img src="~/assets/images/index/icon_town_04.png" alt="" srcset="">
  440. <p class="big-font">语言能力</p>
  441. </div>
  442. <div class="skill-item skill-item-05 wow animate__animated animate__lightSpeedInLeft">
  443. <img src="~/assets/images/index/icon_town_05.png" alt="" srcset="">
  444. <p class="big-font">想象能力</p>
  445. </div>
  446. <div class="skill-item skill-item-06 wow animate__animated animate__lightSpeedInRight">
  447. <img src="~/assets/images/index/icon_town_06.png" alt="" srcset="">
  448. <p>分类能力</p>
  449. </div>
  450. <div class="skill-item skill-item-07 wow animate__animated animate__lightSpeedInLeft">
  451. <img src="~/assets/images/index/icon_town_07.png" alt="" srcset="">
  452. <p>推理能力</p>
  453. </div>
  454. <div class="skill-item skill-item-08 wow animate__animated animate__lightSpeedInRight">
  455. <img src="~/assets/images/index/icon_town_08.png" alt="" srcset="">
  456. <p class="big-font">空间能力</p>
  457. </div>
  458. <div class="skill-item skill-item-09 wow animate__animated animate__lightSpeedInLeft">
  459. <img src="~/assets/images/index/icon_town_09.png" alt="" srcset="">
  460. <p class="big-font">专注能力</p>
  461. </div>
  462. <div class="skill-item skill-item-10 wow animate__animated animate__lightSpeedInRight">
  463. <img src="~/assets/images/index/icon_town_10.png" alt="" srcset="">
  464. <p>数学能力</p>
  465. </div>
  466. </div>
  467. </div>
  468. </div>
  469. </div>
  470. <div class="town_bottom_bg">
  471. <img src="~/assets/images/index/town_bottom.png" alt="" srcset="">
  472. </div>
  473. </div>
  474. <!-- 专家名师 -->
  475. <div class="index-expert">
  476. <div class="i-expert-content">
  477. <div class="e-top title-content wow animate__animated animate__fadeInDown">
  478. <div class="title-zh">
  479. <div class="title-en">
  480. EXPERT
  481. </div>
  482. 专家名师
  483. </div>
  484. </div>
  485. <div class="e-content-box">
  486. <div class="w-innner">
  487. <div id="certify">
  488. <div
  489. class="swiper-container"
  490. v-swiper:expertSwiper="expertSwiperOption"
  491. ref="swiperExpertBox"
  492. >
  493. <div class="swiper-wrapper">
  494. <div class="swiper-slide">
  495. <img
  496. src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa2@2x.v202007141810.png"
  497. >
  498. </div>
  499. <div class="swiper-slide">
  500. <img
  501. src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa3@2x.v202007141810.png"
  502. >
  503. </div>
  504. <div class="swiper-slide">
  505. <img
  506. src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa1@2x.v202007141810.png"
  507. >
  508. </div>
  509. </div>
  510. </div>
  511. <div class="swiper-pagination" slot="pagination"></div>
  512. </div>
  513. </div>
  514. </div>
  515. </div>
  516. </div>
  517. <!-- 新闻资讯 -->
  518. <div class="index-article">
  519. <div class="i-article-content w1200">
  520. <div class="a-top title-content wow animate__animated animate__fadeInDown">
  521. <div class="title-zh">
  522. <div class="title-en">NEWS</div>
  523. 新闻资讯
  524. </div>
  525. </div>
  526. <div class="article-content-box">
  527. <div class="article-content-top">
  528. <div class="article-content-top-left">
  529. <div class="article-type-header">
  530. <div class="article-type-title">{{ articleList.articleNews.typeTitle }}</div>
  531. <div>
  532. <i class="el-icon-arrow-right"></i>
  533. </div>
  534. </div>
  535. <div class="article-content-info">
  536. <img :src="articleList.articleNews.content[0].imgUrl" alt="" srcset="">
  537. <p class="info-title">{{ articleList.articleNews.content[0].title }}</p>
  538. </div>
  539. </div>
  540. <div class="article-content-top-right">
  541. <div class="article-type-header">
  542. <div class="article-type-title">{{ articleList.storeNews.typeTitle }}</div>
  543. <div>
  544. <i class="el-icon-arrow-right"></i>
  545. </div>
  546. </div>
  547. <div class="article-content-info">
  548. <template v-for="(item, index) in articleList.storeNews.content">
  549. <div v-if="index < 4" class="article-item-right" :key="index">
  550. <img :src="item.imgUrl" alt="">
  551. <p>{{ item.title }}</p>
  552. </div>
  553. </template>
  554. </div>
  555. </div>
  556. </div>
  557. <div class="article-content-bottom">
  558. <div class="article-type-header">
  559. <div class="article-type-title">{{ articleList.industryNews.typeTitle }}</div>
  560. <div>
  561. <i class="el-icon-arrow-right"></i>
  562. </div>
  563. </div>
  564. <div class="article-content-bottom-info">
  565. <div class="article-content-bottom-left">
  566. <img :src="articleList.industryNews.content[0].imgUrl" alt="">
  567. </div>
  568. <div class="article-content-bottom-right">
  569. <p class="title">{{ articleList.industryNews.content[0].title }}</p>
  570. <p class="desc">{{ articleList.industryNews.content[0].desc }}</p>
  571. <p class="time">2020-6-18</p>
  572. </div>
  573. </div>
  574. </div>
  575. </div>
  576. </div>
  577. </div>
  578. <!-- 企业荣誉 -->
  579. <div class="index-honor">
  580. <div class="i-honor-content w1200">
  581. <div class="h-top title-content wow animate__animated animate__fadeInDown">
  582. <div class="h-top title-zh">
  583. <div class="title-en">HONOR</div>
  584. 企业荣誉
  585. </div>
  586. </div>
  587. <div class="honer-content-box">
  588. <div
  589. class="swiper swiperBox"
  590. v-swiper:honorSwiper="honorSwiperOption"
  591. ref="swiperHonorBox"
  592. @mouseenter="stopSwiper"
  593. @mouseleave="startSwiper"
  594. >
  595. <div class="swiper-wrapper">
  596. <div v-for="(item, index) in honorList" :key="index" class="swiper-slide">
  597. <img :src="item.imgUrl">
  598. </div>
  599. </div>
  600. </div>
  601. </div>
  602. </div>
  603. </div>
  604. </div>
  605. </template>
  606. <script>
  607. if (process.browser) {
  608. var { WOW } = require('wowjs')
  609. }
  610. import countTo from 'vue-count-to';
  611. import axios from "axios";
  612. import VBanner from "~/components/home/banner";
  613. // import indexVideo from '~/components/home/indexVideo';
  614. // import prodListShow from '~/components/common/prodListShow';
  615. // import indexNewsListShow from '~/components/common/indexNewsListShow'
  616. export default {
  617. data() {
  618. return {
  619. bannerData: [
  620. {
  621. bannerId: "1",
  622. href: "http://zaojiao.net",
  623. bannerSrc:
  624. "http://img.visney.cn/img/banner_img/201810091635055072893adb062fc430a8a08728a954f6952.jpg",
  625. bannerAlt: "中德智慧",
  626. },
  627. {
  628. bannerId: "2",
  629. href: "http://zaojiao.net",
  630. bannerSrc:
  631. "http://img.visney.cn/img/banner_img/20181009155424179449e9d3aa5fa47548ab021e418af1189.jpg",
  632. bannerAlt: "中德智慧",
  633. },
  634. ],
  635. experiencePlace: ["包头", "成都", "南京", "东莞"],
  636. num: 0,
  637. clickProdIndex: 0,
  638. clickNewsIndex: 0,
  639. productCate: [
  640. {
  641. title: "全部",
  642. type: 0,
  643. },
  644. {
  645. title: "0-3岁思维启蒙",
  646. type: 1,
  647. },
  648. {
  649. title: "3-7岁能力训练",
  650. type: 2,
  651. },
  652. {
  653. title: "5-7岁入学思考",
  654. type: 3,
  655. },
  656. {
  657. title: "7-12岁技巧学习",
  658. type: 4,
  659. },
  660. ],
  661. courseCate: [
  662. {
  663. title: "全部",
  664. type: 0,
  665. },
  666. {
  667. title: "直播课",
  668. type: 1,
  669. },
  670. {
  671. title: "录播课",
  672. type: 2,
  673. },
  674. {
  675. title: "公开课",
  676. type: 3,
  677. },
  678. ],
  679. productImage: [
  680. {
  681. imgUrl: require("../assets/images/index/product_01.png"),
  682. title: "逻辑狗",
  683. },
  684. {
  685. imgUrl: require("../assets/images/index/product_01.png"),
  686. title: "克鲁德",
  687. },
  688. {
  689. imgUrl: require("../assets/images/index/product_01.png"),
  690. title: "科学探索",
  691. },
  692. {
  693. imgUrl: require("../assets/images/index/product_01.png"),
  694. title: "春夏秋冬",
  695. },
  696. {
  697. imgUrl: require("../assets/images/index/product_01.png"),
  698. title: "小熊猫",
  699. },
  700. ],
  701. honorList: [
  702. {
  703. imgUrl: require("../assets/images/index/honer.png"),
  704. title: "逻辑狗",
  705. },
  706. {
  707. imgUrl: require("../assets/images/index/honer.png"),
  708. title: "逻辑狗",
  709. },
  710. {
  711. imgUrl: require("../assets/images/index/honer.png"),
  712. title: "逻辑狗",
  713. },
  714. {
  715. imgUrl: require("../assets/images/index/honer.png"),
  716. title: "逻辑狗",
  717. },
  718. {
  719. imgUrl: require("../assets/images/index/honer.png"),
  720. title: "逻辑狗",
  721. },
  722. ],
  723. articleList: {
  724. articleNews: {
  725. typeTitle: "中德智慧咨讯",
  726. content: [
  727. {
  728. id: "1",
  729. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  730. imgUrl:
  731. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  732. },
  733. {
  734. id: "2",
  735. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  736. imgUrl:
  737. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  738. },
  739. {
  740. id: "3",
  741. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  742. imgUrl: "",
  743. },
  744. {
  745. id: "4",
  746. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  747. imgUrl: "",
  748. },
  749. {
  750. id: "5",
  751. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  752. imgUrl: "",
  753. },
  754. {
  755. id: "6",
  756. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  757. imgUrl: "",
  758. },
  759. ],
  760. },
  761. storeNews: {
  762. typeTitle: "门店动态",
  763. content: [
  764. {
  765. id: "1",
  766. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  767. imgUrl:
  768. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  769. },
  770. {
  771. id: "2",
  772. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  773. imgUrl:
  774. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  775. },
  776. {
  777. id: "3",
  778. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  779. imgUrl:
  780. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  781. },
  782. {
  783. id: "4",
  784. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  785. imgUrl:
  786. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  787. },
  788. {
  789. id: "5",
  790. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  791. imgUrl:
  792. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  793. },
  794. {
  795. id: "6",
  796. title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
  797. imgUrl:
  798. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  799. },
  800. ],
  801. },
  802. industryNews: {
  803. typeTitle: "行业动态",
  804. content: [
  805. {
  806. id: "1",
  807. title:
  808. "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  809. imgUrl:
  810. "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
  811. desc: "中德智慧已经成为全球知名教育品牌",
  812. },
  813. {
  814. id: "2",
  815. title:
  816. "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  817. imgUrl:
  818. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  819. desc: "中德智慧已经成为全球知名教育品牌",
  820. },
  821. {
  822. id: "3",
  823. title:
  824. "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
  825. imgUrl:
  826. "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
  827. desc: "中德智慧已经成为全球知名教育品牌",
  828. },
  829. ],
  830. },
  831. },
  832. swiperOption: {
  833. // 配置说明直接看官网
  834. slidesPerView: "auto",
  835. paginationClickable: true,
  836. // slidesOffsetBefore: 100,
  837. // slidesOffsetAfter: 100,
  838. autoplay: {
  839. delay: 3500,
  840. disableOnInteraction: false,
  841. },
  842. speed: 1000,
  843. loop: true,
  844. observer: true,
  845. observeParents: true,
  846. autoplayDisableOnInteraction: false,
  847. notNextTick: true,
  848. // centeredSlides: true,
  849. navigation: {
  850. nextEl: ".swiper-button-next",
  851. prevEl: ".swiper-button-prev",
  852. },
  853. },
  854. honorSwiperOption: {
  855. // 配置说明直接看官网
  856. slidesPerView: "auto",
  857. paginationClickable: true,
  858. spaceBetween: 30, //轮播图左右之间的间距,配合css样式中的width实现效果
  859. // slidesOffsetBefore: 100,
  860. // slidesOffsetAfter: 100,
  861. autoplay: {
  862. delay: 3000,
  863. stopOnLastSlide: false,
  864. disableOnInteraction: false,
  865. },
  866. speed: 1000,
  867. loop: true,
  868. observer: true,
  869. observeParents: true,
  870. autoplayDisableOnInteraction: false,
  871. notNextTick: true,
  872. centeredSlides: true,
  873. },
  874. expertSwiperOption: {
  875. autoplay: {
  876. delay: 2000,
  877. disableOnInteraction: false,
  878. },
  879. watchSlidesProgress: true,
  880. slidesPerView: 'auto',
  881. centeredSlides: true,
  882. loop: true, //开启循环
  883. initialSlide: 0,
  884. loopedSlides: 2,
  885. preventLinksPropagation: true,
  886. slideToClickedSlide: true,
  887. pagination: {
  888. el: ".swiper-pagination",
  889. clickable: true,
  890. },
  891. on: {
  892. progress() {
  893. for (let i = 0; i < this.slides.length; i++) {
  894. const slide = this.slides.eq(i) // 指定匹配元素集缩减值
  895. const slideProgress = this.slides[i].progress // 当前元素集的progress值
  896. let modify = 1 // 偏移权重
  897. Math.abs(slideProgress) > 1 && (modify = Math.abs(slideProgress) - 1 + 1);
  898. // if (parseInt(Math.abs(slideProgress)) > 0) {
  899. // modify = Math.abs(slideProgress) * 0.2 // 不一定要0.2,可自行调整
  900. // }
  901. const translate = slideProgress * modify * 315 + 'px' // 500是swiper-slide的宽度
  902. const scale = 1 - Math.abs(slideProgress) / 6 // 缩放权重值,随着progress由中向两边依次递减,可自行调整
  903. const zIndex = 999 - Math.abs(Math.round(10 * slideProgress))
  904. slide.transform(`translateX(${translate}) scale(${scale})`)
  905. slide.css('zIndex', zIndex)
  906. slide.css('opacity', 1) // 是否可见
  907. Math.abs(slideProgress) > 3 && slide.css("opacity", 0);
  908. // if (parseInt(Math.abs(slideProgress)) > 1) { // 设置了只有选中的元素以及他两遍的显示,其他隐藏
  909. // slide.css('opacity', 0)
  910. // }
  911. }
  912. },
  913. setTransition: function (e) {
  914. for (var t = 0; t < this.slides.length; t++)
  915. this.slides.eq(t).transition(e);
  916. },
  917. }
  918. },
  919. };
  920. },
  921. components: {
  922. VBanner,
  923. countTo
  924. // indexVideo,
  925. // prodListShow,
  926. // indexNewsListShow
  927. },
  928. head() {
  929. return {
  930. title: "逻辑狗官网-中德智慧教育",
  931. meta: [
  932. {
  933. name: "keywords",
  934. hid: "keywords",
  935. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  936. },
  937. {
  938. name: "description",
  939. hid: "description",
  940. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  941. },
  942. ],
  943. };
  944. },
  945. async asyncData({ params, store }) {
  946. return {};
  947. },
  948. created() {},
  949. mounted() {
  950. if (process.browser) {
  951. new WOW({
  952. offset: 0,
  953. live: true
  954. }).init()
  955. }
  956. },
  957. swiper() {
  958. // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
  959. return this.$refs.swiperBox.swiper;
  960. },
  961. honorSwiper() {
  962. return this.$refs.swiperHonorBox.swiper;
  963. },
  964. expertSwiper() {
  965. // console.log(this.$refs.swiperExpertBox.swiper);
  966. return this.$refs.swiperExpertBox.swiper;
  967. },
  968. methods: {
  969. tab(index) {
  970. this.num = index;
  971. },
  972. getProdList(index) {
  973. this.clickProdIndex = index;
  974. },
  975. getNewsList(index) {
  976. this.clickNewsIndex = index;
  977. },
  978. clickProduct(item) {
  979. console.log(item);
  980. // this.$router.push({ path: '/product/course'});
  981. },
  982. mobileEnter(e) {
  983. "412px" != $(event.target).css("width") &&
  984. ($(".panorama-education-list .mobile-education").css("width", "200px"),
  985. $(event.target).css("width", "412px"),
  986. $(".panorama-education-list .mobile-education")
  987. .find(".big-mobile-education")
  988. .css("display", "none"),
  989. $(event.target).css("width", "412px"),
  990. $(event.target)
  991. .find(".big-mobile-education")
  992. .fadeIn("fast"));
  993. },
  994. onSwiperRedied(swiper) {
  995. console.log('Swiper redied!', swiper)
  996. },
  997. stopSwiper() {
  998. // 鼠标移入停止播放
  999. // console.log(this.swiper);
  1000. // this.swiper.autoplay.stop();
  1001. },
  1002. startSwiper() {
  1003. // 移出继续播放
  1004. // this.swiper.autoplay.start();
  1005. },
  1006. prev() {
  1007. this.swiper.slidePrev();
  1008. },
  1009. next() {
  1010. this.swiper.slideNext();
  1011. },
  1012. },
  1013. };
  1014. </script>
  1015. <style lang="scss">
  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. overflow: hidden;
  1388. &:hover {
  1389. img {
  1390. transform: scale(1.2);
  1391. transition: transform 1s;
  1392. }
  1393. }
  1394. img {
  1395. border-radius: 18px 18px 0px 0px;
  1396. width: 100%;
  1397. }
  1398. }
  1399. }
  1400. }
  1401. .thinking-product-info {
  1402. box-sizing: border-box;
  1403. background: #ffffff;
  1404. height: 90px;
  1405. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  1406. border-radius: 0px 0px 18px 18px;
  1407. padding: 26px 22px;
  1408. .thinking-product-title {
  1409. width: 160px;
  1410. height: 28px;
  1411. font-size: 20px;
  1412. font-family: PingFangSC-Medium, PingFang SC;
  1413. font-weight: 500;
  1414. line-height: 28px;
  1415. a {
  1416. color: #343e30;
  1417. }
  1418. }
  1419. .thinking-product-content {
  1420. display: flex;
  1421. align-items: center;
  1422. justify-content: space-between;
  1423. }
  1424. .thinking-product-price {
  1425. color: #ea0b4a;
  1426. .price-num {
  1427. font-size: 22px;
  1428. font-weight: bold;
  1429. }
  1430. }
  1431. .thinking-product-btn {
  1432. height: 18px;
  1433. line-height: 18px;
  1434. font-size: 13px;
  1435. font-family: PingFangSC-Regular, PingFang SC;
  1436. font-weight: 400;
  1437. border: 1px solid rgba(60, 142, 255, 1);
  1438. height: 27px;
  1439. line-height: 27px;
  1440. border-radius: 14px;
  1441. padding: 0 15px;
  1442. a {
  1443. color: #3e8eff;
  1444. }
  1445. }
  1446. // .thinking-product-user {
  1447. // display: flex;
  1448. // img {
  1449. // width: 18px;
  1450. // height: 22px;
  1451. // }
  1452. // }
  1453. }
  1454. }
  1455. // index-product
  1456. .index-product {
  1457. // display: flex;
  1458. // align-items: center;
  1459. height: 526px;
  1460. background: url("~assets/images/index/product_bg.png") no-repeat;
  1461. .product-content-box {
  1462. position: relative;
  1463. // width: 1200px;
  1464. padding: 112px 250px 86px 250px;
  1465. .swiperBox {
  1466. }
  1467. }
  1468. .swiper-button-prev,
  1469. .swiper-button-next {
  1470. color: #dee9fe;
  1471. }
  1472. .swiper-button-prev {
  1473. left: 84px;
  1474. }
  1475. .swiper-button-next {
  1476. right: 104px;
  1477. }
  1478. .swiper-wrapper {
  1479. // max-width: 1200px;
  1480. p.name {
  1481. font-size: 28px;
  1482. font-family: PingFangSC-Semibold, PingFang SC;
  1483. font-weight: 600;
  1484. color: #ffffff;
  1485. text-align: center;
  1486. }
  1487. }
  1488. .swiper-slide {
  1489. width: 274px;
  1490. font-size: 0;
  1491. }
  1492. }
  1493. /* index-thinking */
  1494. .index-course {
  1495. padding-top: 164px;
  1496. max-width: 1200px;
  1497. margin: 0 auto;
  1498. .title-en {
  1499. left: -134px;
  1500. top: -45px;
  1501. }
  1502. .course-content-box {
  1503. .course-cate-nav {
  1504. display: flex;
  1505. justify-content: space-between;
  1506. }
  1507. }
  1508. .course-cate-list {
  1509. .course-product-item {
  1510. width: 365px;
  1511. .course-product-item-img {
  1512. position: relative;
  1513. font-size: 0;
  1514. img {
  1515. width: 100%;
  1516. }
  1517. .course-product-item-play {
  1518. position: absolute;
  1519. left: 50%;
  1520. top: 50%;
  1521. transform: translate(-50%, -50%);
  1522. width: 62px;
  1523. font-size: 0;
  1524. }
  1525. }
  1526. }
  1527. }
  1528. .course-product-info {
  1529. box-sizing: border-box;
  1530. background: #ffffff;
  1531. height: 90px;
  1532. box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
  1533. border-radius: 0px 0px 18px 18px;
  1534. padding: 26px 22px;
  1535. .course-product-title {
  1536. width: 160px;
  1537. height: 28px;
  1538. font-size: 20px;
  1539. font-family: PingFangSC-Medium, PingFang SC;
  1540. font-weight: 500;
  1541. color: rgba(52, 62, 48, 1);
  1542. line-height: 28px;
  1543. }
  1544. .course-product-content {
  1545. display: flex;
  1546. align-items: center;
  1547. justify-content: space-between;
  1548. }
  1549. .course-product-price {
  1550. color: #ea0b4a;
  1551. .price-num {
  1552. font-size: 22px;
  1553. font-weight: bold;
  1554. }
  1555. }
  1556. .course-product-user {
  1557. display: flex;
  1558. align-items: flex-end;
  1559. img {
  1560. width: 18px;
  1561. height: 22px;
  1562. margin-right: 10px;
  1563. }
  1564. .views {
  1565. color: #418eff;
  1566. }
  1567. }
  1568. }
  1569. }
  1570. // index-scenes
  1571. .index-scenes {
  1572. background: #f7fbff;
  1573. padding: 217px 0 228px;
  1574. .i-s-content {
  1575. .title-en {
  1576. left: -125px;
  1577. top: -45px;
  1578. }
  1579. }
  1580. .scenes-content-box {
  1581. margin: 102px auto 0;
  1582. max-width: 1200px;
  1583. .panorama-education-list {
  1584. margin: 0 auto;
  1585. height: 468px;
  1586. display: -webkit-box;
  1587. display: -ms-flexbox;
  1588. display: flex;
  1589. -webkit-box-pack: center;
  1590. -ms-flex-pack: center;
  1591. justify-content: center;
  1592. .mobile-education {
  1593. width: 160px;
  1594. height: 468px;
  1595. border: 1px solid #eee;
  1596. border-left: none;
  1597. background-color: #fff;
  1598. text-align: center;
  1599. position: relative;
  1600. cursor: pointer;
  1601. &:nth-child(1) {
  1602. border-left: 1px solid #eee;
  1603. }
  1604. .mobile-small-img {
  1605. width: 50px;
  1606. height: 47px;
  1607. margin: 68px auto 26px;
  1608. img {
  1609. width: 50px;
  1610. height: 47px;
  1611. }
  1612. }
  1613. .mobile-education-title {
  1614. font-size: 14px;
  1615. font-family: PingFangSC-Medium, PingFang SC;
  1616. font-weight: 500;
  1617. color: #333436;
  1618. line-height: 24px;
  1619. }
  1620. .mobile-education-sub {
  1621. font-size: 12px;
  1622. font-weight: 400;
  1623. color: #333;
  1624. line-height: 18px;
  1625. }
  1626. .mobile-education-img {
  1627. width: 160px;
  1628. height: 128px;
  1629. margin: 76px auto 0;
  1630. img {
  1631. width: 160px;
  1632. height: 128px;
  1633. }
  1634. }
  1635. }
  1636. .big-mobile-education {
  1637. display: none;
  1638. background: #fff;
  1639. // width: 346px;
  1640. // height: 460px;
  1641. width: 412px;
  1642. height: 468px;
  1643. position: absolute;
  1644. z-index: 3;
  1645. opacity: 1;
  1646. left: -1px;
  1647. top: -1px;
  1648. border: 1px solid #105cfb;
  1649. .pc-education-top {
  1650. display: -webkit-box;
  1651. display: -ms-flexbox;
  1652. display: flex;
  1653. margin-left: 36px;
  1654. .education-gzh {
  1655. font-size: 0;
  1656. margin-top: 32px;
  1657. }
  1658. .pc-small-img {
  1659. width: 42px;
  1660. height: 34px;
  1661. margin-top: 56px;
  1662. img {
  1663. width: 42px;
  1664. height: 34px;
  1665. }
  1666. }
  1667. .education-title-box {
  1668. margin-top: 42px;
  1669. margin-left: 20px;
  1670. .education-title {
  1671. height: 24px;
  1672. font-size: 17px;
  1673. font-family: PingFangSC-Medium, PingFang SC;
  1674. font-weight: 500;
  1675. color: #333436;
  1676. line-height: 24px;
  1677. text-align: left;
  1678. }
  1679. .education-sub-title {
  1680. margin-top: 4px;
  1681. height: 18px;
  1682. line-height: 18px;
  1683. font-size: 13px;
  1684. font-family: PingFangSC-Regular, PingFang SC;
  1685. font-weight: 400;
  1686. color: #38393A;
  1687. text-align: left;
  1688. }
  1689. }
  1690. }
  1691. .education-img {
  1692. // width: 306px;
  1693. width: 378px;
  1694. height: auto;
  1695. // margin: 48px auto 0;
  1696. img {
  1697. width: 378px;
  1698. height: auto;
  1699. }
  1700. }
  1701. .mobile-small-img {
  1702. width: 48px;
  1703. height: 48px;
  1704. margin: 68px auto 26px;
  1705. img {
  1706. width: 48px;
  1707. height: 48px;
  1708. }
  1709. }
  1710. .mobile-education-title {
  1711. height: 24px;
  1712. font-size: 17px;
  1713. font-family: PingFangSC-Medium, PingFang SC;
  1714. font-weight: 500;
  1715. color: #333436;
  1716. line-height: 24px;
  1717. margin-bottom: 8px;
  1718. }
  1719. .mobile-education-sub {
  1720. font-size: 13px;
  1721. font-family: PingFangSC-Regular, PingFang SC;
  1722. font-weight: 400;
  1723. color: #38393A;
  1724. line-height: 18px;
  1725. }
  1726. .mobile-education-img {
  1727. width: 240px;
  1728. height: 192px;
  1729. margin: 76px auto 0;
  1730. img {
  1731. width: 240px;
  1732. height: 192px;
  1733. }
  1734. }
  1735. }
  1736. }
  1737. }
  1738. }
  1739. // index-town
  1740. .index-town {
  1741. position: relative;
  1742. height: 1370px;
  1743. box-sizing: border-box;
  1744. padding-top: 180px;
  1745. .i-town-content {
  1746. .title-en {
  1747. left: 50%;
  1748. transform: translate(-50%);
  1749. width: 800px;
  1750. top: -45px;
  1751. }
  1752. .title-sub {
  1753. margin-top: 28px;
  1754. text-align: center;
  1755. font-size: 28px;
  1756. font-family: PingFangSC-Regular, PingFang SC;
  1757. font-weight: 400;
  1758. color: #38393a;
  1759. line-height: 40px;
  1760. }
  1761. .town-content-box {
  1762. .town-btn-group {
  1763. margin-top: 52px;
  1764. display: flex;
  1765. font-size: 29px;
  1766. font-family: PingFangSC-Medium, PingFang SC;
  1767. font-weight: 500;
  1768. color: #ffffff;
  1769. line-height: 40px;
  1770. text-align: center;
  1771. .town-btn-about {
  1772. //428 120
  1773. width: 180px;
  1774. height: 60px;
  1775. line-height: 60px;
  1776. border-radius: 30px;
  1777. border: 1px solid $theme_color_fu;
  1778. color: $theme_color_fu;
  1779. margin: 0 290px 0 308px;
  1780. }
  1781. .town-btn-join {
  1782. width: 180px;
  1783. height: 60px;
  1784. line-height: 60px;
  1785. background: $theme_color_fu;
  1786. box-shadow: 0px 4px 9px 0px rgba(91, 141, 240, 0.83);
  1787. border-radius: 30px;
  1788. }
  1789. }
  1790. }
  1791. }
  1792. .town-content-skill {
  1793. // position: relative;
  1794. .town-content-img {
  1795. position: absolute;
  1796. bottom: 0;
  1797. left: 50%;
  1798. transform: translateX(-50%);
  1799. // text-align: center;
  1800. font-size: 0;
  1801. z-index: 10;
  1802. .skill-item {
  1803. position: absolute;
  1804. text-align: center;
  1805. p {
  1806. position: absolute;
  1807. width: 100px;
  1808. bottom: -5px;
  1809. left: 50%;
  1810. transform: translateX(-50%);
  1811. font-size: 20px;
  1812. font-family: PingFangSC-Medium, PingFang SC;
  1813. font-weight: 500;
  1814. color: #38393a;
  1815. text-align: center;
  1816. &.big-font {
  1817. font-size: 24px;
  1818. }
  1819. }
  1820. }
  1821. .skill-item-01 {
  1822. left: -160px;
  1823. top: -158px;
  1824. }
  1825. .skill-item-02 {
  1826. left: 70px;
  1827. top: -130px;
  1828. }
  1829. .skill-item-03 {
  1830. left: 450px;
  1831. top: -248px;
  1832. }
  1833. .skill-item-04 {
  1834. right: -80px;
  1835. top: -240px;
  1836. }
  1837. .skill-item-05 {
  1838. left: -232px;
  1839. top: 96px;
  1840. }
  1841. .skill-item-06 {
  1842. left: -12px;
  1843. top: 130px;
  1844. }
  1845. .skill-item-07 {
  1846. right: -50px;
  1847. top: -18px;
  1848. }
  1849. .skill-item-08 {
  1850. right: -196px;
  1851. top: 120px;
  1852. }
  1853. .skill-item-09 {
  1854. left: -184px;
  1855. top: 304px;
  1856. }
  1857. .skill-item-10 {
  1858. right: -146px;
  1859. top: 340px;
  1860. }
  1861. }
  1862. }
  1863. .town_bottom_bg {
  1864. position: absolute;
  1865. bottom: 0;
  1866. font-size: 0;
  1867. width: 100%;
  1868. img {
  1869. width: 100%;
  1870. }
  1871. }
  1872. }
  1873. // index-honor
  1874. .index-honor {
  1875. background-image: url("~assets/images/index/honor_bg.png");
  1876. background-repeat: no-repeat;
  1877. background-position: top 20px right 115px;
  1878. background-color: #f7fbff;
  1879. padding: 188px 0 162px;
  1880. .title-en {
  1881. left: -140px;
  1882. top: -45px;
  1883. }
  1884. .i-honor-content {
  1885. max-width: 1200px;
  1886. margin: 0 auto;
  1887. .honer-content-box {
  1888. padding: 0 20px;
  1889. }
  1890. }
  1891. .swiper-slide {
  1892. width: 240px;
  1893. font-size: 0;
  1894. }
  1895. .honer-content-box {
  1896. margin-top: 102px;
  1897. }
  1898. }
  1899. // index-article
  1900. .index-article {
  1901. padding: 180px 0 176px;
  1902. .title-en {
  1903. top: -45px;
  1904. left: -128px;
  1905. }
  1906. .article-content-box {
  1907. margin-top: 85px;
  1908. .article-type-title {
  1909. width: 180px;
  1910. height: 42px;
  1911. line-height: 42px;
  1912. font-size: 30px;
  1913. font-family: PingFangSC-Semibold, PingFang SC;
  1914. font-weight: 600;
  1915. color: #3a4239;
  1916. margin-bottom: 12px;
  1917. }
  1918. .article-type-header {
  1919. display: flex;
  1920. justify-content: space-between;
  1921. align-items: center;
  1922. i {
  1923. margin-right: 15px;
  1924. color: #999999;
  1925. font-size: 20px;
  1926. }
  1927. }
  1928. .article-content-top {
  1929. display: flex;
  1930. .article-content-top-left {
  1931. width: 844px;
  1932. margin-right: 10px;
  1933. .article-content-info {
  1934. height: 352px;
  1935. position: relative;
  1936. overflow: hidden;
  1937. &:hover {
  1938. img {
  1939. transform: scale(1.2);
  1940. transition: transform 1s;
  1941. }
  1942. }
  1943. img {
  1944. height: 100%;
  1945. width: 100%;
  1946. border-radius: 8px;
  1947. object-fit: cover;
  1948. }
  1949. .info-title {
  1950. width: 100%;
  1951. padding: 8px 50px;
  1952. font-size: 16px;
  1953. font-family: PingFangSC-Medium, PingFang SC;
  1954. font-weight: 500;
  1955. color: #ffffff;
  1956. line-height: 22px;
  1957. position: absolute;
  1958. overflow: hidden; //超出的文本隐藏
  1959. text-overflow: ellipsis; //溢出用省略号显示
  1960. white-space: nowrap; //溢出不换行,只能显示一行
  1961. bottom: 0;
  1962. background: rgba(92, 94, 93, 0.31);
  1963. border-radius: 0px 0px 7px 7px;
  1964. }
  1965. }
  1966. }
  1967. .article-content-top-right {
  1968. width: 346px;
  1969. font-size: 0;
  1970. .article-content-info {
  1971. height: 352px;
  1972. display: flex;
  1973. flex-wrap: wrap;
  1974. flex-direction: column;
  1975. justify-content: space-between;
  1976. align-content: space-between;
  1977. .article-item-right {
  1978. position: relative;
  1979. width: 170px;
  1980. height: 170px;
  1981. overflow: hidden;
  1982. // margin-right: 6px;
  1983. &:nth-child(2n) {
  1984. margin-right: 0;
  1985. }
  1986. &:hover {
  1987. img {
  1988. transform: scale(1.2);
  1989. transition: transform 1s;
  1990. }
  1991. }
  1992. img {
  1993. height: 100%;
  1994. width: 100%;
  1995. border-radius: 8px;
  1996. object-fit: cover;
  1997. }
  1998. p {
  1999. padding: 0 30px 0 17px;
  2000. position: absolute;
  2001. bottom: 12px;
  2002. line-height: 22px;
  2003. font-size: 16px;
  2004. font-family: PingFangSC-Medium, PingFang SC;
  2005. font-weight: 500;
  2006. color: #ffffff;
  2007. overflow: hidden;
  2008. text-overflow: ellipsis;
  2009. display: -webkit-box;
  2010. -webkit-box-orient: vertical;
  2011. -webkit-line-clamp: 2;
  2012. }
  2013. }
  2014. }
  2015. }
  2016. }
  2017. .article-content-bottom {
  2018. margin-top: 38px;
  2019. .article-content-bottom-info {
  2020. display: flex;
  2021. .article-content-bottom-left {
  2022. width: 400px;
  2023. height: 270px;
  2024. border-radius: 8px;
  2025. margin-right: 55px;
  2026. overflow: hidden;
  2027. &:hover {
  2028. img {
  2029. transform: scale(1.2);
  2030. transition: transform 1s;
  2031. }
  2032. }
  2033. img {
  2034. height: 100%;
  2035. width: 100%;
  2036. border-radius: 8px;
  2037. object-fit: cover;
  2038. }
  2039. }
  2040. .article-content-bottom-right {
  2041. flex: 1;
  2042. .title {
  2043. color: #3a4239;
  2044. font-size: 26px;
  2045. margin-top: 12px;
  2046. font-family: PingFangSC-Medium, PingFang SC;
  2047. font-weight: 500;
  2048. overflow: hidden;
  2049. text-overflow: ellipsis;
  2050. display: -webkit-box;
  2051. -webkit-box-orient: vertical;
  2052. -webkit-line-clamp: 2;
  2053. }
  2054. .desc {
  2055. font-size: 24px;
  2056. margin-top: 30px;
  2057. color: #7d7d7e;
  2058. font-family: PingFangSC-Regular, PingFang SC;
  2059. font-weight: 400;
  2060. line-height: 33px;
  2061. overflow: hidden;
  2062. text-overflow: ellipsis;
  2063. display: -webkit-box;
  2064. -webkit-box-orient: vertical;
  2065. -webkit-line-clamp: 2;
  2066. }
  2067. .time {
  2068. font-size: 24px;
  2069. color: #9ba09a;
  2070. margin-top: 86px;
  2071. }
  2072. }
  2073. }
  2074. }
  2075. }
  2076. }
  2077. // index-expert
  2078. .index-expert {
  2079. padding: 180px 0 164px;
  2080. background: url("~assets/images/index/expert_bg.png") no-repeat;
  2081. .title-en {
  2082. left: -107px;
  2083. top: -40px;
  2084. }
  2085. #certify {
  2086. position: relative;
  2087. width: 1200px;
  2088. margin: 0 auto;
  2089. }
  2090. .e-content-box {
  2091. margin-top: 46px;
  2092. }
  2093. .swiper-container {
  2094. width: 100%;
  2095. height: 100%;
  2096. text-align: center;
  2097. .swiper-wrapper {
  2098. width: 100%;
  2099. text-align: center;
  2100. .swiper-slide {
  2101. width: 630px !important;
  2102. height: 396px;
  2103. background: none;
  2104. img {
  2105. width: 630px;
  2106. height: 396px;
  2107. }
  2108. }
  2109. }
  2110. }
  2111. .swiper-pagination {
  2112. display: flex;
  2113. align-items: center;
  2114. justify-content: center;
  2115. width: 100%;
  2116. .swiper-pagination-bullet {
  2117. width: 11px;
  2118. height: 11px;
  2119. background: #CBCDD1;
  2120. border-radius: 50%;
  2121. margin: 0 11px;
  2122. &:focus {
  2123. outline: none;
  2124. }
  2125. &.swiper-pagination-bullet-active {
  2126. width: 47px;
  2127. height: 12px;
  2128. background: #0D5CFA;
  2129. box-shadow: 0px 2px 6px 0px rgba(84, 135, 237, 0.89);
  2130. border-radius: 20px;
  2131. }
  2132. }
  2133. }
  2134. }
  2135. </style>