index.vue 66 KB

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