| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232 |
- <template>
- <div class="container">
- <!-- banner -->
- <VBanner :bannerData="bannerData"></VBanner>
- <!-- 培养优质思维模式,建构思维“芯” -->
- <div class="index-thought">
- <div class="i-thought-content">
- <div class="t-top title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">THOUGHT</div>
- 培养优质思维模式,建构思维“芯”
- </div>
- </div>
- <div class="thought-content-box">
- <img src="~/assets/images/index/map.png" alt="">
- <div class="map-content">
- <ul class="list">
- <li class="con-item one">
- <div class="con-box">
- <div class="con">
- <div class="num">
- <countTo :startVal='0' :endVal='420' :duration='3000'></countTo>
- <span class="unit">个</span>
- </div>
- <p class="color-gray wow animate__animated animate__fadeInLeft">学员覆盖城市地区</p>
- </div>
- <div class="hover-box">
- <div class="icon">
- <img
- src="~assets/images/index/icon_map_01.png"
- alt="学员覆盖城市地区">
- </div>
- </div>
- </div>
- </li>
- <li class="con-item two">
- <div class="con-box">
- <div class="con">
- <div class="num">
- <countTo :startVal='79000' :endVal='800000' :duration='3000'></countTo>
- <span class="unit">+</span>
- </div>
- <p class="color-gray wow animate__animated animate__fadeInDown">累计服务学员</p>
- </div>
- <div class="hover-box">
- <div class="icon">
- <img
- src="~assets/images/index/icon_map_02.png"
- alt="累计服务学员">
- </div>
- </div>
- </div>
- </li>
- <li class="con-item three">
- <div class="con-box">
- <div class="con">
- <div class="font52 num">
- <countTo :startVal='0' :endVal='98.6' :decimals='1' :duration='3000'></countTo>
- <span class="unit">%</span>
- </div>
- <p class="color-gray wow animate__animated animate__fadeInRight">评价好评率</p>
- </div>
- <div class="hover-box">
- <div class="icon">
- <img
- src="~assets/images/index/icon_map_03.png"
- alt="评价好评率">
- </div>
- </div>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!-- 创始人 -->
- <div class="index-founder">
- <div class="founder-content-box">
- <div class="founder_img wow animate__animated animate__fadeInLeft">
- <img src="~/assets/images/index/img_boss.png" alt="">
- </div>
- <div class="founder_content">
- <div class="name founder-item">
- <span class="dot"></span>
- <p>中德智慧创始人</p>
- </div>
- <p class="title founder-item wow animate__animated animate__fadeInLeft">培养优质思维模式,建构思维“芯”</p>
- <p
- class="desc founder-item wow animate__animated animate__fadeInDown"
- >全球优质儿童逻辑思维教育专家以国际教育理念为指导,推动中国学前教育事业发展成为中国学前儿童思维教育领域奠基者和创领者之- -率先领导和实践幼儿园思维游戏化教学,用全球同频使用的优质思维教育内容,为0-12岁儿童培养优质思维模式,建构思维“芯”。是国际化科技教育内容的创始者,以“让中国孩子幸福成长”为使命,始终以‘走出去、请进来”、“洋为中用”的全球化视野,融合中西文化,全力打造具有成长型思维模式的未来人才</p>
- <div class="btn founder-item wow animate__animated animate__fadeInDown">
- <nuxt-link to="/">了解中德智慧</nuxt-link>
- </div>
- </div>
- </div>
- <!-- <div class="found-left">
- <img src="~/assets/images/index/found_left.png" alt="" srcset="">
- </div>-->
- <div class="found-right">
- <img src="~/assets/images/index/found_right.png" alt="" srcset="">
- </div>
- </div>
- <!-- 思维“芯”产品 -->
- <div class="index-thinking">
- <div class="i-t-content">
- <div class="t-top title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">PRODUCT</div>
- 思维“芯”产品
- </div>
- </div>
- <div class="content-box thinking-content-box">
- <div class="cate-box tabs thinking-cate-box">
- <ul class="cate-nav tab-box thinking-cate-nav">
- <li :class="['tabs-item', 'cp', currentTabId === tab.id ? 'selectTabs': '']" @click="handleTag(tab)" v-for="tab in productCate" :key="tab.id">
- <nuxt-link to="/">{{ tab.label }}</nuxt-link>
- </li>
- </ul>
- <div class="bottom-line">
- <div class="bottom-line-img">
- <img :style="lineStyle" src="http://res.training.luojigou.vip/Fl4dXmckxC8m0Lm2-GPbl5-Cp9Rv?imageView2/0/q/50|imageslim" alt="">
- </div>
- </div>
- <div class="cate-list thinking-cate-list">
- <div
- class="thinking-product-item wow animate__animated animate__lightSpeedInLeft"
- v-for="(item, index) in productCate"
- :key="index"
- @click="clickProduct(item)"
- >
- <div class="thinking-product-item-img">
- <nuxt-link to="/">
- <img src="~/assets/images/index/product.png" alt="" srcset="">
- </nuxt-link>
- <div class="product-tag">基础版
- <!-- <img src="~/assets/images/index/product_tag.png" alt="" srcset=""> -->
- </div>
- </div>
- <div class="thinking-product-info">
- <div class="thinking-product-title">
- <nuxt-link to="/">幼小衔接课程……</nuxt-link>
- </div>
- <div class="thinking-product-content">
- <div class="thinking-product-price">
- ¥
- <span class="price-num">888</span>
- </div>
- <div class="thinking-product-btn">
- <nuxt-link to="/">查看产品</nuxt-link>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="more-btn wow animate__animated animate__zoomIn">更多产品</div>
- </div>
- </div>
- <!-- 产品轮播 -->
- <div class="index-product">
- <div class="product-content-box">
- <div
- class="swiper swiperBox"
- v-swiper:swiper="swiperOption"
- ref="swiperBox"
- :cleanup-styles-on-destroy="false"
- @ready="onSwiperRedied"
- @mouseenter="stopSwiper"
- @mouseleave="startSwiper">
- <div class="swiper-wrapper">
- <div v-for="(item, index) in productImage" :key="index" class="swiper-slide">
- <img :src="item.imgUrl">
- <p class="name">{{ item.title }}</p>
- </div>
- </div>
- </div>
- <div class="swiper-button-prev" slot="button-prev" @click="prev"></div>
- <div class="swiper-button-next" slot="button-next" @click="next"></div>
- </div>
- </div>
- <!-- 网校课程 -->
- <div class="index-course">
- <div class="i-c-content">
- <div class="c-top title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">MCOURSE</div>
- 网校课程
- </div>
- </div>
- <div class="content-box course-content-box">
- <div class="cate-box course-cate-box">
- <ul class="cate-nav course-cate-nav">
- <li
- class="products-kind thinking-products-kind"
- v-for="(item, index) in courseCate"
- :class="{active:index == clickProdIndex}"
- :key="index"
- @click="getProdList(index)"
- >
- <nuxt-link to="/">{{ item.title }}</nuxt-link>
- <div class="line"></div>
- </li>
- </ul>
- <div class="cate-list course-cate-list">
- <div
- class="product-item course-product-item wow animate__animated animate__lightSpeedInRight"
- v-for="(item, index) in courseCate"
- :key="index"
- >
- <div class="product-item-img course-product-item-img">
- <nuxt-link target="_blank" to="/">
- <img src="~/assets/images/index/product_course.png" alt="" srcset="">
- </nuxt-link>
- <div class="course-product-item-play">
- <nuxt-link target="_blank" to="/">
- <img src="~/assets/images/index/player.png" alt="" srcset="">
- </nuxt-link>
- </div>
- </div>
- <div class="course-product-info">
- <div class="course-product-title">幼小衔接课程……</div>
- <div class="course-product-content">
- <div class="course-product-price">
- ¥
- <span class="price-num">888</span>
- </div>
- <div class="course-product-user">
- <img src="~/assets/images/index/product_person.png" alt="" srcset="">
- <div class="views">158</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="more-btn wow animate__animated animate__zoomIn">更多产品</div>
- </div>
- </div>
- <!-- 多渠道教学场景 -->
- <div class="index-scenes">
- <div class="i-s-content">
- <div class="title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">TRENCH</div>
- 多渠道教学场景
- </div>
- </div>
- </div>
- <div class="scenes-content-box">
- <ul class="panorama-education-list">
- <li class="mobile-education mobile-education-1 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
- <div class="small-education-div">
- <div class="mobile-small-img">
- <img src="~/assets/images/index/teach_01_icon_nor.png" alt="" srcset="">
- </div>
- <p class="mobile-education-title">逻辑狗APP</p>
- <p class="mobile-education-sub">逻辑狗,与千万</p>
- <p class="mobile-education-sub">逻辑狗宝贝一起成长</p>
- <div class="mobile-education-img">
- <img src="~/assets/images/index/teach_01.png">
- </div>
- </div>
- <div class="big-mobile-education">
- <div class="pc-education-top">
- <div class="pc-small-img">
- <img src="~/assets/images/index/teach_01_icon_active.png" alt="" srcset="">
- </div>
- <div class="education-title-box">
- <p class="education-title">逻辑狗APP</p>
- <p class="education-sub-title">逻辑狗,与千万逻辑狗宝贝一起成长</p>
- </div>
- <div class="education-gzh">
- <img src="~/assets/images/index/teach_gzh.png" alt="">
- </div>
- </div>
- <div class="education-img">
- <img src="~/assets/images/index/teach_01.png">
- </div>
- </div>
- </li>
- <li class="mobile-education mobile-education-2 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
- <div class="small-education-div">
- <div class="mobile-small-img">
- <img src="~/assets/images/index/teach_02_icon_nor.png" alt="" srcset="">
- </div>
- <p class="mobile-education-title">逻辑狗家长端APP</p>
- <p class="mobile-education-sub">随时了解宝宝</p>
- <p class="mobile-education-sub">的状态</p>
- <div class="mobile-education-img">
- <img src="~/assets/images/index/teach_02.png">
- </div>
- </div>
- <div class="big-mobile-education">
- <div class="pc-education-top">
- <div class="pc-small-img">
- <img src="~/assets/images/index/teach_02_icon_active.png" alt="" srcset="">
- </div>
- <div class="education-title-box">
- <p class="education-title">逻辑狗家长端APP</p>
- <p class="education-sub-title">随时了解宝宝的状态</p>
- </div>
- <div class="education-gzh">
- <img src="~/assets/images/index/teach_gzh.png" alt="">
- </div>
- </div>
- <div class="education-img">
- <img src="~/assets/images/index/teach_02.png">
- </div>
- </div>
- </li>
- <li class="mobile-education mobile-education-3 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
- <div class="small-education-div">
- <div class="mobile-small-img">
- <img src="~/assets/images/index/teach_03_icon_nor.png" alt="" srcset="">
- </div>
- <p class="mobile-education-title">逻辑狗教师端APP</p>
- <p class="mobile-education-sub">实现园所互通</p>
- <p class="mobile-education-sub"></p>
- <div class="mobile-education-img">
- <img src="~/assets/images/index/teach_03.png">
- </div>
- </div>
- <div class="big-mobile-education">
- <div class="pc-education-top">
- <div class="pc-small-img">
- <img src="~/assets/images/index/teach_03_icon_active.png" alt="" srcset="">
- </div>
- <div class="education-title-box">
- <p class="education-title">逻辑狗教师端APP</p>
- <p class="education-sub-title">实现园所互通</p>
- </div>
- <div class="education-gzh">
- <img src="~/assets/images/index/teach_gzh.png" alt="">
- </div>
- </div>
- <div class="education-img">
- <img src="~/assets/images/index/teach_03.png">
- </div>
- </div>
- </li>
- <li class="mobile-education mobile-education-4 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
- <div class="small-education-div">
- <div class="mobile-small-img">
- <img src="~/assets/images/index/teach_04_icon_nor.png" alt="" srcset="">
- </div>
- <p class="mobile-education-title">微信H5</p>
- <p class="mobile-education-title">逻辑狗官方商城</p>
- <p class="mobile-education-title">逻辑狗家长训练营</p>
- <div class="mobile-education-img">
- <img src="~/assets/images/index/teach_04.png">
- </div>
- </div>
- <div class="big-mobile-education">
- <div class="pc-education-top">
- <div class="pc-small-img">
- <img src="~/assets/images/index/teach_04_icon_active.png" alt="" srcset="">
- </div>
- <div class="education-title-box">
- <p class="education-title">微信H5</p>
- <p class="education-sub-title">逻辑狗官方商城</p>
- <p class="education-sub-title">逻辑狗家长训练营</p>
- </div>
- <div class="education-gzh">
- <img src="~/assets/images/index/teach_gzh.png" alt="">
- </div>
- </div>
- <div class="education-img">
- <img src="~/assets/images/index/teach_04.png">
- </div>
- </div>
- </li>
- <li class="mobile-education mobile-education-5 wow animate__animated animate__jackInTheBox" @mouseenter="mobileEnter">
- <div class="small-education-div">
- <div class="mobile-small-img">
- <img src="~/assets/images/index/teach_05_icon_nor.png" alt="" srcset="">
- </div>
- <p class="mobile-education-title">微信小程序</p>
- <p class="mobile-education-title">中德智慧网校</p>
- <p class="mobile-education-sub"></p>
- <div class="mobile-education-img">
- <img src="~/assets/images/index/teach_05.png">
- </div>
- </div>
- <div class="big-mobile-education">
- <div class="pc-education-top">
- <div class="pc-small-img">
- <img src="~/assets/images/index/teach_05_icon_active.png" alt="" srcset="">
- </div>
- <div class="education-title-box">
- <p class="education-title">微信小程序</p>
- <p class="education-sub-title">中德智慧网校</p>
- </div>
- <div class="education-gzh">
- <img src="~/assets/images/index/teach_gzh.png" alt="">
- </div>
- </div>
- <div class="education-img">
- <img src="~/assets/images/index/teach_05.png">
- </div>
- </div>
- </li>
- </ul>
- </div>
- </div>
- <!-- 逻辑狗探索小镇 -->
- <div class="index-town">
- <div class="i-town-content w1200">
- <div class="t-top title-content">
- <div class="title-zh wow animate__animated animate__fadeInDown">
- <div class="title-en">SMALL TOWN</div>
- 逻辑狗探索小镇
- </div>
- <p class="title-sub animate__animated wow animate__fadeInLeft">专注3.4-12岁儿童优质思维能力养成的场景式,游戏化体验中心</p>
- </div>
- <div class="town-content-box">
- <div class="town-btn-group">
- <div class="town-btn-about animate__animated wow animate__fadeInLeft">了解我们</div>
- <div class="town-btn-join animate__animated wow animate__fadeInRight">加入我们</div>
- </div>
- <div class="town-content-skill">
- <div class="town-content-img">
- <img src="~/assets/images/index/town_img.png" alt="" srcset="">
- <div class="skill-item skill-item-01 wow animate__animated animate__lightSpeedInLeft">
- <img src="~/assets/images/index/icon_town_01.png" alt="" srcset="">
- <p>知识迁移</p>
- </div>
- <div class="skill-item skill-item-02 wow animate__animated animate__lightSpeedInRight">
- <img src="~/assets/images/index/icon_town_02.png" alt="" srcset="">
- <p class="big-font">观察能力</p>
- </div>
- <div class="skill-item skill-item-03 wow animate__animated animate__lightSpeedInLeft">
- <img src="~/assets/images/index/icon_town_03.png" alt="" srcset="">
- <p>手眼协调</p>
- </div>
- <div class="skill-item skill-item-04 wow animate__animated animate__lightSpeedInRight">
- <img src="~/assets/images/index/icon_town_04.png" alt="" srcset="">
- <p class="big-font">语言能力</p>
- </div>
- <div class="skill-item skill-item-05 wow animate__animated animate__lightSpeedInLeft">
- <img src="~/assets/images/index/icon_town_05.png" alt="" srcset="">
- <p class="big-font">想象能力</p>
- </div>
- <div class="skill-item skill-item-06 wow animate__animated animate__lightSpeedInRight">
- <img src="~/assets/images/index/icon_town_06.png" alt="" srcset="">
- <p>分类能力</p>
- </div>
- <div class="skill-item skill-item-07 wow animate__animated animate__lightSpeedInLeft">
- <img src="~/assets/images/index/icon_town_07.png" alt="" srcset="">
- <p>推理能力</p>
- </div>
- <div class="skill-item skill-item-08 wow animate__animated animate__lightSpeedInRight">
- <img src="~/assets/images/index/icon_town_08.png" alt="" srcset="">
- <p class="big-font">空间能力</p>
- </div>
- <div class="skill-item skill-item-09 wow animate__animated animate__lightSpeedInLeft">
- <img src="~/assets/images/index/icon_town_09.png" alt="" srcset="">
- <p class="big-font">专注能力</p>
- </div>
- <div class="skill-item skill-item-10 wow animate__animated animate__lightSpeedInRight">
- <img src="~/assets/images/index/icon_town_10.png" alt="" srcset="">
- <p>数学能力</p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="town_bottom_bg">
- <img src="~/assets/images/index/town_bottom.png" alt="" srcset="">
- </div>
- </div>
- <!-- 专家名师 -->
- <div class="index-expert">
- <div class="i-expert-content">
- <div class="e-top title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">
- EXPERT
- </div>
- 专家名师
- </div>
- </div>
- <div class="e-content-box">
- <div class="w-innner">
- <div id="certify">
- <div
- class="swiper-container"
- v-swiper:expertSwiper="expertSwiperOption"
- ref="swiperExpertBox"
- >
- <div class="swiper-wrapper">
- <div class="swiper-slide">
- <img
- src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa2@2x.v202007141810.png"
- >
- </div>
- <div class="swiper-slide">
- <img
- src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa3@2x.v202007141810.png"
- >
- </div>
- <div class="swiper-slide">
- <img
- src="https://static-www.putaocdn.com/pc/static/img/img_jiaoyu_mokuai3_yanfa1@2x.v202007141810.png"
- >
- </div>
- </div>
- </div>
- <div class="swiper-pagination" slot="pagination"></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 新闻资讯 -->
- <div class="index-article">
- <div class="i-article-content w1200">
- <div class="a-top title-content wow animate__animated animate__fadeInDown">
- <div class="title-zh">
- <div class="title-en">NEWS</div>
- 新闻资讯
- </div>
- </div>
- <div class="article-content-box">
- <div class="article-content-top">
- <div class="article-content-top-left">
- <div class="article-type-header">
- <div class="article-type-title">{{ articleList.articleNews.typeTitle }}</div>
- <div>
- <i class="el-icon-arrow-right"></i>
- </div>
- </div>
- <div class="article-content-info">
- <img :src="articleList.articleNews.content[0].imgUrl" alt="" srcset="">
- <p class="info-title">{{ articleList.articleNews.content[0].title }}</p>
- </div>
- </div>
- <div class="article-content-top-right">
- <div class="article-type-header">
- <div class="article-type-title">{{ articleList.storeNews.typeTitle }}</div>
- <div>
- <i class="el-icon-arrow-right"></i>
- </div>
- </div>
- <div class="article-content-info">
- <template v-for="(item, index) in articleList.storeNews.content">
- <div v-if="index < 4" class="article-item-right" :key="index">
- <img :src="item.imgUrl" alt="">
- <p>{{ item.title }}</p>
- </div>
- </template>
- </div>
- </div>
- </div>
- <div class="article-content-bottom">
- <div class="article-type-header">
- <div class="article-type-title">{{ articleList.industryNews.typeTitle }}</div>
- <div>
- <i class="el-icon-arrow-right"></i>
- </div>
- </div>
- <div class="article-content-bottom-info">
- <div class="article-content-bottom-left">
- <img :src="articleList.industryNews.content[0].imgUrl" alt="">
- </div>
- <div class="article-content-bottom-right">
- <p class="title">{{ articleList.industryNews.content[0].title }}</p>
- <p class="desc">{{ articleList.industryNews.content[0].desc }}</p>
- <p class="time">2020-6-18</p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 企业荣誉 -->
- <div class="index-honor">
- <div class="i-honor-content w1200">
- <div class="h-top title-content wow animate__animated animate__fadeInDown">
- <div class="h-top title-zh">
- <div class="title-en">HONOR</div>
- 企业荣誉
- </div>
- </div>
- <div class="honer-content-box">
- <div
- class="swiper swiperBox"
- v-swiper:honorSwiper="honorSwiperOption"
- ref="swiperHonorBox"
- @mouseenter="stopSwiper"
- @mouseleave="startSwiper"
- >
- <div class="swiper-wrapper">
- <div v-for="(item, index) in honorList" :key="index" class="swiper-slide">
- <img :src="item.imgUrl">
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- if (process.browser) {
- var { WOW } = require('wowjs')
- }
- import countTo from 'vue-count-to';
- import axios from "axios";
- import VBanner from "~/components/home/banner";
- // import indexVideo from '~/components/home/indexVideo';
- // import prodListShow from '~/components/common/prodListShow';
- // import indexNewsListShow from '~/components/common/indexNewsListShow'
- export default {
- data() {
- return {
- bannerData: [
- {
- bannerId: "1",
- href: "http://zaojiao.net",
- // bannerSrc: "http://img.visney.cn/img/banner_img/201810091635055072893adb062fc430a8a08728a954f6952.jpg",
- bannerSrc: require('~/assets/images/index/img1.jpg'),
- bannerAlt: "中德智慧",
- },
- {
- bannerId: "2",
- href: "http://zaojiao.net",
- bannerSrc:
- "http://img.visney.cn/img/banner_img/20181009155424179449e9d3aa5fa47548ab021e418af1189.jpg",
- bannerAlt: "中德智慧",
- },
- ],
- experiencePlace: ["包头", "成都", "南京", "东莞"],
- num: 0,
- clickProdIndex: 0,
- clickNewsIndex: 0,
- currentTabId: 0,
- productCate: [
- {
- id: 0,
- label: '全部'
- },
- {
- id: 1,
- label: '幼儿网络版'
- },
- {
- id: 2,
- label: '数学起跑线'
- },
- {
- id: 3,
- label: '小学基础班'
- },
- {
- id: 4,
- label: '小学提升版'
- },
- {
- id: 5,
- label: '幼小衔接'
- }
- ],
- courseCate: [
- {
- title: "全部",
- type: 0,
- },
- {
- title: "直播课",
- type: 1,
- },
- {
- title: "录播课",
- type: 2,
- },
- {
- title: "公开课",
- type: 3,
- },
- ],
- productImage: [
- {
- imgUrl: require("../assets/images/index/product_01.png"),
- title: "逻辑狗",
- },
- {
- imgUrl: require("../assets/images/index/product_01.png"),
- title: "克鲁德",
- },
- {
- imgUrl: require("../assets/images/index/product_01.png"),
- title: "科学探索",
- },
- {
- imgUrl: require("../assets/images/index/product_01.png"),
- title: "春夏秋冬",
- },
- {
- imgUrl: require("../assets/images/index/product_01.png"),
- title: "小熊猫",
- },
- ],
- honorList: [
- {
- imgUrl: require("../assets/images/index/honer.png"),
- title: "逻辑狗",
- },
- {
- imgUrl: require("../assets/images/index/honer.png"),
- title: "逻辑狗",
- },
- {
- imgUrl: require("../assets/images/index/honer.png"),
- title: "逻辑狗",
- },
- {
- imgUrl: require("../assets/images/index/honer.png"),
- title: "逻辑狗",
- },
- {
- imgUrl: require("../assets/images/index/honer.png"),
- title: "逻辑狗",
- },
- ],
- articleList: {
- articleNews: {
- typeTitle: "中德智慧咨讯",
- content: [
- {
- id: "1",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
- },
- {
- id: "2",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- {
- id: "3",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl: "",
- },
- {
- id: "4",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl: "",
- },
- {
- id: "5",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl: "",
- },
- {
- id: "6",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl: "",
- },
- ],
- },
- storeNews: {
- typeTitle: "门店动态",
- content: [
- {
- id: "1",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
- },
- {
- id: "2",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- {
- id: "3",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- {
- id: "4",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- {
- id: "5",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- {
- id: "6",
- title: "中德智慧逻辑狗中德智慧逻辑狗中德智慧逻辑狗",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- },
- ],
- },
- industryNews: {
- typeTitle: "行业动态",
- content: [
- {
- id: "1",
- title:
- "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
- imgUrl:
- "http://img.visney.cn/img/article_img/2018081015333428100d020ce30c84267ab0efe53d429a0db.jpg",
- desc: "中德智慧已经成为全球知名教育品牌",
- },
- {
- id: "2",
- title:
- "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- desc: "中德智慧已经成为全球知名教育品牌",
- },
- {
- id: "3",
- title:
- "最前线的中德逻辑最前线的中德逻辑最前线的中德逻辑在这里每 一个逝世四十",
- imgUrl:
- "http://img.visney.cn/img/article_img/20180809173951489186b0c81b62b4e658696eee3c07b2f77.jpg",
- desc: "中德智慧已经成为全球知名教育品牌",
- },
- ],
- },
- },
- swiperOption: {
- // 配置说明直接看官网
- slidesPerView: "auto",
- paginationClickable: true,
- // slidesOffsetBefore: 100,
- // slidesOffsetAfter: 100,
- autoplay: {
- delay: 3500,
- disableOnInteraction: false,
- },
- speed: 1000,
- loop: true,
- observer: true,
- observeParents: true,
- autoplayDisableOnInteraction: false,
- notNextTick: true,
- // centeredSlides: true,
- navigation: {
- nextEl: ".swiper-button-next",
- prevEl: ".swiper-button-prev",
- },
- },
- honorSwiperOption: {
- // 配置说明直接看官网
- slidesPerView: "auto",
- paginationClickable: true,
- spaceBetween: 30, //轮播图左右之间的间距,配合css样式中的width实现效果
- // slidesOffsetBefore: 100,
- // slidesOffsetAfter: 100,
- autoplay: {
- delay: 3000,
- stopOnLastSlide: false,
- disableOnInteraction: false,
- },
- speed: 1000,
- loop: true,
- observer: true,
- observeParents: true,
- autoplayDisableOnInteraction: false,
- notNextTick: true,
- centeredSlides: true,
- },
- expertSwiperOption: {
- autoplay: {
- delay: 2000,
- disableOnInteraction: false,
- },
- watchSlidesProgress: true,
- slidesPerView: 'auto',
- centeredSlides: true,
- loop: true, //开启循环
- initialSlide: 0,
- loopedSlides: 2,
- preventLinksPropagation: true,
- slideToClickedSlide: true,
- pagination: {
- el: ".swiper-pagination",
- clickable: true,
- },
- on: {
- progress() {
- for (let i = 0; i < this.slides.length; i++) {
- const slide = this.slides.eq(i) // 指定匹配元素集缩减值
- const slideProgress = this.slides[i].progress // 当前元素集的progress值
- let modify = 1 // 偏移权重
- Math.abs(slideProgress) > 1 && (modify = Math.abs(slideProgress) - 1 + 1);
- // if (parseInt(Math.abs(slideProgress)) > 0) {
- // modify = Math.abs(slideProgress) * 0.2 // 不一定要0.2,可自行调整
- // }
- const translate = slideProgress * modify * 315 + 'px' // 500是swiper-slide的宽度
- const scale = 1 - Math.abs(slideProgress) / 6 // 缩放权重值,随着progress由中向两边依次递减,可自行调整
- const zIndex = 999 - Math.abs(Math.round(10 * slideProgress))
- slide.transform(`translateX(${translate}) scale(${scale})`)
- slide.css('zIndex', zIndex)
- slide.css('opacity', 1) // 是否可见
- Math.abs(slideProgress) > 3 && slide.css("opacity", 0);
- // if (parseInt(Math.abs(slideProgress)) > 1) { // 设置了只有选中的元素以及他两遍的显示,其他隐藏
- // slide.css('opacity', 0)
- // }
- }
- },
- setTransition: function (e) {
- for (var t = 0; t < this.slides.length; t++)
- this.slides.eq(t).transition(e);
- },
- }
- },
- };
- },
- computed: {
- lineStyle () {
- let site = 190 * this.currentTabId + 40* ( (this.currentTabId === 0 ? 1 : this.currentTabId) - 1 )
- if( site === 0 ) {
- site = -5
- }
- return `transform: translateX(${site + 'px'})`
- }
- },
- components: {
- VBanner,
- countTo
- // indexVideo,
- // prodListShow,
- // indexNewsListShow
- },
- head() {
- return {
- title: "逻辑狗官网-中德智慧教育",
- meta: [
- {
- name: "keywords",
- hid: "keywords",
- content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
- },
- {
- name: "description",
- hid: "description",
- content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
- },
- ],
- };
- },
- async asyncData({ params, store }) {
- return {};
- },
- created() {},
- mounted() {
- if (process.browser) {
- new WOW({
- offset: 0,
- live: true
- }).init()
- }
- },
- swiper() {
- // 如果你需要得到当前的swiper对象来做一些事情,你可以像下面这样定义一个方法属性来获取当前的swiper对象,同时notNextTick必须为true
- return this.$refs.swiperBox.swiper;
- },
- honorSwiper() {
- return this.$refs.swiperHonorBox.swiper;
- },
- expertSwiper() {
- // console.log(this.$refs.swiperExpertBox.swiper);
- return this.$refs.swiperExpertBox.swiper;
- },
- methods: {
- tab(index) {
- this.num = index;
- },
- getProdList(index) {
- this.clickProdIndex = index;
- },
- getNewsList(index) {
- this.clickNewsIndex = index;
- },
- clickProduct(item) {
- console.log(item);
- // this.$router.push({ path: '/product/course'});
- },
- mobileEnter(e) {
- "412px" != $(event.target).css("width") &&
- ($(".panorama-education-list .mobile-education").css("width", "200px"),
- $(event.target).css("width", "412px"),
- $(".panorama-education-list .mobile-education")
- .find(".big-mobile-education")
- .css("display", "none"),
- $(event.target).css("width", "412px"),
- $(event.target)
- .find(".big-mobile-education")
- .fadeIn("fast"));
- },
- onSwiperRedied(swiper) {
- console.log('Swiper redied!', swiper)
- },
- stopSwiper() {
- // 鼠标移入停止播放
- // console.log(this.swiper);
- // this.swiper.autoplay.stop();
- },
- startSwiper() {
- // 移出继续播放
- // this.swiper.autoplay.start();
- },
- prev() {
- this.swiper.slidePrev();
- },
- next() {
- this.swiper.slideNext();
- },
- handleTag(tab) {
- this.currentTabId = tab.id
- }
- },
- };
- </script>
- <style lang="scss">
- @import "~static/common/style.sass";
- .container {
- width: 100%;
- // background: #f0f2f5;
- background: #fff;
- height: auto;
- }
- .title-content {
- position: relative;
- text-align: center;
- }
- .title-en {
- position: absolute;
- font-size: 78px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color:rgba(35,106,250,1);
- opacity: 0.16;
- }
- .title-zh {
- position: relative;
- display: inline-block;
- font-size:58px;
- font-family:PingFangSC-Semibold,PingFang SC;
- font-weight:600;
- color:rgba(38,38,38,1);
- text-align: center;
- }
- .more-btn {
- margin: 50px auto 162px;
- width: 138px;
- height: 45px;
- line-height: 45px;
- text-align: center;
- padding: 0 25px;
- background: $theme_color_fu;
- box-shadow: 0px 3px 9px 0px rgba(109, 140, 239, 0.82);
- border-radius: 23px;
- font-size: 22px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- ul.cate-nav {
- margin: 124px 0 116px;
- li.products-kind {
- display: inline-block;
- margin: 0 30px;
- cursor: pointer;
- &:first-child {
- margin-left: 0;
- }
- &.active,
- &:hover {
- a {
- color: $theme_color;
- }
- }
- .line {
- visibility: hidden;
- margin: 22px auto 0;
- width: 60px;
- border-radius: 50px;
- height: 15px;
- background: $theme_color_fu;
- box-shadow: 0px 2px 8px 0px rgba(45, 112, 245, 0.64);
- // -webkit-transition: all 0.5s ease;
- // -o-transition: all 0.5s ease;
- // transition: all 0.5s ease;
- }
- a {
- font-size: 32px;
- color: #747885;
- }
- }
- li.products-kind:hover,
- li.products-kind.active {
- .line {
- // display: block;
- // visibility: visible;
- // transition: all 0.5s ease;
- }
- }
- }
- .cate-list {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- .product-item {
- position: relative;
- box-sizing: border-box;
- width: 372px;
- margin-bottom: 42px;
- margin-right: 36px;
- &:nth-child(3n) {
- margin-right: 0px;
- }
- }
- .product-tag {
- padding: 0 6px 0 10px;
- background: $theme_color_fu;
- position: absolute;
- top: 0;
- left: 0;
- font-size: 12px;
- color: #ffffff;
- height: 24px;
- line-height: 24px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- border-radius: 18px 0px 7px 0px;
- // img {
- // width:52px;
- // height:24px;
- // object-fit: cover;
- // }
- }
- }
- // index-thought
- .index-thought {
- padding: 198px 0 50px;
- .i-thought-content {
- position: relative;
- .t-top {
- .title-en {
- left: -116px;
- top: -45px;
- }
- }
- }
- .thought-content-box {
- text-align: center;
- margin: 133px auto 0;
- position: relative;
- max-width: 1350px;
- }
- .map-content {
- width: 100%;
- position: absolute;
- top: 80px;
- .con-box {
- .con {
- .num {
- font-size: 106px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: $theme_color_fu;
- line-height: 148px;
- text-shadow: 0px 1px 3px #BED3FE;
- .unit {
- font-size: 34px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: $theme_color_fu;
- line-height: 48px;
- }
- }
- .color-gray {
- margin-top: 77px;
- font-size: 24px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #515564;
- line-height: 33px;
- }
- }
- }
- ul {
- display: flex;
- justify-content: space-between;
- li {
- padding: 55px 0;
- .hover-box {
- visibility: hidden;
- }
- &:hover {
- .hover-box {
- visibility: visible;
- margin-top: 70px;
- }
- .con-box {
- .color-gray {
- margin-top: 28px;
- }
- }
- }
- &.one {
- padding: 55px 70px;
- &:hover {
- background: rgba(237, 245, 253, 0.7);
- transition: 0.5 ease-in;
- // padding: 55px 70px;
- }
- }
- &.two {
- padding: 55px 20px;
- &:hover {
- transition: 0.5 ease-in;
- background: rgba(240, 247, 235, 0.7);
- }
- }
- &.three {
- padding: 55px 68px;
- &:hover {
- transition: 0.5 ease-in;
- background: rgba(255, 252, 238, 0.7);
- }
- }
- }
- }
- }
- }
- // index-founder
- .index-founder {
- position: relative;
- padding: 176px 0 118px;
- background-image: url("~assets/images/index/found_left.png"),
- url("~assets/images/index/found_left2.png");
- background-repeat: no-repeat, no-repeat;
- background-position: 0px 158px, 260px 550px;
- background-color: #f7fbff;
- .founder-content-box {
- margin-left: 320px;
- max-width: 1200px;
- z-index: 10;
- display: flex;
- .founder_content {
- margin-left: 30px;
- padding-top: 32px;
- .founder-item {
- margin-bottom: 14px;
- }
- .name {
- display: flex;
- align-items: center;
- font-size: 24px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: $theme_color_fu;
- span {
- display: inline-block;
- width: 12px;
- height: 12px;
- border-radius: 50%;
- background: linear-gradient(
- 180deg,
- rgba(250, 117, 62, 1) 0%,
- rgba(246, 85, 19, 1) 100%
- );
- box-shadow: 0px 2px 7px 0px rgba(249, 107, 50, 0.8);
- margin-right: 6px;
- }
- }
- .title {
- line-height: 58px;
- font-size: 42px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #262626;
- }
- .desc {
- color: #6e6f75;
- font-size: 18px;
- line-height: 32px;
- margin-bottom: 30px;
- }
- .btn {
- width: 182px;
- height: 46px;
- line-height: 46px;
- background: $theme_color_fu;
- box-shadow: 0px 4px 11px 0px rgba(115, 161, 253, 0.95);
- border-radius: 24px;
- text-align: center;
- font-size: 22px;
- a {
- color: #ffffff;
- }
- }
- }
- }
- .found-left {
- z-index: 0;
- font-size: 0;
- // position: absolute;
- left: 0;
- top: 158px;
- }
- .found-right {
- font-size: 0;
- z-index: 0;
- position: absolute;
- right: 0;
- bottom: -406px;
- }
- }
- /* index-thinking */
- .index-thinking {
- max-width: 1200px;
- margin: 0 auto;
- padding-top: 164px;
- // text-align: center;
- .i-t-content {
- .title-zh {
- position: relative;
- display: inline-block;
- }
- .title-en {
- position: absolute;
- top: -45px;
- left: -112px;
- }
- }
- .thinking-cate-box {
- margin-top: 155px;
- }
- ul.thinking-cate-nav {
- position: relative;
- margin: 124px 0 116px;
- display: flex;
- justify-content: space-between;
- .tabs-item.selectTabs {
- a {
- color: $theme_color_fu;
- // font-size: 42px !important;
- font-family:PingFangSC-Semibold,PingFang SC;
- font: weight 600;
- }
- }
- }
- li.thinking-products-kind {
- display: inline-block;
- // margin: 0 30px;
- cursor: pointer;
- -webkit-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- transition: all 0.5s ease;
- a {
- font-size: 32px;
- color: #747885;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- }
- // li.thinking-products-kind:hover,
- li.thinking-products-kind.active {
- .line {
- display: block;
- visibility: visible;
- }
- }
- .tabs {
- .tab-box {
- display: flex;
- justify-content: space-between;
- margin: 0 auto;
- .tabs-item {
- a {
- color: #747885;
- font-size: 32px;
- font-family:PingFangSC-Regular,PingFang SC;
- font-weight:400;
- }
- }
- }
- .bottom-line {
- display: flex;
- justify-content: center;
- margin-top: 16px;
- .bottom-line-img {
- width: 100%;
- img {
- width: 75px;
- height: 30px;
- transition: transform 1s;
- }
- }
-
- }
- }
- li.thinking-products-kind:first-child {
- margin-left: 0;
- }
- li.thinking-products-kind:last-child {
- margin-right: 0;
- }
- li.thinking-products-kind.active a,
- .thinking-products-kind:hover a {
- // font-size: 42px;
- color: $theme_color;
- // border-bottom: 6px solid $theme_color;
- // box-shadow:0px 2px 8px 0px rgba(240,53,94,0.61);
- }
- .thinking-cate-list {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- margin-top: 100px;
- .thinking-product-item {
- position: relative;
- box-sizing: border-box;
- width: 374px;
- margin-bottom: 42px;
- margin-right: 36px;
- &:nth-child(3n) {
- margin-right: 0px;
- }
- .thinking-product-item-img {
- width: 374px;
- font-size: 0;
- overflow: hidden;
- &:hover {
- img {
- transform: scale(1.2);
- transition: transform 1s;
- }
- .product-tag {
- border-radius: 0px 0px 0px 0px;
- transition: border-radius .3s;
- }
- }
- img {
- border-radius: 18px 18px 0px 0px;
- width: 100%;
- }
- }
- }
- }
- .thinking-product-info {
- box-sizing: border-box;
- background: #ffffff;
- height: 90px;
- box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
- border-radius: 0px 0px 18px 18px;
- padding: 10px 22px;
- .thinking-product-title {
- width: 160px;
- height: 28px;
- font-size: 20px;
- // font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 400;
- line-height: 28px;
- a {
- color: #343e30;
- }
- }
- .thinking-product-content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 6px;
- }
- .thinking-product-price {
- color: #ea0b4a;
- font-size: 22px;
- .price-num {
- font-size: 30px;
- font-weight: bold;
- line-height: 26px;
- }
- }
- .thinking-product-btn {
- height: 18px;
- line-height: 18px;
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- border: 1px solid rgba(60, 142, 255, 1);
- height: 27px;
- line-height: 27px;
- border-radius: 14px;
- padding: 0 15px;
- a {
- color: #3e8eff;
- }
- }
- // .thinking-product-user {
- // display: flex;
- // img {
- // width: 18px;
- // height: 22px;
- // }
- // }
- }
- }
- // index-product
- .index-product {
- // display: flex;
- // align-items: center;
- height: 526px;
- background: url("~assets/images/index/product_bg.png") no-repeat;
- .product-content-box {
- position: relative;
- // width: 1200px;
- padding: 112px 250px 86px 250px;
- .swiperBox {
- }
- }
- .swiper-button-prev,
- .swiper-button-next {
- color: #dee9fe;
- }
- .swiper-button-prev {
- left: 84px;
- }
- .swiper-button-next {
- right: 104px;
- }
- .swiper-wrapper {
- // max-width: 1200px;
- p.name {
- font-size: 28px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #ffffff;
- text-align: center;
- }
- }
- .swiper-slide {
- width: 274px;
- font-size: 0;
- }
- }
- /* index-thinking */
- .index-course {
- padding-top: 164px;
- max-width: 1200px;
- margin: 0 auto;
- .title-en {
- left: -134px;
- top: -45px;
- }
- .course-content-box {
- .course-cate-nav {
- display: flex;
- justify-content: space-between;
- }
- }
- .course-cate-list {
- .course-product-item {
- width: 365px;
- .course-product-item-img {
- position: relative;
- font-size: 0;
- img {
- width: 100%;
- }
- .course-product-item-play {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 62px;
- font-size: 0;
- }
- }
- }
- }
- .course-product-info {
- box-sizing: border-box;
- background: #ffffff;
- height: 90px;
- box-shadow: 0px 5px 21px 0px rgba(232, 243, 243, 1);
- border-radius: 0px 0px 18px 18px;
- padding: 26px 22px;
- .course-product-title {
- width: 160px;
- height: 28px;
- font-size: 20px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(52, 62, 48, 1);
- line-height: 28px;
- }
- .course-product-content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .course-product-price {
- color: #ea0b4a;
- .price-num {
- font-size: 22px;
- font-weight: bold;
- }
- }
- .course-product-user {
- display: flex;
- align-items: flex-end;
- img {
- width: 18px;
- height: 22px;
- margin-right: 10px;
- }
- .views {
- color: #418eff;
- }
- }
- }
- }
- // index-scenes
- .index-scenes {
- background: #f7fbff;
- padding: 217px 0 228px;
- .i-s-content {
- .title-en {
- left: -125px;
- top: -45px;
- }
- }
- .scenes-content-box {
- margin: 102px auto 0;
- max-width: 1200px;
- .panorama-education-list {
- margin: 0 auto;
- height: 468px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- .mobile-education {
- width: 160px;
- height: 468px;
- border: 1px solid #eee;
- border-left: none;
- background-color: #fff;
- text-align: center;
- position: relative;
- cursor: pointer;
- &:nth-child(1) {
- border-left: 1px solid #eee;
- }
- .mobile-small-img {
- width: 50px;
- height: 47px;
- margin: 68px auto 26px;
- img {
- width: 50px;
- height: 47px;
- }
- }
- .mobile-education-title {
- font-size: 14px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333436;
- line-height: 24px;
- }
- .mobile-education-sub {
- font-size: 12px;
- font-weight: 400;
- color: #333;
- line-height: 18px;
- }
- .mobile-education-img {
- width: 160px;
- height: 128px;
- margin: 76px auto 0;
- img {
- width: 160px;
- height: 128px;
- }
- }
- }
- .big-mobile-education {
- display: none;
- background: #fff;
- // width: 346px;
- // height: 460px;
- width: 412px;
- height: 468px;
- position: absolute;
- z-index: 3;
- opacity: 1;
- left: -1px;
- top: -1px;
- border: 1px solid #105cfb;
- .pc-education-top {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- margin-left: 36px;
- .education-gzh {
- font-size: 0;
- margin-top: 32px;
- }
- .pc-small-img {
- width: 42px;
- height: 34px;
- margin-top: 56px;
- img {
- width: 42px;
- height: 34px;
- }
- }
- .education-title-box {
- margin-top: 42px;
- margin-left: 20px;
- .education-title {
- height: 24px;
- font-size: 17px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333436;
- line-height: 24px;
- text-align: left;
- }
- .education-sub-title {
- margin-top: 4px;
- height: 18px;
- line-height: 18px;
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #38393A;
- text-align: left;
- }
- }
- }
- .education-img {
- // width: 306px;
- width: 378px;
- height: auto;
- // margin: 48px auto 0;
- img {
- width: 378px;
- height: auto;
- }
- }
- .mobile-small-img {
- width: 48px;
- height: 48px;
- margin: 68px auto 26px;
- img {
- width: 48px;
- height: 48px;
- }
- }
- .mobile-education-title {
- height: 24px;
- font-size: 17px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333436;
- line-height: 24px;
- margin-bottom: 8px;
- }
- .mobile-education-sub {
- font-size: 13px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #38393A;
- line-height: 18px;
- }
- .mobile-education-img {
- width: 240px;
- height: 192px;
- margin: 76px auto 0;
- img {
- width: 240px;
- height: 192px;
- }
- }
- }
- }
- }
- }
- // index-town
- .index-town {
- position: relative;
- height: 1370px;
- box-sizing: border-box;
- padding-top: 180px;
- .i-town-content {
- .title-en {
- left: 50%;
- transform: translate(-50%);
- width: 800px;
- top: -45px;
- }
- .title-sub {
- margin-top: 28px;
- text-align: center;
- font-size: 28px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #38393a;
- line-height: 40px;
- }
- .town-content-box {
- .town-btn-group {
- margin-top: 52px;
- display: flex;
- font-size: 29px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- line-height: 40px;
- text-align: center;
- .town-btn-about {
- //428 120
- width: 180px;
- height: 60px;
- line-height: 60px;
- border-radius: 30px;
- border: 1px solid $theme_color_fu;
- color: $theme_color_fu;
- margin: 0 290px 0 308px;
- }
- .town-btn-join {
- width: 180px;
- height: 60px;
- line-height: 60px;
- background: $theme_color_fu;
- box-shadow: 0px 4px 9px 0px rgba(91, 141, 240, 0.83);
- border-radius: 30px;
- }
- }
- }
- }
- .town-content-skill {
- // position: relative;
- .town-content-img {
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- // text-align: center;
- font-size: 0;
- z-index: 10;
- .skill-item {
- position: absolute;
- text-align: center;
- p {
- position: absolute;
- width: 100px;
- bottom: -5px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 20px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #38393a;
- text-align: center;
- &.big-font {
- font-size: 24px;
- }
- }
- }
- .skill-item-01 {
- left: -160px;
- top: -158px;
- }
- .skill-item-02 {
- left: 70px;
- top: -130px;
- }
- .skill-item-03 {
- left: 450px;
- top: -248px;
- }
- .skill-item-04 {
- right: -80px;
- top: -240px;
- }
- .skill-item-05 {
- left: -232px;
- top: 96px;
- }
- .skill-item-06 {
- left: -12px;
- top: 130px;
- }
- .skill-item-07 {
- right: -50px;
- top: -18px;
- }
- .skill-item-08 {
- right: -196px;
- top: 120px;
- }
- .skill-item-09 {
- left: -184px;
- top: 304px;
- }
- .skill-item-10 {
- right: -146px;
- top: 340px;
- }
- }
- }
- .town_bottom_bg {
- position: absolute;
- bottom: 0;
- font-size: 0;
- width: 100%;
- img {
- width: 100%;
- }
- }
- }
- // index-honor
- .index-honor {
- background-image: url("~assets/images/index/honor_bg.png");
- background-repeat: no-repeat;
- background-position: top 20px right 115px;
- background-color: #f7fbff;
- padding: 188px 0 162px;
- .title-en {
- left: -140px;
- top: -45px;
- }
- .i-honor-content {
- max-width: 1200px;
- margin: 0 auto;
- .honer-content-box {
- padding: 0 20px;
- }
- }
- .swiper-slide {
- width: 240px;
- font-size: 0;
- }
- .honer-content-box {
- margin-top: 102px;
- }
- }
- // index-article
- .index-article {
- padding: 180px 0 176px;
- .title-en {
- top: -45px;
- left: -128px;
- }
- .article-content-box {
- margin-top: 85px;
- .article-type-title {
- width: 180px;
- height: 42px;
- line-height: 42px;
- font-size: 30px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #3a4239;
- margin-bottom: 12px;
- }
- .article-type-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- i {
- margin-right: 15px;
- color: #999999;
- font-size: 20px;
- }
- }
- .article-content-top {
- display: flex;
- .article-content-top-left {
- width: 844px;
- margin-right: 10px;
- .article-content-info {
- height: 352px;
- position: relative;
- overflow: hidden;
- &:hover {
- img {
- transform: scale(1.2);
- transition: transform 1s;
- }
- }
- img {
- height: 100%;
- width: 100%;
- border-radius: 8px;
- object-fit: cover;
- }
- .info-title {
- width: 100%;
- padding: 8px 50px;
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- line-height: 22px;
- position: absolute;
- overflow: hidden; //超出的文本隐藏
- text-overflow: ellipsis; //溢出用省略号显示
- white-space: nowrap; //溢出不换行,只能显示一行
- bottom: 0;
- background: rgba(92, 94, 93, 0.31);
- border-radius: 0px 0px 7px 7px;
- }
- }
- }
- .article-content-top-right {
- width: 346px;
- font-size: 0;
- .article-content-info {
- height: 352px;
- display: flex;
- flex-wrap: wrap;
- flex-direction: column;
- justify-content: space-between;
- align-content: space-between;
- .article-item-right {
- position: relative;
- width: 170px;
- height: 170px;
- overflow: hidden;
- // margin-right: 6px;
- &:nth-child(2n) {
- margin-right: 0;
- }
- &:hover {
- img {
- transform: scale(1.2);
- transition: transform 1s;
- }
- }
- img {
- height: 100%;
- width: 100%;
- border-radius: 8px;
- object-fit: cover;
- }
- p {
- padding: 0 30px 0 17px;
- position: absolute;
- bottom: 12px;
- line-height: 22px;
- font-size: 16px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- }
- }
- }
- }
- .article-content-bottom {
- margin-top: 38px;
- .article-content-bottom-info {
- display: flex;
- .article-content-bottom-left {
- width: 400px;
- height: 270px;
- border-radius: 8px;
- margin-right: 55px;
- overflow: hidden;
- &:hover {
- img {
- transform: scale(1.2);
- transition: transform 1s;
- }
- }
- img {
- height: 100%;
- width: 100%;
- border-radius: 8px;
- object-fit: cover;
- }
- }
- .article-content-bottom-right {
- flex: 1;
- .title {
- color: #3a4239;
- font-size: 26px;
- margin-top: 12px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .desc {
- font-size: 24px;
- margin-top: 30px;
- color: #7d7d7e;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- line-height: 33px;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .time {
- font-size: 24px;
- color: #9ba09a;
- margin-top: 86px;
- }
- }
- }
- }
- }
- }
- // index-expert
- .index-expert {
- padding: 180px 0 164px;
- background: url("~assets/images/index/expert_bg.png") no-repeat;
- .title-en {
- left: -107px;
- top: -40px;
- }
- #certify {
- position: relative;
- width: 1200px;
- margin: 0 auto;
- }
- .e-content-box {
- margin-top: 46px;
- }
- .swiper-container {
- width: 100%;
- height: 100%;
- text-align: center;
- .swiper-wrapper {
- width: 100%;
- text-align: center;
- .swiper-slide {
- width: 630px !important;
- height: 396px;
- background: none;
- img {
- width: 630px;
- height: 396px;
- }
- }
- }
- }
- .swiper-pagination {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- .swiper-pagination-bullet {
- width: 11px;
- height: 11px;
- background: #CBCDD1;
- border-radius: 50%;
- margin: 0 11px;
- &:focus {
- outline: none;
- }
- &.swiper-pagination-bullet-active {
- width: 47px;
- height: 12px;
- background: #0D5CFA;
- box-shadow: 0px 2px 6px 0px rgba(84, 135, 237, 0.89);
- border-radius: 20px;
- }
- }
- }
- }
- </style>
|