| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641 |
- <template>
- <div>
- <!--logo-->
- <HomePageHead></HomePageHead>
- <!--导航-->
- <HomePageNavigation></HomePageNavigation>
- <main class="index_main">
- <div class="index_1">
- <div class="new_banner">
- <swiper :modules="modules" :slides-per-view="1" :space-between="0" navigation
- :pagination="{ clickable: true }" :scrollbar="{ draggable: true }" class="mySwiper mySwiper1"
- :loop="true" :autoplay="{
- delay: 3333,
- disableOnInteraction: false,
- }">
- <!-- 幻灯片 1 -->
- <swiper-slide v-for="(per_obj, per_index) in 5">
- <NuxtLink to="/">
- <div class="new_imgCon">
- <img src="/public/index/news.png" title="全区各级法院深入基层宣讲党的二十届四中全会精神" data-isloaded="1">
- </div>
- <span>全区各级法院深入基层宣讲党的二十届四中全会精神</span>
- </NuxtLink>
- </swiper-slide>
- </swiper>
- </div>
- <div class="new_rightCon">
- <div class="new_Contlt clearfix">
- <h3>
- <NuxtLink to="/">法制资讯</NuxtLink>
- </h3>
- </div>
- <ul class="new_newList">
- <li v-for="(per_obj, per_index) in 9">
- <NuxtLink to="/" title="全区各级法院深入基层宣讲党的二十届四中全会精神">全区各级法院深入基层宣讲党的二十届四中全会精神</NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- <div class="index_2">
- <div class="index_2_in new_conview">
- <div class="new_swiper_tlt">
- <span>滚 动 新 闻</span>
- </div>
- <div class="new_swiper_con" id="main_js">
- <div class="new_swiper_con_long" id="demo_js">
- <div class="new_swiper_con_in" id="demo1_js">
- <div class="new_swiper_per" v-for="(per_obj, per_index) in 11">
- <NuxtLink to="/">
- <div class="">
- <img src="/public/index/news.png" title="全区各级法院深入基层宣讲党的二十届四中全会精神"
- data-isloaded="1">
- </div>
- <span>中央军委举行晋升上将军衔仪式 习近平颁发命令状并向晋衔的军官表示祝贺</span>
- </NuxtLink>
- </div>
- </div>
- <div class="new_swiper_con_in" id="demo2_js"></div>
- </div>
- </div>
- </div>
- </div>
- </main>
- <div class="index_3 new_conview_bg">
- <main class="index_main index_3_in">
- <div class="new_con_item">
- <div class="new_con_tlt1">
- <NuxtLink to="/">各地动态</NuxtLink>
- </div>
- <ul>
- <li v-for="(per_obj, per_index) in 8">
- <NuxtLink to="/">走进基层 | 牦牛踩踏起纷争 多元共治暖民心</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_con_item">
- <div class="new_con_tlt1">
- <NuxtLink to="/">政策法规</NuxtLink>
- </div>
- <ul>
- <li v-for="(per_obj, per_index) in 8">
- <NuxtLink to="/">李强签署国务院令 公布《商事调解条例》</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_con_item">
- <div class="new_con_tlt1">
- <NuxtLink to="/">政策解读</NuxtLink>
- </div>
- <ul>
- <li v-for="(per_obj, per_index) in 8">
- <NuxtLink to="/">辟谣!2026年私发“带颜色”信息就违法?真相是这样</NuxtLink>
- </li>
- </ul>
- </div>
- </main>
- </div>
- <main class="index_main">
- <div class="index_4">
- <div class="new_conleft">
- <div class="new_conleft_tlt">
- <NuxtLink to="/">重点播报</NuxtLink>
- </div>
- <div class="new_con_box" v-for="(per_obj, per_index) in 3">
- <NuxtLink to="/">
- <div class="new_img_box">
- <img src="http://img.fazdyzx.org.cn/202511/00bb6ae6ebf4040.png"
- data-src="http://img.fazdyzx.org.cn/202511/00bb6ae6ebf4040.png"
- title="习近平会见主要国际经济组织负责人" data-isloaded="1">
- </div>
- <h3>习近平会见主要国际经济组织负责人</h3>
- <p> 新华社北京12月10日电 12月10日上午,国家主席习近平在北京人民大会堂会见来华出席“1+10”对话会的主要国际经济组织负责人。 习近平同主要国际经济组织负责人合影留念,感......
- </p>
- </NuxtLink>
- </div>
- </div>
- <div class="new_conright">
- <ul class="new_tabtlt">
- <li :class="{ new_tabtlt_select: activeIndex === 0 }" @mouseenter="activeIndex = 0">
- <NuxtLink to="/">今日说法</NuxtLink>
- </li>
- <li :class="{ new_tabtlt_select: activeIndex === 1 }" @mouseenter="activeIndex = 1">
- <NuxtLink to="/">法制宣传</NuxtLink>
- </li>
- </ul>
- <div class="new_tab_con">
- <div class="new_tab_item" v-show="activeIndex === 0">
- <div class="new_tab_img">
- <NuxtLink to="/">
- <img src="http://img.fazdyzx.org.cn/202407/3889f335d70e972.jpg"
- data-src="http://img.fazdyzx.org.cn/202407/3889f335d70e972.jpg"
- title="《吉林省实施〈中华人民共和国反恐怖主义法〉办法》新闻发布会实录" data-isloaded="1">
- <span>《吉林省实施〈中华人民共和国反恐怖主义法〉办法》新...</span>
- </NuxtLink>
- </div>
- <ul class="new_tab_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">法治日报:“立审执破”一体化的渝水实践:畅通企业“生”与“死...</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_tab_item" v-show="activeIndex === 1">
- <div class="new_tab_img">
- <NuxtLink to="/">
- <img src="/public/index/1.jpg"
- data-src="http://img.fazdyzx.org.cn/202408/5037fab176ee44.jpg"
- title="严查领导干部违规插手干预 推动压实招标人责任" data-isloaded="1">
- <span>严查领导干部违规插手干预 推动压实招标人责任</span>
- </NuxtLink>
- </div>
- <ul class="new_tab_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">【“枫桥式人民法庭”创建】这封来自当事人的感谢信中这样写道</NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <div class="index_5">
- <div class="new_conleft_tlt">
- <NuxtLink to="/">法治建设</NuxtLink>
- </div>
- <ul class="new_con_card">
- <li v-for="(per_obj, per_index) in 3">
- <NuxtLink to="/">
- <div class="new_img_box2">
- <img src="http://img.fazdyzx.org.cn/202407/6ee566db94555.jpg"
- data-src="http://img.fazdyzx.org.cn/202407/6ee566db94555.jpg"
- title="广东举办首届行政审判行政复议同堂培训班" data-isloaded="1">
- </div>
- <h3>广东举办首届行政审判行政复议同堂培训班</h3>
- <p> 7月9日,广东省高级人民法院、省司法厅在广州联合举办首届行政审判行政复议同堂培训班,广东高院党组......</p>
- </NuxtLink>
- </li>
- </ul>
- </div>
- </main>
- <div class="index_6 new_conview_bg">
- <main class="index_main index_6_in">
- <div class="new_conview">
- <div class="new_conitems">
- <div class="new_itemstlt">
- <NuxtLink to="/">政务公开</NuxtLink>
- </div>
- <div class="new_itemsimg">
- <NuxtLink to="/">
- <img src="http://img.fazdyzx.org.cn/202511/f84a1d61ef700b9.png"
- data-src="http://img.fazdyzx.org.cn/202511/f84a1d61ef700b9.png"
- title="最高检调研组在陕西榆林调研" data-isloaded="1">
- <span>最高检调研组在陕西榆林调研</span>
- </NuxtLink>
- </div>
- <ul class="new_items_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">杨晋柏在海口专题调研禁毒工作时指出 全力打造共建共治的禁毒工</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_conitems">
- <div class="new_itemstlt">
- <NuxtLink to="/">内参纪要</NuxtLink>
- </div>
- <div class="new_itemsimg">
- <NuxtLink to="/">
- <img src="http://img.fazdyzx.org.cn/202407/32b174570ba75ba.jpg"
- data-src="http://img.fazdyzx.org.cn/202407/32b174570ba75ba.jpg"
- title="中央军委举行荣誉称号颁授仪式 习近平向获得荣誉称号的单位颁授奖旗" data-isloaded="1">
- <span>中央军委举行荣誉称号颁授仪式 习近平向获得荣誉称号...</span>
- </NuxtLink>
- </div>
- <ul class="new_items_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">省司法厅召开学习宣传贯彻《中华人民共和国仲裁法》座谈会</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_conitems">
- <div class="new_itemstlt">
- <NuxtLink to="/">执法在线</NuxtLink>
- </div>
- <div class="new_itemsimg">
- <NuxtLink to="/">
- <img src="http://img.fazdyzx.org.cn/202407/f420d3d6483cf0c.jpg"
- data-src="http://img.fazdyzx.org.cn/202407/f420d3d6483cf0c.jpg"
- title="【实战大练兵】三所:以“四训”促“四强”,扎实推进实战大练兵走深走实" data-isloaded="1">
- <span>【实战大练兵】三所:以“四训”促“四强”,扎实推进...</span>
- </NuxtLink>
- </div>
- <ul class="new_items_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">忠县法院召开百日执行攻坚暨涉民生执行案件“2026·迅雷行动</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_conitems">
- <div class="new_itemstlt">
- <NuxtLink to="/">法制技术</NuxtLink>
- </div>
- <div class="new_itemsimg">
- <NuxtLink to="/">
- <img src="http://img.fazdyzx.org.cn/202405/a95fa57c32d5780.jpg"
- data-src="http://img.fazdyzx.org.cn/202405/a95fa57c32d5780.jpg"
- title="参与数据合规治理 推动数字检察高质量发展" data-isloaded="1">
- <span>参与数据合规治理 推动数字检察高质量发展</span>
- </NuxtLink>
- </div>
- <ul class="new_items_list">
- <li v-for="(per_obj, per_index) in 4">
- <NuxtLink to="/">镜头丨持续提升基层纪检监察监督质效</NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- <div class="new_conview index_6_in_foot">
- <div class="new_con_item1">
- <div class="new_item1_tlt">
- <NuxtLink to="/">监督调查</NuxtLink>
- </div>
- <ul class="new_items1_list">
- <li v-for="(per_obj, per_index) in 6">
- <NuxtLink to="/">国家级调研成果20篇、省级调研成果44篇 许昌法院高质量调研</NuxtLink>
- </li>
- </ul>
- </div>
- <div class="new_con_item1">
- <div class="new_item1_tlt">
- <NuxtLink to="/">法制时评</NuxtLink>
- </div>
- <ul class="new_items1_list">
- <li v-for="(per_obj, per_index) in 6">
- <NuxtLink to="/">百色:开展2025“红城聚势 反诈同行” 宣传活动</NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- </main>
- </div>
- <main class="index_main">
- <div class="index_7">
- <div class="new_wylytlt">
- <NuxtLink to="/">网友留言</NuxtLink>
- <NuxtLink to="/">我要留言</NuxtLink>
- </div>
- <div>
- <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>
- <li>
- <span class="name">李先生:<b>我是郑州市调研员,能去商丘工作吗?</b> 2025-12-15 17:53:13</span>
- <p class="nr">内容:我是郑州市调研员,能去商丘工作吗?
- </p>
- <p class="hfnr">
- <span style="color:#f00;">回复:</span>不可以跨区域工作。
- </p>
- </li>
- <li>
- <span class="name">冯:<b>你们中心的调研员申请有年龄限制吗?</b> 2025-12-11 18:15:35</span>
- <p class="nr">内容:调研员申请有年龄限制吗?</p>
- <p class="hfnr">
- <span style="color:#f00;">回复:</span>调研员申请年龄在25-65之间均可。
- </p>
- </li>
- <li>
- <span class="name">汪先生:<b>因为一些原因没能及时去政府单位,介绍信时间过期了还能用吗?</b> 2025-12-03 15:30:46</span>
- <p class="nr">内容:我因为一些原因没能及时去政府单位,导致介绍信时间过期了还能用吗?</p>
- <p class="hfnr">
- <span style="color:#f00;">回复:</span>
- 不能在进行使用,介绍信使用必须在开具有限期内使用。如果是中心,有空白介绍信的需重新开具,过期介绍信作废存档;如果是个人,重新向总部申请开具新的介绍信,并将已过期介绍信寄回总部换领新的介绍信。
- </p>
- </li>
- </ul>
- <ul class="post_nr liuyan">
- </ul>
- </div>
- </div>
- </main>
- <!--首页顶部滚动新闻-->
- <div class="swiper-container" v-if="imagelist && imagelist.length > 0">
- <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 imagelist" :key="index">
- <NuxtLink :to="`/${item.pinyin}/${item.id}.html`" :title="item.title" class="slide-link"
- :data-index="index">
- <div class="image-container">
-
- <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>
- <!--底部-->
- <HomeFoot></HomeFoot>
- </div>
- </template>
- <script setup>
- // 选项卡
- const activeIndex = ref(0);
- //页面是否已经加载完毕
- 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 radio1 = ref(''); //单选
- const check1 = ref([]); //多选
- const isDisabled = ref(false);//是否禁用提交按钮
- const isRadio = ref(true);//是否渲染单选
- const userSurId = ref('');//投票属于哪一篇文章
- const userChoice = ref('');//用于判断用户选择了其他选项以后,输入的值
- const userIsChoice = ref('');//用于判断其他选项目前是什么值
- const showUserChoice = ref(false);//是否显示其他输入框
- const websiteSurveyData = ref([]);//投票结果
- //3.2获得投票列表
- let voteList = ref([]);
- //3.2当用户选择了选项,判断是否展示其他输入框
- const handleRadioChange = (value) => {
- if (value == userIsChoice.value) {
- showUserChoice.value = true;
- } else {
- showUserChoice.value = false;
- }
- }
- const handleCheckboxChange = (value) => {
- if (value.includes(userIsChoice.value)) {
- showUserChoice.value = true;
- } else {
- showUserChoice.value = false;
- }
- }
- //3.2发起投票
- async function addWebsiteSurvey() {
- //判断当前是单选还是多选
- console.log(isRadio.value)
- if (isRadio.value) {
- console.log("用户单选!")
- if (radio1.value != '') {
- //先判断一下是否使用了其他选项
- if (showUserChoice.value) {
- if (userChoice.value != '') {
- //文章id
- // console.log(userSurId.value)
- // 用户输入的值
- // console.log(userChoice.value)
- //如果使用了其他,其他的选项需要增加进去
- const ChoiceData = await requestDataPromise('/web/addWebsiteSurveyOption', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,//投票的新闻id
- 'choice_name': userChoice.value,//投票的选项id
- }
- });
- if (ChoiceData.code == 200) {
- //提交完其他选项以后,再正式发起投票
- const mkData = await requestDataPromise('/web/addWebsiteSurveyVote', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,
- 'choice_id': ChoiceData.data
- }
- });
- if (mkData.code == 200) {
- ElMessage.success('投票成功!')
- //把投票结果显示到页面上 禁用投票按钮
- isDisabled.value = true;
- websiteSurveyData.value = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- let data = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- for (let item of data.data) {
- for (let i of data.choice) {
- if (item.id == i) {
- console.log(item.id)
- item.status = 1;
- }
- }
- }
- websiteSurveyData.value = data;
- } else {
- ElMessage.error(mkData.message)
- }
- } else {
- ElMessage.error('其他投票失败!')
- }
- } else {
- ElMessage.error('请输入选项内容!')
- }
- } else {
- //如果没选择其他,直接提交选择的内容
- const mkData = await requestDataPromise('/web/addWebsiteSurveyVote', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,
- 'choice_id': radio1.value
- }
- });
- if (mkData.code == 200) {
- ElMessage.success('投票成功!')
- //把投票结果显示到页面上 禁用投票按钮
- isDisabled.value = true;
- let data = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- for (let item of data.data) {
- for (let i of data.choice) {
- if (item.id == i) {
- item.status = 1;
- }
- }
- }
- websiteSurveyData.value = data;
- } else {
- ElMessage.error('投票失败!')
- }
- }
- } else {
- ElMessage.error('请选择一个选项')
- }
- } else {
- console.log("多选!")
- //多选
- if (check1.value != []) {
- //先判断一下是否使用了其他选项
- if (showUserChoice.value) {
- if (userChoice.value != '') {
- //判断用户是否只选择了一个其他
- if (check1.value.length == 1) {
- const ChoiceData = await requestDataPromise('/web/addWebsiteSurveyOption', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,//投票的新闻id
- 'choice_name': userChoice.value,//用户输入的其他选项文字
- }
- });
- if (ChoiceData.code == 200) {
- //提交完其他选项以后,再正式发起投票
- const mkData = await requestDataPromise('/web/addWebsiteSurveyVote', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,
- 'choice_id': ChoiceData.data
- }
- });
- if (mkData.code == 200) {
- ElMessage.success('投票成功!')
- //把投票结果显示到页面上 禁用投票按钮
- isDisabled.value = true;
- websiteSurveyData.value = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- let data = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- for (let item of data.data) {
- for (let i of data.choice) {
- if (item.id == i) {
- console.log(item.id)
- item.status = 1;
- }
- }
- }
- websiteSurveyData.value = data;
- } else {
- ElMessage.error(mkData.message)
- }
- } else {
- ElMessage.error('其他投票失败!')
- }
- } else {
- //用户选择了除了其他以外,还包括别的选项
- const ChoiceData = await requestDataPromise('/web/addWebsiteSurveyOption', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,//投票的新闻id
- 'choice_name': userChoice.value,//用户输入的其他选项文字
- }
- });
- if (ChoiceData.code == 200) {
- let data = check1.value;
- //找到多选的数组,把其他默认值给替换掉
- for (let i = 0; i < data.length; i++) {
- if (data[i] == userIsChoice.value) {
- data[i] = ChoiceData.data;
- }
- }
- let jsonArray = JSON.stringify(data);
- //提交完其他选项以后,再正式发起投票
- const mkData = await requestDataPromise('/web/addWebsiteSurveyVote', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,
- 'choice_id': jsonArray
- }
- });
- if (mkData.code == 200) {
- ElMessage.success('投票成功!')
- //把投票结果显示到页面上 禁用投票按钮
- isDisabled.value = true;
- websiteSurveyData.value = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- let data = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- for (let item of data.data) {
- for (let i of data.choice) {
- if (item.id == i) {
- //console.log(item.id)
- item.status = 1;
- }
- }
- }
- websiteSurveyData.value = data;
- } else {
- ElMessage.error(mkData.message)
- }
- } else {
- ElMessage.error('其他投票失败!')
- }
- }
- } else {
- ElMessage.error('请输入选项内容!')
- }
- } else {
- let jsonArray = JSON.stringify(check1.value);
- //如果没选择其他,直接提交选择的内容
- const mkData = await requestHome('/web/addWebsiteSurveyVote', {
- method: 'GET',
- query: {
- 'sur_id': userSurId.value,
- 'choice_id': jsonArray
- }
- });
- if (mkData.code == 200) {
- ElMessage.success('投票成功!')
- //把投票结果显示到页面上 禁用投票按钮
- isDisabled.value = true;
- websiteSurveyData.value = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- let data = mkData.data;
- //遍历一下,把用户选中的那个设置status为1
- for (let item of data.data) {
- for (let i of data.choice) {
- if (item.id == i) {
- console.log(item.id)
- item.status = 1;
- }
- }
- }
- websiteSurveyData.value = data;
- } else {
- ElMessage.error('投票失败!')
- }
- }
- } else {
- ElMessage.error('请选择一个选项')
- }
- }
- }
- //3.投票 end---------------------------------------->
- //4.广告 start---------------------------------------->
- //获得所有广告
- let adImg1 = ref({})
- let adImg2 = ref({})
- let adImg3 = ref({})
- let adImg4 = ref({})
- onMounted(async () => {
- //从客户端获取行政职能部门 加快打开速度//从客户端获取行政职能部门 加快打开速度
- const { $webUrl, $CwebUrl } = useNuxtApp();
- //从客户端启动投票
- //获得投票列表
- let voteUrl = `${$webUrl}/web/getWebsiteSurvey`
- const responseVote = await fetch(voteUrl, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const voteData = await responseVote.json();
- if (voteData.code == 200) {
- voteList.value = voteData.data;
- //判断显示单选还是多选
- //survey_type 0是单选 1是多选
- if (voteData.data[0].survey_type == 0) {
- isRadio.value = true;
- } else {
- isRadio.value = false;
- }
- for (let item of voteData.data) {
- //如果含有其他
- if (item.is_other == 1) {
- userIsChoice.value = item.id;
- }
- }
- //用户投票属于哪一篇文章
- userSurId.value = voteData.data[0].sur_id;
- } else {
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- // console.log("错误位置:首页投票")
- // console.log("后端错误反馈:",voteData.message)
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- //从客户端启动广告
- //广告1
- let url = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_index_0001`
- const responseAd1 = await fetch(url, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd1 = await responseAd1.json();
- adImg1.value = resultAd1.data[0];
- //广告2
- let url2 = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_index_0002`
- const responseAd2 = await fetch(url2, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd2 = await responseAd2.json();
- adImg2.value = resultAd2.data[0];
- //广告3
- let url3 = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_index_0003`
- const responseAd3 = await fetch(url3, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd3 = await responseAd3.json();
- adImg3.value = resultAd3.data[0];
- //广告4
- let url4 = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_index_0004`
- const responseAd4 = await fetch(url4, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd4 = await responseAd4.json();
- adImg4.value = resultAd4.data[0];
- // js跑马灯
- const main = document.getElementById("main_js");
- const demo = document.getElementById("demo_js");
- const demo1 = document.getElementById("demo1_js");
- const demo2 = document.getElementById("demo2_js");
- const speed = 22; //数值越大滚动速度越慢
- demo2.innerHTML = demo1.innerHTML;
- function Marquee() {
- if (demo2.offsetWidth - main.scrollLeft <= 0) { main.scrollLeft -= demo1.offsetWidth }
- else { main.scrollLeft++ }
- }
- var MyMar = setInterval(Marquee, speed);
- demo.onmouseover = function () {
- clearInterval(MyMar)
- }
- demo.onmouseout = function () {
- MyMar = setInterval(Marquee, speed)
- }
- })
- //4.交互方法 end---------------------------------------->
- //5.页面基本信息 start---------------------------------------->
- //5.1 导航信息
- const pageData = ref([
- // { cid: "", title: "", data: [] ,children_count:""},
- ]);
- //5.2 模块数据
- //注意前置变量 在nuxt3的ssr模式中,并不存在变量提升。
- //模块1
- const boxData1 = ref([])
- const boxData1data2 = ref([])
- //模块2
- const boxData2 = ref([]);
- //模块3 - 该数据已经在模块中请求
- //const boxData3 = ref([]);
- //模块4
- const boxData4 = ref([]);
- //模块5
- const boxData5 = ref([]);
- const boxData5data2 = ref([]);
- //模块6
- const boxData6 = ref([]);
- //模块7
- const boxData7 = ref([]);
- //模块8
- const boxData8 = ref([]);
- const boxData88 = ref([]);
- //模块9 模块10 切换
- const tabsData1 = ref(1)
- //模块9
- const boxData9 = ref([]);
- const boxData9data2 = ref([]);
- //模块10
- const boxData10 = ref([]);
- const boxData10data2 = ref([]);
- //模块11
- const boxData11 = ref([]);
- const boxData11data2 = ref([]);
- //模块12 模块13 切换
- const tabsData2 = ref(1)
- //模块12
- const boxData12 = ref([]);
- //模块13 - 该模块只有一个入口
- const boxData13 = ref([]);
- //模块14 模块15 切换
- const tabsData3 = ref(1)
- //模块14 - 该模块含有子导航
- const boxData14 = ref([]);
- const boxData14data2 = ref([]);
- const boxData14menu = ref([]);
- const boxData14childpinyin = ref([]);
- const boxData14mainData = ref([]);
- //模块15
- const boxData15 = ref([]);
- const boxData15data2 = ref([]);
- const boxData15menu = ref([]);
- const boxData15childpinyin = ref([]);
- const boxData15mainData = ref([]);
- //模块16 模块17 切换
- const tabsData4 = ref(1)
- //模块16 - 该模块含有子导航
- const boxData16 = ref([]);
- const boxData16data2 = ref([]);
- const boxData16menu = ref([]);
- const boxData16childpinyin = ref([]);
- const boxData16mainData = ref([]);
- //模块17 - 政策法规 本来这个是模块3 原来是单独放到一个模块中的,现在提出来了
- const boxData17 = ref({})
- //3.2获得导航数据
- 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
- };
- //主体渲染 第一层
- //新农村11
- if (navigateData.data[index].category_id == 11) { pageData.value[0] = data }
- //农民工317
- if (navigateData.data[index].category_id == 317) { pageData.value[1] = data }
- //第二层
- //政策法规1
- if (navigateData.data[index].category_id == 2) { pageData.value[2] = data }
- //三农之窗2
- if (navigateData.data[index].category_id == 1) { pageData.value[3] = data }
- //第三层
- //区域经济5
- if (navigateData.data[index].category_id == 5) { pageData.value[4] = data }
- //三农投资6
- if (navigateData.data[index].category_id == 12) { pageData.value[5] = data }
- //农贸信息13
- if (navigateData.data[index].category_id == 13) { pageData.value[6] = data }
- //书刊信息24三农调查28
- if (navigateData.data[index].category_id == 28) { pageData.value[7] = data }
- //第四层
- //三农科教14
- if (navigateData.data[index].category_id == 14) { pageData.value[8] = data }
- //文化生活15
- if (navigateData.data[index].category_id == 15) { pageData.value[9] = data }
- //三农服务27
- if (navigateData.data[index].category_id == 27) { pageData.value[10] = data }
- //第五层
- //三农探索16
- if (navigateData.data[index].category_id == 16) { pageData.value[11] = data }
- //三农人物18
- if (navigateData.data[index].category_id == 18) { pageData.value[12] = data }
- //第六层
- //农资购销21
- if (navigateData.data[index].category_id == 21) { pageData.value[13] = data }
- //农产购销153
- if (navigateData.data[index].category_id == 153) { pageData.value[14] = data }
- //第七层
- //打假维权26
- if (navigateData.data[index].category_id == 26) { pageData.value[15] = data }
- }
- } else {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:首页导航池")
- console.log("后端错误反馈:", navigateData.message)
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- } catch (error) {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log("错误位置:首页导航渲染阶段")
- console.log("错误:导航池渲染执行接口出错!请检查首页的14的模块的具体执行方法!")
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- let getJson = [
- { "parent": "11,2,8", "child": "" },//模块1新农村
- { "parent": "317,0,8", "child": "" },//模块2农民工
- { "parent": "1,0,5", "child": "" },//模块4三农之窗
- { "parent": "5,1,1", "child": "" },//模块5区域经济
- { "parent": "12,0,3", "child": "" },//模块6三农投资
- { "parent": "13,0,4", "child": "" },//模块7农贸信息
- { "parent": "28,2,7", "child": "" },//模块8书刊信息=三农调查
- { "parent": "14,2,8", "child": "" },//模块9三农科教
- { "parent": "15,2,8", "child": "" },//模块10文化生活
- { "parent": "27,2,4", "child": "" },//模块11三农服务27
- { "parent": "16,0,14", "child": "" },//模块12三农探索16
- { "parent": "18,0,14", "child": "" },//模块13三农人物18
- { "parent": "21,2,8", "child": "188,0,5" },//模块14农资购销
- { "parent": "153,2,8", "child": "258,0,5" },//模块15农产购销
- { "parent": "26,4,8", "child": "191,0,5" },//模块16打假维权
- { "parent": "2,4,8", "child": "" },//模块3政策法规
- ]
- 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].textnum;
- //模块4三农之窗
- boxData4.value = mkdata.data[2].textnum;
- //模块5区域经济
- boxData5.value = mkdata.data[3].imgnum;
- boxData5data2.value = mkdata.data[3].textnum;
- //模块6三农投资
- boxData6.value = mkdata.data[4].textnum;
- //模块7农贸信息
- boxData7.value = mkdata.data[5].textnum;
- //模块8书刊信息
- boxData8.value = mkdata.data[6].imgnum;
- boxData88.value = mkdata.data[6].textnum;
- //模块9三农科教
- boxData9.value = mkdata.data[7].imgnum;
- boxData9data2.value = mkdata.data[7].textnum;
- //模块10文化生活
- boxData10.value = mkdata.data[8].imgnum;
- boxData10data2.value = mkdata.data[8].textnum;
- //模块11三农服务
- boxData11.value = mkdata.data[9].imgnum;
- boxData11data2.value = mkdata.data[9].textnum;
- //模块12三农探索
- boxData12.value = mkdata.data[10].textnum;
- //模块13三农人物
- boxData13.value = mkdata.data[11].textnum;
- //模块14农资购销 该栏目含有子导航
- boxData14.value = mkdata.data[12].imgnum;
- boxData14data2.value = mkdata.data[12].textnum;
- boxData14menu.value = mkdata.data[12].child.all_childcat;
- boxData14childpinyin.value = mkdata.data[12].child.pinyin;
- boxData14mainData.value = mkdata.data[12].child.textnum;
- //模块14农产购销
- boxData15.value = mkdata.data[13].imgnum;
- boxData15data2.value = mkdata.data[13].textnum;
- boxData15menu.value = mkdata.data[13].child.all_childcat;
- boxData15childpinyin.value = mkdata.data[13].child.pinyin;
- boxData15mainData.value = mkdata.data[13].child.textnum;
- //模块15打假维权
- boxData16.value = mkdata.data[14].imgnum;
- boxData16data2.value = mkdata.data[14].textnum;
- boxData16menu.value = mkdata.data[14].child.all_childcat;
- boxData16childpinyin.value = mkdata.data[14].child.pinyin;
- boxData16mainData.value = mkdata.data[14].child.textnum;
- //模块17政策法规
- boxData17.value = mkdata.data[15];
- } 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" }
- ]
- });
- } else {
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- // console.log("错误位置:设置首页SEO数据")
- // console.log("后端错误反馈:",setData.message)
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- //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 {
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- // console.log("错误位置:获取首页轮播图")
- // console.log("后端错误反馈:",mkdata.message)
- // console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- }
- }
- getModelData1()
- //使用swiper
- import { computed } from 'vue'
- // Swiper12.x的导入方式
- 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: 0;
- 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: 80PX; //根据需求调整
- 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-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: 100%;
- 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;
- }
- 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: 18PX;
- overflow: hidden;
- 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---------------------------------------->
- }
- @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: 220PX;
- 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%;
- }
- /deep/ .el-carousel__container {
- height: 220PX;
- }
- }
- //轮播图 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: 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: 120PX;
- overflow: hidden;
- margin-bottom: 5PX;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- }
- h3 {
- line-height: 0;
- a {
- font-size: 30px;
- color: #333;
- font-weight: bold;
- width: 100%;
- height: 26PX;
- line-height: 26PX;
- overflow: hidden;
- display: block;
- }
- }
- img {
- width: 130PX;
- height: 120PX;
- float: left;
- margin-right: 11PX;
- }
- p {
- line-height: 0;
- a {
- color: #333;
- font-size: 30px;
- line-height: 30PX;
- display: block;
- text-indent: 2em;
- }
- }
- }
- .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: 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: 0 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;
- 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: 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: 130PX;
- height: 120PX;
- }
- }
- h3 {
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- line-height: 0;
- overflow: hidden;
- 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: 60PX;
- line-height: 20PX;
- overflow: hidden;
- a {
- color: #333;
- font-size: 13PX;
- }
- }
- }
- .index-tabs2-bottom {
- padding: 20PX;
- margin: 0;
- box-sizing: border-box;
- a {
- display: block;
- width: 100%;
- height: 28PX;
- line-height: 28PX;
- 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: 26PX;
- line-height: 26PX;
- font-size: 13PX;
- 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: 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;
- font-size: 13PX;
- 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 {
- 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;
- 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---------------------------------------->
- }
- .index—layer-1 {
- display: none;
- }
- .index—layer-2 {
- display: none;
- }
- .index—layer-3 {
- display: none;
- }
- .index—layer-4 {
- display: none;
- }
- .index_main {
- width: 1400PX;
- margin: 0px auto;
- overflow: hidden;
- display: block;
- }
- .index_1 {
- overflow: hidden;
- margin: 20PX auto;
- }
- .new_rightCon {
- width: 40%;
- height: auto;
- overflow: hidden;
- float: right;
- background: #fff;
- padding: 10PX;
- border: 1PX solid #ccc;
- border-top: 3PX solid #1642ff;
- box-sizing: border-box;
- }
- .new_Contlt {
- width: 100%;
- height: 50PX;
- border-bottom: 1PX solid #ccc;
- }
- .new_Contlt h3 {
- text-align: center;
- margin: 0 10PX;
- padding: 0 20PX;
- float: left;
- height: 50PX;
- line-height: 50PX;
- text-align: center;
- font-weight: normal;
- }
- .new_Contlt a {
- font-size: 24PX;
- color: #0049ee;
- }
- .new_newList {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin-top: 10PX;
- }
- .new_newList li {
- width: 100%;
- height: 45PX;
- line-height: 45PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- list-style: none;
- }
- .new_newList li a {
- font-size: 16PX;
- color: #747474;
- }
- .new_con_tlt {
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- border-bottom: 2PX solid #cccccc;
- padding: 0 10PX;
- }
- .new_con_tlt a {
- font-size: 22PX;
- color: #0b7000;
- font-weight: bold;
- }
- .new_banner {
- width: 58%;
- height: auto;
- overflow: hidden;
- float: left;
- }
- .mySwiper1 {
- position: relative;
- }
- .mySwiper1 .swiper-slide {
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .mySwiper1 .swiper-slide .new_imgCon {
- width: 100%;
- height: 490PX;
- overflow: hidden;
- }
- .mySwiper1 .swiper-slide .new_imgCon img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .mySwiper1 .swiper-slide span {
- display: block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- background: rgba(0, 0, 0, .7);
- color: #fff;
- font-size: 20PX;
- padding: 0 20PX;
- position: absolute;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- }
- .mySwiper1 .swiper-button-white {
- width: 50PX;
- height: 50PX;
- border: 100%;
- text-align: center;
- line-height: 50PX;
- font-size: 30PX;
- color: #fff;
- }
- .mySwiper1 .swiper-button-next {
- background: url(../images/right.png) no-repeat;
- background-size: 100%
- }
- .mySwiper1 .swiper-button-prev {
- background: url(../images/left.png) no-repeat;
- background-size: 100%
- }
- .new_banner:deep(.swiper-button-prev) {
- width: 50PX;
- height: 50PX;
- background: url(public/index/left.png);
- background-size: 100% 100%;
- }
- .new_banner:deep(.swiper-button-next) {
- width: 50PX;
- height: 50PX;
- background: url(public/index/right.png);
- background-size: 100% 100%;
- }
- .new_banner:deep(.swiper-navigation-icon) {
- display: none;
- }
- .index_2 {}
- .index_2_in {}
- /*2*/
- .new_content {
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .index_2_in {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- border: 1PX solid #ccc;
- }
- .new_swiper_tlt {
- width: 14%;
- height: auto;
- overflow: hidden;
- float: left;
- text-align: center;
- padding: 40PX;
- line-height: 70PX;
- background: url(public/index/bg1.png) no-repeat;
- box-sizing: border-box;
- }
- .new_swiper_tlt span {
- font-size: 40PX;
- color: #fff;
- }
- .new_imgCon1 {
- width: 100%;
- height: 180PX;
- overflow: hidden;
- }
- .new_imgCon1 img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .mySwiper2 .swiper-slide span {
- display: block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #333;
- box-sizing: border-box;
- }
- .new_swiper_con {
- width: 86%;
- height: auto;
- overflow: hidden;
- float: right;
- height: 240PX;
- }
- .new_swiper_con_long {
- width: 999999%;
- }
- .new_swiper_con_in {
- float: left;
- height: 220PX;
- margin-top: 10PX;
- overflow: hidden;
- }
- .new_swiper_per {
- float: left;
- height: 100%;
- width: 270PX;
- margin: 0PX 12PX;
- }
- .new_swiper_per img {
- display: block;
- width: 100%;
- height: 180PX;
- }
- .new_swiper_per a {
- display: block;
- width: 100%;
- height: 100%;
- }
- .new_swiper_per span {
- display: block;
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #333;
- }
- /*3*/
- .index_3 {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 0 auto;
- max-width: 1920PX;
- padding: 10PX 0;
- }
- .new_conview_bg {
- background: #f1f1f1;
- box-sizing: border-box;
- border-top: solid 1PX #f1f1f1;
- border-bottom: solid 1PX #f1f1f1;
- }
- .new_con_item {
- width: 32%;
- height: auto;
- overflow: hidden;
- padding: 10PX;
- background: #fff;
- float: left;
- box-sizing: border-box;
- }
- .new_con_item:nth-child(2) {
- margin: 0 1.9%;
- }
- .new_con_tlt1 {
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .new_con_tlt1 a {
- float: left;
- height: 50PX;
- line-height: 50PX;
- border-bottom: 2PX solid #ccc;
- font-size: 22PX;
- color: #1642ff;
- }
- .new_con_item ul {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 10PX 0;
- }
- .new_con_item ul li {
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #333;
- }
- .new_con_item ul li a {
- font-style: 18PX;
- color: #333;
- }
- /*4*/
- .index_4 {
- overflow: hidden;
- margin: 10PX auto;
- }
- .new_conleft {
- width: 65%;
- height: auto;
- overflow: hidden;
- float: left;
- border: 1PX solid #ccc;
- padding: 0 20PX;
- box-sizing: border-box;
- }
- .new_conleft_tlt {
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- border-bottom: 1PX solid #ccc;
- }
- .new_conleft_tlt a {
- font-size: 22PX;
- color: #1642ff;
- }
- .new_con_box {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- background: #f1f1f1;
- }
- .new_img_box {
- width: 33%;
- height: 160PX;
- overflow: hidden;
- float: left;
- margin-right: 20PX;
- }
- .new_img_box img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .new_con_box h3 {
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #333;
- margin-top: 10PX;
- padding-right: 10PX;
- }
- .new_con_box p {
- height: 90PX;
- line-height: 30PX;
- overflow: hidden;
- font-size: 16PX;
- color: #777;
- margin: 0;
- padding-right: 10PX;
- }
- .new_conright {
- width: 33%;
- height: auto;
- overflow: hidden;
- float: right;
- background: #fff;
- }
- .new_tabtlt {
- width: 100%;
- height: auto;
- overflow: hidden;
- background: #fff;
- }
- .new_tabtlt li {
- float: left;
- padding: 0 20PX;
- background: #f1f1f1;
- height: 50PX;
- line-height: 50PX;
- width: 50%;
- text-align: center;
- box-sizing: border-box;
- }
- .new_tabtlt li a {
- font-size: 22PX;
- color: #333;
- }
- .new_tabtlt li.new_tabtlt_select {
- background: #1642ff;
- }
- .new_tabtlt li.new_tabtlt_select a {
- color: #fff;
- }
- .new_tab_con {
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .new_tab_item {
- width: 100%;
- height: auto;
- overflow: hidden;
- box-sizing: border-box;
- padding: 0 20PX;
- border: 1PX solid #ccc;
- border-top: 2PX solid #1642ff;
- }
- .new_tab_img {
- width: 100%;
- height: 300PX;
- margin: 20PX 0;
- overflow: hidden;
- position: relative;
- }
- .new_tab_img img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .new_tab_img span {
- display: block;
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #fff;
- background: rgba(0, 0, 0, .5);
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 0 10PX;
- box-sizing: border-box;
- }
- .new_tab_list {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin-bottom: 20PX;
- }
- .new_tab_list li {
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .new_tab_list li a {
- font-size: 18PX;
- color: #333;
- }
- /*5*/
- .index_5 {
- margin: 10PX auto;
- }
- .new_con_card {
- width: 100%;
- height: auto;
- overflow: hidden;
- margin: 20PX auto;
- }
- .new_con_card li {
- width: 32%;
- height: auto;
- overflow: hidden;
- border-bottom: 1PX solid #ccc;
- float: left;
- }
- .new_con_card li:nth-child(2) {
- margin: 0 2%;
- }
- .new_img_box2 {
- width: 100%;
- height: 230PX;
- overflow: hidden;
- }
- .new_img_box2 img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .new_con_card li h3 {
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #333;
- font-weight: bold;
- }
- .new_con_card li p {
- width: 100%;
- height: 90PX;
- line-height: 30PX;
- overflow: hidden;
- font-size: 16PX;
- color: #777;
- margin-bottom: 10PX;
- }
- /*6*/
- .index_6 {}
- .index_6_in {
- overflow: hidden;
- margin: 20PX auto;
- }
- .new_conitems {
- width: 24%;
- height: auto;
- overflow: hidden;
- float: left;
- margin-right: 1.1%;
- border: 1PX solid #ccc;
- }
- .new_conitems:last-child {
- margin-right: 0;
- }
- .new_itemstlt {
- width: 100%;
- height: 50PX;
- line-height: 50PX;
- overflow: hidden;
- text-align: center;
- border-bottom: 1PX solid #ccc;
- }
- .new_itemstlt a {
- font-size: 22PX;
- color: #1642ff;
- }
- .new_itemsimg {
- width: 90%;
- height: 170PX;
- overflow: hidden;
- margin: 20PX auto;
- position: relative;
- }
- .new_itemsimg span {
- display: block;
- width: 100%;
- height: 30PX;
- line-height: 30PX;
- overflow: hidden;
- box-sizing: border-box;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18PX;
- color: #fff;
- background: rgba(0, 0, 0, .5);
- position: absolute;
- bottom: 0;
- left: 0;
- padding: 0 10PX;
- }
- .new_itemsimg img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .new_items_list {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 20PX;
- margin-bottom: 20PX;
- box-sizing: border-box;
- }
- .new_items_list li {
- width: 100%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .new_items_list li a {
- font-size: 18PX;
- color: #333;
- }
- .new_con_item1 {
- width: 49.3%;
- height: auto;
- overflow: hidden;
- float: left;
- background: #fff;
- }
- .new_con_item1:nth-child(2) {
- float: right;
- }
- .new_item1_tlt {
- width: 100%;
- height: 25PX;
- line-height: 21PX;
- overflow: hidden;
- margin: 20PX auto;
- text-align: center;
- position: relative;
- }
- .new_item1_tlt a {
- font-size: 22PX;
- color: #1642ff;
- }
- .new_item1_tlt:before {
- content: '';
- display: inline-block;
- width: 100PX;
- height: 1PX;
- background: #1642ff;
- margin: 0 10PX;
- position: absolute;
- left: 170PX;
- top: 12PX;
- }
- .new_item1_tlt:after {
- content: '';
- display: inline-block;
- width: 100PX;
- height: 1PX;
- background: #1642ff;
- margin: 0 10PX;
- position: absolute;
- right: 170PX;
- top: 12PX;
- }
- .new_items1_list {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 0 20PX 20PX;
- box-sizing: border-box;
- }
- .new_items1_list li {
- width: 49%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- float: left;
- }
- .new_items1_list li:nth-child(even) {
- float: right;
- }
- .new_items1_list li a {
- font-size: 18PX;
- color: #333;
- }
- .index_6_in_foot {
- margin-top: 20PX;
- }
- .index_6_in>div {
- overflow: hidden;
- }
- /*7*/
- .index_7 {
- margin: 20PX auto;
- }
- .new_wylytlt {
- width: 100%;
- height: 50PX;
- overflow: hidden;
- background: #efefef;
- padding: 0 20PX;
- box-sizing: border-box;
- }
- .new_wylytlt a:nth-child(1) {
- float: left;
- height: 40PX;
- line-height: 40PX;
- margin-top: 10PX;
- background: #fff;
- border-top-left-radius: 10PX;
- border-top-right-radius: 10PX;
- padding: 0 30PX;
- font-size: 20PX;
- color: #0e28e6;
- font-weight: bold;
- }
- .new_wylytlt a:nth-child(2) {
- float: right;
- font-size: 18PX;
- color: #d91519;
- font-weight: bold;
- float: right;
- height: 50PX;
- line-height: 50PX;
- }
- .new_lyitem {
- width: 100%;
- height: auto;
- overflow: hidden;
- padding: 30PX;
- box-sizing: border-box;
- }
- .new_lyitem li {
- width: 48%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- float: left;
- border-bottom: 1PX solid #ccc;
- padding: 0 20PX;
- box-sizing: border-box;
- }
- .new_lyitem li:nth-child(even) {
- float: right;
- }
- .new_lyitem li a {
- float: left;
- width: 60%;
- height: 40PX;
- line-height: 40PX;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 16PX;
- color: #333;
- }
- .new_lyitem li span {
- float: right;
- font-size: 16PX;
- color: #6b6b6b;
- text-align: right;
- }
- .blue {
- background: #0e6ebe;
- color: #fff;
- padding: 10PX;
- }
- .post_nr {
- width: 100%;
- height: auto;
- margin: 20PX auto;
- border: 1PX solid #ccc;
- border-radius: 10PX;
- padding: 20PX !important;
- box-sizing: border-box;
- }
- .post_nr .name {
- display: block;
- width: 100%;
- height: auto;
- line-height: 40PX;
- font-size: 16PX;
- color: #333;
- }
- .post_nr .name b {
- font-size: 17PX;
- margin: 0 10PX;
- }
- .post_nr li p {
- margin: 0;
- height: auto;
- line-height: 25PX;
- font-size: 15PX;
- color: #000;
- }
- .post_nr li p.hfnr {
- font-weight: bold;
- }
- .post_nr li p.hfnr span {
- color: #f00;
- }
- .liuyan li {
- border-bottom: 1px solid #ccc;
- padding-bottom: 15px;
- margin-bottom: 10px;
- }
- .swiper-container {
- display: none;
- }
- @media screen and (min-width: 1401px) {}
- @media screen and (max-width: 1400px) {
- .index_main {
- width: 100%;
- margin: 0px auto;
- box-sizing: border-box;
- padding: 0px 20px;
- }
- .mySwiper1 .swiper-slide .new_imgCon {
- height: 266px;
- }
- }
- @media screen and (min-width: 801px) and (max-width: 1400px) {
- .new_rightCon {
- padding: 7px;
- }
- .new_Contlt {
- height: 27px;
- }
- .new_Contlt h3 {
- margin: 0 7px;
- padding: 0 12px;
- height: 26px;
- line-height: 26px;
- }
- .new_Contlt a {
- font-size: 14px;
- }
- .new_newList {
- margin-top: 7px;
- }
- .new_newList li {
- height: 24px;
- line-height: 24px;
- }
- .new_newList li a {
- font-size: 10px;
- }
- .new_con_tlt {
- height: 22px;
- line-height: 22px;
- padding: 0 7px;
- }
- .new_con_tlt a {
- font-size: 13px;
- }
- .mySwiper1 .swiper-slide span {
- height: 33px;
- line-height: 33px;
- font-size: 10px;
- padding: 0 10px;
- }
- .new_conitems {
- margin-right: .9%;
- }
- .new_item1_tlt:before {
- width: 0PX;
- }
- .new_item1_tlt:after {
- width: 0PX;
- }
- .new_swiper_con {
- float: none;
- width: auto;
- }
- .new_swiper_tlt {
- background-size: 100% 100%;
- min-width: 173PX;
- }
- }
- @media screen and (max-width: 900px) {
- .search-box .search-left-box .no-result-box .no-result-content .no-result-title {
- margin-top: 133PX;
- }
- }
- @media screen and (max-width: 800px) {
- .new_banner {
- float: none;
- width: 100%;
- }
- .new_rightCon {
- float: none;
- width: 100%;
- margin-top: 11PX;
- }
- .mySwiper1 .swiper-slide .new_imgCon {
- height: 400px;
- }
- .new_conleft {
- width: 100%;
- float: none;
- }
- .new_conright {
- width: 100%;
- float: none;
- }
- .new_con_card li {
- float: none;
- width: 100%;
- margin: 0px auto !important;
- }
- .new_conitems {
- width: 100%;
- margin: 2PX auto;
- float: none;
- box-sizing: border-box;
- }
- .new_con_item1 {
- width: 100%;
- margin: 2PX auto;
- float: none;
- box-sizing: border-box;
- }
- .new_Contlt h3 {
- margin-left: 0px;
- padding-left: 0px;
- }
- .new_rightCon {
- padding: 10px;
- }
- .new_Contlt {
- height: 50px;
- }
- .new_Contlt h3 {
- margin: 0;
- padding: 0px;
- height: 50px;
- line-height: 50px;
- }
- .new_Contlt a {
- font-size: 30px;
- }
- .new_newList {
- margin-top: 10px;
- }
- .new_newList li {
- height: 55px;
- line-height: 55px;
- }
- .new_newList li a {
- font-size: 24px;
- }
- .new_con_tlt {
- height: 40px;
- line-height: 40px;
- padding: 0 10px;
- }
- .new_con_tlt a {
- font-size: 22px;
- }
- .mySwiper1 .swiper-slide span {
- height: 40px;
- line-height: 40px;
- font-size: 20px;
- padding: 0 20px;
- }
- .new_con_item {
- width: 100%;
- float: none;
- margin: 0px auto !important;
- padding: 10px;
- }
- .new_con_tlt1 a {
- height: 50px;
- line-height: 50px;
- font-size: 30px;
- }
- .new_con_item ul {
- margin: 10px 0;
- }
- .new_con_item ul li {
- height: 55px;
- line-height: 55px;
- }
- .new_con_item ul li a {
- font-size: 24px;
- }
- .new_conleft {
- padding: 0 20px;
- }
- .new_conleft_tlt {
- height: 50px;
- line-height: 50px;
- }
- .new_conleft_tlt a {
- font-size: 30px;
- }
- .new_con_box {
- margin: 20px auto;
- }
- .new_img_box {
- width: 33%;
- height: 160px;
- margin-right: 20px;
- }
- .new_img_box img {}
- .new_con_box h3 {
- height: 55px;
- line-height: 55px;
- font-size: 24px;
- margin-top: 5px;
- padding-right: 10px;
- }
- .new_con_box p {
- height: 90px;
- line-height: 30px;
- font-size: 18px;
- padding-right: 10px;
- }
- .new_conright {
- margin-top: 22px;
- }
- .new_tabtlt li {
- padding: 0 20px;
- height: 50px;
- line-height: 50px;
- width: 50%;
- }
- .new_tabtlt li a {
- font-size: 28px;
- }
- .new_tab_item {
- padding: 0 20px;
- }
- .new_tab_img {
- height: 300px;
- margin: 20px 0;
- }
- .new_tab_img span {
- height: 50px;
- line-height: 50px;
- font-size: 18px;
- padding: 0 10px;
- }
- .new_tab_list {
- margin-bottom: 20px;
- }
- .new_tab_list li {
- height: 55px;
- line-height: 55px;
- }
- .new_tab_list li a {
- font-size: 24px;
- }
- .new_con_card {
- margin: 20px auto;
- }
- .new_img_box2 {
- height: 440px;
- }
- .new_con_card li h3 {
- height: 55px;
- line-height: 55px;
- font-size: 24px;
- }
- .new_con_card li p {
- height: 90px;
- line-height: 30px;
- font-size: 18px;
- margin-bottom: 10px;
- }
- .index_6_in {
- margin: 20px auto;
- }
- .new_itemstlt {
- height: 55px;
- line-height: 55px;
- }
- .new_itemstlt a {
- font-size: 30px;
- }
- .new_itemsimg {
- height: 370px;
- margin: 20px auto;
- }
- .new_itemsimg span {
- height: 44px;
- line-height: 44px;
- font-size: 18px;
- padding: 0 10px;
- box-sizing: border-box;
- }
- .new_items_list {
- padding: 0 20px;
- margin-bottom: 20px;
- }
- .new_items_list li {
- height: 55px;
- line-height: 55px;
- }
- .new_items_list li a {
- font-size: 24px;
- }
- .new_item1_tlt {
- height: 33px;
- line-height: 33px;
- margin: 20px auto;
- }
- .new_item1_tlt a {
- font-size: 30px;
- }
- .new_items1_list {
- padding: 0 20px 20px;
- }
- .new_items1_list li {
- height: 55px;
- line-height: 55px;
- }
- .new_items1_list li a {
- font-size: 24px;
- }
- .index_6_in_foot {
- margin-top: 20px;
- }
- .index_7 {
- margin: 20px auto;
- }
- .new_wylytlt {
- height: 50px;
- padding: 0 20px;
- box-sizing: border-box;
- }
- .new_wylytlt a:nth-child(1) {
- height: 40px;
- line-height: 40px;
- margin-top: 10px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
- padding: 0 30px;
- font-size: 22px;
- }
- .new_wylytlt a:nth-child(2) {
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- }
- .new_lyitem {
- padding: 30px;
- }
- .new_lyitem li {
- height: 40px;
- line-height: 40px;
- padding: 0 20px;
- }
- .new_lyitem li a {
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- }
- .new_lyitem li span {
- font-size: 16px;
- }
- .blue {
- padding: 10px;
- }
- .post_nr {
- margin: 20px auto;
- padding: 20px !important;
- }
- .post_nr .name {
- line-height: 44px;
- font-size: 16px;
- margin-bottom: 5px;
- }
- .post_nr .name b {
- font-size: 17px;
- margin: 0 10px;
- }
- .post_nr li p {
- line-height: 44px;
- font-size: 15px;
- }
- .liuyan li {
- padding-bottom: 15px;
- margin-bottom: 10px;
- }
- .new_item1_tlt:after {
- display: none;
- }
- .new_item1_tlt:before {
- display: none;
- }
- .index_2 {
- display: none;
- }
- }
- </style>
|