| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312 |
- <template>
- <div>
- <!--logo-->
- <HomePageHead></HomePageHead>
- <!--导航-->
- <HomePageNavigation></HomePageNavigation>
- <!--首页顶部滚动新闻-->
- <div class="swiper-container">
- <Swiper :slides-per-view="5" :space-between="20" :loop="true" :autoplay="{
- delay: 3000,
- disableOnInteraction: false,
- pauseOnMouseEnter: true,
- stopOnLastSlide: false,
- waitForTransition: true
- }" :speed="600" :modules="modules" @slide-change="swiperHandleSlideChange" @swiper="onSwiper"
- class="custom-swiper" :navigation="true">
- <SwiperSlide v-for="(item, index) in 15" :key="index">
- <NuxtLink :to="`/${item.pinyin}/${item.id}.html`" :title="item.title" class="slide-link"
- :data-index="index">
- <div class="image-container">
- <!-- <img
- :src="item.imgurl || '/index/news.png'"
- :alt="item.title"
- class="slide-image"
- loading="lazy"
- /> -->
- <img src="/public/index/news.png" :alt="item.title" class="slide-image" loading="lazy" />
- <span class="image-title">{{ item.title }}</span>
- </div>
- </NuxtLink>
- </SwiperSlide>
- </Swiper>
- </div>
- <!--首页顶部新闻-->
- <div class="index—layer-1">
- <!--左侧焦点图新闻-->
- <div class="index—layer-1-left">
- <div class="nuxt-swiper" v-if="imagelist">
- <el-carousel :interval="663000" :touchable="true" arrow="never" indicator-class="custom-indicator"
- class="custom-carousel roll_in" @change="handleIndicatorChange">
- <el-carousel-item v-for="(item, index) in imagelist" :key="index">
- <NuxtLink :to="`/${item.pinyin}/${item.id}.html`" :title="item.title">
- <!-- <img :src="item.imgurl" :alt="item.title"> -->
- <img src="/public/index/news.png" :alt="item.title">
- <span>{{ item.title }}</span>
- </NuxtLink>
- </el-carousel-item>
- <template #indicator="{ index }">
- <button :class="{ 'active-indicator': currentIndex === index }">{{ index + 1 }}</button>
- </template>
- </el-carousel>
- </div>
- </div>
- <!--中央选项卡-->
- <div class="index-layer-1-middle">
- <div class="index-tabs">
- <div class="tabtlt">
- <div @mouseenter="indexTabs = 1" :class="indexTabs == 1 ? 'intabtltbg' : ''">
- <NuxtLink
- v-if="pageData[0].cid"
- :href="getLinkPath(pageData[0])"
- :title="pageData[0].alias"
- >
- {{pageData[0].title}}
- </NuxtLink>
- </div>
- <div @mouseenter="indexTabs = 2" :class="indexTabs == 2 ? 'intabtltbg' : ''">
- <NuxtLink
- v-if="pageData[1].cid"
- :href="getLinkPath(pageData[1])"
- :title="pageData[1].alias"
- >
- {{pageData[1].title}}
- </NuxtLink>
- </div>
- </div>
- <div>
- <div v-if="indexTabs == 1" class="coninfoitem">
- <div class="coninfoitem_img">
- <img src="/public/index/news.png" />
- <div class="coninfoitem_img_text">
- <NuxtLink
- :href="getLinkPathDetail(boxData1[0])"
- :title="boxData1[0].title"
- :target="boxData1[0].islink == 1 ? '_blank' : '_self'"
- class="coninfoitem_title"
- >
- <h3>
- {{boxData1[0].title}}
- </h3>
- <p>
- {{boxData1[0].introduce}}
- </p>
- </NuxtLink>
- </div>
- </div>
- <NuxtLink
- v-for="(item, index) in boxData1data2" :key="index"
- :href="getLinkPathDetail(item)"
- :title="item.title"
- :target="item.islink == 1 ? '_blank' : '_self'"
- class="coninfoitem_title"
- >
- <span>{{ item.title }}</span>
- <span>{{getTime(item.updated_at,'month',1)}}</span>
- </NuxtLink>
- </div>
- <div v-if="indexTabs == 2" class="coninfoitem">
- </div>
- </div>
- </div>
- </div>
- <!--右侧新闻列表-->
- <div class="index-layer-1-right">
- <div class="imgtlt">
- <NuxtLink to="/" class="coninfoitem_title">
- 各地动态
- </NuxtLink>
- </div>
- <div class="con_img_list">
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- <div class="con_img_list_rgba">青山梦:一位古稀企业...</div>
- </NuxtLink>
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- <div class="con_img_list_rgba">安全入校园 应急护童行 | 济宁市惠民社会救助服务中心“135最小应急单元” 走进南张中心幼儿园(第一期)</div>
- </NuxtLink>
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- <div class="con_img_list_rgba">吉林长春经济技术开发区:检察服务窗口嵌入综治中心</div>
- </NuxtLink>
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- <div class="con_img_list_rgba">天津高院与北辰法院联合举办全市法院司法警察“活力警营·逐梦青春”越野接力活动</div>
- </NuxtLink>
- </div>
- </div>
- </div>
- <!--首页中央新闻2-->
- <div class="index—layer-2">
- <div class="index—layer-2-left">
- <div class="index—layer-2-title">
- <div :class="indexTabs2 == 1 ? 'active' : ''" @mouseenter="indexTabs2 = 1">
- <NuxtLink to="/">
- 选项1
- </NuxtLink>
- </div>
- <div :class="indexTabs2 == 2 ? 'active' : ''" @mouseenter="indexTabs2 = 2">
- <NuxtLink to="/">
- 选项2
- </NuxtLink>
- </div>
- </div>
- <div v-if="indexTabs2 == 1">
- <div class="index-tabs2-top">
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- </NuxtLink>
- <div>
- <h3>
- <NuxtLink to="/">
- 京津冀对在三地拟执业的司法鉴定人进行职业能力评估联考
- </NuxtLink>
- </h3>
- <p>
- <NuxtLink to="/">
- “2026年1月1日起,跟朋友私信发带颜色的信息就违法?”最近这条消息刷爆社交平台,不少网友慌了神:“跟伴侣私聊也不行吗?”“不小心发错给文件传输助手算不算违法?”一时间焦虑情绪蔓延。其实,这是对新修...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index-tabs2-bottom">
- <NuxtLink to="/">
- <span>盐池:观庭审知敬畏 守底线践清廉</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>吴忠:“组地”监督赋能优化营商环境</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>海原:整治骗取套取社保基金行为 守住民生资金安全防线</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>大武口:持续拧紧责任链条 深化全面从严治党</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>利通区:以“监督一点通”为抓手 推动基层权力在阳光下运行</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- <div class="index—layer-2-right">
- <div class="index—layer-2-title">
- <div :class="indexTabs3 == 1 ? 'active' : ''" @mouseenter="indexTabs3 = 1">
- <NuxtLink to="/">
- 选项1
- </NuxtLink>
- </div>
- <div :class="indexTabs3 == 2 ? 'active' : ''" @mouseenter="indexTabs3 = 2">
- <NuxtLink to="/">
- 选项2
- </NuxtLink>
- </div>
- </div>
- <div v-if="indexTabs3 == 1">
- <div class="index-tabs2-top">
- <NuxtLink to="/">
- <img src="/public/index/news.png" />
- </NuxtLink>
- <div>
- <h3>
- <NuxtLink to="/">
- 京津冀对在三地拟执业的司法鉴定人进行职业能力评估联考
- </NuxtLink>
- </h3>
- <p>
- <NuxtLink to="/">
- “2026年1月1日起,跟朋友私信发带颜色的信息就违法?”最近这条消息刷爆社交平台,不少网友慌了神:“跟伴侣私聊也不行吗?”“不小心发错给文件传输助手算不算违法?”一时间焦虑情绪蔓延。其实,这是对新修...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index-tabs2-bottom">
- <NuxtLink to="/">
- <span>盐池:观庭审知敬畏 守底线践清廉</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>吴忠:“组地”监督赋能优化营商环境</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>海原:整治骗取套取社保基金行为 守住民生资金安全防线</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>大武口:持续拧紧责任链条 深化全面从严治党</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>利通区:以“监督一点通”为抓手 推动基层权力在阳光下运行</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- </div>
- <!--首页中央新闻3-->
- <div class="index—layer-3">
- <div class="index—layer-3-line">
- <!--选项卡类型-->
- <div class="index—layer-3-tabs-box">
- <div class="index—layer-3-tabs-box-title">
- <div @mouseenter="indexTabs4 = 1" :class="indexTabs4 == 1 ? 'active' : ''">
- <NuxtLink to="/">
- 选项1
- </NuxtLink>
- </div>
- <div @mouseenter="indexTabs4 = 2" :class="indexTabs4 == 2 ? 'active' : ''">
- <NuxtLink to="/">
- 选项2
- </NuxtLink>
- </div>
- </div>
- <div v-if="indexTabs4 == 1" class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- <div v-if="indexTabs4 == 2">
- </div>
- </div>
- <!--常规类型-->
- <div class="index—layer-3-news-box">
- <div class="index—layer-3-news-box-title">
- <div>
- <NuxtLink to="/">
- 典型案例
- </NuxtLink>
- </div>
- </div>
- <div class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- <div class="index—layer-3-news-box">
- <div class="index—layer-3-news-box-title">
- <div>
- <NuxtLink to="/">
- 法制文化
- </NuxtLink>
- </div>
- </div>
- <div class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- </div>
- <div class="index—layer-3-line">
- <div class="index—layer-3-news-box">
- <div class="index—layer-3-news-box-title">
- <div>
- <NuxtLink to="/">
- 法制文化
- </NuxtLink>
- </div>
- </div>
- <div class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- <div class="index—layer-3-news-box">
- <div class="index—layer-3-news-box-title">
- <div>
- <NuxtLink to="/">
- 法制文化
- </NuxtLink>
- </div>
- </div>
- <div class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- <div class="index—layer-3-news-box">
- <div class="index—layer-3-news-box-title">
- <div>
- <NuxtLink to="/">
- 法制文化
- </NuxtLink>
- </div>
- </div>
- <div class="index—layer-3-news-body">
- <div class="index—layer-3-news-body-title">
- <div class="news-body-left">
- <NuxtLink to="/">
- <img src="/public/index/news.png" alt="">
- </NuxtLink>
- </div>
- <div class="news-body-right">
- <NuxtLink to="/">
- 政讯通·全国法制调研中心:专注法治服务,践行责任担当
- </NuxtLink>
- <p>
- <NuxtLink to="/">
- 法治建设的推进,需要专业力量的深耕与赋能。政讯通·全国法制调研中心作为法治领域的重要参与主体,始终聚焦核心使命,以多元服务助力法治进程,为社会各界提供专业、可靠的法治相关支撑,也为心怀法治热忱的普...
- </NuxtLink>
- </p>
- </div>
- </div>
- <div class="index—layer-3-news-body-main">
- <NuxtLink to="/">
- <span>公证人员“三个特别”助力群众办好心头事</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>聚行业智慧 凝发展共识,天河区举办律所主任交流座谈会</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>荔湾区司法局岭南司法所开展“迎全运 降发案”反诈宣传活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>市潭岗所:架起关爱“连心桥” 畅通血脉“生命线”</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>花都:漫步古村学宪法 徒步普法润民心</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>种下一抹绿,疗愈一颗心——荔湾区司法局组织社矫对象创新开展心理舒缓小组活动</span>
- <span>2026-01-06</span>
- </NuxtLink>
- <NuxtLink to="/">
- <span>天河法治赋能 高质量发展成色更足</span>
- <span>2026-01-06</span>
- </NuxtLink>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--网友留言-->
- <div class="index-layer-4">
- <div class="index-layer-4-title">
- <NuxtLink to="/">
- 网友留言
- </NuxtLink>
- <NuxtLink to="/">
- 在线留言
- </NuxtLink>
- </div>
- <div class="index-layer-4-body">
- <ul class="post_nr liuyan">
- <li>
- <span class="name">熊先生:<b>网站名称问题</b> 2025-12-29 16:18:48</span>
- <p class="nr">内容:看你们的介绍,政讯通•全国法制调研中心,网站名称不让用全国,你们怎么可以用啊?</p>
- <p class="hfnr">
- <span style="color:#f00;">回复:</span>
- 工信部不审批带全国的网站。我们所有带全国字样的名称前都加了“政讯通”,意思是北京政讯通法律咨询有限公司在全国范围内开展的法制调研工作。网站显示没有全国字样,在文字资料或者口头表述时会有加全国,使用名称都是政讯通·全国法制资讯发布中心、政讯通•全国法制调研中心、政讯通•全国法制舆情监测中心和政讯通•全国法制发展促进中心。
- </p>
- </li>
- <li>
- <span class="name">zhang:<b>我从网上搜搜到你们这个网站,我看了下网站没看明白你们主要是做什么的?能简单介绍下吗?</b> 2025-12-26
- 17:43:46</span>
- <p class="nr">内容:我从网上搜搜到你们这个网站,我看了下网站没看明白你们主要是做什么的?能简单介绍下吗?</p>
- <p class="hfnr">
- <span style="color:#f00;">回复:</span>
- 不知道您看到的是我们的哪个网站,我们法制调研项目有200多个网站。主要业务分四大部分:
- 资讯与信息化业务:面向全国党政机关、企事业单位及相关经济组织发展法制信息化会员为主的网络资讯信息服务,提供200个网站资讯发布平台。同步为法制领域提供信息交流与沟通的平台,可以实现一对一、一对多和多对多的沟通交流。
- 法制与调研业务:依法开展法制领域的课题调研、法制宣传、法律援助、法律咨询和公益活动等服务。
- 舆情服务业务:面向全国法制党政机关、企事业单位等法人单位或组织依法提供网络舆情方面的监测、处理、公关等服务。
- 行业与发展业务:综合管理与辅助各地市级中心的运营、面向社会提供法制领域的活动策划与企业发展定制服务。
- </p>
- </li>
- </ul>
- </div>
- </div>
- <!--底部-->
- <HomeFoot></HomeFoot>
- </div>
- </template>
- <script setup>
- //页面是否已经加载完毕
- const pageLoading = ref(false)
- //1.加载页面必备组件 start---------------------------------------->
- import { ref, onMounted } from 'vue';
- import { ElRadio, ElRadioGroup, ElCheckbox, ElCheckboxGroup, ElMessage, ElInput } from 'element-plus';
- import { useSeoMeta } from '#imports';
- //格式化跳转路径 - 标题
- //首页分类栏目标题,不需要考虑外链
- const getLinkPath = (item) => {
- if (item.children_count == 0) {
- //return `/newsList/${item.cid}?page=1`;
- return `/${item.aLIas_pinyin}/list-1.html`;
- } else {
- //return `/primaryNavigation/${item.cid}`;
- return `/${item.aLIas_pinyin}/index.html`;
- }
- }
- //首页跳转到详情,这里需要考虑外链
- const getLinkPathDetail = (item) => {
- if (item.islink == 1) {
- return `${item.linkurl}`;
- } else {
- return `/${item.pinyin}/${item.id}.html`;
- }
- }
- //1.加载页面必备组件 end---------------------------------------->
- //2.交互方法 start---------------------------------------->
- //2.1 新闻图片切换
- const hoverStatus = ref(1)
- const qhPic = function (num) {
- hoverStatus.value = num;
- }
- //2.交互方法 end---------------------------------------->
- //3.页面基本信息 start---------------------------------------->
- //3.1 导航信息
- const pageData = ref([]);
- //3.2 模块数据
- //模块1
- const boxData1 = ref([])//图片新闻
- const boxData1data2 = ref([]);//文字新闻
- //模块2
- const boxData2 = ref([]);//图片新闻
- const boxData2data2 = ref([]);//文字新闻
- //模块3
- const boxData3 = ref([]);
- const boxData3data2 = ref([]);
- //模块4
- const boxData4 = ref([]);
- const boxData4data2 = ref([]);
- //模块5
- const boxData5 = ref([]);
- const boxData5data2 = ref([]);
- //模块6
- const boxData6 = ref([]);
- const boxData6data2 = ref([]);
- //模块7
- const boxData7 = ref([]);
- const boxData7data2 = ref([]);
- //3.3获得导航数据
- try {
- const navigateData = await requestDataPromise('/web/getWebsiteModelCategory', {
- method: 'GET',
- query: {
- 'placeid': 1,
- 'pid': 0,
- 'num': 30
- },
- });
- if (navigateData.code == 200) {
- // 遍历可用的导航池放到页面中
- for (let index in navigateData.data) {
- let data = {
- title: navigateData.data[index].name,
- cid: navigateData.data[index].category_id,
- children_count: navigateData.data[index].children_count,
- alias: navigateData.data[index].alias,
- aLIas_pinyin: navigateData.data[index].aLIas_pinyin
- };
- //1法制资讯
- if (navigateData.data[index].category_id == 1) { pageData.value[0] = data }
- //2各地动态
- if (navigateData.data[index].category_id == 2) { pageData.value[1] = data }
- //3特别关注
- if (navigateData.data[index].category_id == 3) { pageData.value[2] = data }
- //4媒体视点
- if (navigateData.data[index].category_id == 4) { pageData.value[3] = data }
- //5法纪通报
- if (navigateData.data[index].category_id == 5) { pageData.value[4] = data }
- //6今日说法
- if (navigateData.data[index].category_id == 6) { pageData.value[5] = data }
- //7政策法规
- if (navigateData.data[index].category_id == 7) { pageData.value[6] = data }
- }
- }
- } catch (error) {
-
- }
- let getJson = [
- { "parent": "1,1,1", "child": "" },//模块1法制资讯
- { "parent": "2,1,1", "child": "" },//模块2各地动态
- { "parent": "3,1,1", "child": "" },//模块3特别关注
- { "parent": "4,1,1", "child": "" },//模块4媒体视点
- { "parent": "5,1,1", "child": "" },//模块5法纪通报
- { "parent": "6,1,1", "child": "" },//模块6今日说法
- { "parent": "7,1,1", "child": "" },//模块7政策法规
- ]
- let jsonString = JSON.stringify(getJson);
- async function getPageAllData() {
- const mkdata = await requestDataPromise('/web/getWebsiteAllArticle', {
- method: 'GET',
- query: {
- 'id': jsonString
- },
- });
- console.log("makdata:", mkdata);
- if (mkdata.code == 200) {
- //模块1法制资讯
- boxData1.value = mkdata.data[0].imgnum;
- boxData1data2.value = mkdata.data[0].textnum;
- //模块2各地动态
- boxData2.value = mkdata.data[1].imgnum;
- boxData2data2.value = mkdata.data[1].textnum;
- //模块3特别关注
- boxData3.value = mkdata.data[2].imgnum;
- boxData3data2.value = mkdata.data[2].textnum;
- //模块4媒体视点
- boxData4.value = mkdata.data[3].imgnum;
- boxData4data2.value = mkdata.data[3].textnum;
- //模块5法纪通报
- boxData5.value = mkdata.data[4].imgnum;
- boxData5data2.value = mkdata.data[4].textnum;
- //模块6今日说法
- boxData6.value = mkdata.data[5].imgnum;
- boxData6data2.value = mkdata.data[5].textnum;
- //模块7政策法规
- boxData7.value = mkdata.data[5].imgnum;
- boxData7data2.value = mkdata.data[5].textnum;
- } else {
- ElMessage.error(mkdata.message)
- }
- }
- getPageAllData();
- //5.页面基本信息 end---------------------------------------->
- //6.设置seo数据 start---------------------------------------->
- //获取seo数据
- const setData = await requestDataPromise('/web/getWebsiteFootInfo', {
- method: 'GET',
- query: {},
- });
- if (setData.code == 200) {
- let seoTitle = setData.data.website_head.title;
- let seoDescription = setData.data.website_head.description;
- let seoKeywords = setData.data.website_head.keywords;
- let seoSuffix = setData.data.website_head.suffix;
- let seoName = setData.data.website_head.website_name;
- useSeoMeta({
- title: seoTitle + "_" + seoSuffix,
- meta: [
- { name: 'description', content: seoDescription + "_" + seoName + "_" + seoSuffix, tagPriority: 10 },
- { name: 'keywords', content: seoKeywords + "_" + seoName + "_" + seoSuffix, tagPriority: 10 },
- { name: 'viewport', content: "width=device-width,initial-scale=1,user-scalable=no" }
- ]
- });
- }
- //6.设置seo数据 start---------------------------------------->
- //7.官网新增 start---------------------------------------->
- //swiper焦点图start---------------------------------------->
- const imagelist = ref("")
- async function getModelData1() {
- const mkdata = await requestDataPromise('/web/getWebsiteArticlett', {
- method: 'GET',
- query: {
- 'imgnum': 10,
- 'textnum': 0,
- 'level': 2,
- 'placeid': 0,
- 'id': ''
- },
- });
- if (mkdata.code == 200) {
- imagelist.value = mkdata.data.img;
- } else {
-
- }
- }
- getModelData1()
- //使用swiper
- import { computed } from 'vue'
- import { Swiper, SwiperSlide } from 'swiper/vue'
- import { Autoplay, Navigation } from 'swiper/modules' // 增加 Navigation
- // 导入 Swiper 样式
- import 'swiper/css'
- import 'swiper/css/navigation' // 增加导航样式
- const props = defineProps({
- imagelist: {
- type: Array,
- default: () => []
- }
- })
- const emit = defineEmits(['slide-change'])
- const swiperCurrentIndex = ref(0)
- const swiperInstance = ref(null)
- // 使用哪些模块
- const modules = [Autoplay, Navigation] // 添加 Navigation
- // 响应式断点设置(可选)
- const breakpoints = computed(() => ({
- // 当屏幕宽度 >= 320px
- 320: {
- slidesPerView: 1,
- spaceBetween: 10
- },
- // 当屏幕宽度 >= 768px
- 768: {
- slidesPerView: 3,
- spaceBetween: 15
- },
- // 当屏幕宽度 >= 1024px
- 1024: {
- slidesPerView: 5,
- spaceBetween: 20
- },
- // 当屏幕宽度 >= 1440px
- 1440: {
- slidesPerView: 6,
- spaceBetween: 25
- }
- }))
- const swiperHandleSlideChange = (swiper) => {
- swiperCurrentIndex.value = swiper.activeIndex
- emit('swiperSlideChange', swiper.activeIndex)
- }
- const goToSlide = (index) => {
- console.log(index)
- if (swiperInstance.value) {
- swiperInstance.value.slideTo(index, 500) // 500ms 动画时间
- }
- }
- const onSwiper = (swiper) => {
- swiperInstance.value = swiper
- console.log('Swiper实例已初始化:', swiper)
- }
- // 如果需要手动控制自动播放
- const pauseAutoplay = () => {
- if (swiperInstance.value && swiperInstance.value.autoplay) {
- swiperInstance.value.autoplay.pause()
- }
- }
- const startAutoplay = () => {
- if (swiperInstance.value && swiperInstance.value.autoplay) {
- swiperInstance.value.autoplay.resume()
- }
- }
- //swiper焦点图 end---------------------------------------->
- //轮播图 start---------------------------------------->
- import { ElCarousel, ElCarouselItem } from 'element-plus'
- let currentIndex = ref(0)
- let handleIndicatorChange = (val) => {
- currentIndex.value = val
- }
- //轮播图 end---------------------------------------->
- //选项卡 start---------------------------------------->
- //1.首页顶部新闻-中央选项卡
- const indexTabs = ref(1)
- //2.首页中央新闻2-左侧选项卡
- const indexTabs2 = ref(1)
- //3.首页中央新闻2-右侧选项卡
- const indexTabs3 = ref(1)
- //3.首页中央新闻3-左侧选项卡
- const indexTabs4 = ref(1)
- //选项卡 end---------------------------------------->
- //7.官网新增 end---------------------------------------->
- </script>
- <style lang="less" scoped>
- @media screen and (min-width: 1401px) {
- //swiper轮播图 start---------------------------------------->
- .swiper-container {
- width: 100%;
- padding: 20PX 0;
- position: relative;
- max-width: 1400PX;
- margin: 0 auto;
- }
- .custom-swiper {
- width: 100%;
- height: 100%;
- padding: 10PX 5PX; //给两侧留出空间
- }
- .custom-swiper :deep(.swiper-wrapper) {
- align-items: stretch; //使所有幻灯片高度一致
- }
- .custom-swiper :deep(.swiper-slide) {
- height: auto;
- transition: transform 0.3s ease;
- }
- //悬停效果
- .custom-swiper :deep(.swiper-slide:hover) {
- transform: translateY(-5PX);
- z-index: 10;
- }
- .slide-link {
- display: block;
- text-decoration: none;
- color: inherit;
- height: 100%;
- width: 100%;
- }
- .image-container {
- position: relative;
- width: 100%;
- height: 118PX; //根据需求调整
- overflow: hidden;
- box-shadow: 0 4PX 12PX rgba(0, 0, 0, 0.1);
- transition: all 0.3s ease;
- background: #f5f5f5; //加载时的背景色
- }
- .image-container:hover {
- box-shadow: 0 8PX 24PX rgba(0, 0, 0, 0.15);
- }
- .slide-image {
- // width: 100%;
- // height: 100%;
- width: 264PX;
- height: 118PX;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .image-container:hover .slide-image {
- transform: scale(1.05);
- }
- .image-title {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- color: white;
- padding: 12PX 15PX;
- font-size: 14PX;
- line-height: 1.4;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: rgba(0, 0, 0, .6)
- }
- .custom-indicators {
- display: flex;
- justify-content: center;
- gap: 8PX;
- margin-top: 25PX;
- padding: 15PX 10PX;
- flex-wrap: wrap;
- background: rgba(255, 255, 255, 0.9);
- border-radius: 50PX;
- max-width: 90%;
- margin-left: auto;
- margin-right: auto;
- }
- .indicator-btn {
- width: 36PX;
- height: 36PX;
- border-radius: 50%;
- border: 2PX solid #e0e0e0;
- background: white;
- color: #333;
- cursor: pointer;
- transition: all 0.3s ease;
- font-size: 14PX;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- outline: none;
- }
- .indicator-btn:hover {
- background: #f0f9ff;
- border-color: #409eff;
- transform: scale(1.1);
- }
- .indicator-btn.active-indicator {
- background: #409eff;
- color: white;
- border-color: #409eff;
- box-shadow: 0 4PX 12PX rgba(64, 158, 255, 0.3);
- }
- //swiper加载动画
- .image-container:empty::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
- background-size: 200% 100%;
- animation: loading 1.5s infinite;
- border-radius: 12PX;
- }
- @keyframes loading {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
- }
- //swiper箭头颜色
- .custom-swiper :deep(.swiper-button-prev),
- .custom-swiper :deep(.swiper-button-next) {
- color: white !important; //箭头颜色改为白色
- }
- .custom-swiper :deep(.swiper-button-prev):after,
- .custom-swiper :deep(.swiper-button-next):after {
- color: white !important; //确保箭头图标也是白色
- }
- //swiper轮播图 end---------------------------------------->
- //轮播图 start---------------------------------------->
- .nuxt-swiper {
- width: 100%;
- height: 300PX;
- position: relative;
- img {
- width: 100%;
- height: 300PX;
- }
- span {
- display: inline-block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- padding-left: 20PX;
- box-sizing: border-box;
- position: absolute;
- bottom: 0;
- left: 0;
- font-family: Source Han Sans, Source Han Sans;
- font-size: 16PX;
- color: #FFFFFF;
- //background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
- background: rgba(0, 0, 0, .6);
- }
- }
- .el-carousel {
- // 左右箭头按钮
- .el-carousel__arrow--right :deep(.class-name),
- .el-carousel__arrow--left :deep(.class-name) {
- width: 68PX;
- height: 68PX;
- }
- //左右箭头图片
- /deep/.el-icon svg {
- height: 1em;
- width: 1em;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow {
- border-radius: 0;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow i {
- font-size: 68PX !important;
- }
- /deep/ .el-carousel__indicators {
- // 指示器
- left: unset;
- transform: unset;
- right: 41%;
- }
- /deep/ .el-carousel__button {
- // 指示器按钮
- width: 15PX;
- height: 15PX;
- border-radius: 50%;
- border: none;
- opacity: 1;
- background-color: #FFFFFF;
- bottom: 30PX;
- }
- /deep/ .is-active .el-carousel__button {
- // 指示器激活按钮
- background: #158d91;
- }
- /deep/.custom-indicators {
- position: absolute;
- bottom: 10PX;
- left: 50%;
- transform: translateX(-50%);
- }
- /deep/ .el-carousel__indicators {
- right: 3%;
- bottom: 10%;
- }
- /deep/ .el-carousel__arrow {
- top: 50%;
- }
- }
- //轮播图 end---------------------------------------->
- //第一层 start---------------------------------------->
- .index—layer-1 {
- width: 1400PX;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- .index—layer-1-left {
- width: 31%;
- border: 1PX solid #ccc;
- }
- .index-layer-1-middle {
- width: 31%;
- border: 1PX solid #ccc;
- box-sizing: border-box;
- padding: 0 10PX;
- padding-bottom: 5PX;
- .tabtlt {
- width: 100%;
- height: auto;
- outline: hidden;
- border-bottom: 1PX solid #f0f0f0;
- margin: 7PX 0 18PX;
- overflow: hidden;
- display: flex;
- align-self: center;
- justify-content: space-between;
- a {
- color: #337ab7;
- text-decoration: none;
- }
- div {
- width: 50%;
- text-align: center;
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- font-size: 20PX;
- color: #000;
- background: #f3f3f3;
- text-align: center;
- cursor: pointer;
- }
- div.intabtltbg {
- background: url(public/index/current.gif) no-repeat center bottom !important;
- }
- }
- .coninfoitem {
- width: 100%;
- overflow: hidden;
- margin: 0PX auto;
- >div {
- &.coninfoitem_img {
- height: 86PX;
- overflow: hidden;
- margin-bottom: 5PX;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- }
- h3 {
- line-height: 0;
- a {
- font-size: 13PX;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- overflow: hidden;
- }
- }
- img {
- width: 120PX;
- height: 86PX;
- float: left;
- margin-right: 11PX;
- }
- p {
- line-height: 0;
- a {
- color: #333;
- font-size: 13PX;
- line-height: 20PX;
- }
- }
- }
- .coninfoitem_title {
- width: 100%;
- height: 28PX;
- line-height: 28PX;
- overflow: hidden;
- position: relative;
- list-style-position: inside;
- color: #000;
- display: block;
- font-size: 13PX;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- .index-layer-1-right {
- width: 31%;
- border: 1PX solid #ccc;
- box-sizing: border-box;
- padding: 0 10PX;
- padding-bottom: 16PX;
- .imgtlt {
- width: 100%;
- height: 43PX;
- border-bottom: 1PX solid #e7e7e7;
- a {
- display: block;
- width: 92PX;
- height: 42PX;
- line-height: 42PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- border-bottom: 2PX solid #158d91;
- }
- }
- .con_img_list {
- display: flex;
- flex-wrap: wrap;
- a {
- width: 48%;
- float: left;
- overflow: hidden;
- height: 100PX;
- margin: 20PX auto 0;
- display: block;
- position: relative;
- img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .con_img_list_rgba {
- position: absolute;
- width: 100%;
- height: 22PX;
- line-height: 21PX;
- box-sizing: border-box;
- padding: 0PX 10PX;
- text-align: center;
- bottom: 0PX;
- left: 0PX;
- color: #fff;
- font-size: 16PX;
- z-index: 11;
- background: rgba(0, 0, 0, .6);
- display: block;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- }
- }
- //第一层 end---------------------------------------->
- //第二层 start---------------------------------------->
- .index—layer-2 {
- width: 1400PX;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- .index—layer-2-left,
- .index—layer-2-right {
- width: 49%;
- border: 1PX solid #ddd;
- height: auto;
- overflow: hidden;
- .index—layer-2-title {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- background: #fff;
- >div {
- &.active {
- background: #158d91;
- color: #fff;
- a {
- color: #fff;
- }
- }
- width: 118PX;
- height: 44PX;
- line-height: 44PX;
- background: #fff;
- text-align: center;
- color: #808080;
- font-size: 16PX;
- font-weight: bold;
- border-bottom: 2PX solid #158d91;
- a {
- font-size: 20PX;
- color: #808080;
- }
- }
- }
- .index-tabs2-top {
- background: #f8f8f8;
- padding: 20PX 20PX;
- box-sizing: border-box;
- display: flex;
- border-bottom: 1PX dashed #ddd;
- >a {
- margin-right: 11PX;
- img {
- display: block;
- width: 120PX;
- height: 86PX;
- }
- }
- h3 {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- overflow: hidden;
- a {
- font-size: 13PX;
- color: #333;
- font-weight: bold;
- }
- }
- p {
- width: 100%;
- height: 60PX;
- line-height: 20PX;
- overflow: hidden;
- a {
- color: #333;
- font-size: 13PX;
- }
- }
- }
- .index-tabs2-bottom {
- padding: 20PX;
- margin: 0;
- a {
- display: block;
- width: 100%;
- overflow: hidden;
- position: relative;
- list-style-position: inside;
- color: #333;
- line-height: 28PX;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- }
- //第二层 end---------------------------------------->
- //第三层 start---------------------------------------->
- .index—layer-3 {
- .index—layer-3-line {
- width: 1400PX;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 0 auto;
- box-sizing: border-box;
- //选项卡类型
- .index—layer-3-tabs-box {
- width: 31%;
- height: auto;
- border: 1PX solid #ddd;
- border-top: 2PX solid #158d91;
- margin: 1%;
- padding: 0 10PX;
- box-sizing: border-box;
- .index—layer-3-tabs-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1PX solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width: 87PX;
- height: 54PX;
- line-height: 55PX;
- overflow: hidden;
- float: left;
- margin-right: 10PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20PX;
- a {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- list-style-position: inside;
- font-size: 13PX;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- //常规类型
- .index—layer-3-news-box {
- width: 31%;
- height: auto;
- border: 1PX solid #ddd;
- border-top: 2PX solid #158d91;
- margin: 1%;
- padding: 0 10PX;
- box-sizing: border-box;
- .index—layer-3-news-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1PX solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width: 87PX;
- height: 54PX;
- line-height: 55PX;
- overflow: hidden;
- float: left;
- margin-right: 10PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20PX;
- a {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- list-style-position: inside;
- font-size: 13PX;
- color: #333;
- display: flex;
- align-items: center;
- justify-items: center;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- }
- .index—layer-3-news-body-title {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- margin: 20PX 0 14PX;
- padding-bottom: 20PX;
- border-bottom: 1PX dashed #e1e1e1;
- >div {
- &.news-body-left {
- margin-right: 11PX;
- img {
- display: block;
- width: 120PX;
- height: 86PX;
- }
- }
- &.news-body-right {
- >a {
- display: block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- font-size: 16PX;
- font-weight: bold;
- overflow: hidden;
- color: #000;
- text-decoration: none;
- }
- p {
- width: 100%;
- height: 46PX;
- line-height: 23PX;
- overflow: hidden;
- font-size: 14PX;
- color: #333;
- a {
- color: #333;
- }
- }
- }
- }
- }
- }
- //第三层 end---------------------------------------->
- //第四层 start---------------------------------------->
- .index-layer-4 {
- width: 1400PX;
- border: 1PX solid #ccc;
- border-radius: 20PX;
- padding: 10PX 20PX;
- box-sizing: border-box;
- margin: 20PX auto;
- .index-layer-4-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- border-bottom: 1PX solid #ccc;
- a {
- &:first-child {
- font-size: 22PX;
- color: #1476bd;
- }
- &:last-child {
- font-size: 16PX;
- color: #f00;
- border: none;
- float: right;
- }
- display: block;
- }
- }
- .index-layer-4-body {
- .post_nr {
- width: 100%;
- height: auto;
- margin: 20PX auto;
- border: 1PX solid #ccc;
- border-radius: 10PX;
- padding: 20PX !important;
- box-sizing: border-box;
- .name {
- display: block;
- width: 100%;
- height: auto;
- line-height: 40PX;
- font-size: 16PX;
- color: #333;
- }
- b {
- font-size: 17PX;
- margin: 0 10PX;
- }
- li {
- border-bottom: 1PX solid #ccc;
- padding-bottom: 15PX;
- margin-bottom: 10PX;
- box-sizing: border-box;
- p {
- margin: 0;
- height: auto;
- line-height: 25PX;
- font-size: 15PX;
- color: #000;
- &.hfnr {
- font-weight: bold;
- span {
- color: #f00;
- }
- }
- }
- }
- }
- }
- }
- //第四层 end---------------------------------------->
- }
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- //swiper轮播图 start---------------------------------------->
- .swiper-container {
- width: 100%;
- padding: 20PX 0;
- position: relative;
- margin: 0 auto;
- box-sizing: border-box;
- }
- .custom-swiper {
- width: 100%;
- height: 100%;
- padding: 10px 5px; //给两侧留出空间
- box-sizing: border-box;
- }
- .custom-swiper :deep(.swiper-wrapper) {
- align-items: stretch; //使所有幻灯片高度一致
- }
- .custom-swiper :deep(.swiper-slide) {
- height: auto;
- transition: transform 0.3s ease;
- }
- //悬停效果
- .custom-swiper :deep(.swiper-slide:hover) {
- transform: translateY(-5px);
- z-index: 10;
- }
- .slide-link {
- display: block;
- text-decoration: none;
- color: inherit;
- height: 100%;
- width: 100%;
- }
- .image-container {
- position: relative;
- width: 100%;
- height: 120PX; //根据需求调整
- overflow: hidden;
- box-shadow: 0 4PX 12PX rgba(0, 0, 0, 0.1);
- transition: all 0.3s ease;
- background: #f5f5f5; //加载时的背景色
- }
- .image-container:hover {
- box-shadow: 0 8PX 24PX rgba(0, 0, 0, 0.15);
- }
- .slide-image {
- // width: 100%;
- // height: 100%;
- width: 264PX;
- height: 118PX;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .image-container:hover .slide-image {
- transform: scale(1.05);
- }
- .image-title {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- color: white;
- padding: 12PX 15PX;
- font-size: 14PX;
- line-height: 1.4;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: rgba(0, 0, 0, .6)
- }
- .custom-indicators {
- display: flex;
- justify-content: center;
- gap: 8PX;
- margin-top: 25PX;
- padding: 15PX 10PX;
- flex-wrap: wrap;
- background: rgba(255, 255, 255, 0.9);
- border-radius: 50PX;
- max-width: 90%;
- margin-left: auto;
- margin-right: auto;
- }
- .indicator-btn {
- width: 36PX;
- height: 36PX;
- border-radius: 50%;
- border: 2PX solid #e0e0e0;
- background: white;
- color: #333;
- cursor: pointer;
- transition: all 0.3s ease;
- font-size: 14PX;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- outline: none;
- }
- .indicator-btn:hover {
- background: #f0f9ff;
- border-color: #409eff;
- transform: scale(1.1);
- }
- .indicator-btn.active-indicator {
- background: #409eff;
- color: white;
- border-color: #409eff;
- box-shadow: 0 4PX 12PX rgba(64, 158, 255, 0.3);
- }
- //swiper加载动画
- .image-container:empty::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
- background-size: 200% 100%;
- animation: loading 1.5s infinite;
- border-radius: 12PX;
- }
- @keyframes loading {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
- }
- //swiper箭头颜色
- .custom-swiper :deep(.swiper-button-prev),
- .custom-swiper :deep(.swiper-button-next) {
- color: white !important; //箭头颜色改为白色
- }
- .custom-swiper :deep(.swiper-button-prev):after,
- .custom-swiper :deep(.swiper-button-next):after {
- color: white !important; //确保箭头图标也是白色
- }
- //swiper轮播图 end---------------------------------------->
- //轮播图 start---------------------------------------->
- .nuxt-swiper {
- width: 100%;
- height: 300PX;
- position: relative;
- img {
- width: 100%;
- height: 100%;
- }
- span {
- display: inline-block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- padding: 0 10PX;
- box-sizing: border-box;
- position: absolute;
- bottom: 0;
- left: 0;
- font-family: Source Han Sans, Source Han Sans;
- font-size: 16PX;
- color: #FFFFFF;
- //background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
- background: rgba(0, 0, 0, .6);
- }
- }
- .el-carousel {
- // 左右箭头按钮
- .el-carousel__arrow--right :deep(.class-name),
- .el-carousel__arrow--left :deep(.class-name) {
- width: 68PX;
- height: 68PX;
- }
- //左右箭头图片
- /deep/.el-icon svg {
- height: 1em;
- width: 1em;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow {
- border-radius: 0;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow i {
- font-size: 68PX !important;
- }
- /deep/ .el-carousel__indicators {
- // 指示器
- left: unset;
- transform: unset;
- right: 41%;
- }
- /deep/ .el-carousel__button {
- // 指示器按钮
- width: 15PX;
- height: 15PX;
- border-radius: 50%;
- border: none;
- opacity: 1;
- background-color: #FFFFFF;
- bottom: 30PX;
- }
- /deep/ .is-active .el-carousel__button {
- // 指示器激活按钮
- background: #158d91;
- }
- /deep/.custom-indicators {
- position: absolute;
- bottom: 10PX;
- left: 50%;
- transform: translateX(-50%);
- }
- /deep/ .el-carousel__indicators {
- right: 3%;
- bottom: 10%;
- }
- /deep/ .el-carousel__arrow {
- top: 50%;
- }
- }
- //轮播图 end---------------------------------------->
- //第一层 start---------------------------------------->
- .index—layer-1 {
- width: 100%;
- height: auto;
- padding: 0px 10px;
- box-sizing: border-box;
- overflow: hidden;
- margin: 20PX auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- .index—layer-1-left {
- width: 31%;
- border: 1PX solid #ccc;
- }
- .index-layer-1-middle {
- width: 31%;
- border: 1PX solid #ccc;
- box-sizing: border-box;
- padding: 0 10PX;
- padding-bottom: 5PX;
- .tabtlt {
- width: 100%;
- height: auto;
- outline: hidden;
- border-bottom: 1PX solid #f0f0f0;
- margin: 7PX 0 18PX;
- overflow: hidden;
- display: flex;
- align-self: center;
- justify-content: space-between;
- a {
- color: #337ab7;
- text-decoration: none;
- }
- div {
- width: 50%;
- text-align: center;
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- font-size: 20PX;
- color: #000;
- background: #f3f3f3;
- text-align: center;
- cursor: pointer;
- }
- div.intabtltbg {
- background: url(public/index/current.gif) no-repeat center bottom !important;
- }
- }
- .coninfoitem {
- width: 100%;
- overflow: hidden;
- margin: 0PX auto;
- >div {
- &.coninfoitem_img {
- height: 86PX;
- overflow: hidden;
- margin-bottom: 5PX;
- display: flex;
- align-items: flex-start;
- }
- h3 {
- line-height: 26PX;
- a {
- font-size: 13PX;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- overflow: hidden;
- display: block;
- }
- }
- img {
- width: 120PX;
- height: 86PX;
- float: left;
- margin-right: 11PX;
- }
- p {
- line-height: 0;
- a {
- line-height: 20PX;
- color: #333;
- font-size: 13PX;
- text-indent: 2em;
- display: block;
- }
- }
- }
- .coninfoitem_title {
- width: 100%;
- height: 28PX;
- line-height: 28PX;
- overflow: hidden;
- position: relative;
- list-style-position: inside;
- color: #000;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- color: #666;
- }
- }
- }
- }
- .index-layer-1-right {
- width: 31%;
- border: 1PX solid #ccc;
- box-sizing: border-box;
- padding: 0 10PX;
- padding-bottom: 16PX;
- .imgtlt {
- width: 100%;
- height: 43PX;
- border-bottom: 1PX solid #e7e7e7;
- a {
- display: block;
- width: 92PX;
- height: 42PX;
- line-height: 42PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- border-bottom: 2PX solid #158d91;
- }
- }
- .con_img_list {
- display: flex;
- flex-wrap: wrap;
- a {
- width: 48%;
- float: left;
- overflow: hidden;
- height: 100PX;
- margin: 20PX auto 0;
- display: block;
- position: relative;
- img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .con_img_list_rgba {
- position: absolute;
- width: 100%;
- height: 22PX;
- line-height: 21PX;
- box-sizing: border-box;
- padding: 0PX 10PX;
- text-align: center;
- bottom: 0PX;
- left: 0PX;
- color: #fff;
- font-size: 16PX;
- z-index: 11;
- background: rgba(0, 0, 0, .6);
- display: block;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- }
- }
- //第一层 end---------------------------------------->
- //第二层 start---------------------------------------->
- .index—layer-2 {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- .index—layer-2-left,
- .index—layer-2-right {
- width: 49%;
- border: 1PX solid #ddd;
- height: auto;
- overflow: hidden;
- .index—layer-2-title {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- background: #fff;
- >div {
- &.active {
- background: #158d91;
- color: #fff;
- a {
- color: #fff;
- }
- }
- width: 118PX;
- height: 44PX;
- line-height: 44PX;
- background: #fff;
- text-align: center;
- color: #808080;
- font-size: 16PX;
- font-weight: bold;
- border-bottom: 2PX solid #158d91;
- a {
- font-size: 20PX;
- color: #808080;
- }
- }
- }
- .index-tabs2-top {
- background: #f8f8f8;
- padding: 20PX 20PX;
- box-sizing: border-box;
- display: flex;
- border-bottom: 1PX dashed #ddd;
- >a {
- margin-right: 11PX;
- img {
- display: block;
- width: 120PX;
- height: 86PX;
- }
- }
- h3 {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- overflow: hidden;
- a {
- font-size: 13PX;
- color: #333;
- font-weight: bold;
- }
- }
- p {
- width: 100%;
- height: 60PX;
- line-height: 20PX;
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- a {
- color: #333;
- font-size: 13PX;
- }
- }
- }
- .index-tabs2-bottom {
- padding: 20PX;
- margin: 0;
- a {
- display: block;
- width: 100%;
- height: 28PX;
- line-height: 28PX;
- color: #333;
- font-size: 13PX;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- }
- //第二层 end---------------------------------------->
- //第三层 start---------------------------------------->
- .index—layer-3 {
- .index—layer-3-line {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 0 auto;
- box-sizing: border-box;
- //选项卡类型
- .index—layer-3-tabs-box {
- width: 31%;
- height: auto;
- border: 1PX solid #ddd;
- border-top: 2PX solid #158d91;
- margin: 1%;
- padding: 0 10PX;
- box-sizing: border-box;
- .index—layer-3-tabs-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1PX solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width: 87PX;
- height: 54PX;
- line-height: 55PX;
- overflow: hidden;
- float: left;
- margin-right: 10PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20PX;
- a {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- list-style-position: inside;
- font-size: 13PX;
- color: #333;
- display: block;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 66%;
- }
- }
- }
- //常规类型
- .index—layer-3-news-box {
- width: 31%;
- height: auto;
- border: 1PX solid #ddd;
- border-top: 2PX solid #158d91;
- margin: 1%;
- padding: 0 10PX;
- box-sizing: border-box;
- .index—layer-3-news-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1PX solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width: 87PX;
- height: 54PX;
- line-height: 55PX;
- overflow: hidden;
- float: left;
- margin-right: 10PX;
- text-align: center;
- font-size: 20PX;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20PX;
- a {
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- list-style-position: inside;
- font-size: 13PX;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 28PX;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 14PX;
- }
- span:nth-child(2) {
- width: 30%;
- height: 28PX;
- text-align: right;
- display: block;
- font-size: 12PX;
- }
- }
- }
- }
- }
- .index—layer-3-news-body-title {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- margin: 20PX 0 14PX;
- padding-bottom: 20PX;
- border-bottom: 1PX dashed #e1e1e1;
- >div {
- &.news-body-left {
- margin-right: 11PX;
- img {
- display: block;
- width: 120PX;
- height: 86PX;
- }
- }
- &.news-body-right {
- >a {
- display: block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- font-size: 16PX;
- font-weight: bold;
- overflow: hidden;
- color: #000;
- text-decoration: none;
- }
- p {
- width: 100%;
- height: 46PX;
- line-height: 23PX;
- overflow: hidden;
- font-size: 14PX;
- color: #333;
- a {
- color: #333;
- }
- }
- }
- }
- }
- }
- //第三层 end---------------------------------------->
- //第四层 start---------------------------------------->
- .index-layer-4 {
- width: 100%;
- border: 1PX solid #ccc;
- border-radius: 20PX;
- padding: 10PX 20PX;
- box-sizing: border-box;
- margin: 20PX auto;
- .index-layer-4-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- border-bottom: 1PX solid #ccc;
- a {
- &:first-child {
- font-size: 22PX;
- color: #1476bd;
- }
- &:last-child {
- font-size: 16PX;
- color: #f00;
- border: none;
- float: right;
- }
- display: block;
- }
- }
- .index-layer-4-body {
- .post_nr {
- width: 100%;
- height: auto;
- margin: 20PX auto;
- border: 1PX solid #ccc;
- border-radius: 10PX;
- padding: 20PX !important;
- box-sizing: border-box;
- .name {
- display: block;
- width: 100%;
- height: auto;
- line-height: 40PX;
- font-size: 16PX;
- color: #333;
- }
- b {
- font-size: 17PX;
- margin: 0 10PX;
- }
- li {
- border-bottom: 1PX solid #ccc;
- padding-bottom: 15PX;
- margin-bottom: 10PX;
- box-sizing: border-box;
- p {
- margin: 0;
- height: auto;
- line-height: 25PX;
- font-size: 15PX;
- color: #000;
- &.hfnr {
- font-weight: bold;
- span {
- color: #f00;
- }
- }
- }
- }
- }
- }
- }
- //第四层 end---------------------------------------->
- .index—layer-2 {
- padding: 0px 10px;
- box-sizing: border-box;
- }
- .index-layer-4 {
- margin: 0px auto;
- width: 98%;
- }
- }
- @media screen and (max-width: 800px) {
- //swiper轮播图 start---------------------------------------->
- .swiper-container {
- width: 100%;
- padding: 20px 0;
- position: relative;
- max-width: 1400px;
- margin: 0 auto;
- display: none;
- }
- .custom-swiper {
- width: 100%;
- height: 100%;
- padding: 10px 5px; //给两侧留出空间
- }
- .custom-swiper :deep(.swiper-wrapper) {
- align-items: stretch; //使所有幻灯片高度一致
- }
- .custom-swiper :deep(.swiper-slide) {
- height: auto;
- transition: transform 0.3s ease;
- }
- //悬停效果
- .custom-swiper :deep(.swiper-slide:hover) {
- transform: translateY(-5px);
- z-index: 10;
- }
- .slide-link {
- display: block;
- text-decoration: none;
- color: inherit;
- height: 100%;
- width: 100%;
- }
- .image-container {
- position: relative;
- width: 100%;
- height: 118px; //根据需求调整
- overflow: hidden;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- transition: all 0.3s ease;
- background: #f5f5f5; //加载时的背景色
- }
- .image-container:hover {
- box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
- }
- .slide-image {
- // width: 100%;
- // height: 100%;
- width: 264px;
- height: 118px;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .image-container:hover .slide-image {
- transform: scale(1.05);
- }
- .image-title {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- color: white;
- padding: 12px 15px;
- font-size: 14px;
- line-height: 1.4;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: rgba(0, 0, 0, .6)
- }
- .custom-indicators {
- display: flex;
- justify-content: center;
- gap: 8px;
- margin-top: 25px;
- padding: 15px 10px;
- flex-wrap: wrap;
- background: rgba(255, 255, 255, 0.9);
- border-radius: 50px;
- max-width: 90%;
- margin-left: auto;
- margin-right: auto;
- }
- .indicator-btn {
- width: 36px;
- height: 36px;
- border-radius: 50%;
- border: 2px solid #e0e0e0;
- background: white;
- color: #333;
- cursor: pointer;
- transition: all 0.3s ease;
- font-size: 14px;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- outline: none;
- }
- .indicator-btn:hover {
- background: #f0f9ff;
- border-color: #409eff;
- transform: scale(1.1);
- }
- .indicator-btn.active-indicator {
- background: #409eff;
- color: white;
- border-color: #409eff;
- box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
- }
- //swiper加载动画
- .image-container:empty::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
- background-size: 200% 100%;
- animation: loading 1.5s infinite;
- border-radius: 12px;
- }
- @keyframes loading {
- 0% {
- background-position: 200% 0;
- }
- 100% {
- background-position: -200% 0;
- }
- }
- //swiper箭头颜色
- .custom-swiper :deep(.swiper-button-prev),
- .custom-swiper :deep(.swiper-button-next) {
- color: white !important; //箭头颜色改为白色
- }
- .custom-swiper :deep(.swiper-button-prev):after,
- .custom-swiper :deep(.swiper-button-next):after {
- color: white !important; //确保箭头图标也是白色
- }
- //swiper轮播图 end---------------------------------------->
- //轮播图 start---------------------------------------->
- .nuxt-swiper {
- width: 100%;
- height: 330px;
- position: relative;
- img {
- width: 100%;
- height: 100%;
- }
- span {
- display: inline-block;
- width: 100%;
- height: 55px;
- line-height: 55px;
- padding-left: 20px;
- box-sizing: border-box;
- position: absolute;
- bottom: 0;
- left: 0;
- font-family: Source Han Sans, Source Han Sans;
- font-size: 20px;
- color: #FFFFFF;
- //background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
- background: rgba(0, 0, 0, .6);
- }
- }
- .el-carousel {
- // 左右箭头按钮
- .el-carousel__arrow--right :deep(.class-name),
- .el-carousel__arrow--left :deep(.class-name) {
- width: 68px;
- height: 68px;
- }
- //左右箭头图片
- /deep/.el-icon svg {
- height: 1em;
- width: 1em;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow {
- border-radius: 0;
- background-color: transparent;
- }
- /deep/.el-carousel__arrow i {
- font-size: 68px !important;
- }
- /deep/ .el-carousel__indicators {
- // 指示器
- left: unset;
- transform: unset;
- right: 41%;
- }
- /deep/ .el-carousel__button {
- // 指示器按钮
- width: 15px;
- height: 15px;
- border-radius: 50%;
- border: none;
- opacity: 1;
- background-color: #FFFFFF;
- bottom: 30px;
- }
- /deep/ .is-active .el-carousel__button {
- // 指示器激活按钮
- background: #158d91;
- }
- /deep/.custom-indicators {
- position: absolute;
- bottom: 10px;
- left: 50%;
- transform: translateX(-50%);
- }
- /deep/ .el-carousel__indicators {
- right: 3%;
- bottom: 14%;
- }
- /deep/ .el-carousel__arrow {
- top: 50%;
- }
- /deep/ .el-carousel__container {
- height: 330px;
- }
- }
- //轮播图 end---------------------------------------->
- //第一层 start---------------------------------------->
- .index—layer-1 {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20px auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- flex-wrap: wrap;
- box-sizing: border-box;
- padding: 0 10px;
- .index—layer-1-left {
- width: 100%;
- margin: 10px 0;
- border: 1px solid #ccc;
- }
- .index-layer-1-middle {
- width: 100%;
- border: 1px solid #ccc;
- box-sizing: border-box;
- padding: 0 10px;
- padding-bottom: 5px;
- margin: 10px 0;
- .tabtlt {
- width: 100%;
- height: auto;
- outline: hidden;
- border-bottom: 1px solid #f0f0f0;
- margin: 7px 0 18px;
- overflow: hidden;
- display: flex;
- align-self: center;
- justify-content: space-between;
- a {
- color: #337ab7;
- text-decoration: none;
- }
- div {
- width: 50%;
- text-align: center;
- width: 100%;
- height: 50px;
- line-height: 50px;
- font-size: 28px;
- color: #000;
- background: #f3f3f3;
- text-align: center;
- cursor: pointer;
- }
- div.intabtltbg {
- background: url(public/index/current.gif) no-repeat center bottom !important;
- }
- }
- .coninfoitem {
- width: 100%;
- overflow: hidden;
- margin: 0px auto;
- >div {
- &.coninfoitem_img {
- height: 220px;
- overflow: hidden;
- margin-bottom: 5px;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- }
- h3 {
- width: 100%;
- height: 40px;
- line-height: 40px;
- line-height: 0;
- overflow: hidden;
- a {
- font-size: 30px;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 44px;
- line-height: 44px;
- overflow: hidden;
- display: block;
- }
- }
- img {
- width: 440px;
- height: 220px;
- float: left;
- margin-right: 11px;
- }
- p {
- a {
- color: #333;
- font-size: 26px;
- height: 90px;
- line-height: 30px;
- margin-top: 11px;
- display: block;
- text-indent: 2em;
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
- }
- }
- .coninfoitem_title {
- width: 100%;
- height: 70px;
- line-height: 70px;
- color: #333;
- display: block;
- font-weight: normal;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 50px;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 28px;
- }
- span:nth-child(2) {
- width: 30%;
- height: 50px;
- text-align: right;
- display: block;
- font-size: 24px;
- color: #666;
- }
- }
- }
- }
- .index-layer-1-right {
- width: 100%;
- border: 1px solid #ccc;
- box-sizing: border-box;
- padding-bottom: 16px;
- padding: 10px;
- .imgtlt {
- width: 100%;
- height: 43px;
- border-bottom: 1px solid #e7e7e7;
- a {
- display: block;
- width: auto;
- float: left;
- height: 42px;
- line-height: 42px;
- text-align: center;
- font-size: 26px;
- color: #333;
- border-bottom: 2px solid #158d91;
- }
- }
- .con_img_list {
- display: flex;
- flex-wrap: wrap;
- a {
- width: 48%;
- float: left;
- overflow: hidden;
- height: 200px;
- margin: 20px auto 0;
- display: block;
- position: relative;
- img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .con_img_list_rgba {
- position: absolute;
- width: 100%;
- height: 33px;
- line-height: 33px;
- box-sizing: border-box;
- padding: 0 10px;
- text-align: center;
- bottom: 0px;
- left: 0px;
- color: #fff;
- font-size: 20px;
- z-index: 11;
- background: rgba(0, 0, 0, .6);
- display: block;
- word-break: keep-all;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- }
- }
- //第一层 end---------------------------------------->
- //第二层 start---------------------------------------->
- .index—layer-2 {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20px auto;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- flex-wrap: wrap;
- padding: 0 10px;
- box-sizing: border-box;
- .index—layer-2-left,
- .index—layer-2-right {
- width: 100%;
- border: 1px solid #ddd;
- height: auto;
- overflow: hidden;
- margin: 10px 0;
- .index—layer-2-title {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- background: #fff;
- >div {
- &.active {
- background: #158d91;
- color: #fff;
- a {
- color: #fff;
- }
- }
- width:auto;
- float:left;
- height: 55px;
- line-height: 55px;
- background: #fff;
- text-align: center;
- color: #808080;
- font-size: 26px;
- padding:0px 18px;
- font-weight: bold;
- border-bottom: 2px solid #158d91;
- a {
- font-size: 20px;
- color: #808080;
- }
- }
- }
- .index-tabs2-top {
- background: #f8f8f8;
- padding: 20px 20px;
- box-sizing: border-box;
- display: flex;
- border-bottom: 1px dashed #ddd;
- >a {
- margin-right: 11px;
- img {
- display: block;
- width: 330px;
- height: 220px;
- }
- }
- h3 {
- width: 100%;
- height: 40px;
- line-height: 40px;
- line-height: 0;
- overflow: hidden;
- a {
- font-size: 30px;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 44px;
- line-height: 44px;
- overflow: hidden;
- display: block;
- }
- }
- p {
- a {
- color: #333;
- font-size: 26px;
- height: 90px;
- line-height: 30px;
- margin-top: 11px;
- display: block;
- text-indent: 2em;
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
- }
- }
- .index-tabs2-bottom {
- padding: 20px;
- margin: 0;
- box-sizing: border-box;
- a {
- display: block;
- width: 100%;
- height: 50px;
- line-height: 50px;
- overflow: hidden;
- position: relative;
- list-style-position: inside;
- color: #333;
- font-size: 32px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 50px;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 28px;
- }
- span:nth-child(2) {
- width: 30%;
- height: 50px;
- text-align: right;
- display: block;
- font-size: 24px;
- color: #666;
- }
- }
- }
- }
- }
- //第二层 end---------------------------------------->
- //第三层 start---------------------------------------->
- .index—layer-3 {
- .index—layer-3-line {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 0 auto;
- box-sizing: border-box;
- flex-wrap: wrap;
- padding: 0 10px;
- //选项卡类型
- .index—layer-3-tabs-box {
- width: 100%;
- height: auto;
- border: 1px solid #ddd;
- border-top: 2px solid #158d91;
- margin: 1%;
- padding: 0 10px;
- box-sizing: border-box;
- margin: 10px 0;
- .index—layer-3-tabs-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1px solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width: 87px;
- height: 54px;
- line-height: 55px;
- overflow: hidden;
- float: left;
- margin-right: 10px;
- text-align: center;
- font-size: 20px;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20px;
- a {
- width: 100%;
- height: 70px;
- line-height: 70px;
- font-size: 26px;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 50px;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 28px;
- }
- span:nth-child(2) {
- width: 30%;
- height: 50px;
- text-align: right;
- display: block;
- font-size: 24px;
- color: #666;
- }
- }
- }
- }
- //常规类型
- .index—layer-3-news-box {
- width: 100%;
- height: auto;
- border: 1px solid #ddd;
- border-top: 2px solid #158d91;
- margin: 1%;
- padding: 0 10px;
- box-sizing: border-box;
- margin: 10px 0;
- .index—layer-3-news-box-title {
- display: flex;
- align-items: center;
- width: 100%;
- border-bottom: 1px solid #f0f0f0;
- >div {
- &.active {
- background: url(../public/index/current2.png) no-repeat center bottom;
- }
- width:auto;
- float:left;
- height: 54px;
- line-height: 55px;
- overflow: hidden;
- float: left;
- margin-right: 10px;
- text-align: center;
- font-size: 20px;
- color: #333;
- font-weight: bold;
- a {
- color: #333;
- }
- }
- }
- .index—layer-3-news-body-main {
- margin-bottom: 20px;
- a {
- width: 100%;
- height: 70px;
- line-height: 70px;
- font-size: 26px;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: space-between;
- span:nth-child(1) {
- width: 70%;
- height: 50px;
- text-align: left;
- overflow: hidden;
- display: block;
- font-size: 28px;
- }
- span:nth-child(2) {
- width: 30%;
- height: 50px;
- text-align: right;
- display: block;
- font-size: 24px;
- color: #666;
- }
- }
- }
- }
- }
- .index—layer-3-news-body-title {
- overflow: hidden;
- align-items: center;
- justify-content: flex-start;
- margin: 20px 0 14px;
- padding-bottom: 20px;
- border-bottom: 1px dashed #e1e1e1;
- >div {
- &.news-body-left {
- float: left;
- margin-right: 11px;
- img {
- display: block;
- width: 330px;
- height: 220px;
- }
- }
- &.news-body-right {
- width: 350px;
- float: right;
- >a {
- height: 40px;
- line-height: 40px;
- line-height: 0;
- overflow: hidden;
- font-size: 30px;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 44px;
- line-height: 44px;
- overflow: hidden;
- display: block;
- }
- p {
- a {
- color: #333;
- font-size: 26px;
- height: 90px;
- line-height: 30px;
- margin-top: 11px;
- display: block;
- text-indent: 2em;
- overflow: hidden;
- display: -webkit-box !important;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
- }
- }
- }
- }
- }
- //第三层 end---------------------------------------->
- //第四层 start---------------------------------------->
- .index-layer-4 {
- width: 100%;
- border: 1px solid #ccc;
- border-radius: 20px;
- padding: 10px 20px;
- box-sizing: border-box;
- display: none;
- .index-layer-4-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #ccc;
- a {
- &:first-child {
- font-size: 22px;
- color: #1476bd;
- }
- &:last-child {
- font-size: 16px;
- color: #f00;
- border: none;
- float: right;
- }
- display: block;
- }
- }
- .index-layer-4-body {
- .post_nr {
- width: 100%;
- height: auto;
- margin: 20px auto;
- border: 1px solid #ccc;
- border-radius: 10px;
- padding: 20px !important;
- box-sizing: border-box;
- .name {
- display: block;
- width: 100%;
- height: auto;
- line-height: 40px;
- font-size: 16px;
- color: #333;
- }
- b {
- font-size: 17px;
- margin: 0 10px;
- }
- li {
- border-bottom: 1px solid #ccc;
- padding-bottom: 15px;
- margin-bottom: 10px;
- box-sizing: border-box;
- p {
- margin: 0;
- height: auto;
- line-height: 25px;
- font-size: 15px;
- color: #000;
- &.hfnr {
- font-weight: bold;
- span {
- color: #f00;
- }
- }
- }
- }
- }
- }
- }
- //第四层 end---------------------------------------->
- }
- </style>
|