index.vue 82 KB

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